/* =================================================================
   Manna Patisserie — styles.css
   STRICT 5-colour brand palette only:
     #f8f8f4 ivory  ·  #3b3b3b charcoal  ·  #345c63 teal
     #e5b843 gold   ·  #d8b185 tan
   (White/black used only for photo overlays & shadows, as the brand
    site itself does.) Fonts match the brand: Playfair Display,
    Cormorant Garamond, Poppins.
   Sections: 1) Tokens 2) Base 3) Layout 4) Buttons 5) Header/Logo
   6) Hero 7) Intro 8) Story 9) Menu 10) Banner 11) Specials
   12) Order 13) Gallery 14) Instagram 15) Tasting 16) FAQ
   17) Footer 18) Responsive 19) Motion
   ================================================================= */

/* -------------------- 1. Tokens -------------------------------- */
:root {
  --ivory:    #f8f8f4;
  --charcoal: #3b3b3b;
  --teal:     #345c63;
  --gold:     #e5b843;
  --tan:      #d8b185;

  /* Semantic */
  --bg:    var(--ivory);
  --ink:   var(--charcoal);
  --line:  rgba(59, 59, 59, 0.14);
  --muted: rgba(59, 59, 59, 0.78);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-accent:  "Cormorant Garamond", Georgia, serif;
  --font-body:    "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1160px;
  --radius: 4px;         /* crisp, boutique — not bubbly */
  --shadow: 0 24px 50px -28px rgba(52, 92, 99, 0.45);
  --shadow-sm: 0 12px 30px -18px rgba(59, 59, 59, 0.4);
  --section-y: clamp(3.75rem, 7.5vw, 7rem);
}

/* -------------------- 2. Base ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; color: var(--muted); }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

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

.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: 12px; top: -48px; z-index: 200;
  background: var(--teal); color: var(--ivory); padding: .6rem 1rem; border-radius: 3px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--ivory); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* -------------------- 3. Layout -------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }

.section__head { max-width: 660px; margin: 0 auto clamp(2.25rem, 4vw, 3.25rem); text-align: center; }
.section__sub { font-size: 1.05rem; }

/* Eyebrow — Poppins, tracked caps */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--sm { margin-bottom: .5rem; }

/* Accents use the elegant Cormorant italic for a patisserie feel */
.accent, .accent-gold { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.accent { color: var(--teal); }
.accent-gold { color: var(--gold); }

/* -------------------- 4. Buttons ------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .95rem 1.7rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold — primary accent CTA (as used on the brand site) */
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--teal); color: var(--ivory); }

/* Teal — solid secondary */
.btn--teal { background: var(--teal); color: var(--ivory); }
.btn--teal:hover { background: var(--gold); color: var(--charcoal); }

/* Outline CTA variants — empty fill, coloured outline, fill on hover */
/* Products (4): gold outline, black text  →  teal fill, white text on hover */
.btn--gold-line { background: transparent; color: var(--charcoal); border-color: var(--gold); }
.btn--gold-line:hover { background: var(--teal); color: var(--ivory); border-color: var(--teal); }
/* Donuts: black outline, black text  →  teal fill, white text on hover */
.btn--cta-donuts { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--cta-donuts:hover { background: var(--teal); color: var(--ivory); border-color: var(--teal); }
/* Tasting: white outline, white text  →  gold fill, teal text on hover */
.btn--cta-tasting { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn--cta-tasting:hover { background: var(--gold); color: var(--teal); border-color: var(--gold); }

/* Outline */
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--ivory); }
.btn--on-dark { color: var(--ivory); border-color: rgba(248, 248, 244, .55); }
.btn--on-dark:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }

.btn--lg { padding: 1.1rem 2.2rem; font-size: .95rem; }
.btn--sm { padding: .7rem 1.25rem; font-size: .78rem; }
.btn--block { width: 100%; }
.btn--pill { padding: .7rem 1.35rem; }

/* Tags on photos */
.tag {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 2px;
  background: var(--ivory); color: var(--charcoal);
}
.tag--gold { background: var(--gold); color: var(--charcoal); }

/* -------------------- 5. Header + Logo ------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #f8f9f4;                 /* solid, matches the logo's background exactly */
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }

/* Logo images (square brand mark; backgrounds match nav ivory / footer teal) */
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--teal); }
.brand__img { display: block; height: 78px; width: auto; }
.brand__img--footer { height: 212px; }
.brand__emblem { color: var(--teal); flex: none; width: 42px; height: 42px; }
.brand__emblem svg { width: 100%; height: 100%; }
.brand__monogram {
  font-family: var(--font-display); font-weight: 700; font-size: 44px;
  fill: currentColor; text-anchor: middle; dominant-baseline: central;
}
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--charcoal); letter-spacing: .02em;
}
.brand__sub {
  font-family: var(--font-body); font-weight: 500; font-size: .62rem;
  letter-spacing: .42em; text-transform: uppercase; color: var(--teal);
  margin-top: .18rem;
}
.brand--light { color: var(--gold); }
.brand--light .brand__emblem { color: var(--gold); }
.brand--light .brand__name { color: var(--ivory); }
.brand--light .brand__sub { color: var(--gold); }

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__menu a {
  color: var(--charcoal); font-weight: 400; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}
.nav__menu a:hover { color: var(--gold); }
.nav__cta { color: var(--charcoal); }
.nav__cta:hover { color: var(--gold); }
/* Keep the open dropdown's toggle highlighted too */
.order-dd[open] .nav__cta { color: var(--gold); }

.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.nav__bars, .nav__bars::before, .nav__bars::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--charcoal); transition: transform .25s ease, opacity .2s ease;
}
.nav__bars { top: 21px; }
.nav__bars::before { top: -7px; }
.nav__bars::after { top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- 6. Hero ---------------------------------- */
.hero {
  position: relative; min-height: min(92vh, 780px);
  display: flex; align-items: center;
  background-image: url("../assets/container03.jpg");
  background-repeat: no-repeat;
  background-position: 50% 30%;
  background-size: cover;              /* mobile: fill (tall image crops top/bottom) */
  color: var(--ivory); text-align: center;
}
/* Desktop: zoom slightly + nudge right so the loaves bleed on BOTH edges */
@media (min-width: 901px) {
  .hero { background-size: 116% auto; background-position: 58% 34%; }
}
.hero__overlay {
  position: absolute; inset: 0;
  /* Light, bottom-weighted scrim — keeps the photo vivid, text stays legible via shadows */
  background: linear-gradient(180deg, rgba(52,92,99,.12) 0%, rgba(59,59,59,.20) 42%, rgba(59,59,59,.52) 100%);
}
.hero__inner { position: relative; z-index: 1; isolation: isolate; max-width: 760px; padding-block: 6rem; }
/* Feathered brand-teal scrim behind the copy only — keeps the rest of the photo vivid.
   isolation:isolate on the parent keeps this z-index:-1 layer above the photo/overlay
   but behind the text (without it, the scrim escapes behind the hero image entirely). */
.hero__inner::before {
  content: ""; position: absolute; z-index: -1;
  inset: 4% -8%;
  background: radial-gradient(ellipse at center,
    rgba(59,59,59,.52) 0%, rgba(59,59,59,.34) 48%, rgba(59,59,59,0) 76%);
  filter: blur(8px);
}
.hero__kicker {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .3em;
  font-size: .72rem; font-weight: 500; color: var(--gold); margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.hero__title {
  color: var(--ivory); letter-spacing: .04em; margin-bottom: .4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.45), 0 4px 26px rgba(0,0,0,.5);
}
.hero__tagline {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ivory); margin-bottom: 1.4rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.hero__lede {
  font-size: 1.1rem; color: rgba(248,248,244,.92); max-width: 46ch; margin: 0 auto 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); }
.hero__scroll span {
  display: block; width: 22px; height: 34px; border: 2px solid rgba(248,248,244,.7); border-radius: 12px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px;
  background: var(--gold); transform: translateX(-50%); animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100%{opacity:0;transform:translate(-50%,0)} 50%{opacity:1;transform:translate(-50%,6px)} }

/* -------------------- 7. Intro strip --------------------------- */
.intro { background: var(--teal); color: var(--ivory); }
.intro__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}
.intro__item { text-align: center; }
.intro__k {
  display: block; font-family: var(--font-accent); font-style: italic;
  font-size: 1.55rem; color: var(--gold); margin-bottom: .3rem;
}
.intro__item p { color: rgba(248,248,244,.85); margin: 0; font-size: .95rem; }

/* -------------------- 8. Story --------------------------------- */
.story__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__media { margin: 0; position: relative; }
.story__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story__media::before {
  content: ""; position: absolute; inset: -14px -14px 14px 14px; z-index: -1;
  border: 1px solid var(--tan); border-radius: var(--radius);
}
.story__signature { font-family: var(--font-accent); font-style: italic; font-size: 1.3rem; color: var(--teal); margin: 1.2rem 0 1.6rem; }

/* -------------------- 9. Menu ---------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { position: relative; margin: 0; overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__price { font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; color: var(--gold); margin: 0; }
.card__flavours { font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; line-height: 1.3; color: var(--teal); margin: .35rem 0 0; }
.card__cta { margin-top: auto; }   /* pushes the order button to the bottom, aligned across cards */

.card--plain { background: var(--tan); border-color: transparent; }
.card--plain .card__body { justify-content: center; }
.card--plain h3, .card--plain .card__price { color: var(--charcoal); }
.card--plain .card__price { color: rgba(59,59,59,.75); }
.card--plain .btn { margin-top: 1rem; align-self: flex-start; }

.card--cta { background: var(--teal); color: var(--ivory); border-color: transparent; }
.card--cta .card__body { justify-content: center; }
.card--cta h3 { color: var(--ivory); }
.card--cta p { color: rgba(248,248,244,.85); }

/* -------------------- 10. Banner ------------------------------- */
.banner {
  position: relative; background: url("../assets/container04.jpg") center 60% / cover fixed no-repeat;
  min-height: 340px; display: flex; align-items: center; color: var(--ivory);
}
/* Light, center-weighted scrim — keeps the loaves vivid, quote stays legible via shadows */
.banner__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 95% 85% at 50% 50%, rgba(59,59,59,.5) 0%, rgba(59,59,59,.28) 55%, rgba(59,59,59,.12) 100%);
}
.banner__quote { position: relative; text-align: center; margin: 0 auto; }
.banner__quote p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ivory); margin: 0 0 .5rem; text-shadow: 0 1px 2px rgba(0,0,0,.45), 0 4px 26px rgba(0,0,0,.5); }
.banner__quote cite { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--gold); text-shadow: 0 1px 10px rgba(0,0,0,.6); }

/* -------------------- 11. Specials ----------------------------- */
.specials { background: var(--charcoal); color: var(--ivory); }
.specials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.specials h2 { color: var(--ivory); }
.specials__subhead { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--gold); margin: 0 0 1.1rem; }
.specials p { color: rgba(248,248,244,.82); }
.specials__flavours { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.specials__flavours li { position: relative; padding-left: 1.3rem; color: rgba(248,248,244,.82); }
.specials__flavours li::before { content: "✦"; position: absolute; left: 0; top: .12rem; color: var(--gold); font-size: .8rem; }
.specials__flavours strong { color: var(--gold); font-weight: 600; }
.specials__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.specials__media { margin: 0; }
.specials__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* -------------------- 12. Order -------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step { background: var(--ivory); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 2rem 1.6rem; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--tan); display: block; margin-bottom: .5rem; }
.step h3 { margin-bottom: .3rem; }
.step p { margin: 0; }
.order__cta { text-align: center; margin-top: 2.75rem; }
.order__note { font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; margin-top: 1rem; color: var(--teal); }

/* -------------------- 13. Gallery ------------------------------ */
/* Normalized 3 x 2 grid of six equal tiles */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 1rem; }
.tile { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.06); }

/* -------------------- 14. Instagram ---------------------------- */
.insta { background: var(--tan); text-align: center; }
.insta__inner { max-width: 640px; margin: 0 auto; }
.insta__glyph { width: 40px; height: 40px; color: var(--teal); margin: 0 auto 1.1rem; }
.insta h2 { color: var(--charcoal); }
.insta__handle { color: rgba(59,59,59,.8); margin-bottom: 1.8rem; }
/* Live Instagram feed — identical fixed-size embed cards */
.insta__feed {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
  margin-top: 2.75rem;
}
.ig-embed {
  flex: 0 0 auto; width: 340px; height: 560px; max-width: 100%;
  border: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--ivory); box-shadow: var(--shadow-sm);
}

/* -------------------- 15. Tasting ------------------------------ */
.tasting { background: var(--ivory); }
.tasting__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  background: var(--teal); color: var(--ivory); border-radius: var(--radius);
  padding: clamp(2rem, 4.5vw, 3.5rem); box-shadow: var(--shadow);
}
.tasting__copy h2 { color: var(--ivory); }
.tasting__copy p { color: rgba(248,248,244,.85); margin: 0; }
.tasting__form { display: flex; flex-wrap: wrap; gap: .8rem; }
.tasting__form input {
  flex: 1 1 220px; padding: 1rem 1.1rem; border-radius: var(--radius);
  border: 1.5px solid transparent; font: inherit; background: var(--ivory); color: var(--charcoal);
}
.tasting__form input::placeholder { color: rgba(59,59,59,.55); }
.tasting__form input:focus { border-color: var(--gold); outline: none; }
.tasting__msg { flex-basis: 100%; margin: .2rem 0 0; font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; color: var(--gold); }

/* -------------------- 16. FAQ ---------------------------------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.faq__head { position: sticky; top: 108px; align-self: start; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  cursor: pointer; list-style: none; padding: 1.25rem 0; font-family: var(--font-display);
  font-weight: 600; color: var(--charcoal); font-size: 1.15rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { padding-bottom: 1.25rem; margin: 0; }

/* -------------------- 17. Footer ------------------------------- */
.footer { background: var(--teal); color: var(--ivory); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248,248,244,.14); }
.footer__brand .brand { display: inline-block; margin-bottom: 1rem; }
.footer__tag { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--gold); margin: 1rem 0 .3rem; }
.footer__meta { color: var(--gold); font-size: .9rem; }
.footer__col h4 { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .6rem; }
.footer__col a { color: rgba(248,248,244,.8); font-size: .92rem; }
.footer__col a:hover { color: var(--gold); }
/* Contact list: white line-icons aligned with each link */
.footer__contact a { display: inline-flex; align-items: center; gap: .6rem; }
.footer__ico { width: 17px; height: 17px; flex: none; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-block: 1.5rem 2rem; font-size: .82rem; color: rgba(248,248,244,.55); }
.footer__bottom p { margin: 0; color: inherit; }

.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: var(--ivory); box-shadow: 0 12px 30px -8px rgba(0,0,0,.5);
  transition: transform .18s ease, background .2s ease;
}
.fab:hover { transform: scale(1.08); background: var(--gold); color: var(--charcoal); }

/* ===== Order Now dropdown (native <details>) ===================== */
.order-dd { position: relative; display: inline-block; }
.order-dd > summary { list-style: none; cursor: pointer; }
.order-dd > summary::-webkit-details-marker { display: none; }
.order-dd > summary::marker { content: ""; }
.order-dd__caret { width: .62em; height: .62em; margin-left: .55rem; transition: transform .2s ease; }
.order-dd[open] .order-dd__caret { transform: rotate(180deg); }
.order-dd__menu {
  position: absolute; top: calc(100% + .5rem); left: 0; z-index: 130;
  min-width: 232px; padding: .4rem; display: grid; gap: .1rem;
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.order-dd--right .order-dd__menu { left: auto; right: 0; }
.order-dd--up .order-dd__menu { top: auto; bottom: calc(100% + .5rem); }
.order-dd__menu a {
  display: block; padding: .7rem .9rem; border-radius: 4px; text-align: left;
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  letter-spacing: normal; text-transform: none; color: var(--charcoal); white-space: nowrap;
}
.order-dd__menu a:hover { background: var(--teal); color: var(--ivory); }

/* Floating order button */
.fab-order { position: fixed; right: 18px; bottom: 18px; z-index: 90; }
.fab-order > summary {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: var(--ivory); box-shadow: 0 12px 30px -8px rgba(0,0,0,.5);
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.fab-order > summary:hover { transform: scale(1.08); background: var(--gold); color: var(--charcoal); }
.fab-order[open] > summary { background: var(--gold); color: var(--charcoal); }

/* -------------------- 18. Responsive --------------------------- */
@media (max-width: 900px) {
  .story__grid, .specials__grid, .faq__grid, .tasting__inner { grid-template-columns: 1fr; }
  .specials__media { order: -1; }
  .story__media { max-width: 460px; margin-inline: auto; }
  .faq__head { position: static; }
  .steps { grid-template-columns: 1fr; }
  .intro__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Collapse nav to hamburger */
  .nav__toggle { display: block; }
  /* Slightly smaller header/logo on mobile so it doesn't dominate */
  .header-inner { height: 72px; }
  .brand__img { height: 56px; }
  .nav__menu {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--shadow); display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border-bottom: 0; padding-top: .9rem; }
  .nav__menu a { display: block; padding: .95rem 0; }
  .nav__cta { text-align: center; }
  /* Order dropdown expands inline inside the mobile panel instead of overlaying */
  .nav .order-dd { display: block; }
  .nav .order-dd > summary { justify-content: flex-start; }
  .nav .order-dd__menu { position: static; min-width: 0; padding: .2rem 0 .5rem; background: transparent; border: 0; box-shadow: none; }
  .nav .order-dd__menu a { padding: .7rem 0 .7rem 1rem; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  /* Fixed backgrounds are janky on mobile */
  .banner { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; }
  .brand__name { font-size: 1.3rem; }
}

/* -------------------- 19. Motion ------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span::after { animation: none; }
  * { animation-duration: .001ms !important; }
}
