/* ══════════════════════════════════════════════════════════
   KEN SUYA — Design System
   Deep Maroon / Golden Yellow / Vivid Red / Fresh Green / Warm Cream
   Palette sampled directly from the brand logo.
   ══════════════════════════════════════════════════════════ */

/* Self-hosted variable fonts — avoids the extra DNS/TLS round trip to
   fonts.googleapis.com/fonts.gstatic.com. Each file is a single variable
   font covering its whole weight range. */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('fonts/baloo2-variable.woff2') format('woff2-variations'), url('fonts/baloo2-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/nunitosans-variable.woff2') format('woff2-variations'), url('fonts/nunitosans-variable.woff2') format('woff2');
}

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

:root {
  --maroon:      #0F3D1B;
  --maroon-2:    #14501F;
  --maroon-3:    #1C6129;
  --green:      #1B8A3D;
  --green-dark: #125C29;
  --green-light:#E8F5E9;
  --red:        #CE1126;
  --red-dark:   #9C0C1C;
  --gold:       #F5B700;
  --gold-dark:  #C99400;
  --cream:      #FFFBF3;
  --cream-2:    #FBF0DC;
  --cream-dim:  #EDD9AF;
  --ink:        #241608;
  --ink-soft:   #6E5A46;
  --white:      #FFFFFF;

  --font-display: 'Baloo 2', 'Arial Rounded MT Bold', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(15,61,27,0.14);
  --shadow-md: 0 10px 34px rgba(15,61,27,0.24);
  --shadow-lg: 0 24px 60px rgba(15,61,27,0.38);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 2000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ═══ TYPE ═══ */
.display {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section--green .eyebrow { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0.85rem 0 1rem;
  color: var(--maroon);
}

.section--green .section-title { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.75;
}

.section--green .section-sub { color: rgba(255,252,246,0.85); }

.section { padding: 5.5rem 0; }
.section--tight { padding: 3.5rem 0; }

@media (min-width: 768px) {
  .section { padding: 7.5rem 0; }
}

.section--dark { background: var(--white); color: var(--ink); }
.section--green {
  background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--cream);
}
.section--cream2 { background: var(--cream-2); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 1rem 1.85rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  min-height: 52px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before { transition: transform 0.75s var(--ease); transform: translateX(120%); }
.btn > * { position: relative; z-index: 2; }

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .btn::before { display: none; }
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 4px 10px rgba(156,12,28,0.28);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 6px 14px rgba(156,12,28,0.35); }

.btn-gold {
  background: var(--gold);
  color: var(--maroon);
  box-shadow: 0 4px 10px rgba(150,110,0,0.25);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 6px 14px rgba(150,110,0,0.32); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); }

.section--green .btn-outline { color: var(--cream); }
.section--green .btn-outline:hover { background: var(--cream); color: var(--green-dark); }

.btn-lg { padding: 1.15rem 2.4rem; font-size: 1rem; }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: transparent;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 0.55rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-mark svg { color: var(--gold-dark); flex-shrink: 0; }

.brand-mark-img { height: 34px; width: auto; flex-shrink: 0; border-radius: 8px; }

.brand-badge-img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.4));
}

.brand-badge--small-wrap { width: 130px; margin: 0 auto 2rem; }
.brand-badge-img--small {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
}

.brand-badge {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #FFEEC2 0%, var(--gold) 45%, var(--gold-dark) 100%);
  border: 6px solid var(--red-dark);
  box-shadow: var(--shadow-lg), inset 0 0 0 3px rgba(255,251,243,0.35), inset 0 0 0 6px rgba(150,51,31,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  container-type: inline-size;
}

.brand-badge-shine {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 55%;
  height: 45%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  transform: rotate(-20deg);
  pointer-events: none;
}

.brand-badge-spark {
  position: absolute;
  width: 8%;
  height: 18%;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  top: 6%;
  pointer-events: none;
}
.brand-badge-spark--1 { right: 16%; transform: rotate(15deg); }
.brand-badge-spark--2 { right: 24%; height: 12%; top: 2%; transform: rotate(38deg); }
.brand-badge-spark--3 { right: 8%; height: 12%; top: 10%; transform: rotate(-12deg); }

.brand-badge-text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--red);
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 16cqw, 2.6rem);
  line-height: 1;
  text-align: center;
  padding: 0 8%;
  text-shadow: 2px 2px 0 var(--red-dark);
}

.brand-badge-icon {
  position: relative;
  margin-top: 0.4rem;
}

.brand-badge-tagline {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-dark);
  font-size: clamp(0.5rem, 3.4cqw, 0.68rem);
  margin-top: 0.5rem;
  padding: 0 12%;
  text-align: center;
}

.brand-badge--small { width: 130px; margin: 0 auto 2rem; }

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  font-style: italic;
}

@media (max-width: 480px) { .nav-tagline { display: none; } }

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0.1rem;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after { right: 0; }

.nav-links a.is-active { color: var(--red); }

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transition: width 0.1s linear;
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { display: none; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(36,22,8,0.06);
  border: 1px solid rgba(36,22,8,0.15);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 960px) { .nav-toggle { display: none; } }

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 6rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.4s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  text-transform: uppercase;
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(36,22,8,0.08);
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-social { display: flex; gap: 1rem; }

@media (min-width: 960px) { .mobile-menu { display: none; } }

/* ═══ TEXTURE / DECOR ═══ */
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ═══ HERO ═══ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(245,183,0,0.16), transparent 70%),
    radial-gradient(ellipse 60% 50% at 8% 95%, rgba(27,138,61,0.14), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 45%, #FFFFFF 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,183,0,0.12);
  border: 1px solid rgba(245,183,0,0.35);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.hero-title .line { display: block; }
.hero-title .line--green { color: var(--green); }
.hero-title .line--gold { color: var(--gold-dark); }
.hero-title .line--red { color: var(--red); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid rgba(245,183,0,0.3);
  background: rgba(245,183,0,0.07);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}

.hero-meta svg { flex-shrink: 0; color: var(--gold); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-plate {
  position: relative;
  width: min(400px, 78vw);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 7s ease-in-out infinite;
}

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

.hero-flame-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  background: radial-gradient(circle, rgba(245,183,0,0.3), transparent 72%);
  filter: blur(40px);
  z-index: -1;
  animation: glow 3.2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.6; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge-plate, .hero-flame-glow, .hero-eyebrow .dot { animation: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(36,22,8,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue .stick {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ═══ SMOKE WISPS (hero) ═══ */
.smoke-wisps {
  position: absolute;
  inset: -10% -10% -10% -10%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
}

.smoke {
  position: absolute;
  bottom: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,252,246,0.18), rgba(255,252,246,0.05) 60%, transparent 75%);
  filter: blur(10px);
  animation: smoke-rise 9s ease-in infinite;
  opacity: 0;
}

@keyframes smoke-rise {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translate(var(--drift, 30px), -280px) scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .smoke { animation: none; display: none; }
}

/* ═══ HEAT SHIMMER ═══ */
.heat-wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.12;
  background: linear-gradient(0deg, rgba(206,17,38,0.35), transparent 70%);
  filter: url(#heatShimmer);
}

@media (prefers-reduced-motion: reduce) {
  .heat-wave { display: none; }
}

/* ═══ ICON FLICKER (flame accents) ═══ */
.icon-flicker {
  animation: flicker 2.6s ease-in-out infinite;
  transform-origin: 50% 90%;
}

@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
  22% { transform: scale(1.05, 0.97) rotate(-2deg); filter: brightness(1.15); }
  40% { transform: scale(0.97, 1.04) rotate(1deg); filter: brightness(0.95); }
  63% { transform: scale(1.04, 0.98) rotate(-1deg); filter: brightness(1.1); }
  81% { transform: scale(0.98, 1.02) rotate(2deg); filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .icon-flicker { animation: none; }
}

/* ═══ DIVIDER STRIPE ═══ */
.divider-stripe {
  height: 14px;
  background:
    repeating-linear-gradient(-45deg,
      var(--gold) 0 18px,
      var(--green) 18px 36px);
  position: relative;
  z-index: 3;
}

@media (min-width: 768px) { .divider-stripe { height: 18px; } }

/* ═══ HOW TO ORDER ═══ */
.how-section { background: var(--cream-2); color: var(--ink); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

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

@media (min-width: 1100px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-card {
  border: 1px solid rgba(36,22,8,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.how-card:hover { border-color: rgba(245,183,0,0.4); transform: translateY(-4px); }

.how-card .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.how-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══ USP STRIP ═══ */
.usp-strip {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.usp-track {
  display: flex;
  gap: 0;
  padding: 1.1rem 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.usp-track::-webkit-scrollbar { display: none; }

.usp-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.75rem;
  border-right: 2px solid rgba(15,61,27,0.15);
  scroll-snap-align: start;
  white-space: nowrap;
}

.usp-item:first-child { padding-left: 1.5rem; }

.usp-item .icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-item span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .container.usp-container { max-width: none; padding: 0; }
}

/* ═══ EXPERIENCE (editorial) ═══ */
.experience {
  position: relative;
  background: var(--cream);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .exp-grid.exp-grid--reverse .exp-visual { order: 2; }
}

.exp-visual {
  position: relative;
}

.photo-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--maroon-3), var(--maroon) 65%);
  box-shadow: var(--shadow-md);
}

.photo-block.ratio-wide { aspect-ratio: 16/10; }
.photo-block.ratio-square { aspect-ratio: 1/1; }

.photo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(245,183,0,0.09) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 30% 20%, rgba(206,17,38,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(18,92,41,0.4), transparent 55%);
}

.photo-block .grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.photo-block .photo-icon {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255,252,246,0.5);
}

.photo-block.photo-fallback .photo-icon { display: flex; }

.photo-block .photo-icon svg { width: 30%; height: 30%; }

.photo-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.photo-block:hover img { transform: scale(1.05); }

.photo-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(15,61,27,0.55);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.exp-visual .accent-ring {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  top: -16px; right: -16px;
  z-index: -1;
}

.exp-visual .accent-block {
  position: absolute;
  width: 90px; height: 90px;
  background: var(--red);
  bottom: -14px; left: -14px;
  z-index: -1;
  border-radius: var(--radius-sm);
  transform: rotate(8deg);
}

@media (min-width: 700px) {
  .exp-visual .accent-ring { top: -30px; right: -30px; }
  .exp-visual .accent-block { bottom: -24px; left: -24px; }
}

.exp-copy p + p { margin-top: 1.1rem; }
.exp-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; max-width: 520px; }

.exp-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cream-dim);
}

.exp-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
}

.exp-stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ═══ MENU / SIGNATURE SHOWCASE ═══ */
.menu-section { background: var(--white); color: var(--ink); position: relative; }

.menu-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.menu-showcase--even { align-items: stretch; }
.menu-showcase--even .menu-card { height: 100%; }

@media (min-width: 768px) {
  .menu-showcase {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
  .menu-card--hero { grid-column: span 4; grid-row: span 2; }
  .menu-card--tall { grid-column: span 2; grid-row: span 2; }
  .menu-card--wide { grid-column: span 3; }
  .menu-card--small { grid-column: span 3; }
  .menu-card--third { grid-column: span 2; }
}

.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(36,22,8,0.08);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: transform 0.4s var(--ease);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.menu-card:hover { transform: translateY(-6px); }

.menu-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .menu-card-bg { transform: scale(1.06); }

.menu-card--beef .menu-card-bg { background: radial-gradient(circle at 30% 25%, rgba(206,17,38,0.14), transparent 55%), radial-gradient(circle at 80% 85%, rgba(245,183,0,0.14), transparent 55%); }
.menu-card--lamb .menu-card-bg { background: radial-gradient(circle at 60% 20%, rgba(18,92,41,0.14), transparent 60%), radial-gradient(circle at 20% 90%, rgba(217,164,0,0.12), transparent 55%); }
.menu-card--chicken .menu-card-bg { background: radial-gradient(circle at 25% 30%, rgba(245,183,0,0.16), transparent 55%); }
.menu-card--party .menu-card-bg { background: radial-gradient(circle at 70% 25%, rgba(27,138,61,0.14), transparent 55%); }
.menu-card--spicy .menu-card-bg { background: radial-gradient(circle at 30% 70%, rgba(206,17,38,0.16), transparent 55%); }
.menu-card--corn .menu-card-bg { background: radial-gradient(circle at 40% 30%, rgba(245,183,0,0.18), transparent 55%); }

.menu-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  color: var(--maroon);
  background: var(--gold);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  transition: transform 0.35s var(--ease);
}

.menu-card--lamb .menu-card-icon,
.menu-card--party .menu-card-icon { background: var(--green); color: var(--cream); }
.menu-card--spicy .menu-card-icon { background: var(--red); color: var(--cream); }

.menu-card:hover .menu-card-icon { transform: scale(1.12) rotate(-6deg); }

.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.menu-card-content { position: relative; z-index: 1; }

/* sear/char marks — draw in after the card itself has revealed, like it's fresh off the grate */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(115deg, rgba(0,0,0,0.035) 0 6px, transparent 6px 34px);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left center;
  transition: opacity 1.1s ease 0.5s, transform 1.3s var(--ease) 0.5s;
}

.menu-card.visible::before { opacity: 1; transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .menu-card::before { transition: none; opacity: 1; transform: none; }
}

.menu-card-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.menu-card--hero h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.menu-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 340px;
}

.menu-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-card-price strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.15rem;
}

.menu-card-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
}

.menu-note {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(36,22,8,0.08);
}

.menu-note p { color: var(--ink-soft); font-size: 0.9rem; max-width: 460px; }

/* ═══ FIRE FEATURE ═══ */
.fire-section {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,183,0,0.12) 0%, var(--white) 55%);
  color: var(--ink);
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 768px) { .fire-section { padding: 9rem 0; } }

.fire-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(245,183,0,0.8);
  animation: rise 6s linear infinite;
  opacity: 0;
}

@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-420px) translateX(20px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ember { animation: none; display: none; }
}

.fire-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.fire-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.fire-title .accent { color: var(--red); }
.fire-title .accent2 { color: var(--gold); }

.fire-content > p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.fire-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .fire-steps { grid-template-columns: repeat(3, 1fr); }
}

.fire-step {
  border-left: 3px solid var(--red);
  padding-left: 1.1rem;
}

.fire-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fire-step span { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

/* ═══ TESTIMONIALS ═══ */
.reviews-section { background: var(--cream-2); }

.reviews-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--red);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 100px;
}

.rating-pill strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.rating-pill .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.rating-pill small { display: block; font-size: 0.68rem; color: rgba(255,252,246,0.6); }

.reviews-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .reviews-track { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.9rem; display: block; }

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--cream);
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 0.9rem; }
.review-meta { font-size: 0.76rem; color: var(--ink-soft); }

/* ═══ OFFER / CTA BAND ═══ */
.offer-band {
  position: relative;
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 5rem 0;
}

.offer-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px);
}

.offer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.offer-inner .display {
  font-size: clamp(2.2rem, 7vw, 4rem);
  margin-bottom: 1.25rem;
}

.offer-inner p {
  font-size: 1.1rem;
  color: rgba(255,252,246,0.85);
  margin-bottom: 2.25rem;
}

.offer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ═══ LOCATION ═══ */
.location-section { background: var(--cream); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .loc-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

.loc-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: var(--maroon);
  box-shadow: var(--shadow-md);
}

.loc-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,252,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,252,246,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.loc-map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 45%, rgba(206,17,38,0.4), transparent 55%), radial-gradient(circle at 20% 80%, rgba(18,92,41,0.45), transparent 55%);
}

.loc-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loc-pin-dot {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: bob 2.4s ease-in-out infinite;
}

.loc-pin-dot svg { transform: rotate(45deg); }

@keyframes bob {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) { .loc-pin-dot { animation: none; } }

.loc-map-label {
  position: absolute;
  z-index: 1;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  background: rgba(15,61,27,0.82);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.loc-map-label .name { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; }
.loc-map-label a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.loc-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 500px) {
  .loc-info-grid { grid-template-columns: 1fr 1fr; }
}

.loc-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.loc-info-card h3 svg { color: var(--red); flex-shrink: 0; }

.loc-info-card address,
.loc-info-card p {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.loc-info-card a.link { color: var(--red); font-weight: 700; }

.loc-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--cream-dim);
}
.loc-hours-row:last-child { border-bottom: none; }
.loc-hours-row span:first-child { font-weight: 700; color: var(--maroon); }
.loc-hours-row span:last-child { color: var(--ink-soft); }

.loc-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.social-icon:hover { background: var(--red-dark); transform: translateY(-3px); }

.social-icon--wa { background: var(--green); }
.social-icon--wa:hover { background: var(--green-dark); }

/* ═══ FAQ ═══ */
.faq-section { background: var(--cream-2); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 2px solid var(--cream-dim);
}

.faq-item:first-child { border-top: 2px solid var(--cream-dim); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
}

.faq-question:hover { color: var(--red); }

.faq-plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--maroon);
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
}

.faq-plus::before { width: 12px; height: 2px; }
.faq-plus::after { width: 2px; height: 12px; }

.faq-item.open .faq-plus { background: var(--red); border-color: var(--red); }
.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after { background: var(--cream); }
.faq-item.open .faq-plus::after { transform: rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-item.open .faq-answer { max-height: 240px; }

.faq-answer-inner {
  padding: 0 0.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 640px;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  position: relative;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(206,17,38,0.25), transparent 55%), radial-gradient(circle at 15% 90%, rgba(18,92,41,0.3), transparent 55%), radial-gradient(circle at 85% 90%, rgba(245,183,0,0.2), transparent 55%);
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta .display {
  font-size: clamp(2rem, 6vw, 3.6rem);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.final-cta .display .accent { color: var(--red); }

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.final-social { display: flex; justify-content: center; gap: 1rem; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--cream-2);
  color: var(--ink-soft);
  padding: 4rem 0 0;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--green), var(--gold), var(--red)) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: 3rem;
}

@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 2rem; }
}

.footer-brand { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand-row .brand-mark { font-size: 1.35rem; }
.footer-brand-row span { font-family: var(--font-body); font-style: italic; font-weight: 700; color: var(--green-dark); font-size: 0.85rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(36,22,8,0.1);
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--red); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══ STICKY MOBILE CTA ═══ */
#sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
}

#sticky-cta.visible { transform: translateY(0); }

.sticky-cta-text { color: var(--ink); }
.sticky-cta-text strong { display: block; font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; }
.sticky-cta-text span { font-size: 0.72rem; color: var(--ink-soft); }

@media (min-width: 960px) { #sticky-cta { display: none; } }

/* ═══ BACK TO TOP ═══ */
#back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 850;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
}

#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--red-dark); }

@media (max-width: 959px) {
  #back-to-top { bottom: 5.75rem; right: 1rem; width: 42px; height: 42px; }
}

/* ═══ CHAT ASSISTANT ═══ */
#chat-widget {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

#chat-widget.visible { opacity: 1; transform: translateY(0); }
#chat-widget.visible #chat-launcher { pointer-events: auto; }

@media (max-width: 959px) {
  #chat-widget { left: 1rem; bottom: 5.75rem; }
}

#chat-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  position: relative;
  pointer-events: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

#chat-launcher:hover { transform: translateY(-3px); background: var(--green-dark); }

.chat-launcher-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  animation: pulse 2s infinite;
}

#chat-widget.is-open #chat-launcher svg { transform: rotate(90deg); opacity: 0; }
#chat-widget.is-open .chat-launcher-dot { display: none; }

#chat-panel {
  width: min(360px, 88vw);
  max-height: min(70vh, 520px);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom left;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

#chat-widget.is-open #chat-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  background: var(--green);
  color: var(--cream);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}

.chat-header-info { display: flex; flex-direction: column; gap: 0.15rem; }
.chat-header-title { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-display); font-size: 0.95rem; text-transform: uppercase; color: var(--gold); }
.chat-header-title svg { color: var(--red); }
.chat-header-sub { font-size: 0.7rem; color: rgba(255,252,246,0.65); }

#chat-close {
  background: rgba(255,252,246,0.1);
  border: none;
  color: var(--cream);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
#chat-close:hover { background: rgba(255,252,246,0.2); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 220px;
}

.chat-msg {
  max-width: 85%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--cream-2);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--green);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg a.chat-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  background: var(--green);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: background 0.2s var(--ease);
}
.chat-msg a.chat-wa-btn:hover { background: var(--green-dark); }

.chat-typing { display: flex; gap: 4px; align-items: center; padding: 0.3rem 0; }
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.5;
  animation: chat-typing-bounce 1.1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
  flex-shrink: 0;
}

.chat-chip {
  background: var(--cream-2);
  border: 1px solid var(--cream-dim);
  color: var(--maroon);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.chat-chip:hover { background: var(--gold); }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--cream-dim);
  flex-shrink: 0;
}

.chat-input-row input {
  flex: 1;
  border: 1px solid var(--cream-dim);
  border-radius: 100px;
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  background: var(--cream);
}
.chat-input-row input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.chat-send:hover { background: var(--red-dark); }

@media (prefers-reduced-motion: reduce) {
  #chat-panel { transition: none; }
  .chat-launcher-dot { animation: none; }
  .chat-typing span { animation: none; opacity: 0.7; }
}

/* ═══ UTILITY ═══ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 3rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
