:root {
  --ink: #17211b;
  --muted: #5d695f;
  --line: #d9dfd7;
  --paper: #fffdf8;
  --soft: #f4f0e7;
  --green: #1f6b45;
  --green-dark: #11452c;
  --gold: #d69a2d;
  --blue: #e9f3f7;
  --shadow: 0 18px 42px rgba(23, 33, 27, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: 72px;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(217, 223, 215, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-link,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.header-link {
  padding: 0 12px;
  color: var(--green-dark);
}

.header-call {
  padding: 0 16px;
  background: var(--green);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/curbside-pickup-hero.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(13, 24, 18, 0.22), rgba(13, 24, 18, 0.84)),
    linear-gradient(90deg, rgba(13, 24, 18, 0.78), rgba(13, 24, 18, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 16vw, 5.9rem);
}

.hero-subtitle {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(1.18rem, 5vw, 1.55rem);
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #20170a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
}

.trust-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
}

.intro-strip {
  background: var(--green-dark);
  color: #fff;
}

.strip-grid {
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.strip-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  font-weight: 720;
}

.section {
  padding: 64px 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(2rem, 9vw, 3.4rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 33, 27, 0.07);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--green-dark);
  font-weight: 900;
}

.step-card h3 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.step-card p,
.quote-panel p,
.faq-list p,
.form-intro p,
.site-footer p {
  color: var(--muted);
}

.split-layout,
.form-layout {
  display: grid;
  gap: 28px;
}

.pickup-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pickup-list li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.pickup-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.quote-info {
  background: var(--green-dark);
}

.quote-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-panel .eyebrow {
  color: var(--green);
}

.quote-panel a,
.form-intro a,
.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

.contact-method,
.curb-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-method legend,
.curb-field legend {
  flex: 0 0 100%;
}

.contact-method label,
.curb-field label {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bbc6bd;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(214, 154, 45, 0.55);
  outline-offset: 3px;
}

.field-note,
.form-status {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-submit {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 850;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 16px 16px;
}

.site-footer {
  padding: 32px 0 92px;
  background: #101913;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.disclaimer {
  max-width: 620px;
  margin: 0;
  font-size: 0.94rem;
}

.sticky-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(23, 33, 27, 0.12);
}

.sticky-contact a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.sticky-contact a:last-child {
  background: var(--gold);
  color: #20170a;
}

@media (min-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    min-height: 720px;
    align-items: center;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    min-width: 210px;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pickup-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px;
  }

  .field-full,
  .form-submit,
  .form-status {
    grid-column: 1 / -1;
  }

  .sticky-contact {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding: 14px 28px;
  }

  .section {
    padding: 86px 0;
  }

  .split-layout,
  .form-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .quote-panel {
    max-width: 760px;
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}