/* =================================================================
   Sebastian Watch Co. — public site styles.

   Brand system distilled from the brand manager analysis:
   - Single warm-neutral background (--ivory). Never broken.
   - Two-serif editorial typography: Cormorant Garamond + Libre Caslon Text.
   - Inter for nav and small caps eyebrows.
   - No shadows, no gradients. Hairline borders only.
   - Portrait product imagery: aspect-ratio 9.6 / 14.
   - Generous vertical rhythm: --section-y clamp(4rem, 10vw, 9rem).
   - Long editorial scroll. Story before specs.
   - Polite full-sentence CTAs.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ivory:       #0A0B0D;          /* primary bg (near-black, matches dial photography) */
  --ivory-warm:  #15171A;          /* lifted charcoal surface / cards */
  --ink:         #ECE8DD;          /* primary text (silver-cream) */
  --ink-soft:    #C9C4B8;          /* dimmer body text */
  --sandstone:   #9B978C;          /* secondary text, captions */
  --peacock:     #2BB6C4;          /* primary accent: links + buttons (turquoise) */
  --mughal:      #2BB6C4;          /* primary CTA fill (turquoise) */
  --cobalt:      #1E50A8;          /* secondary accent */
  --emerald:     #1E7D5A;          /* hover / success */
  --gold:        #B7986A;          /* hairlines, badges, premium tag (tan) */
  --hairline:    rgba(236, 232, 221, 0.14);
  --hairline-soft: rgba(236, 232, 221, 0.07);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --font-serif:   'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-y:   clamp(4rem, 10vw, 9rem);
  --container:   1240px;
  --gutter:      clamp(20px, 4vw, 48px);

  /* Easing */
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--peacock); text-decoration: none; transition: opacity 200ms var(--ease-editorial); }
::selection { background: var(--cobalt); color: var(--ink); }
a:hover { opacity: 0.65; }
button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--hairline); margin: var(--section-y) 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sandstone);
  margin: 0 0 0.75em;
}

.h-display, h1.hero, .hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.12; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.18; }
h4 { font-size: 1.05rem; line-height: 1.3; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 1em; }
.lede { font-size: clamp(1.0625rem, 1.4vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); }
small, .small { font-size: 0.875rem; color: var(--sandstone); }
em { font-style: italic; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: calc(var(--section-y) * 0.5); padding-bottom: calc(var(--section-y) * 0.5); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 800px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background 220ms var(--ease-editorial), color 220ms var(--ease-editorial), opacity 220ms var(--ease-editorial);
}
.btn:hover { background: var(--ink); color: var(--ivory); opacity: 1; }
.btn-primary {
  background: var(--mughal);
  border-color: var(--mughal);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--emerald); border-color: var(--emerald); color: var(--ink); opacity: 1; }
.btn-ghost {
  border-color: var(--hairline);
  color: var(--ink-soft);
}
.btn-ghost:hover { background: var(--ivory-warm); color: var(--ink); border-color: var(--ink); }
.btn-disabled, .btn[disabled], .btn:disabled {
  background: transparent;
  border-color: var(--hairline);
  color: var(--sandstone);
  cursor: not-allowed;
  pointer-events: none;
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline-soft);
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(15px, 4vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  /* Logo + wordmark on one line: the global `img{display:block}` reset would
     otherwise stack the logo above the text. */
  display: inline-flex;
  align-items: center;
}
.brand-logo { display: inline-block; }
.brand-mark:hover { opacity: 1; }
.brand-mark .triquetra { display: inline-block; vertical-align: -3px; margin-right: 8px; color: var(--gold); }

.nav-primary {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-primary a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-primary a:hover { color: var(--peacock); opacity: 1; }
.nav-icons { display: flex; gap: 14px; align-items: center; }
.nav-icons a, .nav-icons button {
  background: none;
  border: 0;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-icons svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.nav-icons .cart-count {
  font-family: var(--font-sans);
  font-size: 10px;
  background: var(--mughal);
  color: var(--ivory);
  border-radius: 999px;
  padding: 1px 6px;
  margin-left: 4px;
  display: none;
}
.nav-icons .cart-count.has-items { display: inline-block; }
.nav-icons .nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; }

@media (max-width: 800px) {
  .nav-icons .nav-toggle { display: inline-flex; }
  .nav-icons { gap: 6px; }
  .site-header-inner { gap: 12px; }
  .nav-primary {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    z-index: 45;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--ivory);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-200%);
    transition: transform 280ms var(--ease-editorial);
    padding: 8px 0;
  }
  .nav-primary.open { transform: translateY(0); }
  .nav-primary a {
    padding: 14px var(--gutter);
    border-bottom: 1px solid var(--hairline-soft);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: var(--section-y);
  text-align: center;
}
.hero h1 br { display: block; }
.hero .lede {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* ---------- Hero banner: full-bleed background image + overlaid text ---------- */
.hero-banner {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: clamp(540px, 86vh, 860px);
  overflow: hidden;
}
.hero-banner-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-banner::after { content: ""; position: absolute; inset: 0; background: rgba(10, 11, 13, 0.55); z-index: 1; }
.hero-banner-inner { position: relative; z-index: 2; padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero-banner .lede { max-width: 600px; margin-left: auto; margin-right: auto; color: var(--ink); }
@media (max-width: 640px) { .hero-banner { min-height: clamp(480px, 82vh, 680px); } }

/* ---------- Full-bleed collection band (edge-to-edge, borderless) ---------- */
.hero-figure {
  aspect-ratio: 16 / 9;
  background: var(--ivory-warm);
  display: grid;
  place-items: center;
  color: var(--sandstone);
  overflow: hidden;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .hero-figure { aspect-ratio: 4 / 3; } }

/* ---------- Editorial cards ---------- */
.editorial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.editorial-card.reverse { direction: rtl; }
.editorial-card.reverse > * { direction: ltr; }
.editorial-card .figure {
  aspect-ratio: 1 / 1;
  background: var(--ivory-warm);
  overflow: hidden;
}
.editorial-card .figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-card .body { max-width: 480px; padding: clamp(8px, 2vw, 16px) var(--gutter); }
@media (max-width: 800px) {
  .editorial-card { grid-template-columns: 1fr; gap: 0; }
  .editorial-card.reverse { direction: ltr; }
  .editorial-card .body { padding: clamp(24px, 6vw, 32px) var(--gutter) clamp(32px, 8vw, 44px); }
}

/* ---------- Product / collection grid ---------- */
.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: clamp(18px, 4vw, 56px);
}
.watch-card {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.watch-card .figure {
  aspect-ratio: 1 / 1;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.watch-card .figure img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 700ms var(--ease-editorial);
}
.watch-card:hover .figure img { transform: scale(1.03); }
.watch-card:hover { opacity: 1; }
.watch-card h3 { margin: 0 0 6px; }
.watch-card .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sandstone);
}
.watch-card .price { color: var(--ink); }

.sold-out-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
}

/* ---------- Image placeholder pattern (used until real photos arrive) ---------- */
.placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--ivory-warm) 0%, var(--ivory) 100%);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.placeholder span { position: relative; z-index: 1; opacity: 0.6; }

/* ---------- Spec accordion ---------- */
.specs {
  border-top: 1px solid var(--hairline);
}
.specs details {
  border-bottom: 1px solid var(--hairline);
  padding: 8px 0;
}
.specs summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.specs summary::-webkit-details-marker { display: none; }
.specs summary::after { content: "+"; font-size: 24px; line-height: 1; transition: transform 220ms var(--ease-editorial); }
.specs details[open] summary::after { content: "−"; }
.specs dl { margin: 18px 0 4px; display: grid; grid-template-columns: max-content 1fr; gap: 10px 32px; }
.specs dt {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sandstone);
  text-transform: uppercase;
}
.specs dd { margin: 0; }

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sandstone);
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .checkbox-row {
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.form .checkbox-row input { margin-top: 2px; }

.form-status {
  font-family: var(--font-sans);
  font-size: 14px;
  margin-top: 12px;
  color: var(--sandstone);
}

/* ---------- Cart drawer (Sprint 5) ---------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--ivory);
  border-left: 1px solid var(--hairline);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 320ms var(--ease-editorial);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 11, 13, 0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-editorial);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.cart-head h3 { margin: 0; font-size: 1.3rem; }
.cart-close { background: none; border: 0; font-size: 28px; line-height: 1; color: var(--ink); padding: 8px 10px; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

.cart-items { flex: 1; overflow-y: auto; padding: 8px var(--gutter); }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: center;
}
.cart-item .figure {
  aspect-ratio: 1 / 1;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.cart-item .figure img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .name { font-family: var(--font-display); font-size: 16px; }
.cart-item .price { font-size: 14px; color: var(--sandstone); }
.cart-item .remove { background: none; border: 0; color: var(--sandstone); font-size: 20px; }
.cart-item .remove:hover { color: var(--mughal); }

.cart-empty { padding: 32px var(--gutter); text-align: center; color: var(--sandstone); }

.cart-foot {
  border-top: 1px solid var(--hairline);
  padding: 18px var(--gutter);
  display: grid;
  gap: 12px;
}
.cart-total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-total .label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sandstone); }
.cart-total .amount { font-family: var(--font-display); font-size: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  background: var(--ivory);
}
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-newsletter { max-width: 520px; margin: 0 auto 3rem; text-align: center; }
.footer-newsletter h3 { font-size: 1.4rem; margin-bottom: 6px; }
.footer-newsletter p { color: var(--sandstone); }
.footer-newsletter form {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  margin-top: 18px; align-items: end;
}
@media (max-width: 480px) {
  .footer-newsletter form { grid-template-columns: 1fr; gap: 16px; }
  .footer-newsletter form .btn { width: 100%; }
}
.footer-newsletter input[type="email"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  font: inherit;
  font-size: 16px;
}
.footer-newsletter input[type="email"]:focus { outline: none; border-bottom-color: var(--ink); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--hairline-soft);
  padding-top: 24px;
  font-size: 13px;
  color: var(--sandstone);
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--sandstone); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--sandstone); display: inline-flex; padding: 4px; }
.footer-social svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.footer-credit {
  margin-top: 14px;
  font-size: 11px;
  color: var(--sandstone);
  opacity: 0.75;
}
.footer-credit a { color: var(--sandstone); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--ink-soft); }

/* ---------- Product detail page ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(24px, 4vw, 80px);
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: var(--section-y);
}
@media (min-width: 901px) {
  .product-info { position: sticky; top: 88px; align-self: start; }
}
@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-info { padding-top: clamp(1.25rem, 4vw, 2rem); }
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) {
  .product-gallery { grid-template-columns: 1fr; gap: 10px; }
}
.product-gallery .figure {
  aspect-ratio: 1 / 1;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.product-gallery .figure img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .figure.lead { grid-column: 1 / -1; }
.product-info .tagline { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 1.2em; }
.product-info .price-row {
  display: flex; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  margin: 24px 0;
}
.product-info .price { font-family: var(--font-display); font-size: 28px; }
.product-info .price-label { color: var(--sandstone); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.product-info .edition {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone);
  margin-bottom: 18px;
}
.product-info .ctas { display: grid; gap: 10px; }
.product-info .ctas .btn { width: 100%; }

.product-story {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.product-story p { margin-bottom: 1.4em; }

/* h2 visually styled as an eyebrow label
   (used on PDP for Specifications + FAQ headings to satisfy SEO h-hierarchy
   while keeping the visual eyebrow pattern). */
h2.h-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone);
  margin: 0 0 0.75em;
  text-align: center;
}

/* ---------- Founder signature (About page) ---------- */
.founder-signature {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 2rem;
  text-align: right;
  color: var(--ink);
}
.founder-signature small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sandstone);
  margin-top: 8px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; transition: transform 220ms var(--ease-editorial); }
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding-top: 12px; color: var(--ink-soft); }

/* ---------- Utility ---------- */
.dim { color: var(--sandstone); }
.spacer-sm { height: 16px; }
.spacer-md { height: 32px; }
.spacer-lg { height: 64px; }
.no-scroll { overflow: hidden; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 80;                 /* above content + header (50), below cart overlay (90) */
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;         /* WhatsApp green — recognisable utility control */
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms var(--ease-editorial), opacity 220ms var(--ease-editorial);
}
.wa-float:hover { opacity: 1; transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 1.8; }
@media (max-width: 800px) { .wa-float { width: 52px; height: 52px; } }
@media print { .wa-float { display: none; } }

/* ---------- Print: not bothering with much ---------- */
@media print { .site-header, .site-footer, .cart-drawer, .cart-overlay { display: none; } }

/* ---------- Phase 2: drop room (signup + entry forms, countdown, banners) ---------- */
.signup-form { max-width: 420px; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.signup-form input[type="text"],
.signup-form input[type="tel"],
.signup-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 0;
  color: var(--ink);
}
.signup-form input:focus { outline: 1px solid var(--ink); outline-offset: 0; }
.signup-form .visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.signup-form .hp {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important; opacity: 0 !important;
}
.signup-form .small { font-size: 0.8rem; }
.signup-form .muted { color: var(--sandstone); }

.banner {
  border: 1px solid var(--hairline);
  padding: 12px 14px;
  margin: 12px 0;
  font-size: 0.95rem;
}
.banner-ok { border-color: var(--emerald); color: var(--emerald); background: rgba(30, 125, 90, 0.10); }
.banner-warn { border-color: var(--mughal); color: var(--mughal); }

.countdown { font-variant-numeric: tabular-nums; }
.status-badge { font-size: 0.95rem; margin: 12px 0; color: var(--ink-soft); }

/* Pre-drop "how it works" card on the announced page. */
.drop-brief { background: var(--ivory-warm); border: 1px solid var(--hairline); border-radius: 10px; padding: 1.1rem 1.3rem; margin: 1.1rem 0 1.4rem; }
.drop-brief h3 { font-family: var(--font-sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin: 0 0 0.75rem; }
.drop-brief ol { margin: 0; padding-left: 1.3rem; }
.drop-brief li { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; margin: 0.45rem 0; }
.drop-brief li::marker { color: var(--sandstone); }
.drop-brief-tip { margin: 0.95rem 0 0; padding-top: 0.85rem; border-top: 1px solid var(--hairline); color: var(--ink-soft); font-size: 0.9rem; }
.drop-brief-tip strong { color: var(--peacock); }
.drop-brief a, .drop-brief-tip a { color: var(--peacock); text-decoration: underline; text-underline-offset: 2px; }
