/* ─────────────────────────────────────────
   Busy Beans · Editorial redesign
   Type: Fraunces (display) · Outfit (UI) · Libre Baskerville (eyebrow)
   ───────────────────────────────────────── */

:root {
  /* Base brand */
  --cream: #faf7f0;
  --cream-2: #f1ead9;
  --sand: #ede4d3;
  --bone: #fffdf6;
  --honey: #d4a574;
  --honey-deep: #c9963f;
  --honey-glow: #e8b04b;
  --brown: #8b5a3c;
  --espresso: #2b1810;
  --espresso-2: #1b0e07;
  --ink: #261812;
  --line: rgba(43, 24, 16, 0.12);
  --line-soft: rgba(43, 24, 16, 0.06);

  /* Accent palette swappable via tweak */
  --accent: var(--honey-deep);
  --accent-soft: var(--honey);

  --font-display: "Fraunces", "Cormorant Garamond", serif;
  --font-eyebrow: "Libre Baskerville", "Georgia", serif;
  --font-body: "Outfit", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1380px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
}

[data-accent="forest"] {
  --accent: #3f5d4d;
  --accent-soft: #6f8b7a;
}
[data-accent="blush"] {
  --accent: #b4685c;
  --accent-soft: #d49a8e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--cream); }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Typography primitives ─────────────────── */
.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  color: var(--espresso);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

h1.display { font-size: clamp(3.4rem, 9.2vw, 8.5rem); }
h2.display { font-size: clamp(2.4rem, 6.4vw, 5.6rem); line-height: 0.98; }
h3.display { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; }

.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  font-variation-settings: "opsz" 24;
}

.fine {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s, box-shadow .35s;
  white-space: nowrap;
}
.btn .arr {
  width: 14px; height: 14px;
  display: inline-block; position: relative;
}
.btn .arr::before {
  content: ""; position: absolute; inset: 50% 0 auto 0;
  height: 1px; background: currentColor;
  transform: translateY(-50%);
}
.btn .arr::after {
  content: ""; position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arr::before { animation: arrSlide .8s ease infinite; }
@keyframes arrSlide { 0%,100%{opacity:1;transform:translateY(-50%) scaleX(1);} 50%{opacity:.4;transform:translateY(-50%) scaleX(1.3);} }

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(43,24,16,.5);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
.btn-ghost.on-dark { color: var(--cream); border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { background: var(--cream); color: var(--espresso); }
.btn-light {
  background: var(--cream);
  color: var(--espresso);
}
.btn-light:hover { background: var(--accent); color: var(--cream); transform: translateY(-2px); }

/* ── Nav ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(14px);
  padding: 0.7rem var(--pad);
  border-bottom-color: var(--line-soft);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 2.2rem; flex: 1; }
.nav-right { justify-content: flex-end; }
.nav-center { flex-shrink: 0; }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.nav-logo .mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-logo .mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo .ampersand {
  color: var(--accent);
  font-weight: 300;
}

.nav-links { display: flex; gap: 1.7rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .25s;
}
.nav-cta:hover { background: var(--accent); }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--espresso);
  transition: all .3s ease;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-left { gap: 0; }
  .nav-right { gap: 0.8rem; }
  .menu-toggle { display: flex; }
}

/* ── Mobile menu ───────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--espresso);
  color: var(--cream);
  display: flex; flex-direction: column;
  padding: 5rem var(--pad) 2rem;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,.1,.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 350;
  color: var(--cream);
}
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: var(--pad);
  font-size: 2rem; color: var(--cream);
}

/* ── Hero ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem var(--pad) 4rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-text {
  position: relative;
  z-index: 2;
  padding-right: 1rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.8rem;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-eyebrow .rule { flex: 1; height: 1px; background: currentColor; opacity: 0.3; max-width: 80px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3.4rem, 8.4vw, 8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 2.2rem;
  padding-bottom: 0.2em;
}
.hero h1 .row { display: block; padding-bottom: 0.04em; }
.hero h1 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero h1 .underlined {
  position: relative;
  display: inline-block;
}
.hero h1 .underlined::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.12em;
  background: var(--accent-soft);
  opacity: 0.45;
  z-index: -1;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44ch;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0.85;
}
.hero-cta {
  display: flex; gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}
.hero-trust .star {
  color: var(--accent);
  letter-spacing: 2px;
  margin-right: 0.4rem;
}
.hero-trust .pipe { opacity: 0.3; }

.hero-media {
  position: relative;
  height: min(78vh, 760px);
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 80px -32px rgba(43,24,16,.35);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(.95);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}
.hero-media.animate img { transform: scale(1.0); }

.hero-floating-card {
  position: absolute;
  left: -3rem;
  bottom: 3rem;
  background: var(--bone);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  border-radius: 2px;
  box-shadow: 0 28px 60px -20px rgba(43,24,16,.35);
  z-index: 3;
  max-width: 290px;
}
.hero-floating-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand);
  overflow: hidden; flex-shrink: 0;
}
.hero-floating-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-card .qf-rate { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; }
.hero-floating-card .qf-text {
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem;
  line-height: 1.35; color: var(--espresso); font-weight: 350;
}
.hero-floating-card .qf-meta {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown); margin-top: 0.3rem;
}

/* honey-drip pseudo SVG for italic word */
.honey-drip { position: relative; display: inline-block; padding-bottom: 0.06em; }
.honey-drip::after {
  content: "";
  position: absolute; left: 50%; bottom: 0.02em;
  width: 60%; height: 0.06em;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: dripLine 3s ease-in-out 1.2s forwards;
}
@keyframes dripLine { to { transform: translateX(-50%) scaleX(1); } }

/* Hero decorative orbs */
.hero-orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  top: -8%; right: 40%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,176,75,0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-orb-2 {
  bottom: -10%; left: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,165,116,0.16), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0.7;
}
.scroll-cue .line {
  width: 1px; height: 38px; background: var(--brown);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollGleam 2.4s ease-in-out infinite;
}
@keyframes scrollGleam { 0% { top: -100%; } 100% { top: 100%; } }

/* Hero variants */
[data-hero="fullbleed"] .hero {
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding: 7rem var(--pad) 5rem;
  background:
    linear-gradient(180deg, rgba(20,10,5,.35) 0%, rgba(20,10,5,.55) 60%, rgba(20,10,5,.8) 100%),
    url("assets/img_event5.jpg") center 30% / cover no-repeat;
  color: var(--cream);
}
[data-hero="fullbleed"] .hero-text {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}
[data-hero="fullbleed"] .hero-eyebrow {
  justify-content: center;
  color: var(--cream);
  opacity: 0.85;
}
[data-hero="fullbleed"] .hero h1 { color: var(--cream); }
[data-hero="fullbleed"] .hero h1 .italic { color: var(--honey-glow); }
[data-hero="fullbleed"] .hero-sub { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
[data-hero="fullbleed"] .hero-cta { justify-content: center; }
[data-hero="fullbleed"] .hero-trust { color: rgba(255,255,255,.7); justify-content: center; }
[data-hero="fullbleed"] .hero-media { display: none; }
[data-hero="fullbleed"] .hero-floating-card { display: none; }
[data-hero="fullbleed"] .hero h1 .underlined::after { background: var(--honey-glow); }

[data-hero="centered"] .hero {
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding-top: 8rem;
  text-align: center;
}
[data-hero="centered"] .hero-text { max-width: 920px; margin: 0 auto; padding: 0; text-align: center; }
[data-hero="centered"] .hero-eyebrow { justify-content: center; }
[data-hero="centered"] .hero-sub { margin-left: auto; margin-right: auto; }
[data-hero="centered"] .hero-cta { justify-content: center; }
[data-hero="centered"] .hero-trust { justify-content: center; }
[data-hero="centered"] .hero-media {
  grid-column: 1 / -1;
  width: 100%;
  height: 55vh;
  margin-top: 2rem;
}
[data-hero="centered"] .hero-floating-card { display: none; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; padding-bottom: 3rem; }
  .hero-media { height: 60vh; order: -1; }
  .hero-floating-card { left: 0.5rem; bottom: 0.5rem; transform: scale(.9); transform-origin: bottom left; }
  .scroll-cue { display: none; }
}

/* ── Marquee ─────────────────────────────────── */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item .sep {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Generic section ─────────────────────────── */
section { position: relative; }
.section {
  padding: clamp(4.5rem, 9vw, 9rem) var(--pad);
}
.section.tight { padding: clamp(3rem, 6vw, 6rem) var(--pad); }
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head.stacked { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section-head .lede { margin-top: 1rem; }

/* ── About ─────────────────────────── */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--cream);
  color: var(--espresso);
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.about-img-cluster {
  position: relative;
  padding-right: clamp(0rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}
.about-img-cluster .small {
  position: absolute;
  right: 0; bottom: 0;
  width: clamp(140px, 38%, 220px);
  aspect-ratio: 3/4;
  border: 8px solid var(--cream);
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(43,24,16,.35);
}
.about-img-cluster .small img { width: 100%; height: 100%; object-fit: cover; }
.about-body p {
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
  opacity: 0.92;
  max-width: 56ch;
}
.about-body p.first-line {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--espresso);
  margin-bottom: 1.6rem;
  max-width: 26ch;
  font-style: italic;
}
.signature {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.signature .by {
  display: block;
  font-family: var(--font-eyebrow);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.4rem;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-cluster { padding-right: 2rem; padding-bottom: 0; }
  .about-img-cluster .small { right: 0; bottom: -1.5rem; width: 45%; }
}

/* ── Offerings (event types) ──────────────────── */
.offerings {
  background: var(--cream);
  position: relative;
}
.offerings::before {
  content: ""; position: absolute; inset: 0 var(--pad);
  border-top: 1px solid var(--line-soft);
  top: 0;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.offering {
  position: relative;
  padding: 2rem 0 0;
  border-right: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background .4s ease;
}
.offering:last-child { border-right: none; }
.offering:hover { background: rgba(212,165,116,0.06); }
.offering-num {
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--brown);
  margin: 0 1.8rem;
}
.offering-img {
  margin: 1.5rem 1.8rem;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.offering-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.offering:hover .offering-img img { transform: scale(1.05); }
.offering-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4));
}
.offering-body { padding: 0 1.8rem 2.5rem; }
.offering h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 2rem;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin-bottom: 0.6rem;
  line-height: 1.05;
}
.offering h3 em { font-style: italic; color: var(--accent); font-weight: 300; }
.offering p {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 1.2rem;
  max-width: 38ch;
}
.offering-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}
.offering-tags span {
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

@media (max-width: 880px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .offering { border-right: none; border-bottom: 1px solid var(--line-soft); padding-bottom: 1rem; }
}

/* ── Cart showcase (split layout) ─────────────── */
.cart-showcase {
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
}
.cart-showcase .eyebrow { color: var(--honey-glow); }
.cart-showcase h2.display { color: var(--cream); }
.cart-showcase h2.display em { color: var(--honey-glow); }

.cart-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* Photo column */
.cart-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s ease-out;
}
.cart-photo:hover img { transform: scale(1.03); }
.cart-photo-tag {
  position: absolute;
  bottom: 1.8rem; left: 1.8rem;
  background: rgba(27,14,7,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.3rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
}
.cart-photo-tag p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  margin-top: 0.3rem;
}

/* Body column */
.cart-body h2 { margin-bottom: 1rem; }

.cart-checklist {
  list-style: none;
  margin-top: 2rem;
}
.cart-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-checklist li:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}
.cart-check {
  color: var(--honey-glow);
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-weight: 700;
}
.cart-checklist h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.cart-checklist p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .cart-split { grid-template-columns: 1fr; }
  .cart-photo { aspect-ratio: 3 / 2; }
  .cart-photo-tag { bottom: 1rem; left: 1rem; }
}

/* ── Menu ───────────────────────────────────── */
.menu-section {
  background: var(--cream);
  position: relative;
}
/* ── Menu tabs ───────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line-soft);
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.menu-tab {
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  background: none;
  border: none;
  padding: 0.9rem 2.5rem 0.9rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menu-tab.active { color: var(--espresso); }
.menu-tab.active::after { transform: scaleX(1); }
.menu-tab:hover:not(.active) { color: var(--accent); }

/* ── Menu panels ──────────────────────────── */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-panel-sub {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-soft);
}
.menu-panel-sub.secondary { margin-top: 2.5rem; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 5vw, 6rem);
}
.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-item:last-child,
.menu-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

.menu-item-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.35rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: -0.005em;
  flex: 1;
  min-width: 0;
}
.menu-item-name em {
  font-style: italic;
  color: var(--accent);
}
.menu-item-temp {
  font-family: var(--font-eyebrow);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--bone);
  border: 1px solid var(--line-soft);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 0.86rem;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.55;
}

.menu-side {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--bone);
  border: 1px solid var(--line-soft);
}
.menu-side h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 1.8rem;
  color: var(--espresso);
  margin-bottom: 0.8rem;
}
.menu-side p { font-size: 0.95rem; color: var(--ink); opacity: 0.8; }
.menu-side .syrups {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1rem;
}
.menu-side .syrups span {
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.08em;
  color: var(--brown);
}
@media (max-width: 880px) {
  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { padding: 0.75rem 1.8rem 0.75rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line-soft); }
  .menu-side { grid-template-columns: 1fr; }
}

/* ── Experience timeline ──────────────────── */
.experience {
  background: var(--cream-2);
  position: relative;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.exp-grid::before {
  content: ""; position: absolute;
  top: 2.6rem; left: 8%; right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.exp-step {
  padding: 0 1.3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.exp-step .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.exp-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}
.exp-step p {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.78;
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .exp-grid::before { display: none; }
}

/* ── Gallery (editorial scroller) ──────────── */
.gallery-section {
  background: var(--cream);
  padding-top: 0;
}
.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 28vw, 380px);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0 var(--pad) 3rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--honey) var(--cream);
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--cream-2); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--honey); }
.gallery-img {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sand);
}
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.gallery-img:hover img { transform: scale(1.05); }
.gallery-img .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.2rem 1rem;
  color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 100%);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.gallery-img.tall { aspect-ratio: 3/5; }
.gallery-img.wide { aspect-ratio: 5/4; }

/* ── Pricing ──────────────────────── */
.pricing {
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.pricing-factor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.pricing-factor:last-child { border-bottom: none; }
.pricing-factor .pnum {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  width: 60px;
}
.pricing-factor h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--espresso);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.pricing-factor p {
  font-size: 0.96rem;
  color: var(--ink);
  opacity: 0.82;
  line-height: 1.6;
}
.pricing-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 6rem;
}
.pricing-cta .eyebrow { color: var(--honey-glow); margin-bottom: 1.5rem; }
.pricing-cta h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.pricing-cta h3 em { font-style: italic; color: var(--honey-glow); font-weight: 300; }
.pricing-cta p {
  color: rgba(255,255,255,.82);
  margin-bottom: 1.6rem;
  font-size: 0.96rem;
}
.pricing-cta .quick-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pricing-cta .quick-stats .stat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--honey-glow);
  line-height: 1;
}
.pricing-cta .quick-stats small {
  font-family: var(--font-body);
  font-style: normal;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 0.5rem;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-cta { position: relative; top: 0; }
}

/* ── Team ──────────────────────── */
.team {
  background: var(--cream-2);
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.team-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-stamp {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
  line-height: 1.25;
  text-align: center;
  border: 1px solid var(--line);
  padding: 1.25rem;
  transform: rotate(-8deg);
}
.team-img-stamp small {
  display: block;
  font-family: var(--font-eyebrow);
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.4rem;
}
.team-body h2 { margin-bottom: 1.5rem; }
.team-body p {
  font-size: 1rem; color: var(--ink); opacity: 0.85;
  margin-bottom: 1rem;
  line-height: 1.65;
  max-width: 56ch;
}
.team-body .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--espresso);
  line-height: 1.4;
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  border-left: 1px solid var(--accent);
  max-width: 30ch;
}
.team-meta {
  display: flex; gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.team-meta .item {
  font-size: 0.85rem;
}
.team-meta .item strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.team-meta .item span {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ─────────────────────── */
.testimonials {
  background: var(--espresso);
  color: var(--cream);
}
.testimonials .eyebrow { color: var(--honey-glow); }
.testimonials .display { color: var(--cream); }
.testimonials .display em { color: var(--honey-glow); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.t-card {
  background: rgba(255,255,255,.04);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.t-card .qmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--honey-glow);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.t-card .stars {
  color: var(--honey-glow);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.t-card .text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.t-card .author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
}
.t-card .event {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-glow);
  margin-top: 0.3rem;
}
.g-review-bar {
  display: flex; align-items: center; gap: 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
.g-review-bar .icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.g-review-bar .meta { flex: 1; }
.g-review-bar .rate {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  display: flex; align-items: center; gap: 0.5rem;
}
.g-review-bar .stars { color: var(--honey-glow); letter-spacing: 2px; font-size: 0.95rem; }
.g-review-bar small { color: rgba(255,255,255,.7); font-size: 0.78rem; letter-spacing: 0.1em; }
.g-review-bar .cta {
  color: var(--honey-glow);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .t-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────── */
.faq-section { background: var(--cream); }
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: -0.005em;
  gap: 1rem;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all .35s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--espresso);
  transition: transform .35s ease;
}
.faq-q .plus::before { width: 10px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .plus { background: var(--accent); border-color: var(--accent); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: var(--cream); }
.faq-item.open .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-bottom .4s ease;
  font-size: 0.96rem;
  color: var(--ink);
  opacity: 0.82;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.6rem;
}

/* ── Booking ─────────────────────── */
.booking {
  background:
    linear-gradient(rgba(43,24,16,.55), rgba(43,24,16,.7)),
    url("assets/img1.jpg") center / cover no-repeat fixed;
  color: var(--cream);
  position: relative;
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.booking-left h2 { color: var(--cream); }
.booking-left h2 em { color: var(--honey-glow); }
.booking-left .lede { color: rgba(255,255,255,.85); }
.booking-left .eyebrow { color: var(--honey-glow); }
.booking-points {
  margin-top: 2rem;
  display: grid; gap: 1rem;
}
.booking-points .bp {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
}
.booking-points .bp .ic {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--honey-glow);
  color: var(--espresso);
  font-family: var(--font-display); font-style: italic;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.booking-points .bp h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
  font-weight: 400;
}
.booking-points .bp p {
  font-size: 0.85rem; color: rgba(255,255,255,.75); line-height: 1.5;
}

.booking-form {
  background: var(--cream);
  color: var(--espresso);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.booking-form h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 1.8rem;
  color: var(--espresso);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.booking-form h3 em { font-style: italic; color: var(--accent); font-weight: 300; }
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex; flex-direction: column;
}
.form-field label {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--espresso);
  outline: none;
  transition: border-color .25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-submit {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-fine {
  font-size: 0.74rem;
  color: var(--brown);
  letter-spacing: 0.06em;
  max-width: 32ch;
}
.form-success {
  background: var(--espresso);
  color: var(--cream);
  padding: 1rem 1.2rem;
  display: none;
  align-items: center;
  gap: 0.8rem;
}
.form-success.show { display: flex; }

@media (max-width: 880px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────── */
footer {
  background: var(--espresso-2);
  color: var(--cream);
  padding: 5rem var(--pad) 2rem;
}
.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 350;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.foot-brand p {
  font-size: 0.92rem; color: rgba(255,255,255,.7);
  max-width: 32ch; margin-bottom: 1rem; line-height: 1.6;
}
.foot-col h5 {
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--honey-glow);
  margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.7rem; }
.foot-col a {
  font-size: 0.92rem; color: rgba(255,255,255,.78);
  transition: color .2s;
}
.foot-col a:hover { color: var(--honey-glow); }
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,.5);
  letter-spacing: 0.1em;
}
.foot-bottom a:hover { color: var(--honey-glow); }
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Reveal ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .marquee-track, .hero-media img { transition: none; animation: none; transform: none; opacity: 1; }
}

/* Sticky inquire (mobile / lower screens) */
.sticky-cta {
  position: fixed;
  bottom: 1.2rem; right: 1.2rem;
  z-index: 90;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .35s, transform .35s;
}
.sticky-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta:hover { background: var(--accent); }
