:root {
      --ivory:        #faf8f3;
      --ivory-2:      #f3f0e8;
      --paper:        #ece7dc;
      --paper-dark:   #ddd6c7;
      --verde:        #424f2c;
      --verde-deep:   #3a4527;
      --verde-darker: #2f3a20;
      --verde-pale:   #eef1e8;
      --gold:         #af8c53;
      --gold-light:   #c9a96e;
      --gold-muted:   #93753f;
      --gold-soft:    #d4b886;
      --ink:          #26241f;
      --ink-2:        #4a473f;
      --ink-3:        #747064;
      --ink-soft:     #a39d90;
      --line:         rgba(66,79,44,0.10);
      --line-gold:    rgba(175,140,83,0.22);
      --line-light:   rgba(245,243,238,0.16);
      /* ─── PALETA OFICIAL ─── */
      --black-deep:   #0A0A0A;
      --creme:        #F7F4EE;
      --oliva:        #424F2C;
      --ouro:         #AF8C53;
      /* ─── FONTES EDITORIAIS ─── */
      --serif-display: 'Bodoni Moda', 'Cormorant Garamond', serif;
      --serif-editorial: 'Playfair Display', 'Cormorant Garamond', serif;
      --serif-body: 'Cormorant Garamond', serif;
      /* ─── MOTION ─── */
      --ease-lux: cubic-bezier(.19,1,.22,1);
      --ease-soft: cubic-bezier(.22,.61,.36,1);
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      background: var(--ivory);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content:'';
      position:fixed; inset:0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
      pointer-events:none;
      z-index:1000;
      opacity:0.04;
      mix-blend-mode: multiply;
    }
    ::selection { background: var(--verde); color: var(--ivory); }

    /* NAVIGATION */
    nav {
      position: fixed;
      top: 0; left:0; right:0;
      z-index: 100;
      padding: 1.2rem 5vw;
      display: flex; justify-content: space-between; align-items: center;
      transition: all 0.5s cubic-bezier(.22,1,.36,1);
      background: rgba(245,243,238,0.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }
    .nav-logo-link { display:flex; align-items:center; gap:.6rem; text-decoration:none; }
    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--verde);
      letter-spacing: -0.01em;
    }
    .nav-links { display:flex; gap:2.4rem; list-style:none; align-items:center; }
    .nav-links a {
      text-decoration:none;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-2);
      transition: color .3s;
      position:relative;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a::after {
      content:''; position:absolute; left:0; bottom:-6px; height:1px; width:0;
      background: var(--gold); transition: width .35s ease;
    }
    .nav-links a:hover::after { width:100%; }
    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 0.6rem 1.4rem;
      transition: all 0.35s !important;
    }
    .nav-cta::after { display:none !important; }
    .nav-cta:hover { background: var(--gold); color: var(--ivory) !important; }

    /* HERO */
    .hero {
      min-height: 75vh;
      display: flex; align-items: center;
      position: relative;
      background: var(--verde-deep);
      padding: 10rem 5vw 6rem;
      overflow: hidden;
    }
    .hero::before {
      content:'';
      position:absolute; inset:0;
      background:
        radial-gradient(ellipse at 20% 30%, rgba(175,140,83,0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--verde-darker) 0%, var(--verde-deep) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-eyebrow {
      display:inline-flex; align-items:center; gap:.8rem;
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 2rem;
    }
    .hero-eyebrow::before {
      content:''; width: 32px; height:1px; background: var(--gold);
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 6vw, 5.4rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.018em;
      margin-bottom: 1.8rem;
      color: var(--ivory);
      max-width: 920px;
    }
    h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
    .hero-sub {
      font-size: clamp(0.98rem, 1.2vw, 1.12rem);
      color: rgba(245,243,238,0.78);
      max-width: 580px;
      margin: 0 0 2.8rem;
      font-weight: 300;
      line-height: 1.8;
    }
    .hero-cta {
      background: var(--gold);
      color: var(--verde-darker);
      padding: 1.05rem 2.3rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em;
      text-transform: uppercase; text-decoration: none; border: none;
      cursor: pointer; transition: all 0.4s cubic-bezier(.22,1,.36,1);
      display: inline-flex; align-items:center; gap:.7rem;
    }
    .hero-cta::after { content:'→'; transition: transform .35s; }
    .hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
    .hero-cta:hover::after { transform: translateX(4px); }

    /* SECTIONS */
    section { padding: 7rem 5vw; position: relative; }
    .container { max-width: 1100px; margin: 0 auto; }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.6rem);
      font-weight: 300;
      line-height: 1.12;
      letter-spacing: -0.015em;
      margin-bottom: 1.6rem;
      color: var(--ink);
    }
    h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
    h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.2vw, 1.9rem);
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 0.9rem;
      color: var(--ink);
    }
    .section-intro {
      font-size: 1.05rem;
      color: var(--ink-3);
      max-width: 640px;
      line-height: 1.85;
      margin-bottom: 3.5rem;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin: 3rem 0;
    }
    .card {
      background: var(--ivory-2);
      padding: 2.5rem 2rem;
      border: 1px solid var(--line);
      transition: all .35s;
    }
    .card:hover {
      background: var(--paper);
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .card h3 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
    .card p {
      color: var(--ink-3);
      line-height: 1.75;
      font-size: 0.95rem;
    }

    /* DARK SECTION */
    .dark-section {
      background: var(--verde-pale);
      color: var(--ink);
      position: relative;
    }
    .dark-section h2 { color: var(--ink); }
    .dark-section h2 em { color: var(--gold-muted); }
    .dark-section h3 { color: var(--verde); }
    .dark-section p { color: var(--ink-2); }
    .dark-section .section-intro { color: var(--ink-3); }
    .dark-section .card {
      background: var(--ivory);
      border-color: var(--line);
    }
    .dark-section .card:hover {
      background: #fff;
      border-color: var(--gold-light);
      transform: translateY(-3px);
    }
    .dark-section .section-num { color: var(--gold-muted); }

    /* FAQ */
    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 1.8rem 0;
    }
    .faq-item:first-child { padding-top: 0; }
    .faq-q {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.8rem;
      letter-spacing: -0.01em;
    }
    .faq-a {
      color: var(--ink-3);
      line-height: 1.8;
      font-size: 0.96rem;
    }

    /* CTA SECTION */
    .cta-section {
      background: var(--verde);
      text-align: center;
      padding: 8rem 5vw;
      position: relative;
      overflow: hidden;
    }
    .cta-section .cta-bg {
      position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
    }
    .cta-section::before {
      content:''; position:absolute; inset:0; z-index:1;
      background: linear-gradient(180deg, rgba(58,69,39,0.92) 0%, rgba(47,58,32,0.88) 100%);
    }
    .cta-section .container { position: relative; z-index: 2; }
    .cta-section h2 {
      color: var(--creme);
      margin-bottom: 1.2rem;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-section h2 em { color: var(--gold-soft); }
    .cta-section p {
      color: rgba(247,244,238,0.82);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      font-size: 1.02rem;
      line-height: 1.75;
    }
    .cta-section .hero-cta { background: var(--gold); color: var(--verde-darker); }
    .cta-section .hero-cta:hover { background: var(--gold-light); }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: rgba(245,243,238,0.6);
      padding: 3rem 5vw 2rem;
      font-size: 0.85rem;
      text-align: center;
    }
    footer a {
      color: var(--gold);
      text-decoration: none;
      transition: color .3s;
    }
    footer a:hover { color: var(--gold-light); }

    /* ─── REFINAMENTOS EDITORIAIS · HERO ─── */
    .hero {
      min-height: 92vh;
      padding: 13rem 5vw 7.5rem;
      align-items: center;
    }
    /* Profundidade cinematográfica: luz lateral de estúdio + vinheta */
    .hero::before {
      background:
        radial-gradient(ellipse 70% 80% at 12% 28%, rgba(175,140,83,0.13) 0%, transparent 55%),
        radial-gradient(ellipse 90% 100% at 88% 100%, rgba(38,46,23,0.55) 0%, transparent 60%),
        linear-gradient(140deg, var(--verde-darker) 0%, var(--verde-deep) 62%, #2c351c 100%);
    }
    /* Halo difuso superior — respiro de luz */
    .hero-content::before {
      content:''; position:absolute; top:-3.5rem; left:0; width:64px; height:1px;
      background: linear-gradient(to right, var(--gold), transparent);
      opacity:.7;
    }
    .hero-content { position: relative; }
    /* Filete vertical à direita — assinatura editorial */
    .hero::after {
      content:''; position:absolute; right:5vw; bottom:0; width:1px; height:48%;
      background: linear-gradient(to bottom, transparent, var(--gold-soft));
      opacity:.35; z-index:2;
    }

    /* Ritmo editorial progressivo */
    .hero-eyebrow {
      font-size: 0.72rem; letter-spacing: 0.4em;
      color: var(--gold-light); margin-bottom: 2.6rem;
    }
    .hero-eyebrow::before { width: 44px; background: var(--gold-light); }

    h1 {
      font-size: clamp(3rem, 7.2vw, 6.2rem);
      line-height: 1.02;
      letter-spacing: -0.025em;
      max-width: 16ch;
      margin-bottom: 2.4rem;
      text-wrap: balance;
    }
    h1 em { color: var(--gold-light); }

    .hero-sub {
      font-size: clamp(1.04rem, 1.25vw, 1.2rem);
      line-height: 1.85;
      color: rgba(245,243,238,0.86);
      max-width: 620px;
      margin-bottom: 3rem;
    }

    .hero-meta {
      display:flex; flex-wrap:wrap; gap: 1rem 2.8rem;
      margin: 0 0 3.4rem; padding-top: 2.2rem;
      border-top: 1px solid var(--line-light);
      max-width: 620px;
    }
    .hero-meta span {
      font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(212,184,134,0.92); position: relative; padding-left: 1.3rem;
    }
    .hero-meta span::before {
      content:''; position:absolute; left:0; top:50%; width:4px; height:4px;
      background: var(--gold); border-radius:50%; transform: translateY(-50%);
      box-shadow: 0 0 0 3px rgba(175,140,83,0.14);
    }

    /* CTA com presença institucional */
    .hero .hero-cta {
      padding: 1.15rem 2.6rem;
      letter-spacing: 0.2em;
      box-shadow: 0 18px 40px -20px rgba(0,0,0,0.55);
    }

    /* Cabeçalho de seção com numeral editorial */
    .section-head { display:flex; align-items:flex-start; gap:2.4rem; margin-bottom: 3.5rem; }
    .section-num {
      font-family:'Cormorant Garamond',serif; font-style:italic;
      font-size: 1.4rem; color: var(--gold); line-height: 1; padding-top:.6rem;
      flex-shrink:0; min-width: 2.5rem;
    }
    .section-head h2 { margin-bottom: 1.4rem; }
    .section-head .section-intro { margin-bottom: 0; }

    /* Largura editorial alternada — quebra ritmo de landing */
    .narrow { max-width: 760px; }
    .lead {
      font-family:'Cormorant Garamond',serif; font-weight:300;
      font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.45;
      color: var(--ink-2); letter-spacing:-0.01em; max-width: 820px;
    }
    .lead em { font-style: italic; color: var(--gold); }

    /* Seção manifesto — respiro dramático */
    .manifesto { padding: 9rem 5vw; background: var(--ivory-2); }
    .manifesto .container { max-width: 900px; }
    .manifesto .kicker {
      font-size:.7rem; letter-spacing:.32em; text-transform:uppercase;
      color: var(--gold-muted); margin-bottom: 2.5rem;
      display:flex; align-items:center; gap:.8rem;
    }
    .manifesto .kicker::before { content:''; width:32px; height:1px; background:var(--gold); }

    /* Linha editorial em listas (substitui card repetido em "Para Quem") */
    .editorial-list { display:grid; grid-template-columns:1fr; gap:0; margin-top:3rem; }
    .editorial-list .row {
      display:grid; grid-template-columns: 0.9fr 1.4fr; gap:3rem;
      padding: 2.6rem 0; border-top:1px solid var(--line); align-items:start;
    }
    .editorial-list .row:last-child { border-bottom:1px solid var(--line); }
    .editorial-list .row h3 { margin-bottom:0; }
    .editorial-list .row p { color: var(--ink-3); line-height:1.8; font-size:.97rem; }

    @media (max-width: 768px) {
      .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
      nav { padding: 1rem 4vw; }
      .nav-links { gap: 1.5rem; }
      .hero { padding: 9.5rem 6vw 5rem; min-height: 82vh; }
      section { padding: 4.5rem 4vw; }
      .section-head { flex-direction: column; gap: 1rem; }
      .section-num { padding-top: 0; }
      .editorial-list .row { grid-template-columns: 1fr; gap: 0.8rem; padding: 2rem 0; }
      .hero-meta { gap: 1.2rem 2rem; }
    }
    /* ════════════════════════════════════════
       ART DIRECTION · MOTION & EDITORIAL
       ════════════════════════════════════════ */

    /* — Header refinado — */
    nav { padding: 1.5rem 5vw; }
    /* Wordmark tipográfica (fallback enquanto o SVG oficial não é instalado) */
    .nav-logo-text {
      font-family: var(--serif-display);
      font-size: 1.15rem; font-weight: 500;
      letter-spacing: 0.18em; color: var(--ink);
      text-transform: uppercase;
    }
    .nav-logo-sub {
      display:block; font-family:'DM Sans',sans-serif; font-size:.52rem;
      letter-spacing:.42em; text-transform:uppercase; color: var(--gold-muted);
      margin-top: 3px;
    }
    /* Quando o logo oficial for instalado: <img class="nav-logo-img"> */
    .nav-logo-img { display:block; height: 26px; width: auto; }
    .nav-logo-link span { display: none; } /* esconder wordmark de texto quando logo oficial estiver presente */
    .nav-links { gap: 2.8rem; }

    /* ─── MOTION: scroll reveal (quiet, lento, sofisticado) ─── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1.5s var(--ease-lux), transform 1.5s var(--ease-lux);
      will-change: opacity, transform;
    }
    [data-reveal].is-in { opacity: 1; transform: none; }
    [data-reveal-delay="1"] { transition-delay: .14s; }
    [data-reveal-delay="2"] { transition-delay: .28s; }
    [data-reveal-delay="3"] { transition-delay: .42s; }
    [data-reveal-delay="4"] { transition-delay: .56s; }

    /* Text reveal por linha (headlines) — suave */
    .reveal-lines .line { display:block; overflow:hidden; padding-bottom:.04em; }
    .reveal-lines .line > span {
      display:block; transform: translateY(105%);
      transition: transform 1.5s var(--ease-lux);
    }
    .reveal-lines.is-in .line > span { transform: translateY(0); }
    .reveal-lines.is-in .line:nth-child(2) > span { transition-delay:.12s; }
    .reveal-lines.is-in .line:nth-child(3) > span { transition-delay:.24s; }
    .reveal-lines.is-in .line:nth-child(4) > span { transition-delay:.36s; }

    @media (prefers-reduced-motion: reduce) {
      [data-reveal], .reveal-lines .line > span { transition: none !important; opacity:1 !important; transform:none !important; }
    }

    /* ─── MOMENTO EDITORIAL (manchete cinematográfica) ─── */
    /* ─── MOMENTO EDITORIAL · QUIET LUXURY ─── */
    .editorial-moment {
      background: var(--ivory-2);
      color: var(--ink);
      padding: 10rem 5vw;
      position: relative;
      overflow: hidden;
    }
    .editorial-moment::before {
      content:''; position:absolute; inset:0;
      background: radial-gradient(ellipse 50% 70% at 88% 50%, rgba(175,140,83,0.06) 0%, transparent 60%);
    }
    .editorial-moment .container { position: relative; z-index: 2; max-width: 1040px; }
    .editorial-moment .em-kicker {
      font-family:'DM Sans',sans-serif; font-size:.68rem; letter-spacing:.4em;
      text-transform:uppercase; color: var(--gold-muted); margin-bottom: 2.5rem;
      display:flex; align-items:center; gap:.9rem;
    }
    .editorial-moment .em-kicker::before { content:''; width:48px; height:1px; background:var(--gold); }
    .editorial-moment blockquote {
      font-family: var(--serif-editorial);
      font-size: clamp(2rem, 4.4vw, 3.9rem);
      font-weight: 400; line-height: 1.18; letter-spacing: -0.015em;
      color: var(--ink); max-width: 17ch;
    }
    .editorial-moment blockquote em { font-style: italic; color: var(--gold-muted); }

    /* Variante com imagem de fundo arquitetônica (overlay claro/suave) */
    .editorial-moment.has-image { color: var(--creme); }
    .editorial-moment.has-image .em-kicker { color: var(--gold-soft); }
    .editorial-moment.has-image .em-kicker::before { background: var(--gold-soft); }
    .editorial-moment.has-image blockquote { color: var(--creme); }
    .editorial-moment.has-image blockquote em { color: var(--gold-soft); }
    .editorial-moment .em-bg {
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; z-index:0;
    }
    .editorial-moment.has-image::before {
      z-index:1;
      background: linear-gradient(100deg, rgba(47,58,32,0.82) 0%, rgba(47,58,32,0.45) 55%, rgba(47,58,32,0.30) 100%);
    }

    /* ─── IMAGEM + TEXTO (split editorial) ─── */
    .split {
      display:grid; grid-template-columns: 1.05fr 1fr;
      align-items: stretch; min-height: 82vh;
      background: var(--ivory);
    }
    .split.flip .split-media { order: 2; }
    .split-media { position: relative; overflow: hidden; background: var(--paper); }
    .split-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
    .split-media::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      background: linear-gradient(180deg, rgba(66,79,44,0.04), rgba(47,58,32,0.10));
    }
    .split-text { display:flex; flex-direction:column; justify-content:center; padding: 6rem 5vw; background: var(--ivory); }
    .split-text .container { max-width: 520px; margin: 0; }

    /* ─── SLOT DE IMAGEM (placeholder, mantido p/ fallback) ─── */
    .img-slot {
      position: relative; width:100%; height:100%; min-height: 420px;
      background:
        linear-gradient(135deg, var(--paper) 0%, var(--paper-dark) 100%);
      display:flex; align-items:center; justify-content:center;
      overflow: hidden;
    }
    .img-slot img { width:100%; height:100%; object-fit: cover; display:block; }
    .img-slot::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      background: linear-gradient(180deg, rgba(66,79,44,0.03) 0%, rgba(47,58,32,0.10) 100%);
    }
    .img-slot .slot-label {
      position: relative; z-index: 3; text-align:center;
      font-family:'DM Sans',sans-serif; color: rgba(245,243,238,0.5);
      font-size:.72rem; letter-spacing:.24em; text-transform:uppercase;
      padding: 1.5rem; line-height: 2;
    }
    .img-slot .slot-label i {
      display:block; font-style:normal; font-family:var(--serif-display);
      font-size:1.4rem; letter-spacing:0; color: var(--gold-soft);
      text-transform:none; margin-bottom:.6rem;
    }

    /* ─── FULL-BLEED IMAGE BAND (respiro arquitetônico) ─── */
    .image-band {
      position: relative; min-height: 64vh;
      display:flex; align-items:flex-end;
      background: var(--paper);
      overflow:hidden;
    }
    .image-band img.band-bg {
      position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
    }
    .image-band::after {
      content:''; position:absolute; inset:0; z-index:1;
      background: linear-gradient(180deg, rgba(47,58,32,0.05) 0%, rgba(47,58,32,0.55) 100%);
    }
    .image-band .band-caption {
      position: relative; z-index:3; padding: 4rem 5vw;
      color: var(--creme); max-width: 820px;
    }
    .image-band .band-caption .bc-kicker {
      font-family:'DM Sans',sans-serif; font-size:.66rem; letter-spacing:.36em;
      text-transform:uppercase; color: var(--gold-soft); margin-bottom: 1.2rem;
    }
    .image-band .band-caption p {
      font-family: var(--serif-editorial); font-size: clamp(1.4rem, 2.6vw, 2.3rem);
      font-weight: 400; line-height: 1.32; color: var(--creme);
    }
    .image-band .band-caption p em { font-style:italic; color: var(--gold-soft); }

    /* refinamento serif nos H2 principais → Playfair editorial */
    h2 { font-family: var(--serif-editorial); }
    .hero h1 { font-family: var(--serif-display); }

    @media (max-width: 880px) {
      .split { grid-template-columns: 1fr; min-height: 0; }
      .split.flip .split-media { order: 0; }
      .split-media { min-height: 56vh; }
      .split-text { padding: 4rem 6vw; }
      .editorial-moment { padding: 6rem 6vw; }
    }
    /* ─── FALLBACK: se uma imagem falhar, o container fica com tom editorial ─── */
    .hero-media-col, .split-media, .editorial-moment.has-image, .cta-section, .image-band {
      background-color: var(--paper);
      background-image:
        linear-gradient(135deg, var(--paper) 0%, var(--paper-dark) 60%, var(--verde-pale) 100%);
    }
    /* imagens com fade-in suave quando carregam (evita "flash" branco) */
    .hero-media-col img, .split-media img,
    .editorial-moment .em-bg, .image-band .band-bg, .cta-section .cta-bg {
      opacity: 0;
      transition: opacity 1.2s var(--ease-soft), transform .2s linear;
    }
    .hero-media-col img.loaded, .split-media img.loaded,
    .editorial-moment .em-bg.loaded, .image-band .band-bg.loaded, .cta-section .cta-bg.loaded {
      opacity: 1;
    }

    /* ─── HERO SPLIT · QUIET LUXURY EDITORIAL ─── */
    .hero.hero-split { padding: 0; min-height: 100vh; display: grid; grid-template-columns: 1.02fr 1fr; align-items: stretch; background: var(--ivory); }
    .hero.hero-split::before { display:none; }
    .hero.hero-split::after { display:none; }
    .hero-split .hero-text-col {
      position: relative; display:flex; align-items:center;
      background: var(--ivory);
      padding: 12rem 5vw 7rem;
    }
    .hero-split .hero-text-col::before {
      content:''; position:absolute; right:0; top:22%; bottom:22%; width:1px;
      background: linear-gradient(to bottom, transparent, var(--line-gold), transparent);
    }
    /* texto escuro sobre creme */
    .hero-split .hero-eyebrow { color: var(--gold-muted); }
    .hero-split .hero-eyebrow::before { background: var(--gold); }
    .hero-split h1 { color: var(--ink); }
    .hero-split h1 em { color: var(--gold-muted); font-style: italic; }
    .hero-split .hero-sub { color: var(--ink-2); }
    .hero-split .hero-meta { border-top-color: var(--line); }
    .hero-split .hero-meta span { color: var(--gold-muted); }
    .hero-split .hero-meta span::before { box-shadow: 0 0 0 3px rgba(175,140,83,0.10); }
    .hero-split .hero-cta { background: var(--verde); color: var(--ivory); }
    .hero-split .hero-cta:hover { background: var(--verde-deep); }

    .hero-split .hero-media-col { position: relative; overflow: hidden; background: var(--paper); }
    .hero-split .hero-media-col img {
      position:absolute; inset:0; width:100%; height:100%;
      object-fit: cover; object-position: center;
    }
    /* overlay creme suave à esquerda para fundir com a coluna de texto */
    .hero-split .hero-media-col::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      background:
        linear-gradient(90deg, var(--ivory) 0%, rgba(250,248,243,0) 18%),
        linear-gradient(180deg, rgba(66,79,44,0.05) 0%, rgba(47,58,32,0.12) 100%);
    }
    @media (max-width: 880px) {
      .hero.hero-split { grid-template-columns: 1fr; min-height: 0; }
      .hero-split .hero-media-col { min-height: 52vh; order: 0; }
      .hero-split .hero-media-col::after { background: linear-gradient(180deg, rgba(66,79,44,0.04), rgba(47,58,32,0.14)); }
      .hero-split .hero-text-col { padding: 6rem 6vw 4.5rem; min-height: auto; }
      .hero-split .hero-text-col::before { display:none; }
    }