/* ==========================================================================
   MOUZY — Franchise Site 2026
   Brand system: Kelly Green / Lemon / Warm Cream / Forest Ink (sampled from logo)
   ========================================================================== */

:root {
  /* Brand palette — sampled from the official Mouzy logo:
     lemon #F8F000, kelly green #008840 */
  --yellow: #F2E600;        /* brand lemon (UI-tamed) */
  --yellow-deep: #D8CC00;   /* pressed lemon */
  --yellow-soft: #FAF6C6;   /* pale lemon chip */
  --green: #008843;         /* brand green — primary accent */
  --green-deep: #006B34;
  --cream: #FCFBF1;
  --cream-deep: #F2EFD8;
  --ink: #0C2415;           /* forest ink */
  --ink-soft: #33513F;
  --ink-mute: #68806F;
  --leaf: #008843;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px -24px rgba(12, 36, 21, 0.18);
  --shadow-card: 0 12px 40px -16px rgba(12, 36, 21, 0.14);
  --maxw: 1180px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------------ */
/* Typography                                                          */
/* ------------------------------------------------------------------ */

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }

.display-xl { font-size: clamp(2.6rem, 6.2vw, 4.9rem); }
.display-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.display-md { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--yellow-soft);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 620px;
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .lede { margin-top: 18px; }

/* ------------------------------------------------------------------ */
/* Reveal animations                                                   */
/* ------------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 34px -14px rgba(12, 36, 21, 0.45);
}
.btn-primary:hover { background: #16402A; }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 34px -14px rgba(0, 136, 67, 0.35);
}
.btn-yellow:hover { background: var(--yellow-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(12, 36, 21, 0.18);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ------------------------------------------------------------------ */
/* Navigation                                                          */
/* ------------------------------------------------------------------ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(252, 251, 241, 0.85);
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  box-shadow: 0 1px 0 rgba(12, 36, 21, 0.07);
}

.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; }
.nav-logo svg { width: 34px; height: 34px; }
.nav-logo img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger span::before { position: absolute; top: -7px; }
.nav-burger span::after { position: absolute; top: 7px; }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  padding: 12px 24px 28px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-weight: 600; border-bottom: 1px solid rgba(12,36,21,0.06); }
.mobile-menu .btn { margin-top: 16px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 96px)) 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 600px at 82% -10%, rgba(248, 240, 0, 0.28), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(0, 136, 67, 0.07), transparent 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy h1 { margin: 0 0 22px; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-copy .lede { margin-bottom: 34px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(12, 36, 21, 0.08);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 6px 18px -10px rgba(12, 36, 21, 0.15);
}
.proof-pill strong { color: var(--ink); font-weight: 800; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(12, 36, 21, 0.16)); }
.hero-glass {
  width: min(74%, 400px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 34px 44px rgba(12, 36, 21, 0.28));
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-card .num { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.hero-card-1 { top: 8%; left: -4%; animation-delay: 0.4s; }
.hero-card-2 { bottom: 10%; right: -2%; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-card-1 { left: 0; }
  .hero-card-2 { right: 0; }
}

/* ------------------------------------------------------------------ */
/* Ticker                                                              */
/* ------------------------------------------------------------------ */

.ticker {
  margin-top: clamp(56px, 8vw, 96px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track span::after { content: "✦"; color: var(--yellow); font-size: 0.8rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------ */
/* Story / timeline                                                    */
/* ------------------------------------------------------------------ */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--yellow);
  position: relative;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}
.tl-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tl-card p { font-size: 0.94rem; color: var(--ink-soft); }

@media (max-width: 960px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* Pledge quote + ISO badge */
.pledge {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--yellow);
}
.pledge blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
}
.pledge cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.86rem; font-weight: 700; color: var(--ink-mute); }
.iso-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  white-space: nowrap;
}
.iso-badge svg { width: 44px; height: 44px; }
.iso-badge strong { display: block; font-size: 1rem; }
.iso-badge span { font-size: 0.8rem; color: var(--ink-mute); }

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

/* Story photos + brand film */
.story-photos {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}
.story-photos figure { margin: 0; }
.story-photos img {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}
.story-photos figcaption {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mute);
}
@media (max-width: 700px) { .story-photos { grid-template-columns: 1fr; } .story-photos img { height: 240px; } }

.brand-film {
  margin-top: clamp(32px, 5vw, 56px);
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}
.brand-film iframe { width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------------ */
/* The Drink                                                            */
/* ------------------------------------------------------------------ */

.drink { background: var(--ink); color: var(--cream); border-radius: clamp(28px, 4vw, 48px); margin: 0 clamp(8px, 2vw, 24px); }
.drink .eyebrow { background: rgba(248, 240, 0, 0.14); color: var(--yellow); }
.drink .lede { color: rgba(255, 249, 238, 0.72); }

.drink-grid {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 12px;
}
.drink-figure { margin: 0; }
.drink-figure img { width: 100%; max-width: 300px; filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.4)); }
@media (max-width: 900px) { .drink-grid { grid-template-columns: 1fr; } .drink-figure img { max-width: 220px; margin: 0 auto; } }

.ingredients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ing-card {
  background: rgba(255, 249, 238, 0.05);
  border: 1px solid rgba(255, 249, 238, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.ing-card:hover { transform: translateY(-6px); background: rgba(255, 249, 238, 0.08); }
.ing-card .ing-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.ing-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--yellow); }
.ing-card p { font-size: 0.9rem; color: rgba(255, 249, 238, 0.7); }

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

/* ------------------------------------------------------------------ */
/* Menu                                                                */
/* ------------------------------------------------------------------ */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.menu-card-visual {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--yellow-soft), var(--cream-deep));
}
.menu-card-visual svg { height: 140px; width: auto; }
.menu-card-visual img { height: 195px; width: auto; object-fit: contain; filter: drop-shadow(0 12px 16px rgba(12, 36, 21, 0.18)); }
.menu-card-body { padding: 22px 24px 26px; }
.menu-card-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.menu-card-body p { font-size: 0.92rem; color: var(--ink-soft); }
.menu-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.menu-lines {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.menu-line-chip {
  background: var(--white);
  border: 1.5px solid rgba(12, 36, 21, 0.1);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.menu-line-chip strong { color: var(--ink); }

@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Franchise                                                           */
/* ------------------------------------------------------------------ */

.franchise { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.fr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.fr-card .fr-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fr-card .fr-icon svg { width: 30px; height: 30px; }
.fr-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.fr-card p { font-size: 0.95rem; color: var(--ink-soft); }

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

/* Investment panel */
.invest-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.invest-panel h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px; }
.invest-panel .invest-note { font-size: 0.95rem; color: rgba(255, 249, 238, 0.66); margin-top: 20px; }

.invest-rows { display: flex; flex-direction: column; }
.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 249, 238, 0.12);
}
.invest-row:last-child { border-bottom: none; }
.invest-row .k { font-size: 0.95rem; color: rgba(255, 249, 238, 0.72); }
.invest-row .v { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--yellow); text-align: right; }

@media (max-width: 860px) { .invest-panel { grid-template-columns: 1fr; } }

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 6vw, 72px);
}
.step {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.86rem; color: var(--ink-soft); }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Stats counters                                                      */
/* ------------------------------------------------------------------ */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--ink);
}
.stat .stat-num .suffix { color: var(--green); }
.stat .stat-label { font-size: 0.92rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 700px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------------ */
/* Presence                                                            */
/* ------------------------------------------------------------------ */

.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.country-card .flag { font-size: 2rem; margin-bottom: 14px; display: block; }
.country-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.city-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--cream-deep);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 5px 12px;
}

@media (max-width: 960px) { .presence-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .presence-grid { grid-template-columns: 1fr; } }

.outlet-gallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.outlet-gallery figure { margin: 0; }
.outlet-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.outlet-gallery figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mute);
}
@media (max-width: 900px) { .outlet-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .outlet-gallery { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Testimonials                                                        */
/* ------------------------------------------------------------------ */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-card .stars { color: var(--green); letter-spacing: 3px; font-size: 0.95rem; }
.quote-card blockquote { font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.quote-card figcaption { font-weight: 700; font-size: 0.9rem; }
.quote-card figcaption span { display: block; font-weight: 500; color: var(--ink-mute); font-size: 0.82rem; }

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

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.96rem; }

/* ------------------------------------------------------------------ */
/* Apply form                                                          */
/* ------------------------------------------------------------------ */

.apply { background: var(--ink); color: var(--cream); border-radius: clamp(28px, 4vw, 48px); margin: 0 clamp(8px, 2vw, 24px) clamp(48px, 6vw, 80px); }
.apply .eyebrow { background: rgba(248, 240, 0, 0.14); color: var(--yellow); }
.apply .lede { color: rgba(255, 249, 238, 0.72); }

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.apply-aside ul { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.apply-aside li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; color: rgba(255, 249, 238, 0.85); }
.apply-aside li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }

.apply-contact { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255, 249, 238, 0.14); font-size: 0.95rem; line-height: 1.9; color: rgba(255, 249, 238, 0.72); }
.apply-contact a { color: var(--yellow); font-weight: 600; }
.apply-mascot { width: 170px; margin-top: 32px; }

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(12, 36, 21, 0.14);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 136, 67, 0.16);
}
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form-success.is-shown { display: block; }
.form-success h3 { font-size: 1.5rem; margin: 18px 0 10px; }
.form-success p { color: var(--ink-soft); }

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

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

.footer { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.footer-brand p { font-size: 0.92rem; color: var(--ink-mute); margin-top: 14px; max-width: 300px; }
.footer h4 { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; color: var(--ink-mute); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer address { font-size: 0.94rem; color: var(--ink-soft); font-style: normal; }
.footer ul a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(12, 36, 21, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Voice concierge (ElevenLabs)                                        */
/* ------------------------------------------------------------------ */

.voice-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 14px 22px 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 44px -12px rgba(12, 36, 21, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.voice-fab:hover { transform: translateY(-3px) scale(1.02); }
.voice-fab .pulse {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.voice-fab .pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(248, 240, 0, 0.6);
  animation: pulse-ring 2s ease-out infinite;
}
.voice-fab .pulse svg { width: 18px; height: 18px; }
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.voice-hint {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 90;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: none;
}
.voice-hint.is-shown { display: block; }
.voice-hint strong { color: var(--ink); }
.voice-hint code { background: var(--cream-deep); border-radius: 6px; padding: 2px 7px; font-size: 0.8rem; }
.voice-hint .close-hint {
  position: absolute;
  top: 8px; right: 12px;
  background: none; border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink-mute);
}

/* Hide our FAB when the real ElevenLabs widget is active */
body.convai-active .voice-fab, body.convai-active .voice-hint { display: none; }
