/* ============================================================
   Amorcito Mío Coffee — Site styles
   Vanilla CSS. Mobile-first. No build step.

   Three signature moves repeat across every page:
     1. THE ARCH  — images crowned like the arched sign on their cart
     2. THE SCRIM — a warm espresso gradient so type survives busy food photos
     3. THE TAG   — small hand-tied chips, borrowed from their syrup bottles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: var(--lh-head);
  letter-spacing: var(--ls-tight);
  margin: 0;
  font-variation-settings: 'SOFT' 22, 'WONK' 1, 'opsz' 40;
}

p { margin: 0; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--accent); color: var(--on-accent); padding: 12px 20px;
  border-radius: 0 0 var(--r) var(--r); font-weight: 700; z-index: 100;
  text-decoration: none; transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 780px; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--oat-deep); }
.section--rosa { background: var(--rosa-soft); }

/* ---------- Section header ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--t-eyebrow); font-weight: 700; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--caramel-deep); margin: 0 0 .85em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: .55;
}
.sec-head { max-width: var(--maxw-text); margin-bottom: var(--s-6); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head h2 { font-size: var(--t-h2); }
.lede { font-size: var(--t-lede); color: var(--ink-soft); margin-top: .7em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 54px; padding: 0 1.6em;
  font-family: var(--sans); font-size: 1.02rem; font-weight: 700; line-height: 1;
  border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(.978); }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--sh-cta); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--light { background: var(--surface); color: var(--ink); box-shadow: var(--sh-2); }
.btn--light:hover { background: var(--oat-deep); }
.btn--ghost { background: transparent; color: var(--ink-soft); min-height: 46px; font-weight: 600; }
.btn--ghost:hover { color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { min-height: 60px; font-size: 1.08rem; padding-inline: 2em; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; cursor: default; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.btn-row--center { justify-content: center; }

/* ---------- Tag chip (signature #3) ---------- */
.tag {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .42em .85em; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .04em;
  color: var(--ink-soft); text-transform: uppercase; white-space: nowrap;
}
.tag--rosa { background: var(--rosa-soft); border-color: transparent; color: var(--rosa-deep); }
.tag--solid { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* The syrup tag — a literal copy of the hand-lettered cardboard tags hanging
   off their bottles: squared off, tied on a little crooked, hole punched.
   Reserved for flavor lists so the tilt stays a deliberate accent and doesn't
   turn a row of four chips into a ransom note. */
.tag--syrup {
  position: relative;
  padding: .5em .9em .5em 1.5em;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-style: italic;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transform: rotate(-1.4deg);
  transition: transform var(--dur-fast) var(--ease);
}
.tag--syrup:nth-child(even) { transform: rotate(1.4deg); }
.tag--syrup::before {
  content: ""; position: absolute; left: .62em; top: 50%; margin-top: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bg); box-shadow: inset 0 0 0 1px var(--line);
}
.tag--syrup:hover { transform: rotate(0deg); }
@media (prefers-reduced-motion: reduce) { .tag--syrup { transition: none; } }

/* ---------- The Arch (signature #1) ---------- */
.arch {
  border-radius: var(--r-arch);
  overflow: hidden;
  background: var(--oat-deep);
}
.arch img, .arch video { width: 100%; height: 100%; object-fit: cover; }
.arch--framed {
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--sh-2);
  border-radius: calc(var(--r-lg) + 10px);
  border-start-start-radius: 50%; border-start-end-radius: 50%;
}
.arch--framed > * { border-radius: var(--r-arch); overflow: hidden; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 68px;
}
.nav__brand { display: flex; align-items: center; gap: .6em; text-decoration: none; color: var(--ink); }
.nav__brand img { width: 38px; height: 38px; object-fit: contain; }
.nav__brand b {
  font-family: var(--display); font-size: 1.12rem; font-weight: 600;
  letter-spacing: var(--ls-tight); line-height: 1;
}
.nav__brand span {
  display: block; font-family: var(--sans); font-size: .58rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px;
}
.nav__links { display: none; gap: var(--s-5); align-items: center; }
.nav__links a {
  color: var(--ink-soft); text-decoration: none; font-size: .95rem; font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { display: none; }
.nav__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); cursor: pointer; color: var(--ink);
}
.nav__burger svg { width: 22px; height: 22px; }

@media (min-width: 880px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: var(--bg);
  display: flex; flex-direction: column; padding: var(--gutter);
  transform: translateY(-100%); visibility: hidden;
  transition: transform var(--dur-slow) var(--ease-out), visibility var(--dur-slow);
}
.drawer.is-open { transform: none; visibility: visible; }
.drawer__top { display: flex; justify-content: flex-end; }
.drawer__close {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); cursor: pointer; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer nav { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-6); }
.drawer nav a {
  font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: .3em 0; border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: var(--s-6); }

/* The panel lands and the links are simply there. A short stagger after it
   arrives reads as "the menu was set down" rather than "a modal opened".
   Small translate, ease-out, no overshoot — warm, not bouncy. */
.drawer nav a {
  opacity: 0; transform: translateY(10px);
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}
.drawer.is-open nav a { opacity: 1; transform: none; }
.drawer.is-open nav a:nth-child(1) { transition-delay: 90ms; }
.drawer.is-open nav a:nth-child(2) { transition-delay: 130ms; }
.drawer.is-open nav a:nth-child(3) { transition-delay: 170ms; }
.drawer.is-open nav a:nth-child(4) { transition-delay: 210ms; }
.drawer.is-open nav a:nth-child(5) { transition-delay: 250ms; }
/* The CTA fades only, so .btn:active keeps its press-scale */
.drawer .btn {
  opacity: 0;
  transition: opacity 360ms var(--ease-out),
              transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.drawer.is-open .btn { opacity: 1; transition-delay: 300ms, 0s, 0s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: var(--s-6) var(--s-7); }
.hero__grid { display: grid; gap: var(--s-6); align-items: center; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-arch);
  overflow: hidden; box-shadow: var(--sh-3); background: var(--oat-deep);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
/* Signature #2 — the scrim. Two stacked gradients: a soft top wash to hold
   the badge, and a heavier bottom ramp so the caption always clears AA. */
.hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(43,26,20,.30) 0%, rgba(43,26,20,0) 32%),
    linear-gradient(to top,   rgba(43,26,20,.72) 0%, rgba(43,26,20,.30) 26%, rgba(43,26,20,0) 55%);
}
.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--s-5) var(--s-5) var(--s-5);
  color: #fff;
}
.hero__caption strong { display: block; font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.hero__caption span { font-size: .88rem; opacity: .88; }

/* The arch curves the top corners away, so a badge pinned to the corner gets
   clipped. Sit it below the curve and centre it under the crown instead. */
.hero__badge {
  position: absolute; top: var(--s-4); left: 50%; transform: translateX(-50%); z-index: 2;
  white-space: nowrap;
  background: rgba(255,255,255,.94); color: var(--ink);
  padding: .5em 1em; border-radius: var(--r-pill);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .45em; box-shadow: var(--sh-1);
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }

.hero h1 { font-size: var(--t-hero); line-height: var(--lh-tight); }
.hero h1 em {
  font-style: italic; color: var(--rosa-deep);
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
.hero__lede { font-size: var(--t-lede); color: var(--ink-soft); margin-top: var(--s-4); max-width: 46ch; }
.hero .btn-row { margin-top: var(--s-5); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5);
}

@media (min-width: 900px) {
  .hero { padding-block: var(--s-7) var(--s-8); }
  .hero__grid { grid-template-columns: 1.02fr .98fr; gap: var(--s-8); }
  .hero__copy { order: -1; }
  .hero__photo { aspect-ratio: 3 / 4; }
}

/* ---------- Trust strip ---------- */
.trust {
  border-block: 1px solid var(--line);
  padding-block: var(--s-4);
  background: var(--surface);
}
.trust ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3) var(--s-6);
}
.trust li {
  display: flex; align-items: center; gap: .5em;
  font-size: var(--t-sm); font-weight: 600; color: var(--ink-soft);
}
.trust svg { width: 18px; height: 18px; color: var(--rosa-deep); flex: none; }

/* ============================================================
   CARDS
   ============================================================ */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 940px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Drink card */
.drink {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.drink:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.drink__img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--oat-deep); }
.drink__img img { width: 100%; height: 100%; object-fit: cover;
                  transition: transform var(--dur-slow) var(--ease-out); }
.drink:hover .drink__img img { transform: scale(1.03); }
.drink__body { padding: var(--s-4) var(--s-5) var(--s-5); }
.drink__body h3 { font-size: var(--t-h3); }
.drink__body p { color: var(--ink-soft); font-size: var(--t-sm); margin-top: .35em; }
.drink__tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }

/* Package card */
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5) var(--s-5); box-shadow: var(--sh-1);
}
/* The latte layer — espresso → caramel → foam, left to right. It's the
   cross-section of their own cup, used as the cap on each package card.
   Rounded to match the card rather than clipped by overflow:hidden, which
   would also cut off the "Most booked" flag that overhangs the top edge. */
.pkg::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, var(--espresso) 0%, var(--caramel) 48%, var(--rosa) 100%);
}
.pkg--featured {
  border-color: var(--rosa-deep); border-width: 2px; box-shadow: var(--sh-3);
}
.pkg__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rosa-deep); color: #fff; font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .45em 1.1em; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pkg h3 { font-size: var(--t-h3); }
.pkg__sub { color: var(--ink-mute); font-size: var(--t-sm); margin-top: .2em; }
.pkg__price {
  font-family: var(--display); font-size: 2.6rem; font-weight: 600; line-height: 1;
  margin: var(--s-4) 0 .1em; letter-spacing: var(--ls-tight);
}
.pkg__price small { font-family: var(--sans); font-size: .82rem; font-weight: 700; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: .35em; }
.pkg__unit { font-size: var(--t-sm); color: var(--ink-mute); }
.pkg ul { list-style: none; margin: var(--s-5) 0 var(--s-5); padding: 0; display: grid; gap: .6em; }
.pkg li { position: relative; padding-left: 1.75em; font-size: var(--t-sm); line-height: 1.5; }
.pkg li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.05em; height: 1.05em;
  border-radius: 50%; background: var(--rosa-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9758C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 68%; background-position: center; background-repeat: no-repeat;
}
.pkg .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--s-5); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
/* The number badge is 42px tall at top:0, so --s-6 (32px) of clearance left
   the circle overlapping the heading beneath it at every width. */
.step { position: relative; padding-top: calc(42px + var(--s-3)); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  font-family: var(--display); font-size: 1.15rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: var(--t-h3); margin-bottom: .3em; }
.step p { color: var(--ink-soft); font-size: var(--t-sm); }

/* ---------- Testimonial ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5); box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.quote blockquote {
  margin: 0; font-family: var(--display); font-size: 1.16rem; line-height: 1.45;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
}
.quote figcaption { font-size: var(--t-sm); color: var(--ink-mute); font-weight: 600; }
.quote .stars { color: var(--caramel); letter-spacing: .1em; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s-4) 2.4em var(--s-4) 0;
  font-weight: 700; font-size: 1.02rem; position: relative;
  display: flex; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35em; top: 50%; width: 12px; height: 12px;
  margin-top: -8px; border-right: 2px solid var(--ink-mute); border-bottom: 2px solid var(--ink-mute);
  transform: rotate(45deg); transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details p { padding: 0 0 var(--s-5); color: var(--ink-soft); max-width: 68ch; }
.faq details p + p { padding-top: 0; margin-top: -.6em; }
/* The chevron rotates smoothly and then the answer snaps in. Not animating
   height — that's layout — just softening the arrival. */
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }
.faq details[open] > p { animation: faq-in 260ms var(--ease-out) both; }
.faq details[open] > p + p { animation-delay: 60ms; }

/* ---------- Split feature ---------- */
.split { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .split--flip .split__media { order: 2; }
}
/* The ventana outline — a thin rosa line traced 8px outside the arch, like the
   painted border on the arched sign that sits on their cart. */
.split__media {
  border-radius: var(--r-arch); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4/5;
  outline: 1.5px solid var(--rosa); outline-offset: 8px;
}
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Gallery ---------- */
.gallery { columns: 2; column-gap: var(--s-3); }
@media (min-width: 700px) { .gallery { columns: 3; column-gap: var(--s-4); } }
@media (min-width: 1040px) { .gallery { columns: 4; } }
.gallery figure {
  margin: 0 0 var(--s-3); break-inside: avoid; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-1); background: var(--oat-deep); position: relative;
}
.gallery img { width: 100%; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4em .8em .7em; color: #fff;
  font-size: var(--t-xs); font-weight: 600;
  background: linear-gradient(to top, rgba(43,26,20,.78), rgba(43,26,20,0));
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }
/* On touch there is no hover, so every caption — "Quinceañera in Orange",
   "School event, Anaheim" — was invisible to the people this site is for.
   That text is social proof, not decoration. */
@media (hover: none) {
  .gallery figcaption { opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding-block: var(--s-4); background: var(--ink); color: var(--bg); }
.marquee__track { display: flex; gap: var(--s-6); width: max-content; animation: slide 34s linear infinite; }
.marquee span {
  font-family: var(--display); font-size: 1.16rem; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center; gap: var(--s-6);
}
.marquee span::after { content: "❤"; color: var(--rosa); font-size: .8em; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--ink); color: var(--oat); padding: var(--s-8) var(--s-5); text-align: center;
}
.cta-band h2 { font-size: var(--t-h1); color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: var(--s-3); max-width: 48ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: var(--s-5); justify-content: center; }
.cta-band__glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,198,206,.28), transparent 68%);
  top: -180px; right: -120px; pointer-events: none;
}

/* ---------- Footer ---------- */
.footer { background: var(--oat-deep); border-top: 1px solid var(--line); padding-block: var(--s-7) var(--s-5); }
.footer__grid { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { font-family: var(--sans); font-size: var(--t-xs); font-weight: 700; letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--ink-mute); margin-bottom: var(--s-3); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55em; }
.footer a { color: var(--ink-soft); text-decoration: none; font-size: var(--t-sm); }
.footer a:hover { color: var(--ink); text-decoration: underline; }
.footer__brand img { width: 54px; margin-bottom: var(--s-3); }
.footer__tag { font-family: var(--display); font-size: 1.1rem; font-style: italic; color: var(--ink-soft); }
.footer__legal {
  margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between;
  font-size: var(--t-xs); color: var(--ink-mute);
}
.social { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.social a:hover { background: var(--ink); color: var(--bg); }
.social svg { width: 20px; height: 20px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  padding: var(--s-3) var(--gutter) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex; gap: var(--s-3); align-items: center;
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.sticky-cta.is-on { transform: none; }
.sticky-cta .btn { flex: 1; }
.sticky-cta__price { font-size: var(--t-xs); color: var(--ink-mute); line-height: 1.25; }
.sticky-cta__price b { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
@media (min-width: 880px) { .sticky-cta { display: none; } }
body.has-sticky { padding-bottom: 84px; }
@media (min-width: 880px) { body.has-sticky { padding-bottom: 0; } }

/* ---------- Reveal on scroll ----------
   Scoped to .js (set by an inline script in <head>). Without it the content
   would sit at opacity:0 forever if the script ever fails to run — a blank
   page is a much worse failure than a missing animation. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
/* At three-up the cards arrive as one slab. A 70ms step gives a left-to-right
   rhythm that lands the eye on the featured middle card. Scoped to the 3-col
   breakpoint: stacked on mobile they already trigger one at a time. */
@media (min-width: 940px) {
  .js .grid--3 > .reveal:nth-child(3n+2) { transition-delay: 70ms; }
  .js .grid--3 > .reveal:nth-child(3n+3) { transition-delay: 140ms; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .drink, .gallery img, .drink__img img { transition: none; }
  /* These four escaped the preference entirely. The drawer especially — a
     full-screen 520ms slide is exactly the motion this setting exists for.
     transition:none also drops its visibility delay, which is right: it
     should simply appear. */
  .skip-link, .drawer, .sticky-cta, .faq summary::after { transition: none; }
  .drawer nav a, .drawer .btn { opacity: 1; transform: none; transition: none; }
  .faq details[open] > p { animation: none; }
}
