/* =====================================================
   MANDIZEIRO — APRESENTAÇÃO DE MARCA
   v3 — paleta natural, sem excesso de preto, brand-true
   ===================================================== */

:root {
  /* Pure brand colors */
  --green-forest:  #3F5938;     /* logo green */
  --green-deep:    #2A4128;     /* deeper for sections */
  --green-night:   #1B2A1D;     /* darkest accent (substituto do preto) */
  --green-moss:    #5C7547;
  --green-river:   #7BA28C;
  --green-mist:    #C9D6BE;

  --gold-sun:      #D9AA32;     /* logo gold */
  --gold-soft:     #E9BF4F;
  --gold-glow:     #F4D777;
  --amber-dawn:    #D98E47;
  --amber-warm:    #C68040;

  --mist:          #F4EFE6;
  --mist-warm:     #EDE4D3;
  --paper:         #FAF6EE;
  --paper-warm:    #F1E9D7;
  --linen:         #E8DEC5;
  --wood:          #6B4F33;
  --wood-soft:     #8C6E47;

  --carbon-soft:   #1B2A1D;     /* renamed "carbon" to forest-night */
  --line:          rgba(244,239,230,0.18);
  --line-dark:     rgba(63,89,56,0.22);
  --line-gold:     rgba(217,170,50,0.30);

  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:    'Inter', 'Söhne', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow:   cubic-bezier(0.65, 0.05, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--green-deep);
  color: var(--mist);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--gold-sun); color: var(--green-night); }

/* ============== LOADER ============== */
.boot {
  position: fixed; inset: 0; z-index: 100;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.6s var(--ease-cinema), visibility 1.6s;
}
.boot.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.boot .ring {
  width: 28px; height: 28px;
  border: 1px solid rgba(244,239,230,0.2);
  border-top-color: var(--gold-sun);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============== NAV ============== */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  mix-blend-mode: difference;
  color: var(--mist);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  pointer-events: none;
}
.topnav .left,
.topnav .right { display: flex; gap: 32px; align-items: center; }
.topnav .center { opacity: 0.7; }
.topnav span { display: inline-block; }
.topnav .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-sun);
  display: inline-block;
  animation: breathe 3.4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ============== SHARED ============== */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bleed {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 120px 60px;
  margin: 0 auto;
}

.plate-no {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mist);
  opacity: 0.55;
  margin-bottom: 18px;
}

.kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 24px;
}

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
}

.display-xl { font-size: clamp(56px, 9vw, 144px); }
.display-l  { font-size: clamp(44px, 6.4vw, 96px); }
.display-m  { font-size: clamp(32px, 4.2vw, 64px); }
.display-s  { font-size: clamp(22px, 2.4vw, 36px); }

em { font-style: italic; font-family: var(--display); font-weight: 400; }

p { max-width: 56ch; }
.lead {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  font-weight: 400;
}

/* ============== BG IMAGE LAYER ============== */
.bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bg.kenburns {
  animation: kenburns 28s var(--ease-slow) infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

/* ============== VIDEO BG LAYER ============== */
.bg-video {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-video video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.bg-video::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 110px;
  background:
    linear-gradient(135deg, transparent 0%, transparent 35%, rgba(27,42,29,0.75) 80%, rgba(27,42,29,0.92) 100%);
  pointer-events: none;
  z-index: 2;
}
.bg-video .wm {
  position: absolute;
  bottom: 22px; right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(244,239,230,0.35);
  border-radius: 30px;
  background: rgba(27,42,29,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bg-video .wm img { width: 24px; height: 24px; }
.bg-video .wm .txt {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--mist);
  letter-spacing: 0.02em;
}

.veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(27,42,29,0.50) 0%,
    rgba(27,42,29,0.30) 40%,
    rgba(27,42,29,0.70) 100%);
}
.veil.heavy {
  background: linear-gradient(180deg,
    rgba(27,42,29,0.72) 0%,
    rgba(27,42,29,0.55) 50%,
    rgba(27,42,29,0.88) 100%);
}
.veil.amber {
  background:
    linear-gradient(180deg,
      rgba(40,28,12,0.28) 0%,
      rgba(20,14,8,0.10) 40%,
      rgba(20,14,8,0.72) 100%);
}

/* ============== SUN GLOW for sol section ============== */
.sun-glow {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,222,140,0.55) 0%, rgba(255,200,90,0.28) 18%, rgba(217,170,50,0.10) 35%, transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.40) 0%, transparent 8%);
  mix-blend-mode: screen;
  animation: sunPulse 8s ease-in-out infinite alternate;
}
@keyframes sunPulse {
  0%   { transform: scale(1) translateY(0); opacity: 0.85; }
  100% { transform: scale(1.06) translateY(-2%); opacity: 1; }
}
.sol-bleed blockquote { text-shadow: 0 2px 30px rgba(0,0,0,0.55); }
.sol-bleed blockquote em { color: #FFE3A0; }
.veil.soft {
  background: linear-gradient(180deg,
    rgba(27,42,29,0.28) 0%,
    rgba(27,42,29,0.16) 50%,
    rgba(27,42,29,0.60) 100%);
}

/* ============== HERO ============== */
.hero {
  height: 100vh;
  min-height: 720px;
}
.hero .frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  min-height: 720px;
  padding: 100px 60px 60px;
}
.hero .top-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 1.8s var(--ease-cinema) 1s forwards;
}
.hero .top-line .crest {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.hero .top-line .meta {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.75;
  text-align: right;
  line-height: 1.6;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 124px);
  color: var(--mist);
  max-width: 18ch;
  letter-spacing: -0.012em;
  line-height: 0.98;
  opacity: 0;
  animation: heroReveal 2.2s var(--ease-cinema) 1.6s forwards;
}
.hero h1 em { color: var(--gold-glow); opacity: 1; }
.hero .bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  opacity: 0;
  animation: fadeUp 1.8s var(--ease-cinema) 2.4s forwards;
}
.hero .bottom-line .signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  opacity: 0.85;
  max-width: 28ch;
}
.hero .scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  opacity: 0.75;
}
.hero .scroll-cue::after {
  content: '';
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold-sun), transparent);
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0.2; }
  50% { transform: scaleY(1); opacity: 0.9; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.2; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(40px); letter-spacing: 0; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: -0.012em; }
}

/* ============== OPEN MANIFESTO — green night ============== */
.opener {
  background:
    radial-gradient(circle at 30% 20%, rgba(217,170,50,0.10), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(94,138,126,0.10), transparent 50%),
    linear-gradient(180deg, var(--green-night) 0%, var(--green-deep) 100%);
  padding: 200px 0;
}
.opener .frame {
  text-align: center;
  padding: 0 60px;
}
.opener .reveal-text {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.18;
  font-weight: 400;
  color: var(--mist);
  max-width: 22ch;
  margin: 0 auto;
}
.opener .reveal-text span.line { display: block; overflow: hidden; }
.opener .reveal-text span.line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.4s var(--ease-cinema);
}
.opener.in .reveal-text span.line > span { transform: translateY(0); }
.opener.in .reveal-text span.line:nth-child(2) > span { transition-delay: 0.15s; }
.opener.in .reveal-text span.line:nth-child(3) > span { transition-delay: 0.30s; }
.opener.in .reveal-text span.line:nth-child(4) > span { transition-delay: 0.45s; }
.opener.in .reveal-text span.line:nth-child(5) > span { transition-delay: 0.60s; }
.opener em { color: var(--gold-soft); }

/* ============== EDITORIAL CHAPTER ============== */
.chapter {
  background: var(--paper);
  color: var(--green-forest);
  padding: 180px 0;
}
.chapter .frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.chapter .col-left {
  position: sticky;
  top: 120px;
}
.chapter .plate-no { color: var(--green-forest); opacity: 0.7; }
.chapter .kicker { color: var(--green-forest); }
.chapter h2 {
  color: var(--green-forest);
  margin-bottom: 30px;
}
.chapter .col-right p {
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--green-forest);
}
.chapter .col-right p:last-child { margin-bottom: 0; }
.chapter .signature {
  margin-top: 60px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--green-moss);
}

/* ============== FULLBLEED IMAGE QUOTE ============== */
.quote-bleed {
  height: 100vh; min-height: 720px;
}
.quote-bleed .frame {
  height: 100vh; min-height: 720px;
  display: flex; align-items: center;
  padding: 0 60px;
}
.quote-bleed blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: 1.08;
  max-width: 20ch;
  color: var(--mist);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.quote-bleed blockquote em { color: var(--gold-glow); }
.quote-bleed blockquote .cite {
  display: block;
  margin-top: 32px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
  text-shadow: none;
}

/* ============== GENERATIONS — forest gradient ============== */
.generations {
  background:
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-forest) 100%);
  padding: 180px 0 120px;
  position: relative;
}
.generations::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(217,170,50,0.10), transparent 50%);
  pointer-events: none;
}
.generations .frame { text-align: center; position: relative; z-index: 1; }
.generations .timeline {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}
.generations .gen {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s var(--ease-cinema), transform 1.4s var(--ease-cinema);
}
.generations.in .gen:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: none; }
.generations.in .gen:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: none; }
.generations.in .gen:nth-child(3) { transition-delay: 0.5s; opacity: 1; transform: none; }

.generations .gen .year {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-glow);
  margin-bottom: 8px;
}
.generations .gen h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  margin-bottom: 16px;
  color: var(--mist);
}
.generations .gen p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
  opacity: 0.82;
  max-width: 32ch;
}

/* ============== SENSORY PANELS ============== */
.senses {
  background: var(--green-night);
  padding: 180px 0;
}
.senses .frame { text-align: left; max-width: 1280px; }
.senses .header { margin-bottom: 120px; text-align: center; }
.senses .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.senses .sense {
  background: var(--green-night);
  padding: 40px 24px 60px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.8s var(--ease-cinema);
}
.senses .sense:hover { background: var(--green-deep); }
.senses .sense .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-glow);
  opacity: 0.9;
  margin-bottom: 18px;
}
.senses .sense .label {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 36px;
}
.senses .sense h4 {
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.22;
  font-weight: 400;
  color: var(--mist);
}

/* ============== PALETTE ============== */
.palette {
  background: var(--mist);
  color: var(--green-forest);
  padding: 180px 0;
}
.palette .header { text-align: center; margin-bottom: 100px; }
.palette .swatches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.palette .swatch {
  aspect-ratio: 1 / 1.4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: transform 0.6s var(--ease-cinema);
}
.palette .swatch:hover { transform: translateY(-8px); }
.palette .swatch .name {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  margin-bottom: 4px;
}
.palette .swatch .hex {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.palette .swatch.light { color: var(--green-forest); }
.palette .swatch.dark  { color: var(--mist); }

/* ============== ARCHETYPES / DNA GRID ============== */
.dna {
  background:
    linear-gradient(180deg, var(--green-forest) 0%, var(--green-deep) 100%);
  padding: 180px 0;
}
.dna .header { text-align: center; margin-bottom: 100px; }
.dna .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.dna .card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-cinema), transform 1.2s var(--ease-cinema);
}
.dna.in .card { opacity: 1; transform: none; }
.dna.in .card:nth-child(1) { transition-delay: 0.05s; }
.dna.in .card:nth-child(2) { transition-delay: 0.15s; }
.dna.in .card:nth-child(3) { transition-delay: 0.25s; }
.dna.in .card:nth-child(4) { transition-delay: 0.35s; }
.dna.in .card:nth-child(5) { transition-delay: 0.45s; }
.dna.in .card:nth-child(6) { transition-delay: 0.55s; }
.dna.in .card:nth-child(7) { transition-delay: 0.65s; }
.dna.in .card:nth-child(8) { transition-delay: 0.75s; }
.dna .card .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  opacity: 0.85;
  color: var(--gold-glow);
  margin-bottom: 14px;
}
.dna .card h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--mist);
}
.dna .card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mist);
  opacity: 0.78;
}

/* ============== PLATE EDITORIAL ============== */
.plate-editorial {
  background: var(--mist);
  color: var(--green-forest);
  padding: 180px 0;
}
.plate-editorial .frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.plate-editorial .plate-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.plate-editorial .plate-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.0);
  transition: transform 8s var(--ease-slow);
}
.plate-editorial.in .plate-img img { transform: scale(1.08); }
.plate-editorial .plate-img .num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.05em;
}
.plate-editorial .plate-img .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.9;
}
.plate-editorial .text h2 { color: var(--green-forest); margin-bottom: 30px; }
.plate-editorial .text p {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--green-forest);
  margin-bottom: 24px;
}
.plate-editorial.reverse .frame {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.plate-editorial.reverse .frame > * { direction: ltr; }

/* ============== RESERVATION REAL FLOW ============== */
.reserva {
  background:
    linear-gradient(180deg, var(--green-forest) 0%, var(--green-deep) 100%);
  padding: 200px 0;
  position: relative;
}
.reserva::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(217,170,50,0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(123,162,140,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.reserva .frame { position: relative; z-index: 2; }
.reserva .header { text-align: center; margin-bottom: 80px; }
.reserva .header h2 { color: var(--mist); }
.reserva .header .lead { margin: 36px auto 0; opacity: 0.85; }

/* ===== BOOKING APP ===== */
.booking {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--green-forest);
  border-radius: 12px;
  box-shadow: 0 60px 120px rgba(0,0,0,0.35), 0 24px 48px rgba(0,0,0,0.22);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}
.booking .sidebar {
  background:
    linear-gradient(180deg, var(--green-forest) 0%, var(--green-deep) 100%);
  color: var(--mist);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.booking .sidebar .brand-row {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.booking .sidebar .brand-row img { width: 40px; height: 40px; }
.booking .sidebar .brand-row .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
}
.booking .sidebar .welcome {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  color: var(--mist);
  opacity: 0.95;
  padding-left: 12px;
  border-left: 2px solid var(--gold-sun);
}
.booking .sidebar .steps {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.booking .sidebar .step-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 13px;
  opacity: 0.5;
  transition: opacity 0.5s var(--ease-cinema);
  border-top: 1px solid var(--line);
}
.booking .sidebar .step-item.active { opacity: 1; }
.booking .sidebar .step-item .n {
  font-family: var(--display);
  font-style: italic;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.booking .sidebar .step-item.active .n {
  background: var(--gold-sun);
  border-color: var(--gold-sun);
  color: var(--green-night);
}
.booking .sidebar .step-item.done .n {
  background: var(--green-moss);
  border-color: var(--green-moss);
}
.booking .sidebar .step-item .lbl {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 10px;
}

.booking .panel {
  padding: 48px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.booking .panel .step {
  display: none;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.booking .panel .step.active { display: flex; animation: stepIn 0.6s var(--ease-cinema); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking .panel .step .step-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.booking .panel .step .step-head .h {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.01em;
}
.booking .panel .step .step-head .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  opacity: 0.55;
}

/* ===== SERVICE CARDS WITH IMAGES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease-cinema);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.service-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-slow);
}
.service-card:hover .img { transform: scale(1.06); }
.service-card .veil-card {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(27,42,29,0.20) 0%,
    rgba(27,42,29,0.45) 55%,
    rgba(27,42,29,0.92) 100%);
}
.service-card .content {
  position: relative; z-index: 2;
  height: 100%;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mist);
}
.service-card .top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.service-card .name {
  font-family: var(--display);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.05;
  margin-bottom: 6px;
}
.service-card .desc {
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.88;
  margin-bottom: 12px;
  max-width: 26ch;
}
.service-card .price {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(244,239,230,0.35);
}
.service-card .price .arrow {
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.85;
  transition: transform 0.4s var(--ease-cinema);
}
.service-card:hover .price .arrow { transform: translateX(6px); }
.service-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.25); transform: translateY(-4px); }

/* ===== FORM FIELDS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.field {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  cursor: pointer;
  background: var(--mist);
  transition: border-color 0.3s var(--ease-cinema), background 0.3s;
}
.field:hover { border-color: var(--green-moss); background: var(--paper-warm); }
.field .label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
}
.field .value {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--green-forest);
  display: flex; align-items: center; gap: 10px;
}
.field .value select {
  background: transparent; border: 0;
  font-family: var(--display); font-size: 18px;
  color: var(--green-forest); cursor: pointer; outline: none;
  width: 100%;
}
.field .value .stepper {
  background: transparent; border: 0;
  font: inherit; cursor: pointer;
  width: 24px; height: 24px;
  border-radius: 50%;
  color: var(--green-forest);
  opacity: 0.6;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.2s, background 0.2s;
}
.field .value .stepper:hover { opacity: 1; background: var(--linen); }

/* ===== RULES ===== */
.rules {
  background: var(--paper-warm);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.rules .rule {
  display: flex; gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--green-forest);
}
.rules .rule .b {
  color: var(--gold-sun);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

/* ===== WHATSAPP SUMMARY ===== */
.wa-summary {
  background: #075E54;
  color: #FFF;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.20);
  max-width: 460px;
}
.wa-summary .wa-head {
  background: #128C7E;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wa-summary .wa-head .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.wa-summary .wa-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-summary .wa-head .info { display: flex; flex-direction: column; }
.wa-summary .wa-head .info .name { font-size: 14px; font-weight: 500; }
.wa-summary .wa-head .info .status { font-size: 11px; opacity: 0.85; }
.wa-summary .wa-body {
  background:
    radial-gradient(rgba(7,94,84,0.5) 1px, transparent 1px) 0 0/16px 16px,
    #0e3e37;
  padding: 18px;
}
.wa-summary .msg {
  background: #DCF8C6;
  color: #1a2520;
  border-radius: 8px 0 8px 8px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.65;
  font-family: var(--sans);
  position: relative;
  margin-left: auto;
}
.wa-summary .msg .line { display: flex; gap: 6px; }
.wa-summary .msg .line.head {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
.wa-summary .msg .time {
  display: block; text-align: right;
  font-size: 10px; opacity: 0.5;
  margin-top: 6px;
}
.wa-summary .msg .status-line {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 6px;
  color: #075E54;
  font-weight: 500;
}

.target-phone {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--green-moss);
}
.target-phone .phone {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green-forest);
  opacity: 1;
}

.booking-cta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
}
.booking-cta-row .back {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-moss);
  cursor: pointer;
  padding: 12px 0;
}
.booking-cta-row .back:hover { color: var(--green-forest); }
.booking-cta-row .next {
  padding: 14px 32px;
  background: var(--green-forest);
  color: var(--mist);
  border: 0;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.booking-cta-row .next:hover { background: var(--green-deep); }
.booking-cta-row .next.gold {
  background: var(--gold-sun);
  color: var(--green-night);
}
.booking-cta-row .next.gold:hover { background: var(--gold-soft); }

.summary-card {
  background: var(--paper-warm);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 18px;
}
.summary-card .line { display: flex; justify-content: space-between; }
.summary-card .line .lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
}
.summary-card .line .val {
  font-family: var(--display);
  font-size: 17px;
}
.summary-card .total {
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
  margin-top: 4px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-card .total .val {
  font-size: 32px;
  color: var(--gold-sun);
}

/* Step 4 grid */
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

/* ===== WhatsApp confirm CTA ===== */
.whatsapp-row {
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px 16px 22px;
  background: linear-gradient(135deg, #1FB463 0%, #128C7E 60%, #075E54 100%);
  color: #FFFFFF;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 18px 30px rgba(7,94,84,0.32),
    0 6px 12px rgba(7,94,84,0.22),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-cinema), box-shadow 0.4s;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.35), transparent 50%);
  pointer-events: none;
}
.wa-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-22deg);
  animation: waShine 3.6s ease-in-out infinite;
  animation-delay: 1.2s;
}
.wa-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 28px 44px rgba(7,94,84,0.42),
    0 10px 18px rgba(7,94,84,0.28);
}
.wa-cta .wa-ico {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-cta .wa-label { white-space: nowrap; }
.wa-cta .wa-arrow {
  font-family: var(--sans);
  font-size: 16px;
  transition: transform 0.4s var(--ease-cinema);
}
.wa-cta:hover .wa-arrow { transform: translateX(6px); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 18px 30px rgba(7,94,84,0.32), 0 6px 12px rgba(7,94,84,0.22), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(31,180,99,0.0); }
  50%      { box-shadow: 0 18px 30px rgba(7,94,84,0.42), 0 6px 12px rgba(7,94,84,0.28), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 16px rgba(31,180,99,0.0); }
}
@keyframes waShine {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.wa-hint {
  font-size: 12px;
  color: var(--green-moss);
  text-align: right;
  margin-top: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
}

/* ===== CELEBRATE STEP (5) ===== */
.booking .panel .step.celebrate {
  position: relative;
  padding: 60px 24px 24px;
  margin: -48px -48px -1px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-radius: 0;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.booking .panel .step.celebrate.active { display: flex; animation: celebrateIn 1.2s var(--ease-cinema); }
@keyframes celebrateIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.celebrate-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sun-burst {
  position: absolute;
  top: -120px; left: 50%;
  width: 460px; height: 460px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(255,222,140,0.85) 0%, rgba(217,170,50,0.45) 22%, rgba(217,170,50,0.15) 42%, transparent 60%);
  animation: sunBurst 1.6s var(--ease-cinema) forwards;
  opacity: 0;
}
@keyframes sunBurst {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.4); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.leaf {
  position: absolute;
  width: 22px; height: 12px;
  background: var(--green-moss);
  border-radius: 100% 0 100% 0;
  opacity: 0;
  animation: leafFall 5s linear infinite;
}
.leaf.l1 { left:  5%; animation-delay: 0.2s; }
.leaf.l2 { left: 15%; animation-delay: 1.4s; background: var(--green-river); }
.leaf.l3 { left: 25%; animation-delay: 2.8s; background: var(--gold-sun); }
.leaf.l4 { left: 38%; animation-delay: 0.8s; background: var(--green-moss); }
.leaf.l5 { left: 55%; animation-delay: 2.2s; background: var(--green-river); }
.leaf.l6 { left: 68%; animation-delay: 0.4s; background: var(--gold-sun); }
.leaf.l7 { left: 82%; animation-delay: 1.6s; background: var(--green-moss); }
.leaf.l8 { left: 92%; animation-delay: 3.1s; background: var(--green-river); }
@keyframes leafFall {
  0%   { transform: translateY(-30px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: translateY(720px) rotate(540deg); opacity: 0; }
}

.celebrate-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo-mark-anim {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(63,89,56,0.22), 0 8px 16px rgba(63,89,56,0.14);
  margin-bottom: 6px;
  animation: markBounce 1s var(--ease-cinema) 0.3s both;
}
.logo-mark-anim img { width: 70%; height: 70%; }
@keyframes markBounce {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.hi-kicker {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-moss);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinema) 0.7s forwards;
}
.hi-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--green-forest);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-cinema) 0.9s forwards;
}
.hi-title em { color: var(--gold-sun); }
.hi-body {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--green-forest);
  opacity: 0;
  margin: 8px 0 20px;
  max-width: 46ch;
  animation: fadeUp 1.1s var(--ease-cinema) 1.2s forwards;
}

/* ===== CUPOM CARD ===== */
.cupom-card {
  width: 100%;
  max-width: 500px;
  background:
    linear-gradient(135deg, var(--mist) 0%, var(--paper-warm) 100%);
  border: 1px solid rgba(63,89,56,0.18);
  border-radius: 16px;
  padding: 26px 30px 24px;
  position: relative;
  text-align: left;
  box-shadow:
    0 30px 60px rgba(63,89,56,0.22),
    0 12px 24px rgba(63,89,56,0.14);
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  animation: cupomIn 1.4s var(--ease-cinema) 1.6s forwards;
}
@keyframes cupomIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cupom-perforation {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--paper-warm);
  border: 1px solid rgba(63,89,56,0.18);
  border-radius: 50%;
}
.cupom-perforation.left  { left: -13px; }
.cupom-perforation.right { right: -13px; }

.cupom-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.cupom-brand {
  display: flex; align-items: center; gap: 12px;
}
.cupom-brand img {
  width: 40px; height: 40px;
}
.cupom-brand-name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--green-forest);
  line-height: 1.1;
}
.cupom-brand-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--green-moss);
  opacity: 0.78;
}
.cupom-no {
  text-align: right;
}
.cupom-no-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--green-forest);
}
.cupom-no-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--green-forest);
  letter-spacing: 0.02em;
}

.cupom-divider {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, rgba(63,89,56,0.25) 50%, transparent);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-color: transparent;
  margin: 8px 0 14px;
}

.cupom-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 12px;
}
.cupom-field .cupom-lbl {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--green-forest);
  margin-bottom: 3px;
}
.cupom-field .cupom-val {
  font-family: var(--display);
  font-size: 15px;
  color: var(--green-forest);
}

.cupom-progress { margin: 6px 0 0; }
.cupom-progress-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.cupom-progress-lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--green-forest);
}
.cupom-progress-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-sun);
}
.cupom-stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
}
.cupom-stamp {
  aspect-ratio: 1;
  border: 1px solid rgba(63,89,56,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  font-family: var(--display);
  font-style: italic;
  font-size: 10px;
  color: rgba(63,89,56,0.4);
}
.cupom-stamp.on {
  background: var(--gold-sun);
  border-color: var(--gold-sun);
  color: var(--green-night);
  box-shadow: 0 2px 8px rgba(217,170,50,0.5);
  animation: stampStamp 0.6s var(--ease-cinema) 2.3s both;
}
.cupom-stamp.on::after {
  content: '✓';
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
}
@keyframes stampStamp {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.cupom-footer {
  margin-top: 16px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--green-moss);
  padding-top: 12px;
  border-top: 1px dashed rgba(63,89,56,0.2);
}

.celebrate-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinema) 2.6s forwards;
}

.cupom-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--paper);
  color: var(--green-forest);
  border: 1px solid var(--green-forest);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinema);
}
.cupom-download:hover {
  background: var(--green-forest);
  color: var(--mist);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(63,89,56,0.22);
}
.cupom-download .dl-ico {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(63,89,56,0.1);
  align-items: center; justify-content: center;
}
.cupom-download:hover .dl-ico {
  background: rgba(244,239,230,0.15);
}

.celebrate-secondary {
  background: transparent;
  border: 0;
  color: var(--green-moss);
  padding: 14px 28px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(92,117,71,0.3);
  text-underline-offset: 6px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinema) 2.9s forwards;
  transition: color 0.3s;
}
.celebrate-secondary:hover {
  color: var(--green-forest);
  text-decoration-color: var(--green-forest);
}

/* When generating PNG, give cupom card a solid bg */
.cupom-card.exporting {
  box-shadow: 0 0 0 transparent;
}

/* Service banner — shows on step 2,3,4 to remind context */
.service-banner {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 18px;
  background: var(--linen);
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  margin-bottom: 8px;
}
.service-banner .img {
  width: 50px; height: 50px;
  border-radius: 6px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.service-banner .info { flex: 1; }
.service-banner .info .lbl {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
}
.service-banner .info .val {
  font-family: var(--display);
  font-size: 20px;
}
.service-banner .change {
  background: transparent; border: 0;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-moss);
  cursor: pointer;
}
.service-banner .change:hover { color: var(--green-forest); }

/* ============== CRM ============== */
.crm {
  background: var(--mist);
  color: var(--green-forest);
  padding: 200px 0;
  position: relative;
}
.crm .header { text-align: center; margin-bottom: 80px; }
.crm .header .plate-no { color: var(--green-moss); }
.crm .header .kicker { color: var(--green-moss); }
.crm .header h2 { color: var(--green-forest); }
.crm .header .lead {
  margin: 36px auto 0;
  max-width: 56ch;
  color: var(--green-forest);
  opacity: 0.85;
}

.crm-app {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 60px 120px rgba(63,89,56,0.20), 0 24px 48px rgba(63,89,56,0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 720px;
}

.crm-app .sidebar {
  background:
    linear-gradient(180deg, var(--green-forest) 0%, var(--green-deep) 100%);
  color: var(--mist);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.crm-app .sidebar .brand-row {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.crm-app .sidebar .brand-row img { width: 34px; height: 34px; }
.crm-app .sidebar .brand-row .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
}
.crm-app .sidebar .nav-group {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 14px 8px 6px;
}
.crm-app .sidebar .nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.78;
  transition: all 0.3s;
}
.crm-app .sidebar .nav-item:hover { opacity: 1; background: rgba(244,239,230,0.06); }
.crm-app .sidebar .nav-item.active {
  background: var(--green-night);
  opacity: 1;
}
.crm-app .sidebar .nav-item .ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

.crm-main { padding: 28px 36px; background: var(--paper); }
.crm-main .top-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 28px;
}
.crm-main .top-bar h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}
.crm-main .top-bar .actions { display: flex; gap: 10px; }
.crm-main .top-bar .pill {
  padding: 8px 14px;
  background: var(--green-forest);
  color: var(--mist);
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.crm-main .top-bar .pill.outline {
  background: transparent;
  color: var(--green-forest);
  border: 1px solid var(--green-forest);
}

.crm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.crm-stat {
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}
.crm-stat::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle, var(--gold-sun) 0%, transparent 70%);
  opacity: 0.10;
}
.crm-stat .lbl {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.crm-stat .val {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}
.crm-stat .delta {
  font-size: 11px;
  margin-top: 6px;
  opacity: 0.7;
  color: var(--green-moss);
}

.crm-clients {
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}
.crm-clients .row-head {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.4fr 1fr 1fr 0.8fr;
  padding: 14px 18px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-warm);
}
.crm-clients .row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.4fr 1fr 1fr 0.8fr;
  padding: 16px 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  transition: background 0.2s;
}
.crm-clients .row:last-child { border-bottom: 0; }
.crm-clients .row:hover { background: var(--paper-warm); }
.crm-clients .row .client-name {
  display: flex; align-items: center; gap: 12px;
}
.crm-clients .row .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-moss);
  color: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
}
.crm-clients .row .name-text {
  display: flex; flex-direction: column;
}
.crm-clients .row .name-text .n { font-weight: 500; font-size: 14px; color: var(--green-forest); }
.crm-clients .row .name-text .sub { font-size: 11px; opacity: 0.6; }
.crm-clients .row .phone {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
}
.crm-clients .row .last-visit { font-size: 12px; opacity: 0.85; }
.crm-clients .row .visits {
  font-family: var(--display);
  font-size: 19px;
}
.crm-clients .row .status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.crm-clients .row .status.confirmed { background: rgba(63,89,56,0.15); color: var(--green-forest); }
.crm-clients .row .status.pending { background: rgba(217,142,71,0.18); color: var(--amber-warm); }
.crm-clients .row .status.club { background: rgba(217,170,50,0.20); color: #8A6E20; }
.crm-clients .row .club-prog {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
}
.crm-clients .row .club-prog .bar-mini {
  flex: 1;
  height: 4px;
  background: var(--line-dark);
  border-radius: 4px;
  overflow: hidden;
}
.crm-clients .row .club-prog .bar-mini > i {
  display: block;
  height: 100%;
  background: var(--gold-sun);
}

.crm-detail {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.crm-detail .card {
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 22px 24px;
}
.crm-detail .card h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}
.crm-detail .history { display: flex; flex-direction: column; gap: 12px; }
.crm-detail .history .entry {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  font-size: 13px;
  align-items: baseline;
}
.crm-detail .history .entry .date {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  opacity: 0.7;
}
.crm-detail .history .entry .desc { color: var(--green-forest); }
.crm-detail .history .entry .amt {
  font-family: var(--display);
  font-size: 14px;
  color: var(--green-moss);
}
.crm-detail .prefs { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.crm-detail .prefs .pref {
  display: flex; gap: 10px;
  align-items: baseline;
}
.crm-detail .prefs .pref .icon {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-sun);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============== CLUBE ============== */
.clube {
  background:
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-night) 100%);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}
.clube::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 40%, rgba(217,170,50,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.clube .frame { position: relative; z-index: 2; text-align: center; }
.clube .header h2 { color: var(--mist); }
.clube .header .kicker { color: var(--gold-glow); }
.clube .header .lead { margin: 36px auto 60px; opacity: 0.85; max-width: 56ch; }

.club-card-wrap {
  max-width: 540px;
  margin: 60px auto 80px;
  perspective: 1200px;
}
.club-card {
  position: relative;
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, var(--green-forest) 0%, var(--green-deep) 50%, var(--green-night) 100%);
  box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 24px 48px rgba(0,0,0,0.35);
  padding: 32px 36px;
  text-align: left;
  color: var(--mist);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 1s var(--ease-cinema);
}
.club-card:hover { transform: rotateY(0) rotateX(0); }
.club-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(217,170,50,0.20), transparent 60%);
  pointer-events: none;
}
.club-card .top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.club-card .top-row .logo-row {
  display: flex; align-items: center; gap: 10px;
}
.club-card .top-row .logo-row img { width: 40px; height: 40px; }
.club-card .top-row .logo-row .lbl {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
}
.club-card .top-row .seal {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: right;
}
.club-card .name-row {
  margin-top: 30px;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
}
.club-card .meta-row {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}
.club-card .bottom-row {
  position: absolute;
  bottom: 32px; left: 36px; right: 36px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.club-card .stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  width: 100%;
}
.club-card .stamp {
  aspect-ratio: 1;
  border: 1px solid rgba(244,239,230,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  font-size: 9px;
  font-family: var(--display);
  font-style: italic;
  color: rgba(244,239,230,0.5);
}
.club-card .stamp.on {
  background: var(--gold-sun);
  border-color: var(--gold-sun);
  color: var(--green-night);
  box-shadow: 0 2px 10px rgba(217,170,50,0.5);
}
.club-card .stamp.on::after {
  content: '✓';
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
}

.club-progress {
  max-width: 540px;
  margin: 0 auto 40px;
  text-align: left;
}
.club-progress .label-row {
  display: flex; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}
.club-progress .label-row .right { color: var(--gold-glow); opacity: 1; }
.club-progress .bar {
  height: 3px;
  background: rgba(244,239,230,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.club-progress .bar > i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-sun));
  width: 70%;
  border-radius: 3px;
  transition: width 1.6s var(--ease-cinema);
}

.club-rules {
  max-width: 1000px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.club-rules .rule-card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.club-rules .rule-card .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-glow);
  margin-bottom: 14px;
}
.club-rules .rule-card h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--mist);
  font-weight: 400;
}
.club-rules .rule-card p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.82;
  color: var(--mist);
}

/* ============== IA SECTION ============== */
.ia {
  background:
    linear-gradient(180deg, var(--green-night) 0%, var(--green-deep) 100%);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}
.ia::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,170,50,0.10) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(123,162,140,0.10) 0%, transparent 45%);
}
.ia .frame { position: relative; z-index: 2; }
.ia .header { text-align: center; margin-bottom: 100px; }
.ia .conversation {
  max-width: 760px;
  margin: 0 auto;
}
.ia .bubble {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-cinema), transform 1.2s var(--ease-cinema);
}
.ia.in .bubble { opacity: 1; transform: none; }
.ia.in .bubble:nth-child(1) { transition-delay: 0.1s; }
.ia.in .bubble:nth-child(2) { transition-delay: 0.6s; }
.ia.in .bubble:nth-child(3) { transition-delay: 1.0s; }
.ia.in .bubble:nth-child(4) { transition-delay: 1.4s; }

.ia .bubble .who {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
}
.ia .bubble .msg {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.42;
  color: var(--mist);
  font-weight: 400;
}
.ia .bubble.assist .who { color: var(--gold-glow); }
.ia .bubble.assist .msg em { color: var(--gold-glow); }
.ia .bubble.user { padding-left: 80px; }
.ia .bubble.assist { padding-right: 80px; }

.ia .pillars {
  margin-top: 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.ia .pillars .pillar {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.ia .pillars .pillar:first-child { border-left: 0; padding-left: 0; }
.ia .pillars .pillar .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  opacity: 0.85;
  color: var(--gold-glow);
  margin-bottom: 14px;
}
.ia .pillars .pillar h4 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--mist);
  font-weight: 400;
  margin-bottom: 12px;
}
.ia .pillars .pillar p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--mist);
  opacity: 0.78;
}

/* ============== LOGO SYSTEM ============== */
.logo-system {
  background: var(--mist);
  color: var(--green-forest);
  padding: 200px 0;
}
.logo-system .header { text-align: center; margin-bottom: 100px; }
.logo-system .header h2 { color: var(--green-forest); }
.logo-system .stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.logo-system .primary {
  background: var(--paper-warm);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  border: 1px solid var(--line-dark);
}
.logo-system .primary img {
  max-width: 380px;
  width: 100%;
  height: auto;
}
.logo-system .right {
  display: flex; flex-direction: column; gap: 30px;
}
.logo-system .right .label-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.logo-system .right .label-row .lbl {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.7;
}
.logo-system .right .label-row .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  opacity: 0.65;
}
.logo-system .right p {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
}

.logo-system .auxgrid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.logo-system .aux {
  aspect-ratio: 1;
  background: var(--paper-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  transition: transform 0.8s var(--ease-cinema);
  border: 1px solid var(--line-dark);
}
.logo-system .aux:hover { transform: translateY(-6px); }
.logo-system .aux img {
  width: 60px; height: 60px;
}
.logo-system .aux .ctx {
  position: absolute;
  bottom: 14px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-forest);
  opacity: 0.65;
}
.logo-system .aux.tiny img { width: 16px; height: 16px; }
.logo-system .aux.app img { width: 80px; height: 80px; border-radius: 18px; }
.logo-system .aux.circle img {
  width: 80px; height: 80px;
  border-radius: 50%;
}
.logo-system .aux.cta {
  background: var(--green-forest);
}
.logo-system .aux.cta .ctx { color: var(--mist); }
.logo-system .aux.cta .label-cta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 12px 18px;
  border: 1px solid var(--mist);
  border-radius: 30px;
}
.logo-system .aux.cta img { width: 22px; height: 22px; }

/* ============== ICON IMPORTANCE — new section ============== */
.icon-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  color: var(--green-forest);
  padding: 200px 0;
  position: relative;
}
.icon-section .header { text-align: center; margin-bottom: 80px; }
.icon-section .header .plate-no,
.icon-section .header .kicker { color: var(--green-moss); }
.icon-section .header h2 { color: var(--green-forest); }
.icon-section .header .lead {
  margin: 36px auto 0;
  max-width: 56ch;
  color: var(--green-forest);
  opacity: 0.85;
}

.icon-mosaic {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icon-tile {
  background: var(--paper-warm);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-cinema);
}
.icon-tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(63,89,56,0.12); }

.icon-tile .visual {
  background: var(--mist);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}

.icon-tile.browser .visual { background: linear-gradient(180deg, #E2DCD0 0%, #D7CEBC 100%); padding: 0; align-items: flex-start; }
.tile-browser-frame {
  width: 86%;
  margin: 24px auto 0;
  background: var(--paper);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  overflow: hidden;
}
.tile-browser-frame .bar {
  padding: 10px 14px;
  background: var(--linen);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line-dark);
}
.tile-browser-frame .bar .dots { display: flex; gap: 5px; }
.tile-browser-frame .bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--wood-soft); opacity: 0.5; display: block; }
.tile-browser-frame .bar .tabs { display: flex; flex: 1; }
.tile-browser-frame .bar .tab {
  display: flex; align-items: center; gap: 6px;
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 6px 6px 0 0;
  font-size: 11px;
  color: var(--green-forest);
}
.tile-browser-frame .bar .tab img { width: 14px; height: 14px; }
.tile-browser-frame .url {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--paper);
  font-size: 11px;
  font-family: var(--sans);
  color: var(--green-moss);
}
.tile-browser-frame .url img { width: 14px; height: 14px; }
.tile-browser-frame .url .secure { opacity: 0.5; }

.icon-tile.phone .visual { background: linear-gradient(135deg, #4A6740 0%, #2A4128 100%); }
.tile-phone {
  width: 130px; aspect-ratio: 9/19;
  background: var(--green-night);
  border-radius: 16px;
  padding: 6px;
  border: 2px solid #2a3a2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.tile-phone .screen {
  background: var(--paper);
  width: 100%; height: 100%;
  border-radius: 12px;
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.tile-phone .screen .top {
  font-size: 8px; opacity: 0.5; text-align: center; color: var(--green-forest);
}
.tile-phone .screen .grid-apps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 6px;
}
.tile-phone .screen .app {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--linen);
}
.tile-phone .screen .app.brand {
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.tile-phone .screen .app.brand img { width: 70%; height: 70%; }
.tile-phone .screen .label {
  text-align: center; font-size: 6px;
  color: var(--green-forest);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.icon-tile.shares .visual { background: #FAF6EE; flex-direction: column; padding: 30px 22px; gap: 8px; align-items: stretch; }
.tile-share-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--mist);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}
.tile-share-row .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.tile-share-row .avatar img { width: 100%; height: 100%; }
.tile-share-row .content { flex: 1; min-width: 0; }
.tile-share-row .content .top {
  font-size: 11px; font-weight: 500;
  color: var(--green-forest);
}
.tile-share-row .content .bot {
  font-size: 10px; opacity: 0.65;
  color: var(--green-moss);
}

.icon-tile .text-body {
  padding: 26px 26px 28px;
}
.icon-tile .text-body .lbl {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-sun);
  margin-bottom: 8px;
}
.icon-tile .text-body h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--green-forest);
}
.icon-tile .text-body p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.78;
}

.icon-benefits {
  max-width: 1100px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.icon-benefits .b {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}
.icon-benefits .b .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-sun);
  margin-bottom: 10px;
}
.icon-benefits .b h5 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}
.icon-benefits .b p {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.55;
}

/* favicon array showcase */
.favicon-row {
  max-width: 720px;
  margin: 80px auto 0;
  background: var(--paper-warm);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 30px;
  display: flex; align-items: center; gap: 24px; justify-content: space-around;
}
.favicon-row .fav {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.favicon-row .fav .holder {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.favicon-row .fav .holder img { display: block; }
.favicon-row .fav .label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--green-forest);
}

/* ============== TYPOGRAPHY DEMO ============== */
.type-demo {
  background: var(--green-night);
  padding: 200px 0;
}
.type-demo .header { text-align: center; margin-bottom: 100px; }
.type-demo .stack { max-width: 1080px; margin: 0 auto; }
.type-demo .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.type-demo .row:last-child { border-bottom: 1px solid var(--line); }
.type-demo .row .meta {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.6;
}
.type-demo .row .meta em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.8;
  margin-top: 6px;
}
.type-demo .sample-display { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--mist); }
.type-demo .sample-display-italic { font-family: var(--display); font-style: italic; font-size: 36px; line-height: 1.1; color: var(--mist); }
.type-demo .sample-body { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--mist); opacity: 0.85; max-width: 56ch; }
.type-demo .sample-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.85;
}

/* ============== FUTURE PERCEPTION ============== */
.future {
  background:
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-forest) 100%);
  padding: 200px 0;
}
.future .frame { text-align: center; }
.future .timeline {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}
.future .step {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.future .step .horizon {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  color: var(--gold-glow);
  margin-bottom: 14px;
}
.future .step .quote {
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.35;
  color: var(--mist);
}
.future .step .quote::before { content: '"'; opacity: 0.4; }
.future .step .quote::after { content: '"'; opacity: 0.4; }

/* ============== CLOSING ============== */
.closing {
  height: 100vh; min-height: 720px;
}
.closing .frame {
  height: 100vh; min-height: 720px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 0 60px;
}
.closing .crest {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  opacity: 0.9;
  color: var(--gold-glow);
  margin-bottom: 36px;
}
.closing h2 {
  color: var(--mist);
  margin-bottom: 36px;
  max-width: 16ch;
  font-size: clamp(48px, 6.6vw, 100px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.closing h2 em { color: var(--gold-glow); }
.closing .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  opacity: 0.9;
  max-width: 30ch;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* ============== FOOTER ============== */
footer {
  background: var(--green-night);
  padding: 80px 60px 60px;
  border-top: 1px solid var(--line);
}
footer .row {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1280px; margin: 0 auto;
}
footer .left {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  opacity: 0.75;
}
footer .right {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.6;
}
footer .right span { display: block; margin-top: 6px; }

/* ============== SCROLL REVEAL UTIL ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s var(--ease-cinema), transform 1.4s var(--ease-cinema);
}
.reveal.in { opacity: 1; transform: none; }

/* ============== PROGRESS BAR ============== */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  z-index: 60;
}
.progress .bar {
  height: 100%;
  background: var(--gold-sun);
  width: 0%;
  transition: width 0.1s linear;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .frame { padding: 100px 40px; }
  .chapter .frame,
  .plate-editorial .frame { grid-template-columns: 1fr; gap: 60px; }
  .chapter .col-left { position: static; }
  .dna .grid { grid-template-columns: repeat(2, 1fr); }
  .ia .pillars { grid-template-columns: repeat(2, 1fr); }
  .ia .pillars .pillar:nth-child(3) { border-left: 0; padding-left: 0; }
  .future .timeline,
  .generations .timeline,
  .club-rules { grid-template-columns: 1fr; }
  .palette .swatches { grid-template-columns: repeat(4, 1fr); }
  .senses .grid { grid-template-columns: repeat(2, 1fr); }
  .logo-system .stage { grid-template-columns: 1fr; gap: 40px; }
  .logo-system .auxgrid { grid-template-columns: repeat(2, 1fr); }
  .icon-mosaic { grid-template-columns: 1fr; }
  .icon-benefits { grid-template-columns: repeat(2, 1fr); }
  .topnav { padding: 18px 24px; }
  .topnav .center { display: none; }
  .booking { grid-template-columns: 1fr; }
  .booking .sidebar .steps { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .crm-app { grid-template-columns: 1fr; }
  .crm-app .sidebar { display: none; }
  .crm-stats { grid-template-columns: repeat(2, 1fr); }
  .crm-clients .row-head,
  .crm-clients .row { grid-template-columns: 1.5fr 1fr 0.7fr 0.7fr; font-size: 11px; }
  .crm-clients .last-visit, .crm-clients .visits-cell { display: none; }
  .crm-detail { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .frame { padding: 80px 24px; }
  .hero .frame { padding: 80px 24px 40px; }
  .opener { padding: 120px 0; }
  .dna .grid { grid-template-columns: 1fr; }
  .ia .pillars { grid-template-columns: 1fr; }
  .ia .pillars .pillar { border-left: 0 !important; padding-left: 0 !important; }
  .palette .swatches { grid-template-columns: repeat(2, 1fr); }
  .senses .grid { grid-template-columns: 1fr; }
  .logo-system .auxgrid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .topnav { font-size: 9px; padding: 14px 18px; }
  .topnav .right span:not(.dot) { display: none; }
  .ia .bubble.user { padding-left: 20px; }
  .ia .bubble.assist { padding-right: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .booking .panel { padding: 28px; }
  .rules { grid-template-columns: 1fr; }
  .crm-stats { grid-template-columns: 1fr; }
  .club-card { padding: 22px; }
  .club-card .stamps { gap: 4px; }
  .icon-benefits { grid-template-columns: 1fr; }
  footer .row { flex-direction: column; gap: 30px; align-items: flex-start; }
  footer .right { text-align: left; }
}
