/* ==========================================================================
   Duck Duck Dumpster — brand stylesheet (v2, mascot-first single-page)
   Palette roles:
     --sage         Product surface (dumpsters, brand-owned callouts). Not a bg.
     --sage-tint    Soft variant OK for hero + service-area accents.
     --orange       CTA / accent (safety-orange hard hat, buttons, links).
     --teal         Wordmark + headings + primary body text.
     --cream        Default page background (warm neutral).
     --mist         Alt section background (cool neutral).
     --white        Surface / cards.
   ========================================================================== */

:root {
  --sage:         #aed0c6;
  --sage-deep:    #7fb8ac;
  --sage-tint:    #d6e6e0;
  --orange:       #e5651e;
  --orange-hover: #c85717;
  --orange-tint:  #fbe4d3;
  --teal:         #113f49;
  --teal-soft:    #2a5661;
  --cream:        #f5f0e6;
  --cream-deep:   #ebe4d2;
  --mist:         #eaeef0;
  --white:        #ffffff;
  --text:         #113f49;
  --text-strong:  #0a2830;
  --muted:        #6b7d82;
  --border:       #d8d3c7;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 2px 6px rgba(17, 63, 73, 0.08), 0 8px 24px rgba(17, 63, 73, 0.06);
  --shadow-hover: 0 4px 14px rgba(17, 63, 73, 0.14), 0 16px 40px rgba(17, 63, 73, 0.10);
  --max-w:        1120px;
  --max-w-narrow: 720px;
}

/* --------------------------------------------------------------------------
   Reset + base typography
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--cream); scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.015em;
  color: var(--text-strong); font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 2.5vw + 1rem, 2.75rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--orange); }
a:hover { color: var(--orange); text-decoration-color: var(--orange-hover); }

/* Utilities */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: var(--max-w-narrow); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.tbd { color: var(--orange); font-style: italic; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--orange); color: var(--white); padding: .5rem 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block; padding: .8rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; border: 2px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  font-size: 1rem; line-height: 1.2; cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-lg { padding: 1rem 1.85rem; font-size: 1.08rem; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); color: var(--white); border-color: var(--orange-hover); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.cta-row.left { justify-content: flex-start; }

/* --------------------------------------------------------------------------
   Header (mascot-first: .duck-header). Retains .site-header for SEO stubs.
   -------------------------------------------------------------------------- */

.duck-header, .site-header {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(245, 240, 230, 0.90);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800; font-size: 1.15rem; text-decoration: none;
  color: var(--text-strong); display: inline-flex; align-items: center; gap: .6rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text-strong); }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-word { color: var(--teal); }

.duck-header nav, .site-header nav { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.duck-header nav a, .site-header nav a {
  color: var(--teal); text-decoration: none; font-weight: 500; font-size: .95rem;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.duck-header nav a:hover, .site-header nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.duck-header nav a[aria-current="page"], .site-header nav a[aria-current="page"] { border-bottom-color: var(--orange); color: var(--text-strong); }
.duck-header nav a.nav-book {
  background: var(--orange); color: var(--white);
  padding: .55rem 1.1rem; border-radius: var(--radius);
  font-weight: 600; border-bottom: none;
}
.duck-header nav a.nav-book:hover {
  background: var(--orange-hover); color: var(--white);
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   §1 HERO — placeholder pending canonical regen
   -------------------------------------------------------------------------- */

.duck-hero {
  position: relative;
  min-height: clamp(340px, 40vw, 520px);
  background: var(--sage-tint);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.25rem;
}
.duck-hero-mascot {
  max-height: clamp(300px, 42vw, 480px);
  width: auto;
  object-fit: contain;
  display: block;
}
.duck-hero-bg {
  position: absolute; inset: 0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero-pending {
  max-width: 640px; text-align: center;
  padding: 2rem; background: rgba(255,255,255,0.6);
  border: 2px dashed var(--sage-deep); border-radius: var(--radius-lg);
}
.hero-pending-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: .25rem .85rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1rem;
}
.hero-pending-title { color: var(--teal); font-weight: 700; font-size: 1.35rem; margin: 0 0 .5rem; }
.hero-pending-sub { color: var(--teal-soft); margin: 0 0 1rem; font-size: 1rem; }
.hero-pending-note { color: var(--muted); font-size: .85rem; margin: 0; font-style: italic; }
.hero-pending-note code { background: var(--cream-deep); padding: .1rem .4rem; border-radius: 4px; font-family: -apple-system, monospace; font-size: .9em; color: var(--teal); font-style: normal; }

/* --------------------------------------------------------------------------
   §2 HERO BAND — the pitch (orange, verb, two CTAs)
   -------------------------------------------------------------------------- */

.duck-pitch {
  background: var(--orange);
  color: var(--white);
  padding: 3.25rem 0 3.75rem;
  text-align: center;
}
.duck-pitch h1 { color: var(--white); margin-bottom: .6rem; }
.duck-pitch .pitch-sub {
  max-width: 740px; margin: 0 auto 1.5rem;
  font-size: clamp(1.05rem, 1vw + .85rem, 1.3rem);
  color: rgba(255,255,255,0.96); line-height: 1.5;
}
.duck-pitch .cta-row .btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); }
.duck-pitch .cta-row .btn-primary:hover { background: var(--cream); color: var(--orange-hover); border-color: var(--cream); }
.duck-pitch .cta-row .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.8); background: transparent; }
.duck-pitch .cta-row .btn-ghost:hover { color: var(--orange); background: var(--white); border-color: var(--white); }

/* --------------------------------------------------------------------------
   §3 TRUST STRIP — thin band, three chips
   -------------------------------------------------------------------------- */

.duck-trust {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}
.trust-chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  color: var(--teal); font-weight: 500; font-size: .95rem;
}
.trust-chips li { display: inline-flex; align-items: center; gap: .5rem; }
.chip-dot { color: var(--orange); font-size: .7rem; line-height: 1; }

/* --------------------------------------------------------------------------
   Generic sections
   -------------------------------------------------------------------------- */

.section { padding: 4rem 0; }
.section-alt { background: var(--mist); }
.section-cream-deep { background: var(--cream-deep); }
.section-sage-tint { background: var(--sage-tint); }
.section-title { text-align: center; margin-bottom: .5rem; }
.section-lede { text-align: center; color: var(--teal-soft); max-width: 640px; margin: 0 auto 2rem; font-size: 1.1rem; }
.section-lede.left { text-align: left; margin: 0 0 1.5rem; max-width: none; }

/* --------------------------------------------------------------------------
   §4 DUMPSTER GRID — cards with weight/overage/best-for/starts-at
   -------------------------------------------------------------------------- */

.dumpster-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .dumpster-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.dumpster-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.dumpster-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dumpster-photo {
  aspect-ratio: 4/3; background: var(--cream);
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dumpster-photo img,
.dumpster-photo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.dumpster-photo-note {
  color: var(--teal); font-size: .82rem; font-style: italic;
  background: rgba(255,255,255,0.7); padding: .3rem .7rem; border-radius: 999px;
}
.dumpster-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--orange); color: var(--white);
  padding: .3rem .75rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem; letter-spacing: .02em;
  z-index: 1;
}
.dumpster-body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dumpster-body h3 { color: var(--teal); margin-bottom: .2rem; font-size: 1.2rem; }
.dumpster-fit { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; font-style: italic; }
.dumpster-specs {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: grid; gap: .55rem;
  font-size: .92rem; color: var(--teal-soft);
}
.dumpster-specs li { line-height: 1.4; }
.dumpster-specs strong { color: var(--teal); font-weight: 600; }
.dumpster-price {
  color: var(--teal); font-size: 1.05rem; margin: 0 0 1rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.dumpster-price strong { color: var(--orange); font-size: 1.4rem; }
.dumpster-body .btn { margin-top: auto; text-align: center; }

/* --------------------------------------------------------------------------
   §5 SERVICES — copy left, illustration right
   -------------------------------------------------------------------------- */

.services-split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
@media (max-width: 820px) { .services-split { grid-template-columns: 1fr; gap: 2rem; } }
.services-list {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: grid; gap: .75rem;
}
.services-list li {
  padding: .85rem 1.15rem; background: var(--white);
  border-radius: var(--radius); border-left: 4px solid var(--orange);
  color: var(--teal-soft); font-size: 1rem;
  box-shadow: var(--shadow);
}
.services-list li strong { color: var(--teal); font-weight: 700; }
.services-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.services-visual-img {
  width: 100%;
  height: auto;
  display: block;
}
.visual-placeholder {
  text-align: center; color: var(--teal-soft); padding: 1.5rem;
}
.visual-placeholder-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: .2rem .8rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; margin-bottom: .75rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.visual-placeholder p { margin: 0 0 .3rem; font-style: italic; }
.visual-placeholder .small { color: var(--muted); }

/* --------------------------------------------------------------------------
   §6 WADDLE STEPS — three columns
   -------------------------------------------------------------------------- */

.waddle-steps {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.waddle-step {
  background: var(--white); padding: 2rem 1.5rem 1.85rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow); text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.waddle-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.waddle-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(229, 101, 30, 0.30);
}
.waddle-step h3 { color: var(--teal); margin-bottom: .5rem; font-size: 1.2rem; }
.waddle-step p { color: var(--muted); font-size: .98rem; margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------------------
   §7 WHY BAR — four markers + contractor hook
   -------------------------------------------------------------------------- */

.why-bar {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-bar li {
  background: var(--white); padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.why-bar h3 {
  color: var(--orange); font-size: 1rem; margin-bottom: .4rem;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
}
.why-bar p { color: var(--teal); margin: 0; font-size: .95rem; line-height: 1.5; }
.contractor-hook {
  margin-top: 2rem; padding: 1.35rem 1.75rem;
  background: var(--teal); color: var(--white); border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow);
}
.contractor-hook p { margin: 0; font-size: 1rem; color: rgba(255,255,255,0.92); }
.contractor-hook strong { color: var(--white); }
.contractor-hook a { color: var(--orange); font-weight: 700; text-decoration: none; }
.contractor-hook a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--white); }
.contractor-hook .tbd { color: rgba(255,255,255,0.75); font-style: italic; }

/* --------------------------------------------------------------------------
   §8 SERVICE AREA — town chips
   -------------------------------------------------------------------------- */

.area-chips {
  list-style: none; padding: 0; margin: 2rem auto;
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  max-width: 780px;
}
.area-chips li {
  background: var(--white); color: var(--teal);
  padding: .55rem 1.2rem; border-radius: 999px;
  border: 1px solid var(--sage-deep); font-weight: 500; font-size: .95rem;
  transition: transform .12s ease, box-shadow .18s ease;
}
.area-chips li:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.area-fallback { color: var(--teal); margin: 0; font-size: 1.05rem; text-align: center; }
.area-fallback a { color: var(--orange); font-weight: 600; }

/* --------------------------------------------------------------------------
   §9 FAQ — native <details> accordion
   -------------------------------------------------------------------------- */

.faq-list { display: grid; gap: .75rem; margin-top: 2rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--orange); }
.faq-item summary {
  font-weight: 600; color: var(--teal); cursor: pointer;
  list-style: none; position: relative; padding-right: 2rem;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-55%);
  color: var(--orange); font-size: 1.5rem; font-weight: 700; line-height: 1;
  transition: transform .18s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-55%); }
.faq-item p { margin: .8rem 0 0; color: var(--teal-soft); font-size: .98rem; line-height: 1.6; }
.faq-item p a { color: var(--orange); text-decoration-color: var(--orange); }

/* --------------------------------------------------------------------------
   §10 BOOK STRIP — second bite, text/call/email
   -------------------------------------------------------------------------- */

.book-strip {
  background: var(--teal); color: var(--white); text-align: center;
  padding: 4rem 0 4.5rem;
}
.book-strip h2 { color: var(--white); margin-bottom: .5rem; font-size: clamp(1.85rem, 3vw + .5rem, 2.85rem); }
.book-strip p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 1.75rem; font-size: 1.1rem; }
.book-strip .cta-row .btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.book-strip .cta-row .btn-primary:hover { background: var(--orange-hover); color: var(--white); border-color: var(--orange-hover); }
.book-strip .cta-row .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.7); background: transparent; }
.book-strip .cta-row .btn-ghost:hover { color: var(--teal); background: var(--white); border-color: var(--white); }
.book-strip .cta-row .tbd { color: rgba(255,255,255,0.85); font-weight: 400; }
.book-strip .btn-primary .tbd { color: rgba(255,255,255,0.9); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--teal); color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem; margin-top: 0;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-inner .brand { color: var(--white); }
.footer-inner .brand-word { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-contact p { margin: 0 0 .3rem; }
.footer-contact a.tbd { color: rgba(255,255,255,0.7); font-style: italic; }
.footer-legal { padding-top: 1rem; text-align: center; }
.footer-legal .muted { color: rgba(255,255,255,0.6); }

/* --------------------------------------------------------------------------
   Section mascots — Dusty per section (v0.5, added 2026-08-11)
   -------------------------------------------------------------------------- */

.section-header-mascot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem; text-align: left;
}
.section-header-copy { flex: 1; min-width: 0; }
.section-header-copy .section-title { text-align: left; margin-bottom: .35rem; }
.section-header-copy .section-lede { text-align: left; margin: 0; max-width: none; }
.section-mascot {
  width: 180px; height: auto; flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(17, 63, 73, 0.10));
}
@media (max-width: 720px) {
  .section-header-mascot { flex-direction: column-reverse; text-align: center; gap: 1rem; }
  .section-header-copy .section-title,
  .section-header-copy .section-lede { text-align: center; }
  .section-mascot { width: 140px; }
}

.hook-mascot {
  width: 96px; height: auto; flex-shrink: 0; display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.20));
}
.contractor-hook.with-mascot {
  display: flex; align-items: center; gap: 1.5rem; text-align: left;
}
.contractor-hook.with-mascot p { margin: 0; }
@media (max-width: 640px) {
  .contractor-hook.with-mascot { flex-direction: column; text-align: center; gap: 1rem; }
}

.book-strip-mascot {
  width: 160px; height: auto; display: block; margin: 0 auto 1rem;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

/* --------------------------------------------------------------------------
   Legacy classes (kept for frozen SEO-stub sub-pages)
   -------------------------------------------------------------------------- */

.hero { position: relative; min-height: clamp(280px, 42vw, 520px); background: var(--sage-tint); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-band { background: var(--orange); color: var(--white); padding: 2.5rem 0 2.75rem; text-align: center; }
.hero-band h1 { color: var(--white); margin-bottom: .5rem; }
.hero-band .lede { max-width: 720px; margin: 0 auto 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.92); }
.section-sage { background: var(--sage); }
.cta-strip { background: var(--teal); color: var(--white); text-align: center; padding: 3rem 0 3.25rem; }
.cta-strip h2 { color: var(--white); margin-bottom: .5rem; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 1.5rem; }
.placeholder {
  padding: 3rem 1.5rem; text-align: center;
  background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius-lg);
  color: var(--muted); margin: 2rem 0;
}
.placeholder h3 { color: var(--teal); margin-bottom: .5rem; }
.placeholder code { background: var(--cream-deep); padding: .1rem .4rem; border-radius: 4px; font-size: .95em; }
.form { max-width: 560px; margin: 0 auto; display: grid; gap: 1rem; }
.form label { display: grid; gap: .35rem; font-weight: 500; color: var(--teal); font-size: .95rem; }
.form input, .form textarea, .form select {
  padding: .75rem .9rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint);
}
.form textarea { min-height: 140px; resize: vertical; }
.form button { justify-self: start; }

/* --------------------------------------------------------------------------
   Responsive tweaks
   -------------------------------------------------------------------------- */

@media (max-width: 780px) {
  .duck-header nav, .site-header nav { gap: 1rem; font-size: .9rem; }
  .duck-header nav a.nav-book { padding: .45rem .9rem; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .nav-wrap { flex-direction: column; align-items: flex-start; padding: .75rem 0; gap: .75rem; min-height: auto; }
  .duck-header nav, .site-header nav { width: 100%; justify-content: flex-start; gap: .75rem 1.25rem; }
  .cta-row { justify-content: center; }
  .duck-pitch { padding: 2.5rem 0 2.75rem; }
  .book-strip { padding: 3rem 0 3.25rem; }
  .footer-inner { text-align: left; gap: 1.75rem; }
  .trust-chips { gap: .5rem 1.25rem; font-size: .88rem; }
}
