:root{
    --graphite:#1A1A1D;
    --cream:#F7F4EE;
    --gold:#B8975A;
    --wine:#6B1F2A;
    --gray:#8A8A8E;
    --line: rgba(26,26,29,0.12);
    --line-light: rgba(247,244,238,0.18);
    --serif: "Fraunces", serif;
    --sans: "Inter", sans-serif;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    scrollbar-width:thin;
    scrollbar-color: rgba(184,151,90,.8) rgba(26,26,29,.08);
  }
  body{
    font-family: var(--sans);
    background: var(--cream);
    color: var(--graphite);
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
  }
  ::selection{
    background:#956913;
    color:var(--cream);
  }
  ::-moz-selection{
    background:#956913;
    color:var(--cream);
  }
  body.flow-nav-entering main,
  body.flow-nav-entering header,
  body.flow-nav-entering footer{
    opacity:0;
    transform:translateY(8px);
  }
  body.flow-nav-ready main,
  body.flow-nav-ready header,
  body.flow-nav-ready footer{
    transition:opacity .28s cubic-bezier(.22,.8,.28,1), transform .28s cubic-bezier(.22,.8,.28,1);
  }
  body.flow-nav-ready.flow-nav-in main,
  body.flow-nav-ready.flow-nav-in header,
  body.flow-nav-ready.flow-nav-in footer{
    opacity:1;
    transform:none;
  }
  body.flow-nav-transitioning{
    overflow:hidden;
  }
  .flow-nav-curtain{
    position:fixed;
    inset:0;
    background:rgba(247,244,238,.58);
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
    transition:opacity .24s cubic-bezier(.22,.8,.28,1), transform .24s cubic-bezier(.22,.8,.28,1);
    z-index:120;
  }
  .flow-nav-curtain.is-active{
    opacity:1;
    transform:none;
  }
  ::-webkit-scrollbar{
    width:12px;
    height:12px;
  }
  ::-webkit-scrollbar-track{
    background:rgba(26,26,29,.06);
  }
  ::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg, rgba(184,151,90,.95), rgba(184,151,90,.72));
    border-radius:999px;
    border:2px solid var(--cream);
  }
  ::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg, #c4a066, #ae884d);
  }
  ::-webkit-scrollbar-corner{
    background:rgba(26,26,29,.06);
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}

  /* ===== Process rule — signature element ===== */
  .protocolo{
    display:none;
  }
  .no-protocolo .protocolo{ display:none; }
  @media(max-width:900px){ .protocolo{ display:none; } }

  /* ===== Layout helpers ===== */
  .wrap{
    max-width:1280px;
    margin:0 auto;
    padding:0 48px;
    position:relative;
  }
  @media(max-width:900px){ .wrap{padding:0 24px;} }

  section{ position:relative; }
  main{ position:relative; }
  main > section{
    position:relative;
    isolation:isolate;
    border-top:none !important;
    border-bottom:none !important;
  }
  main > section:not(:first-of-type):not(.stats){
    --section-overlap:56px;
    --section-radius:44px;
    margin-top:calc(var(--section-overlap) * -1);
    border-radius:var(--section-radius) var(--section-radius) 0 0;
    box-shadow:none;
    z-index:1;
  }
  main > section:not(:first-of-type):not(.stats) > .wrap:first-child{
    padding-top:var(--section-overlap);
  }
  @media(max-width:900px){
    main > section:not(:first-of-type):not(.stats){
      --section-overlap:32px;
      --section-radius:28px;
    }
  }

  @media(min-width:901px){
    main{
      padding-top:88px;
    }
  }

  .eyebrow{
    font-family:var(--sans);
    font-size:12px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:600;
    display:flex;
    align-items:center;
    gap:14px;
  }
  .eyebrow::before{
    content:"";
    width:28px; height:1px;
    background:var(--gold);
    display:block;
  }

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

  /* ===== Header ===== */
  header{
    position:fixed; top:0; left:0; width:100%; z-index:50;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom:1px solid transparent;
    box-shadow:none;
    transform:translateY(0);
    transition: transform .38s cubic-bezier(.22,.8,.28,1), background .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  header.scrolled{
    background: rgba(247,244,238,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color:transparent;
    box-shadow:none;
    transform:translateY(12px);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    gap:28px;
    padding:16px 48px;
    max-width:1280px; margin:0 auto;
    transition:background-color .38s ease, box-shadow .38s ease, border-color .38s ease, backdrop-filter .38s ease, padding .38s ease, border-radius .38s ease, max-width .38s ease;
  }
  header.scrolled .nav{
    width:calc(100% - 24px);
    max-width:none;
    background:rgba(247,244,238,.9);
    backdrop-filter:blur(28px) saturate(170%);
    -webkit-backdrop-filter:blur(28px) saturate(170%);
    border:1px solid rgba(184,151,90,.24);
    border-radius:24px;
    box-shadow:0 24px 54px rgba(26,26,29,.12), 0 6px 18px rgba(184,151,90,.14);
    padding-top:11px;
    padding-bottom:11px;
  }
  .nav .logo{
    display:inline-flex;
    align-items:center;
    transition:transform .28s ease, opacity .28s ease;
  }
  .nav .logo:hover{
    transform:translateY(-1px);
    opacity:.9;
  }
  .nav .logo svg{ height:30px; width:auto; }
  .nav-links{
    display:flex; align-items:center; justify-content:flex-end; gap:12px;
    margin-left:auto;
    font-size:14px; font-weight:500; letter-spacing:.01em;
  }
  .nav-links a{
    position:relative;
    padding:11px 16px;
    border-radius:999px;
    transition:color .25s, background-color .25s, transform .25s;
  }
  .nav-links a:not(.nav-cta)::after{
    content:"";
    position:absolute; left:16px; right:16px; bottom:6px;
    width:auto; height:1px; background:var(--gold);
    transform:scaleX(0);
    transform-origin:left center;
    transition:transform .3s ease;
  }
  .nav-links a:not(.nav-cta):hover::after{ transform:scaleX(1); }
  .nav-links a:not(.nav-cta):hover{
    color:var(--gold);
    background:rgba(184,151,90,.08);
    transform:translateY(-1px);
  }
  .nav-links a.active:not(.nav-cta){ color:var(--gold); }
  .nav-links a.active:not(.nav-cta){
    background:rgba(184,151,90,.1);
  }
  .nav-links a.active:not(.nav-cta)::after{ transform:scaleX(1); }

  .nav-cta{
    color:var(--graphite);
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(184,151,90,.14));
    background-size:200% 100%;
    background-position:0 0;
    min-width:198px;
    min-height:48px;
    padding:0 26px;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.11em;
    text-transform:uppercase;
    border:1px solid rgba(184,151,90,.34);
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    line-height:normal;
    white-space:nowrap;
    box-shadow:0 12px 28px rgba(184,151,90,.12);
    transition:background-position .45s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
  }
  .nav-cta::after{
    content:"\2197";
    font-size:13px;
    line-height:1;
    opacity:.75;
    transition:transform .28s ease, opacity .28s ease;
  }
  .nav-cta:hover{
    background-position:100% 0;
    color:var(--graphite);
    border-color:rgba(184,151,90,.6);
    box-shadow:0 18px 32px rgba(184,151,90,.18);
    transform:translateY(-2px);
  }
  .nav-cta:hover::after{
    transform:translate(2px,-1px);
    opacity:1;
  }

  /* ===== Backdrop overlay (mobile) ===== */
  .nav-backdrop{
    display:none;
    position:fixed; inset:0;
    background:rgba(26,26,29,0.42);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
    z-index:48;
    opacity:0;
    pointer-events:none;
    transition:opacity .38s ease;
  }

  .menu-toggle{ display:none; background:none; border:none; cursor:pointer; padding:0; }

  /* ===== Mobile nav ===== */
  @media(max-width:900px){
    .nav-backdrop{ display:block; }
    .nav-backdrop.open{ opacity:1; pointer-events:auto; }

    header{
      position:sticky;
      left:auto;
      width:auto;
      transform:none;
      background:rgba(247,244,238,.92);
      backdrop-filter:blur(20px) saturate(145%);
      -webkit-backdrop-filter:blur(20px) saturate(145%);
    }
    header.scrolled{
      transform:none;
      background:transparent;
      backdrop-filter:none;
      -webkit-backdrop-filter:none;
    }

    .nav{
      gap:16px;
      padding:12px 20px;
      min-height:64px;
      align-items:center;
    }
    header.scrolled .nav{
      max-width:calc(100% - 20px);
      background:rgba(247,244,238,.94);
      backdrop-filter:blur(24px) saturate(165%);
      -webkit-backdrop-filter:blur(24px) saturate(165%);
      border:1px solid rgba(184,151,90,.2);
      box-shadow:0 18px 40px rgba(26,26,29,.12);
      transform:translateY(10px);
      padding-top:12px;
      padding-bottom:12px;
      border-radius:20px;
    }

    .nav .logo svg{ height:34px; }

    /* Full-screen mobile menu */
    .nav-links{
      display:flex;
      position:fixed;
      inset:0;
      width:100vw;
      min-height:100dvh;
      background:rgba(247,244,238,.96);
      flex-direction:column;
      justify-content:flex-start;
      align-items:stretch;
      padding:110px 28px 40px;
      gap:0;
      transform:translateX(100%);
      opacity:0;
      pointer-events:none;
      overflow-y:auto;
      transition:transform .42s cubic-bezier(.4,0,.2,1), opacity .3s ease;
      z-index:49;
      visibility:hidden;
      box-shadow:none;
      backdrop-filter:blur(24px);
      -webkit-backdrop-filter:blur(24px);
    }

    .nav-links::before{
      content:"Menu";
      display:block;
      font-size:10px;
      font-weight:700;
      letter-spacing:.26em;
      text-transform:uppercase;
      color:var(--gold);
      margin-bottom:26px;
      padding-bottom:20px;
      border-bottom:1px solid var(--line);
    }

    .nav-links.open{
      transform:translateX(0);
      opacity:1;
      pointer-events:auto;
      visibility:visible;
    }

    .nav-links a:not(.nav-cta){
      display:flex;
      align-items:center;
      justify-content:space-between;
      width:100%;
      font-family:var(--serif);
      font-size:clamp(24px, 5vw, 32px);
      font-weight:600;
      letter-spacing:-0.01em;
      padding:18px 0;
      background:transparent;
      border-bottom:1px solid rgba(26,26,29,.07);
      color:var(--graphite);
      border-radius:0;
      opacity:0;
      transform:translateX(14px);
      transition:color .25s ease, opacity .34s ease, transform .34s ease;
    }

    .nav-links a:not(.nav-cta)::after{
      content:"";
      background:transparent;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8H13M13 8L9 4M13 8L9 12' stroke='%23B8975A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat:no-repeat;
      background-size:contain;
      background-position:center;
      position:static;
      bottom:auto; left:auto;
      width:15px; height:15px;
      opacity:0;
      transform:translateX(-5px);
      transition:opacity .25s ease, transform .25s ease;
      flex-shrink:0;
    }

    .nav-links a:not(.nav-cta):hover{ color:var(--gold); }
    .nav-links a:not(.nav-cta):hover::after{ opacity:1; transform:translateX(0); width:15px; }
    .nav-links a.active:not(.nav-cta){ color:var(--gold); }
    .nav-links a.active:not(.nav-cta)::after{ opacity:1; transform:translateX(0); width:15px; }

    /* Stagger entrance */
    .nav-links a:nth-child(2){ transition-delay:.04s; }
    .nav-links a:nth-child(3){ transition-delay:.08s; }
    .nav-links a:nth-child(4){ transition-delay:.12s; }
    .nav-links a:nth-child(5){ transition-delay:.16s; }
    .nav-links a:nth-child(6){ transition-delay:.20s; }
    .nav-links a:nth-child(7){ transition-delay:.24s; }

    .nav-links.open a:not(.nav-cta){ opacity:1; transform:translateX(0); }

    .nav-cta{
      margin-top:30px;
      align-self:stretch;
      min-width:0;
      min-height:56px;
      padding:16px 24px;
      font-size:11px;
      letter-spacing:.12em;
      justify-content:center;
      border-radius:18px;
      opacity:0;
      transform:translateY(10px);
      transition:background-position .45s ease, color .28s ease, border-color .28s ease,
                 box-shadow .28s ease, opacity .34s ease .22s, transform .34s ease .22s;
    }

    .nav-links.open .nav-cta{ opacity:1; transform:translateY(0); }

    /* Animated hamburger */
    .menu-toggle{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:5px;
      position:relative;
      z-index:51;
      width:44px;
      height:44px;
      border:1px solid rgba(184,151,90,.16);
      border-radius:999px;
      background:rgba(255,255,255,.72);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      box-shadow:0 8px 22px rgba(26,26,29,.06);
      transition:border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
      flex-shrink:0;
    }
    .nav:has(.nav-links.open) .logo{
      opacity:0;
      pointer-events:none;
    }
    .nav:has(.nav-links.open) .menu-toggle{
      position:fixed;
      top:12px;
      right:20px;
      background:rgba(255,255,255,.94);
      box-shadow:0 14px 30px rgba(26,26,29,.12);
    }

    .menu-toggle:hover,
    .menu-toggle[aria-expanded="true"]{
      border-color:rgba(184,151,90,.34);
      background:rgba(255,255,255,.95);
      box-shadow:0 12px 28px rgba(184,151,90,.16);
      transform:translateY(-1px);
    }

    .menu-bar{
      display:block;
      width:18px;
      height:1.5px;
      background:var(--graphite);
      border-radius:2px;
      transition:transform .38s cubic-bezier(.68,-.06,.32,1.06), opacity .22s ease;
      transform-origin:center;
    }

    .menu-toggle[aria-expanded="true"] .bar-1{ transform:translateY(6.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .bar-2{ opacity:0; transform:scaleX(0); }
    .menu-toggle[aria-expanded="true"] .bar-3{ transform:translateY(-6.5px) rotate(-45deg); }
  }

  /* ===== Hero ===== */
  .hero{
    padding:56px 0 24px;
    overflow:hidden;
    background:
      radial-gradient(circle at 16% 18%, rgba(184,151,90,.12), transparent 28%),
      linear-gradient(180deg, rgba(255,255,255,.45), rgba(247,244,238,0));
  }
  .hero::before{
    content:"";
    position:absolute;
    left:48px;
    right:48px;
    top:28px;
    bottom:0;
    border:1px solid rgba(184,151,90,.14);
    pointer-events:none;
  }
  .hero::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    right:-110px;
    top:52px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(107,31,42,.13), rgba(107,31,42,0) 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items:center;
    gap:32px;
    min-height:calc(100vh - 73px - 56px);
    position:relative;
    z-index:1;
  }
  @media(max-width:1000px){
    .hero{
      padding-top:32px;
    }
    .hero::before,
    .hero::after{
      display:none;
    }
    .hero-grid{ grid-template-columns:1fr; min-height:auto; gap:0; }
  }
  .hero-text{
    padding:84px 0 72px;
    position:relative;
  }
  .hero-text .wrap{
    padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
    padding-right:72px;
    max-width:none;
    margin:0;
  }
  .hero-text .wrap::before{
    content:"";
    position:absolute;
    left:0;
    top:22px;
    width:140px;
    height:1px;
    background:linear-gradient(90deg, var(--gold), transparent);
    opacity:.55;
  }
  @media(max-width:1280px){ .hero-text .wrap{ padding-right:48px; } }
  @media(max-width:1000px){ .hero-text .wrap{ padding-left:24px; padding-right:24px; } }
  .hero-text .eyebrow{
    margin-bottom:22px;
  }
  .hero-text h1{
    font-size: clamp(48px, 6.1vw, 88px);
    margin-bottom:26px;
    max-width:12ch;
    line-height:1.02;
    text-wrap:balance;
  }
  .hero-text h1 em{
    font-style:italic;
    color:var(--gold);
    font-weight:500;
  }
  .hero-text p{
    font-size:17px;
    line-height:1.8;
    color:rgba(26,26,29,.6);
    max-width:43ch;
    margin-bottom:38px;
  }
  .hero-actions{
    display:flex;
    gap:20px 28px;
    flex-wrap:wrap;
    align-items:center;
    margin-bottom:52px;
  }

  .hero-credential{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:20px;
    max-width:520px;
    padding:24px 28px;
    background:rgba(255,255,255,.56);
    border:1px solid rgba(26,26,29,.1);
    box-shadow:0 18px 45px rgba(26,26,29,.08);
    backdrop-filter:blur(10px);
  }
  .hero-credential-num{
    font-family:var(--serif);
    font-size:54px;
    font-weight:600;
    color:var(--gold);
    line-height:1;
    flex-shrink:0;
  }
  .hero-credential span:last-child{
    font-size:14px;
    line-height:1.65;
    color:#66666d;
  }

  .btn-primary{
    background: linear-gradient(to right, #d5b57b 50%, var(--graphite) 50%);
    background-size:200% 100%;
    background-position:right center;
    color:var(--cream);
    padding:18px 40px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    gap:14px;
    border:none;
    box-shadow:0 16px 28px rgba(26,26,29,.12);
    transition:background-position .45s ease, color .25s ease, transform .3s ease, box-shadow .3s ease;
  }
  .btn-primary:hover{
    background-position:left center;
    color:var(--graphite);
    transform:translateY(-2px);
    box-shadow:0 20px 36px rgba(26,26,29,.16);
  }
  .btn-primary svg{ transition: transform .35s ease; }
  .btn-primary:hover svg{ transform: translateX(4px); }

  .btn-ghost{
    font-size:13px;
    font-weight:500;
    letter-spacing:.05em;
    color:var(--gray);
    position:relative;
    padding-bottom:3px;
    transition:color .3s;
  }
  .btn-ghost::after{
    content:'';
    position:absolute;
    left:0; bottom:0;
    width:0; height:1px;
    background:var(--graphite);
    transition:width .35s ease;
  }
  .btn-ghost:hover{ color:var(--graphite); }
  .btn-ghost:hover::after{ width:100%; }

  /* Trio de fotos coloridas */
  .hero-media{
    position:relative;
    height:100%;
    min-height:620px;
    padding:28px 32px 28px 0;
  }
  .hero-media::before{
    content:"";
    position:absolute;
    inset:0 0 0 56px;
    background:linear-gradient(160deg, var(--graphite), #27272d 58%, #34343b);
    border-radius:28px 0 0 28px;
    box-shadow:0 24px 70px rgba(26,26,29,.18);
  }
  .hero-media::after{
    content:"";
    position:absolute;
    left:24px;
    bottom:10px;
    width:180px;
    height:180px;
    border:1px solid rgba(184,151,90,.28);
    border-radius:24px;
    pointer-events:none;
  }
  .hero-trio{
    position:relative;
    height:100%;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:10px;
    padding:26px 28px 26px 82px;
    z-index:1;
  }
  .hero-trio img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    min-height:560px;
    border-radius:24px;
    filter:saturate(1.03) contrast(1.02);
    box-shadow:0 14px 34px rgba(0,0,0,.2);
  }
  .hero-trio .trio-2{
    object-position: center 15%;
    transform:translateY(-18px);
  }
  .hero-trio .trio-1{ object-position: center 12%; }
  .hero-trio .trio-3{
    object-position: center 10%;
    transform:translateY(22px);
  }

  @media(max-width:1000px){
    .hero-media{
      height:auto;
      min-height:auto;
      order:-1;
      padding:0 24px;
      margin-bottom:16px;
    }
    .hero-media::before{
      inset:0 24px;
      border-radius:26px;
    }
    .hero-media::after{
      display:none;
    }
    .hero-text{
      padding:28px 0 24px;
    }
    .hero-text .wrap::before{
      display:none;
    }
    .hero-actions{
      margin-bottom:34px;
    }
    .hero-credential{
      max-width:none;
    }
    .hero-trio{
      grid-template-columns: 1fr 1fr 1fr;
      height:auto;
      min-height:320px;
      padding:20px 20px 20px 44px;
      gap:8px;
    }
    .hero-trio img{
      height:320px;
      min-height:0;
      border-radius:18px;
    }
    .hero-trio .trio-2{
      transform:none;
    }
    .hero-trio .trio-3{
      display:block;
      transform:none;
    }
  }
  @media(max-width:600px){
    .hero-trio{
      grid-template-columns: 1fr 1fr 1fr;
      min-height:260px;
      padding:16px 16px 16px 32px;
      gap:6px;
    }
    .hero-trio img{
      height:260px;
      border-radius:16px;
    }
    .hero-credential{
      grid-template-columns:1fr;
      gap:12px;
      padding:20px;
    }
    .hero-credential-num{
      font-size:42px;
    }
  }

  /* ===== Stats bar ===== */
.stats{
  position:relative;
  z-index:3;
  margin-top:-34px;
  padding-top:18px;
}
.stats::before{
  content:"";
  position:absolute;
  left:0;
    right:0;
    top:-72px;
    height:120px;
  background:linear-gradient(180deg, rgba(247,244,238,0) 0%, rgba(247,244,238,.82) 58%, var(--cream) 100%);
  pointer-events:none;
}
@media(max-width:1000px){
  .stats{
    margin-top:12px;
    padding-top:0;
  }
  .stats::before{
    display:none;
  }
}
  .stats .wrap{
    position:relative;
  }
  .stats-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:0;
    border:1px solid rgba(184,151,90,.14);
    border-radius:26px;
    overflow:hidden;
    background:rgba(255,255,255,.68);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 26px 60px rgba(184,151,90,.1);
  }
  @media(max-width:800px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }
  @media(max-width:560px){ .stats-grid{ grid-template-columns:1fr; } }
  .stat{
    position:relative;
    padding:30px 28px 26px;
    border-right:1px solid rgba(184,151,90,.12);
    transition:background .4s ease, transform .4s cubic-bezier(.22,.8,.28,1), box-shadow .4s ease;
    display:grid;
    grid-template-columns:56px 1fr;
    align-items:center;
    gap:18px;
  }
  .stat:hover{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,248,241,.98));
    transform:translateY(-6px);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
    z-index:1;
  }
  .stat:last-child{ border-right:none; }
  .stat svg{
    width:24px;
    height:24px;
    color:var(--graphite);
    opacity:.86;
  }
  .stat::before{
    content:"";
    width:56px;
    height:56px;
    position:absolute;
    left:28px;
    top:50%;
    transform:translateY(-50%);
    border-radius:18px;
    background:radial-gradient(circle at 30% 30%, rgba(184,151,90,.12), rgba(184,151,90,.03));
    border:1px solid rgba(184,151,90,.12);
  }
  .stat > *{
    position:relative;
    z-index:1;
  }
  @media(max-width:800px){
    .stat:nth-child(2n){ border-right:none; }
    .stat:nth-child(-n+2){ border-bottom:1px solid rgba(184,151,90,.12); }
  }
  .stat .num{
    font-family:var(--serif);
    font-size:38px;
    font-weight:600;
    color:var(--graphite);
    margin-bottom:4px;
    line-height:.96;
  }
  .stat .num span{ color:var(--gold); }
  .stat .label{
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(26,26,29,.46);
    font-weight:600;
  }
  @media(max-width:560px){
    .stats .wrap{
      padding:0;
    }
    .stat{
      padding:24px 22px;
      border-right:none;
      border-bottom:1px solid rgba(184,151,90,.12);
      grid-template-columns:52px 1fr;
      gap:16px;
    }
    .stat:last-child{
      border-bottom:none;
    }
    .stat:nth-child(-n+2){
      border-bottom:1px solid rgba(184,151,90,.12);
    }
    .stat::before{
      width:52px;
      height:52px;
      left:22px;
    }
    .stat .num{
      font-size:clamp(30px, 10vw, 42px);
      line-height:1;
      margin-bottom:8px;
    }
    .stat .num span{
      display:inline;
      margin-left:.08em;
    }
    .stat .label{
      font-size:11px;
      line-height:1.5;
      letter-spacing:.12em;
      max-width:22ch;
    }
  }

  /* ===== Section heading pattern ===== */
  .section-head{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:48px;
    align-items:end;
    margin-bottom:64px;
  }
  @media(max-width:800px){ .section-head{ grid-template-columns:1fr; gap:24px; } }
  .section-head h2{ font-size: clamp(36px,4.5vw,56px); }
  .section-head .desc{
    font-size:16px; line-height:1.75; color:#4a4a4d;
  }

  /* ===== Áreas de atuação ===== */
.areas{
  position:relative;
  margin-top:0;
  padding:150px 0 130px;
}
.areas::before{
  content:"";
  position:absolute;
    left:0;
    right:0;
    top:0;
  height:120px;
  background:linear-gradient(180deg, rgba(247,244,238,0) 0%, rgba(247,244,238,.78) 52%, var(--cream) 100%);
  pointer-events:none;
}
  .areas .eyebrow{ margin-bottom:24px; }

  .areas-grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
  }
  @media(max-width:800px){ .areas-grid{ grid-template-columns:1fr; } .area-card{ grid-column: span 1 !important; } }

  .area-card{
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:48px;
    position:relative;
    overflow:hidden;
    transition: background .4s ease, transform .45s cubic-bezier(.22,.8,.28,1), box-shadow .45s ease;
    min-height:260px;
    display:flex; flex-direction:column; justify-content:space-between;
  }
  .area-card:hover{ background:var(--graphite); color:var(--cream); }
  .area-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 48px rgba(26,26,29,.14);
    z-index:2;
  }
  .area-card:hover .area-art{ stroke:var(--gold); }
  .area-card:hover .area-num{ color:var(--gold); }
  .area-card:hover .area-arrow{ opacity:1; transform:translate(0,0); }
  .area-card:hover .area-desc{ color: rgba(247,244,238,0.65); }

  .area-top{
    display:flex; justify-content:space-between; align-items:flex-start;
  }
  .area-num{
    font-family:var(--serif);
    font-size:14px;
    color:var(--gold);
    letter-spacing:.05em;
    transition:color .4s;
  }
  .area-art{
    width:46px; height:46px;
    stroke:var(--graphite);
    stroke-width:1.2;
    fill:none;
    transition: stroke .4s ease;
  }
  .area-card h3{
    font-size:28px;
    margin:28px 0 12px;
  }
  .area-desc{
    font-size:14.5px; line-height:1.7; color:var(--gray);
    max-width:32ch;
    transition:color .4s;
  }
  .area-arrow{
    display:flex; justify-content:flex-end; margin-top:24px;
    opacity:0; transform:translate(-8px,8px);
    transition: all .4s ease;
  }
  .area-arrow svg{ stroke:var(--gold); width:20px; height:20px; }
  .area-arrow::before{
    content:"";
  }
  @media(max-width:800px){
    .areas{
      padding:96px 0;
    }
    .areas-grid{
      border:none;
      gap:14px;
      background:transparent;
    }
    .area-card{
      border:1px solid rgba(184,151,90,.14);
      border-radius:22px;
      padding:36px 24px;
      min-height:auto;
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,247,241,.98));
      box-shadow:0 14px 30px rgba(184,151,90,.06);
      transform:none !important;
    }
    .area-card:hover{
      box-shadow:0 18px 34px rgba(184,151,90,.08);
    }
    .area-card h3{
      font-size:24px;
      margin:22px 0 10px;
    }
    .area-desc{
      max-width:none;
      font-size:14px;
      line-height:1.72;
    }
    .area-arrow{
      justify-content:flex-start;
      align-items:center;
      gap:10px;
      opacity:1;
      transform:none;
      margin-top:20px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--gold);
    }
    .area-arrow::before{
      content:"Acessar";
    }
  }

  @media(max-width:430px){
    .areas{
      margin-top:0;
      padding:96px 0 84px;
    }
    .area-card{
      padding:28px 18px;
      border-radius:18px;
    }
    .area-top{
      gap:16px;
    }
    .area-art{
      width:40px;
      height:40px;
      flex:none;
    }
    .area-card h3{
      font-size:22px;
    }
    .area-desc{
      font-size:13.5px;
    }
  }

  /* ===== Sobre / Manifesto ===== */
.manifesto{
  position:relative;
  padding:140px 0;
  background:var(--graphite);
  color:var(--cream);
}
.manifesto-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap:80px;
}
  @media(max-width:900px){ .manifesto-grid{ grid-template-columns:1fr; gap:48px; } }
  .manifesto .eyebrow{ color:var(--gold); margin-bottom:28px; }
  .manifesto .eyebrow::before{ background:var(--gold); }
  .manifesto h2{
    font-size: clamp(32px,4vw,48px);
    color:var(--cream);
  }
  .manifesto-body p{
    font-size: clamp(20px,2.4vw,28px);
    line-height:1.6;
    font-family:var(--serif);
    font-weight:400;
    color: rgba(247,244,238,0.92);
    margin-bottom:28px;
  }
  .manifesto-body p em{
    font-style:italic; color:var(--gold);
  }
  .manifesto-body .sub{
    font-family:var(--sans);
    font-size:15px;
    line-height:1.8;
    color: rgba(247,244,238,0.55);
    max-width:60ch;
    margin-top:36px;
  }
  .manifesto-foot{
    display:flex; gap:48px; margin-top:56px;
    flex-wrap:wrap;
    border-top:1px solid var(--line-light);
    padding-top:36px;
  }
  .manifesto-foot div{ flex:1; min-width:180px; }
  .manifesto-foot h4{
    font-size:13px; letter-spacing:.1em; text-transform:uppercase;
    color:var(--gold); font-weight:600; margin-bottom:10px; font-family:var(--sans);
  }
  .manifesto-foot p{
    font-size:14px; line-height:1.7; color: rgba(247,244,238,0.65);
    font-family:var(--sans);
  }

  /* ===== Sócios ===== */
.socios{
  position:relative;
  --section-shadow:none;
  padding:140px 0;
  background:linear-gradient(180deg, #ddd4c7 0%, #d9d1c4 100%);
}
  .socios .section-head{
    margin-bottom:80px;
    color:var(--graphite);
  }
  .socios .section-head .desc{
    color:rgba(26,26,29,.62);
  }

  .socios-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:14px;
  }
  @media(max-width:900px){ .socios-grid{ grid-template-columns:1fr; } }

  .socio-card{
    position:relative;
    min-height:560px;
    overflow:hidden;
    background:#111820;
    border:1px solid rgba(255,255,255,.08);
    transition:transform .45s cubic-bezier(.22,.8,.28,1), box-shadow .45s ease, border-color .45s ease;
  }
  .socio-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 52px rgba(8,13,18,.28);
    border-color:rgba(184,151,90,.34);
  }
  .socio-photo{
    position:absolute;
    inset:0;
    overflow:hidden;
    background:var(--graphite);
  }
  .socio-photo img{
    width:100%; height:100%; object-fit:cover;
    transition: transform .6s ease, filter .45s ease;
    filter:brightness(.46) saturate(.88);
  }
  .socio-card:hover .socio-photo img{
    transform:scale(1.04);
    filter:brightness(.54) saturate(.94);
  }
  .socio-photo::after{
    content:"";
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(7,10,14,.12) 0%, rgba(7,10,14,.18) 34%, rgba(10,15,21,.64) 72%, rgba(9,14,19,.92) 100%);
  }

  .socio-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:28px 26px 24px;
    text-align:center;
  }
  .socio-info .role{
    font-size:13px; letter-spacing:.02em; text-transform:none;
    color:#d3b177; font-weight:500; margin-bottom:0;
  }
  .socio-info h3{
    font-size:38px;
    line-height:1.06;
    margin-bottom:8px;
    color:var(--cream);
    font-weight:500;
  }
  .socio-info p:last-child{
    max-width:34ch;
    margin:14px auto 0;
    font-size:13px;
    line-height:1.65;
    color:rgba(247,244,238,.7);
    opacity:0;
    transform:translateY(8px);
    transition:opacity .35s ease, transform .35s ease;
  }
  .socio-card:hover .socio-info p:last-child{
    opacity:1;
    transform:translateY(0);
  }
  @media(max-width:900px){
    .socio-card{
      min-height:520px;
    }
    .socio-info h3{
      font-size:32px;
    }
    .socio-info p:last-child{
      opacity:1;
      transform:none;
    }
  }

  /* ===== Atuação geográfica ===== */
main > section.regiao::before{
    content:none;
  }
.regiao{
    --section-shadow:none;
    padding:130px 0;
    border-top:none;
    background:var(--cream);
  }
  .regiao .wrap{
    max-width:1440px;
    padding:0 3%;
  }
  .regiao h2{
    font-size:clamp(40px, 4.2vw, 68px);
    margin-bottom:24px;
  }
  .regiao p{
    font-size:16px;
    line-height:1.85;
    color:#57514a;
  }
  .regiao-panel{
    position:relative;
    width:min(100%, 1440px);
    margin:0 auto;
    padding:34px 18px 18px;
    border:none;
    border-radius:0;
    background:
      radial-gradient(circle at 16% 16%, rgba(184,151,90,.05), transparent 22%),
      radial-gradient(circle at 80% 24%, rgba(107,31,42,.025), transparent 17%),
      linear-gradient(180deg, rgba(247,244,238,.82), rgba(247,244,238,.42));
    box-shadow:none;
    overflow:hidden;
    isolation:isolate;
  }
  .regiao-panel::before{
    content:none;
  }
  .regiao-panel::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.025;
    background-image:
      linear-gradient(rgba(184,151,90,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,151,90,.05) 1px, transparent 1px);
    background-size:140px 140px;
    mask-image:radial-gradient(circle at center, rgba(0,0,0,.62), transparent 92%);
    pointer-events:none;
  }
  .regiao-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(280px, .34fr) minmax(0, .66fr);
    gap:36px;
    align-items:center;
  }
  .regiao-copy{
    padding:0 0 0 10px;
  }
  .regiao-copy p{
    max-width:31ch;
    margin-bottom:30px;
  }
  .regiao-copy .btn-ghost{
    width:max-content;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border:1px solid rgba(184,151,90,.46);
    border-radius:999px;
    background:rgba(255,255,255,.82);
    color:var(--graphite);
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    box-shadow:0 12px 24px rgba(184,151,90,.12);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
  }
  .regiao-copy .btn-ghost::before{
    content:"";
    width:18px;
    height:18px;
    border-radius:50%;
    background:radial-gradient(circle at center, rgba(184,151,90,.92) 0 28%, transparent 32% 100%);
    box-shadow:inset 0 0 0 1px rgba(184,151,90,.36);
  }
  .regiao-copy .btn-ghost::after{
    content:none;
  }
  .regiao-copy .btn-ghost:hover{
    color:var(--graphite);
    background:#fff;
    border-color:rgba(184,151,90,.72);
    transform:translateY(-2px);
    box-shadow:0 16px 30px rgba(184,151,90,.18);
  }
  .regiao-copy-divider,
  .regiao-footer-line{
    display:flex;
    align-items:center;
    gap:12px;
    margin:30px 0;
  }
  .regiao-copy-divider span,
  .regiao-footer-line span{
    flex:1;
    height:1px;
    background:linear-gradient(90deg, rgba(184,151,90,.34), rgba(184,151,90,.7), rgba(184,151,90,.34));
  }
  .regiao-copy-divider i,
  .regiao-footer-line i{
    width:10px;
    height:10px;
    border:1px solid rgba(184,151,90,.6);
    background:rgba(184,151,90,.12);
    transform:rotate(45deg);
    display:block;
    flex:none;
  }
  .regiao-map-showcase{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
  }
  .regiao-map-poster{
    width:100%;
    max-width:980px;
    height:auto;
    display:block;
    border-radius:10px;
    filter:drop-shadow(0 18px 28px rgba(184,151,90,.07));
  }
  .regiao-map-hotspots{
    display:none;
  }
  .regiao-hotspot{
    position:absolute;
    left:var(--x);
    top:var(--y);
    width:42px;
    height:42px;
    transform:translate(-50%, -50%);
    border:none;
    border-radius:0;
    background:transparent;
    cursor:pointer;
    transition:transform .24s ease, filter .24s ease, opacity .24s ease;
  }
  .regiao-hotspot::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:26px;
    height:26px;
    background:linear-gradient(180deg, #f5dba8 0%, #c79a45 100%);
    border-radius:50% 50% 50% 0;
    border:2px solid rgba(255,255,255,.92);
    box-shadow:0 10px 22px rgba(184,151,90,.32);
    transform:translate(-50%, -58%) rotate(-45deg);
    animation:pulseGold 3.8s ease-in-out infinite;
  }
  .regiao-hotspot::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fffaf0;
    box-shadow:0 0 0 10px rgba(184,151,90,.14);
    transform:translate(-50%, -72%);
  }
  .regiao-hotspot-single{
    z-index:3;
  }
  .regiao-hotspot-pe::before{
    background:rgba(107,31,42,.92);
    box-shadow:0 0 0 3px rgba(255,255,255,.86), 0 10px 18px rgba(107,31,42,.2);
    animation:pulseWine 3.8s ease-in-out infinite;
  }
  .regiao-hotspot-pe::after{
    border-color:rgba(107,31,42,.24);
  }
  .regiao-hotspot:hover,
  .regiao-hotspot:focus-visible,
  .regiao-hotspot.is-active{
    transform:translate(-50%, -50%) scale(1.16);
    filter:brightness(1.03);
  }
  .regiao-hotspot:focus-visible{
    outline:2px solid rgba(26,26,29,.54);
    outline-offset:4px;
  }
  .regiao-map-tooltip{
    display:none;
  }
  .regiao-map-tooltip strong{
    display:block;
    font-family:var(--serif);
    font-size:18px;
    line-height:1.08;
    color:var(--graphite);
  }
  .regiao-map-tooltip span{
    display:block;
    margin-top:4px;
    color:#6c655b;
    font-size:14px;
    line-height:1.3;
  }

  @media(max-width:1199px){
    .regiao-panel{
      padding:28px 8px 12px;
    }
    .regiao-layout{
      grid-template-columns:minmax(250px,.36fr) minmax(0,.64fr);
      gap:32px;
    }
    .regiao-copy p{
      max-width:34ch;
    }
  }

  @media(max-width:991px){
    .regiao{
      padding:108px 0;
    }
    .regiao-panel{
      width:min(100%, 94vw);
      padding:24px 0 10px;
    }
    .regiao-layout{
      grid-template-columns:1fr;
      gap:26px;
    }
    .regiao h2{
      font-size:clamp(34px, 6vw, 54px);
    }
    .regiao-copy{
      padding:0;
    }
    .regiao-copy p{
      max-width:56ch;
    }
  }

  @media(max-width:767px){
    .regiao .wrap{
      padding:0 18px;
    }
    .regiao{
      padding:96px 0;
    }
    .regiao-panel{
      padding:18px 0 8px;
    }
    .regiao-copy-divider,
    .regiao-footer-line{
      gap:10px;
      margin:22px 0;
    }
    .regiao-copy p{
      max-width:none;
      margin-bottom:24px;
      font-size:15px;
    }
    .regiao-map-poster{
      border-radius:0;
    }
    .regiao-hotspot{
      width:38px;
      height:38px;
    }
    .regiao-map-tooltip{
      min-width:136px;
      padding:11px 12px;
    }
    .regiao-map-tooltip strong{
      font-size:16px;
    }
    .regiao-map-tooltip span{
      font-size:13px;
    }
  }

  @media(max-width:430px){
    .regiao-panel{
      padding:24px 18px 22px;
    }
    .regiao h2{
      font-size:clamp(30px, 11vw, 46px);
    }
  }

  @media(max-width:360px){
    .regiao-panel{
      padding:22px 16px 20px;
    }
    .regiao-copy p{
      font-size:14px;
    }
  }

  @media(prefers-reduced-motion:reduce){
    .regiao-panel,
    .regiao-map-poster{
      transition:none;
      animation:none;
    }
  }

  /* ===== CTA contato ===== */
  .cta{
    background:var(--graphite);
    color:var(--cream);
    padding:140px 0;
    position:relative;
    overflow:hidden;
  }
  .cta-grid{
    display:grid; grid-template-columns: 1.3fr 1fr; gap:64px; align-items:center;
  }
  @media(max-width:900px){ .cta-grid{ grid-template-columns:1fr; gap:48px; } }
  .cta h2{
    font-size:clamp(40px,6vw,80px);
    color:var(--cream);
    max-width:16ch;
  }
  .cta h2 em{ color:var(--gold); font-style:italic; font-weight:500; }
  .cta-side{ border-left:1px solid var(--line-light); padding-left:48px; }
  @media(max-width:900px){ .cta-side{ border-left:none; padding-left:0; border-top:1px solid var(--line-light); padding-top:32px; } }
  .cta-side p{ font-size:15px; line-height:1.8; color:rgba(247,244,238,.65); margin-bottom:28px; }
  .cta-side .contact-line{
    display:flex; flex-direction:column; gap:14px; margin-bottom:36px;
    font-size:16px;
  }
  .cta-side .contact-line a{ transition:color .3s; }
  .cta-side .contact-line a:hover{ color:var(--gold); }

  .btn-light{
    background:var(--cream);
    color:var(--graphite);
    padding:18px 36px;
    font-size:14px; font-weight:600; letter-spacing:.05em;
    display:inline-flex; align-items:center; gap:12px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
  }
  .btn-light:hover{ background:var(--gold); letter-spacing:.08em; }
  .btn-light svg{ transition: transform .35s ease; }
  .btn-light:hover svg{ transform: translateX(4px); }

  /* ===== Footer ===== */
  footer{
    padding:80px 0 32px;
    border-top:1px solid var(--line);
  }
  .footer-grid{
    display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:48px;
    padding-bottom:64px;
  }
  @media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; } }
  @media(max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
  .footer-brand svg{ height:32px; margin-bottom:24px; }
  .footer-brand p{ font-size:14px; line-height:1.7; color:var(--gray); max-width:32ch; }
  .footer-col h4{
    font-family:var(--sans); font-size:12px; letter-spacing:.15em; text-transform:uppercase;
    color:var(--gold); font-weight:600; margin-bottom:20px;
  }
  .footer-col a{
    display:block; font-size:14.5px; color:#4a4a4d; margin-bottom:13px;
    transition:color .25s;
  }
  .footer-col a:hover{ color:var(--graphite); }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid var(--line); padding-top:28px;
    font-size:13px; color:var(--gray); gap:16px;
  }
  .footer-credit{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:22px;
    padding-top:22px;
    border-top:1px solid rgba(196, 169, 120, .22);
    color:var(--gray);
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
  }
  .footer-credit a{ display:inline-flex; align-items:center; }
  .footer-credit img{
    display:block;
    height:18px;
    width:auto;
    object-fit:contain;
    opacity:.86;
  }
  .footer-bottom .socials{ display:flex; gap:20px; }
  .footer-bottom .socials a{ color:var(--graphite); transition:color .25s; }
  .footer-bottom .socials a:hover{ color:var(--gold); }
  @media(max-width:700px){
    .footer-bottom{
      flex-direction:column;
      align-items:flex-start;
    }
    .footer-credit{
      margin-top:18px;
      padding-top:18px;
      justify-content:flex-start;
      letter-spacing:.12em;
    }
  }

  /* ===== Reveal on scroll ===== */
  .reveal{
    opacity:0;
    transform:translateY(34px) scale(.985);
    filter:blur(8px);
    transition: opacity .95s cubic-bezier(.22,.8,.28,1), transform .95s cubic-bezier(.22,.8,.28,1), filter .95s cubic-bezier(.22,.8,.28,1);
  }
  .reveal.in{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }

  @keyframes premiumFloat {
    0%, 100% { transform:translate3d(0,0,0); }
    50% { transform:translate3d(0,-10px,0); }
  }
  @keyframes ambientGlow {
    0%, 100% { opacity:.45; transform:scale(1); }
    50% { opacity:.75; transform:scale(1.06); }
  }
  @keyframes pulseGold {
    0%, 100% { box-shadow:0 0 0 3px rgba(255,255,255,.86), 0 10px 18px rgba(184,151,90,.22), 0 0 0 0 rgba(184,151,90,.22); }
    50% { box-shadow:0 0 0 3px rgba(255,255,255,.92), 0 12px 22px rgba(184,151,90,.28), 0 0 0 10px rgba(184,151,90,0); }
  }
  @keyframes pulseWine {
    0%, 100% { box-shadow:0 0 0 3px rgba(255,255,255,.86), 0 10px 18px rgba(107,31,42,.2), 0 0 0 0 rgba(107,31,42,.18); }
    50% { box-shadow:0 0 0 3px rgba(255,255,255,.92), 0 12px 22px rgba(107,31,42,.26), 0 0 0 10px rgba(107,31,42,0); }
  }
  @keyframes kickerSweep {
    0%, 18% { transform:translateX(-135%); }
    28%, 100% { transform:translateX(135%); }
  }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    *{ scroll-behavior:auto !important; }
    .hero-v2-portrait,
    .hero-v2-kicker::after,
    .hero-v2-portrait::after,
    .page-hero-brand-symbol-wrap,
    .page-hero-brand-symbol,
    .areas-art-symbol-wrap,
    .areas-art-symbol,
    .regiao-hotspot::before,
    .regiao-hotspot-pe::before{
      animation:none !important;
    }
  }

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

/* ===================================================
   PÁGINAS INTERNAS — estilos compartilhados
   =================================================== */

/* Page header (hero compacto para páginas internas) */
.page-hero{
  padding:132px 0 56px;
  border-bottom:none;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}
.page-hero .wrap{
  max-width:1240px;
}
.page-hero .eyebrow{
  margin-bottom:26px;
  color:#956913;
  font-weight:800;
}
.page-hero .eyebrow::before{
  width:24px;
  background:#956913;
}
.page-hero h1{
  font-size: clamp(40px, 6vw, 72px);
  max-width:15ch;
  line-height:.98;
  letter-spacing:-.04em;
  text-wrap:balance;
  color:#212125;
}
.page-hero h1 em{ font-style:italic; color:#956913; font-weight:600; }
.page-hero p.lead{
  font-size:18px;
  line-height:1.82;
  color:#4b4b53;
  max-width:46ch;
  margin-top:32px;
  font-weight:500;
}
.page-hero .breadcrumb{
  font-size:13px;
  color:#676770;
  letter-spacing:.03em;
  margin-bottom:24px;
}
.page-hero .breadcrumb a{ color:#5e5e66; transition:color .25s; font-weight:500; }
.page-hero .breadcrumb a:hover{ color:var(--gold); }
.page-hero .breadcrumb .sep{ margin:0 8px; opacity:.5; }

.page-hero-brand-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(240px, .95fr);
  gap:56px;
  align-items:center;
}

.page-hero-brand-art{
  position:relative;
  min-height:400px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.page-hero-brand-symbol-wrap,
.page-hero-brand-symbol{
  position:absolute;
  display:block;
}

.page-hero-brand-symbol-wrap{
  position:relative;
  width:min(100%, 250px);
  aspect-ratio:19.175 / 24.0817;
  background:#956913;
  opacity:.3;
  animation:areasSymbolFloat 8s ease-in-out infinite;
  -webkit-mask:url("../ampersand.svg") center / contain no-repeat;
  mask:url("../ampersand.svg") center / contain no-repeat;
}

.page-hero-brand-symbol{
  width:0;
  height:0;
  opacity:0;
}

body:has(a.active[href="areas.html"]) .page-hero-areas-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(260px, .95fr);
  gap:56px;
  align-items:center;
}

body:has(a.active[href="areas.html"]) .page-hero-areas-art{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}

body:has(a.active[href="areas.html"]) .areas-art-symbol-wrap,
body:has(a.active[href="areas.html"]) .areas-art-symbol{
  position:absolute;
  display:block;
}

body:has(a.active[href="areas.html"]) .areas-art-symbol-wrap{
  position:relative;
  width:min(100%, 290px);
  aspect-ratio:19.175 / 24.0817;
  background:#956913;
  opacity:.42;
  animation:areasSymbolFloat 8s ease-in-out infinite;
  -webkit-mask:url("../ampersand.svg") center / contain no-repeat;
  mask:url("../ampersand.svg") center / contain no-repeat;
}

body:has(a.active[href="areas.html"]) .areas-art-symbol{
  width:0;
  height:0;
  opacity:0;
}

@keyframes areasSymbolFloat{
  0%, 100%{ transform:translate3d(0,0,0) rotate(-7deg); opacity:.36; }
  50%{ transform:translate3d(0,-6px,0) rotate(-4deg); opacity:.5; }
}

body:has(a.active[href="escritorio.html"]) .page-hero{
  padding:172px 0 112px;
}

body:has(a.active[href="escritorio.html"]) .page-hero-brand-grid{
  gap:88px;
}

body:has(a.active[href="escritorio.html"]) .page-hero p.lead{
  margin-top:40px;
  max-width:50ch;
}

body:has(a.active[href="escritorio.html"]) .page-hero + .manifesto,
body:has(a.active[href="escritorio.html"]) .valores + .cta{
  margin-top:-76px;
  border-radius:52px 52px 0 0;
}

body:has(a.active[href="escritorio.html"]) .page-hero + .manifesto > .wrap:first-child,
body:has(a.active[href="escritorio.html"]) .valores + .cta > .wrap:first-child{
  padding-top:76px;
}

body:has(a.active[href="escritorio.html"]) .manifesto + .valores{
  margin-top:-34px;
  border-radius:34px 34px 0 0;
}

body:has(a.active[href="escritorio.html"]) .manifesto + .valores > .wrap:first-child{
  padding-top:34px;
}

body:has(a.active[href="escritorio.html"]) .valores{
  border-top:none;
}

body:has(a.active[href="localizacao.html"]) .page-hero{
  padding:156px 0 86px;
}

body:has(a.active[href="localizacao.html"]) .page-hero p.lead{
  margin-top:40px;
  max-width:52ch;
}

body:has(a.active[href="localizacao.html"]) .page-hero + .local-page{
  margin-top:-52px;
  border-radius:40px 40px 0 0;
}

body:has(a.active[href="localizacao.html"]) .page-hero + .local-page > .wrap:first-child{
  padding-top:52px;
}

@media(max-width:800px){
  .page-hero{
    padding:118px 0 44px;
  }

  .page-hero h1{
    max-width:12ch;
  }

  .page-hero p.lead{
    font-size:16px;
    line-height:1.75;
    max-width:34ch;
    margin-top:24px;
  }

  .page-hero-brand-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  .page-hero-brand-art{
    display:none;
  }

  body:has(a.active[href="areas.html"]) .page-hero-areas-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  body:has(a.active[href="areas.html"]) .page-hero-areas-art{
    display:none;
  }

  body:has(a.active[href="escritorio.html"]) .page-hero{
    padding:140px 0 78px;
  }

  body:has(a.active[href="escritorio.html"]) .page-hero-brand-grid{
    gap:0;
  }

  body:has(a.active[href="escritorio.html"]) .page-hero p.lead{
    margin-top:30px;
    max-width:36ch;
  }

  body:has(a.active[href="escritorio.html"]) .page-hero + .manifesto,
  body:has(a.active[href="escritorio.html"]) .valores + .cta{
    margin-top:-40px;
    border-radius:30px 30px 0 0;
  }

  body:has(a.active[href="escritorio.html"]) .page-hero + .manifesto > .wrap:first-child,
  body:has(a.active[href="escritorio.html"]) .valores + .cta > .wrap:first-child{
    padding-top:40px;
  }

  body:has(a.active[href="escritorio.html"]) .manifesto + .valores{
    margin-top:-18px;
    border-radius:22px 22px 0 0;
  }

  body:has(a.active[href="escritorio.html"]) .manifesto + .valores > .wrap:first-child{
    padding-top:18px;
  }

  body:has(a.active[href="localizacao.html"]) .page-hero{
    padding:132px 0 62px;
  }

  body:has(a.active[href="localizacao.html"]) .page-hero p.lead{
    margin-top:30px;
    max-width:37ch;
  }

  body:has(a.active[href="localizacao.html"]) .page-hero + .local-page{
    margin-top:-28px;
    border-radius:24px 24px 0 0;
  }

  body:has(a.active[href="localizacao.html"]) .page-hero + .local-page > .wrap:first-child{
    padding-top:28px;
  }
}


/* ===== Sócio — perfil individual ===== */
.perfil{
  padding:110px 0;
  border-bottom:1px solid var(--line);
}
.perfil:last-of-type{ border-bottom:none; }
.perfil-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:72px;
  align-items:start;
}
@media(max-width:900px){ .perfil-grid{ grid-template-columns:1fr; gap:40px; } }
.perfil-photo{
  position:relative;
  border:1px solid var(--line);
  padding:12px;
}
.perfil-photo img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.perfil-photo .num{
  position:absolute; top:-12px; left:16px;
  background:var(--graphite); color:var(--cream);
  font-family:var(--serif); font-size:13px; font-weight:600;
  padding:7px 16px; letter-spacing:.05em;
  white-space:nowrap;
}
.perfil:nth-of-type(even) .perfil-photo{ order:2; }
.perfil:nth-of-type(even) .perfil-body{ order:1; }

.perfil-body .role{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:14px;
}
.perfil-body h2{ font-size: clamp(32px,4vw,48px); margin-bottom:24px; }
.perfil-body p{ font-size:16px; line-height:1.8; color:#4a4a4d; max-width:54ch; margin-bottom:20px; }
.perfil-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.perfil-tags span{
  font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid var(--line); padding:9px 16px;
  font-weight:600; color:var(--graphite);
}
.perfil-contact{
  margin-top:32px; padding-top:28px; border-top:1px solid var(--line);
  display:flex; gap:32px; flex-wrap:wrap;
}
.perfil-contact a{
  font-size:14px; font-weight:600; letter-spacing:.03em;
  border-bottom:1px solid var(--graphite); padding-bottom:4px;
  transition: border-color .3s, color .3s;
}
.perfil-contact a:hover{ color:var(--gold); border-color:var(--gold); }

/* ===== Área de atuação — página detalhe ===== */
.area-detail{ padding:110px 0; }
.area-detail-grid{
  display:grid; grid-template-columns: 1fr 1.6fr; gap:72px;
}
@media(max-width:900px){ .area-detail-grid{ grid-template-columns:1fr; gap:40px; } }
.area-detail-side{ position:sticky; top:120px; align-self:start; }
@media(max-width:900px){ .area-detail-side{ position:static; } }
.area-detail-side .area-art-big{
  width:64px; height:64px; stroke:var(--gold); stroke-width:1.1; fill:none; margin-bottom:28px;
}
.area-detail-side h2{ font-size:clamp(32px,4vw,46px); margin-bottom:20px; }
.area-detail-side p{ font-size:15px; line-height:1.8; color:var(--gray); margin-bottom:28px; }

.servico-lista{ display:flex; flex-direction:column; }
.servico-item{
  border-top:1px solid var(--line);
  padding:32px 0;
  display:grid; grid-template-columns: 60px 1fr; gap:24px;
}
.servico-item:last-child{ border-bottom:1px solid var(--line); }
.servico-item .servico-num{
  font-family:var(--serif); font-size:14px; color:var(--gold); font-weight:600; padding-top:4px;
}
.servico-item h3{ font-size:22px; margin-bottom:10px; }
.servico-item p{ font-size:15px; line-height:1.75; color:#4a4a4d; max-width:60ch; }

/* ===== Áreas — índice (overview) ===== */
.areas-index{ padding:0 0 60px; }
.areas-index-grid{
  display:grid; grid-template-columns: repeat(2,1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.areas-index-card{
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:48px; min-height:240px;
  display:flex; flex-direction:column; justify-content:space-between;
  min-width:0;
  transition: background .4s ease;
}
.areas-index-card:hover{ background:var(--graphite); color:var(--cream); }
.areas-index-card:hover .area-art{ stroke:var(--gold); }
.areas-index-card:hover .area-num{ color:var(--gold); }
.areas-index-card:hover .area-desc{ color:rgba(247,244,238,.65); }
.areas-index-card:hover .area-arrow{ opacity:1; transform:translate(0,0); }
@media(max-width:800px){
  .areas-index{
    padding:0 0 44px;
  }
  .areas-index-grid{
    grid-template-columns:minmax(0,1fr);
    border-left:none;
    border-top:none;
    gap:14px;
  }
  .areas-index-card{
    grid-column:auto !important;
    min-height:auto;
    padding:28px 20px;
    border:1px solid rgba(184, 151, 90, .14);
    background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,241,.98));
    box-shadow:0 16px 30px rgba(184, 151, 90, .07);
  }
}
@media(max-width:520px){
  .areas-index-card{
    padding:24px 18px;
  }
}

/* ===== Contato — página ===== */
.contato-page{ padding:100px 0 140px; }
.contato-grid{
  display:grid; grid-template-columns: 1fr 1.1fr; gap:72px;
}
@media(max-width:900px){ .contato-grid{ grid-template-columns:1fr; gap:48px; } }

.contato-info h2{ font-size:clamp(28px,3.5vw,40px); margin-bottom:24px; }
.contato-info p{ font-size:15px; line-height:1.8; color:#4a4a4d; margin-bottom:32px; max-width:50ch; }

.contato-block{
  border-top:1px solid var(--line); padding:28px 0;
}
.contato-block:last-child{ border-bottom:1px solid var(--line); }
.contato-block h4{
  font-size:12px; letter-spacing:.15em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:10px; font-family:var(--sans);
}
.contato-block p{ font-size:15px; line-height:1.7; color:var(--graphite); margin-bottom:6px; }
.contato-block a{ font-weight:600; transition:color .25s; }
.contato-block a:hover{ color:var(--gold); }

.form-wrap{
  background:var(--graphite); color:var(--cream);
  padding:48px;
}
@media(max-width:600px){ .form-wrap{ padding:32px 24px; } }
.form-wrap h3{ font-family:var(--serif); font-size:28px; margin-bottom:8px; color:var(--cream); }
.form-wrap .sub{ font-size:14px; color:rgba(247,244,238,.6); margin-bottom:32px; }

.field{ margin-bottom:22px; }
.field label{
  display:block; font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:10px;
}
.field input, .field select, .field textarea{
  width:100%;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(247,244,238,.25);
  color:var(--cream);
  font-family:var(--sans);
  font-size:15px;
  padding:10px 0;
  outline:none;
  transition: border-color .3s;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23B8975A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right center;
  cursor:pointer;
}
.field select option{ background:var(--graphite); color:var(--cream); }
.field textarea{ resize:vertical; min-height:100px; font-family:var(--sans); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--gold);
}
.field input::placeholder, .field textarea::placeholder{ color:rgba(247,244,238,.35); }

.form-wrap .btn-light{ margin-top:8px; cursor:pointer; border:none; font-family:var(--sans); }

/* ===== Mapa contato — escritórios ===== */
.escritorios-grid{
  display:grid; grid-template-columns: repeat(2,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin-top:64px;
}
@media(max-width:800px){ .escritorios-grid{ grid-template-columns:1fr; } }
.escritorio-card{ background:var(--cream); padding:40px; }
.escritorio-card .tag-uf{
  font-size:12px; letter-spacing:.15em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:12px;
}
.escritorio-card h3{ font-size:24px; margin-bottom:14px; }
.escritorio-card p{ font-size:14.5px; line-height:1.8; color:var(--gray); margin-bottom:6px; }
.escritorio-card a{ color:var(--graphite); font-weight:600; transition:color .25s; }
.escritorio-card a:hover{ color:var(--gold); }

/* ===== Valores / Timeline (Sobre) ===== */
.valores{ padding:130px 0; border-top:1px solid var(--line); background:var(--cream); }
.valores-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin-top:64px;
}
@media(max-width:800px){ .valores-grid{ grid-template-columns:1fr; } }
.valor-card{ background:var(--cream); padding:44px; min-height:220px; }
.valor-card .valor-num{
  font-family:var(--serif); font-size:14px; color:var(--gold); font-weight:600; margin-bottom:24px;
}
.valor-card h3{ font-size:22px; margin-bottom:14px; }
.valor-card p{ font-size:14.5px; line-height:1.75; color:var(--gray); }

/* Nav active state */
.nav-links a.active{ color: var(--gold); }
.nav-links a.active::after{ transform:scaleX(1); }

/* ===== Localização — mapa interativo ===== */
.local-page{ padding:0 0 0; }
.local-grid{
  display:grid; grid-template-columns: minmax(320px, .92fr) minmax(0, 1.35fr);
  align-items:stretch;
  margin:0 48px 120px;
  border:1px solid rgba(184,151,90,.14);
  border-radius:36px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.64), rgba(247,244,238,.98));
  box-shadow:0 24px 60px rgba(184,151,90,.08);
}
@media(max-width:1000px){
  .local-grid{
    grid-template-columns:1fr;
    margin:0 24px 88px;
    border-radius:28px;
  }
}

.local-list{
  background:rgba(255,255,255,.52);
  border-right:1px solid rgba(184,151,90,.12);
  max-height:720px;
  overflow-y:auto;
}
@media(max-width:1000px){ .local-list{ border-right:none; border-bottom:1px solid rgba(184,151,90,.12); max-height:none; } }

.local-item{
  display:block;
  padding:28px 48px;
  border-bottom:1px solid rgba(26,26,29,.08);
  cursor:pointer;
  transition: background .3s ease, padding-left .3s ease;
  position:relative;
}
@media(max-width:1000px){ .local-item{ padding:24px; } }
.local-item::before{
  content:"";
  position:absolute;
  left:24px;
  top:26px;
  bottom:26px;
  width:2px;
  background:linear-gradient(180deg, rgba(184,151,90,0), rgba(184,151,90,.75), rgba(184,151,90,0));
  opacity:0;
  transform:scaleY(.7);
  transition:opacity .28s ease, transform .28s ease;
}
@media(max-width:1000px){ .local-item::before{ left:12px; top:22px; bottom:22px; } }
.local-item:hover{
  background: rgba(184,151,90,0.06);
  padding-left:54px;
}
.local-item:hover::before{
  opacity:.6;
  transform:scaleY(1);
}
@media(max-width:1000px){ .local-item:hover{ padding-left:30px; } }
.local-item.active{
  background: linear-gradient(135deg, var(--graphite), #252529);
  color:var(--cream);
  padding-left:56px;
}
.local-item.active::before{
  opacity:1;
  transform:scaleY(1);
}
@media(max-width:1000px){ .local-item.active{ padding-left:32px; } }
.local-item.active .local-uf{ color:var(--gold); }
.local-item.active p{ color: rgba(247,244,238,.65); }
.local-item.active a{ color: var(--gold); }

.local-uf{
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:8px; display:block;
}
.local-item h3{ font-family:var(--serif); font-size:22px; margin-bottom:10px; }
.local-item p{ font-size:14px; line-height:1.7; color:var(--gray); margin-bottom:4px; }
.local-item a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--graphite);
  transition: color .25s, gap .25s;
}
.local-item a::after{
  content:"\2197";
  font-size:12px;
}
.local-item:hover a{ gap:11px; }

.local-map-wrap{
  position:relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(184,151,90,.18), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.42), transparent 20%),
    linear-gradient(180deg, #f6efe3, #efe5d6);
  min-height:620px;
  overflow:hidden;
}
@media(max-width:1000px){ .local-map-wrap{ min-height:460px; } }
.leaflet-map-layer{
  position:absolute;
  inset:0;
  z-index:1;
}
.local-map-wrap > svg{
  display:none;
}
.leaflet-map-layer .leaflet-control-zoom{
  border:none;
  box-shadow:0 14px 28px rgba(93,66,24,.14);
}
.leaflet-map-layer .leaflet-control-zoom a{
  width:36px;
  height:36px;
  line-height:36px;
  color:var(--graphite);
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(184,151,90,.14);
}
.leaflet-map-layer .leaflet-popup-content-wrapper,
.leaflet-map-layer .leaflet-popup-tip{
  background:#fffaf2;
  color:var(--graphite);
}
.leaflet-map-layer .leaflet-popup-content{
  margin:14px 16px;
  font-family:var(--sans);
  font-size:13px;
  line-height:1.55;
}
.leaflet-map-layer .leaflet-popup-content strong{
  display:block;
  margin-bottom:4px;
  font-family:var(--serif);
  font-size:18px;
}
.leaflet-map-layer .leaflet-marker-icon{
  background:transparent;
  border:none;
}
.leaflet-marker-pin{
  display:block;
  position:relative;
  width:32px;
  height:32px;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  border:3px solid rgba(255,250,240,.94);
  box-shadow:0 16px 30px rgba(93,66,24,.24);
  box-sizing:border-box;
  pointer-events:auto;
}
.leaflet-marker-pin::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fffaf0;
  transform:translate(-50%, -50%);
}
.leaflet-marker-pin.pb{
  background:linear-gradient(180deg, #ddb96e 0%, #b78943 100%);
}
.leaflet-marker-pin.pe{
  background:linear-gradient(180deg, #7c2a34 0%, #5d1820 100%);
}
.leaflet-marker-pin.is-active{
  background:linear-gradient(180deg, #26262d 0%, #111218 100%);
  transform:rotate(-45deg) scale(1.18);
}
.local-map-wrap::before{
  content:"";
  position:absolute;
  inset:20px;
  border:1px solid rgba(184,151,90,.18);
  border-radius:28px;
  pointer-events:none;
}
.local-map-wrap::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  right:-120px;
  top:-80px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,151,90,.22), rgba(184,151,90,0) 70%);
  pointer-events:none;
}
.local-map-wrap svg{ width:100%; height:100%; display:block; position:absolute; inset:0; }
.map-pin{
  cursor:pointer;
  transform-origin:center;
  transition:transform .25s ease, filter .25s ease;
}
.map-pin circle.dot{
  fill: var(--gold);
  stroke:rgba(255,250,240,.95);
  stroke-width:3;
  filter:drop-shadow(0 10px 16px rgba(107,31,42,.14));
  transition: r .25s ease, fill .25s ease, filter .25s ease;
}
.map-pin circle.ring{
  fill:rgba(255,255,255,.34);
  stroke:rgba(184,151,90,.46);
  stroke-width:1.2;
  transition:r .25s ease, fill .25s ease, stroke .25s ease, opacity .25s ease;
}
.map-pin.map-pin-pe circle.dot{
  fill:var(--wine);
}
.map-pin.map-pin-pe circle.ring{
  stroke:rgba(107,31,42,.4);
}
.map-pin text{
  fill: rgba(26,26,29,.72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight:700;
  letter-spacing:.08em;
  pointer-events:none;
  text-transform:uppercase;
  transition: fill .25s ease, opacity .25s ease, transform .25s ease;
}
.map-pin.active{
  filter:brightness(1.02);
}
.map-pin.active circle.dot{
  fill: var(--graphite);
  r:6.2;
  filter:drop-shadow(0 14px 22px rgba(26,26,29,.2));
}
.map-pin.active circle.ring{
  fill:rgba(255,255,255,.84);
  stroke:rgba(26,26,29,.22);
  r:16;
}
.map-pin.active text{
  fill: var(--graphite);
  transform:translateX(2px);
}
.map-pin:hover,
.map-pin:focus-visible{
  transform:translateY(-2px);
}
.map-pin:hover circle.dot,
.map-pin:focus-visible circle.dot{
  fill:var(--graphite);
}
.map-pin:hover circle.ring,
.map-pin:focus-visible circle.ring{
  fill:rgba(255,255,255,.8);
}
.map-pin:hover text,
.map-pin:focus-visible text{
  fill:var(--graphite);
}

.local-map-wrap .map-state-label{
  fill: rgba(106,72,23,.68);
  font-family: var(--serif);
  font-weight:700;
  pointer-events:none;
}
.local-map-wrap .map-state-name{
  fill: rgba(106,72,23,.72);
  font-family: var(--sans);
  font-size:18px;
  font-weight:600;
  letter-spacing:.34em;
  pointer-events:none;
}

/* ===================================================
   HERO V2 — dark full-screen (homepage)
   =================================================== */

/* Header overrides for dark hero page */
.dark-hero-page header {
  background: rgba(251,248,241,0.72);
  border-bottom-color: transparent;
  box-shadow: none;
}
.dark-hero-page .nav .logo svg { fill: var(--graphite); }
.dark-hero-page .nav-links a:not(.nav-cta) { color: rgba(26,26,29,0.76); }
.dark-hero-page .nav-links a:not(.nav-cta):hover { color: var(--gold); }
.dark-hero-page .nav-links a:not(.nav-cta)::after { background: var(--gold); }
.dark-hero-page .nav-cta {
  color: var(--graphite);
  background: linear-gradient(to right, var(--gold) 50%, rgba(184,151,90,0.08) 50%);
  background-size: 200% 100%;
  background-position: right center;
  border-color: rgba(184,151,90,0.42);
  box-shadow: none;
}
.dark-hero-page .nav-cta:hover {
  background-position: left center;
  color: var(--graphite);
  border-color: var(--gold);
}
.dark-hero-page .protocolo {
  display: none;
}
.dark-hero-page .stats { display: none; }

@media(min-width:901px){
  .dark-hero-page header{
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
  }
  .dark-hero-page header.scrolled{
    background: rgba(247,244,238,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26,26,29,0.08);
    box-shadow: 0 4px 24px rgba(26,26,29,0.06);
  }
  .dark-hero-page .nav{
    max-width: 1380px;
    padding: 22px 32px 12px;
  }
  .dark-hero-page .nav-links{
    gap: 34px;
  }
  .dark-hero-page .nav-cta{
    min-width: 176px;
    background: rgba(255,255,255,0.7);
  }
}

/* Mobile menu toggle on dark background */
@media(max-width:900px){
  .dark-hero-page .menu-toggle {
    border-color: rgba(26,26,29,0.12);
    background: rgba(255,255,255,0.65);
  }
  .dark-hero-page .menu-toggle:hover,
  .dark-hero-page .menu-toggle[aria-expanded="true"] {
    border-color: rgba(184,151,90,0.38);
    background: rgba(255,255,255,0.88);
  }
  .dark-hero-page .menu-bar {
    background: var(--graphite);
  }
}

/* Hero V2 wrapper */
.hero-v2 {
  background: linear-gradient(145deg, #091522 0%, #0d1d30 55%, #0f2240 100%);
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Decorativo */
.hero-v2-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.scales-svg {
  width: 520px;
  height: 580px;
  opacity: 0.7;
}

/* Grade 3 colunas */
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  flex: 1;
  align-items: end;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

/* Coluna esquerda */
.hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 40px;
  padding-bottom: 80px;
  align-self: center;
}
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,90,0.14);
  border: 1px solid rgba(184,151,90,0.38);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
}
.hero-v2-left h1 {
  font-size: clamp(42px, 4.6vw, 74px);
  color: var(--cream);
  line-height: 1.04;
  max-width: 11ch;
}
.hero-v2-left h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Centro: fotos empilhadas em arco */
.hero-v2-photos {
  display: flex;
  gap: 6px;
  height: calc(100vh - 74px - 92px);
  max-height: 660px;
  min-height: 380px;
  align-items: flex-end;
}
.hero-v2-photo-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 200px 200px 0 0;
  position: relative;
}
.hero-v2-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-ph-1 { height: 82%; }
.hero-ph-2 { height: 100%; }
.hero-ph-3 { height: 88%; }

/* Sombra suave para integrar as fotos ao fundo */
.hero-v2-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184,151,90,0.12);
  border-radius: inherit;
  pointer-events: none;
}

/* Coluna direita */
.hero-v2-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 40px;
  padding-bottom: 80px;
  align-self: center;
  align-items: flex-start;
}

/* Card de avaliações */
.hero-review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 20px 24px;
  max-width: 285px;
}
.hero-review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
}
.hero-review-logos { display: flex; }
.review-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--sans);
  flex-shrink: 0;
}
.review-icon-google {
  background: #fff;
  color: #4285F4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.review-icon-meta {
  background: #1877F2;
  color: #fff;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.hero-review-score { flex: 1; }
.hero-stars {
  color: #F5C518;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-stars strong { color: var(--cream); }
.hero-review-count {
  font-size: 11px;
  color: rgba(247,244,238,0.52);
  margin-top: 3px;
  font-family: var(--sans);
}
.hero-review-card > p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247,244,238,0.6);
  font-family: var(--sans);
  margin: 0;
}

/* CTA botão */
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 28px rgba(184,151,90,0.38);
}
.hero-v2-cta:hover {
  background: #c9a96e;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(184,151,90,0.48);
}
.hero-v2-cta svg { transition: transform 0.3s ease; }
.hero-v2-cta:hover svg { transform: translateX(3px); }

/* Barra de estatísticas */
.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.hero-v2-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.hero-v2-stat:last-child { border-right: none; }
.hero-v2-stat svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}
.hero-v2-stat-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.hero-v2-stat-text span {
  display: block;
  font-size: 11.5px;
  color: rgba(247,244,238,0.48);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* ===== Hero V2 — responsivo ===== */
@media(max-width:1100px){
  .hero-v2-grid { grid-template-columns: 1fr 340px 1fr; padding: 0 32px; }
  .hero-v2-stat { padding: 20px 22px; }
  .hero-v2-stat svg { width: 28px; height: 28px; }
  .hero-v2-stat-text strong { font-size: 22px; }
}

@media(max-width:900px){
  .hero-v2 { min-height: auto; }
  .hero-v2-grid {
    grid-template-columns: 1fr;
    padding: 0;
    align-items: stretch;
  }
  .hero-v2-left {
    padding: 48px 24px 32px;
    gap: 22px;
    align-self: auto;
  }
  .hero-v2-photos {
    height: 64vw;
    max-height: 420px;
    min-height: 280px;
  }
  .hero-ph-1 { height: 84%; }
  .hero-ph-2 { height: 100%; }
  .hero-ph-3 { height: 84%; }
  .hero-v2-right {
    padding: 32px 24px 40px;
    gap: 18px;
    align-self: auto;
  }
  .hero-review-card { max-width: 100%; }
  .hero-v2-stats { grid-template-columns: repeat(2,1fr); }
  .hero-v2-stat:nth-child(2) { border-right: none; }
  .hero-v2-stat:nth-child(1),
  .hero-v2-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.09); }
  .scales-svg { width: 320px; height: 360px; opacity: 0.5; }
}

@media(max-width:560px){
  .hero-v2-stat { padding: 18px 18px; gap: 12px; }
  .hero-v2-stat svg { display: none; }
  .hero-v2-stat-text strong { font-size: 20px; }
  .hero-v2-stat-text span { font-size: 11px; }
  .hero-v2-left h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-v2-photos {
    height: 72vw;
    max-height: 360px;
  }
}

/* ===== Hero V2 layout refresh ===== */
.hero-v2 {
  padding: 0;
  min-height: auto;
  background:
    radial-gradient(circle at top, rgba(184,151,90,0.08), transparent 32%),
    linear-gradient(180deg, #f8f4ec 0%, #f4ede2 100%);
}

.hero-v2-shell {
  max-width: none;
  margin: 0 auto;
  min-height: calc(100vh - 118px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(248,244,236,0.96) 0%, rgba(244,237,226,0.94) 100%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-v2-shell::before,
.hero-v2-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-v2-shell::before {
  width: 560px;
  height: 560px;
  left: 50%;
  top: 110px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184,151,90,0.12) 0%, rgba(184,151,90,0.05) 32%, transparent 72%);
}

.hero-v2-shell::after {
  width: 300px;
  height: 300px;
  right: -90px;
  top: -80px;
  background: radial-gradient(circle, rgba(184,151,90,0.07), transparent 74%);
}

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

.hero-v2 .scales-svg {
  width: min(48vw, 520px);
  height: auto;
  opacity: 0.16;
  transform: translateY(24px);
}

.hero-v2 .hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(340px, 470px) minmax(240px, 0.72fr);
  align-items: end;
  gap: 56px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px 72px 0;
  flex: 1;
}

.hero-v2 .hero-v2-left {
  gap: 22px;
  padding: 32px 0 88px;
  padding-right: 0;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.hero-v2 .hero-v2-left h1 {
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: 0.98;
  max-width: 8.6ch;
  color: var(--graphite);
}

.hero-v2 .hero-v2-left h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.hero-v2-lead {
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,26,29,0.66);
}

.hero-v2-portrait {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: -16px;
  z-index: 1;
}

.hero-v2-portrait-glow {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.26) 0%, rgba(184,151,90,0.08) 34%, transparent 72%);
  filter: blur(8px);
}

.hero-v2-portrait-trio {
  position: relative;
  width: min(100%, 470px);
  height: min(75vh, 620px);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.hero-v2-person {
  position: relative;
  overflow: hidden;
  border-radius: 180px 180px 26px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.hero-v2-person::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(to top, rgba(239,230,216,0.98), transparent);
}

.hero-v2-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-v2-person-left,
.hero-v2-person-right {
  width: 28%;
  height: 84%;
}

.hero-v2-person-center {
  width: 42%;
  height: 100%;
  z-index: 2;
}

.hero-v2-person-left img {
  object-position: center 18%;
}

.hero-v2-person-center img {
  object-position: center 8%;
}

.hero-v2-person-right img {
  object-position: center 14%;
}

.hero-v2 .hero-v2-right {
  gap: 22px;
  padding: 32px 0 96px;
  padding-left: 0;
  justify-self: end;
  max-width: 290px;
  position: relative;
  z-index: 2;
}

.hero-v2 .hero-review-card {
  max-width: 100%;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(26,26,29,0.08);
  padding: 20px 22px;
  box-shadow: 0 16px 30px rgba(70,54,24,0.1);
}

.hero-v2 .hero-review-card > p {
  color: rgba(26,26,29,0.62);
}

.hero-v2 .hero-v2-cta {
  background: linear-gradient(135deg, #d8b36e 0%, #b8975a 100%);
}

.hero-v2 .hero-v2-stats {
  grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(26,26,29,0.08);
}

.hero-v2 .hero-v2-stat {
  padding: 24px 28px;
  border-right-color: rgba(26,26,29,0.08);
}

.hero-v2 .hero-v2-stat svg {
  stroke: var(--gold);
}

.hero-v2 .hero-v2-stat-text strong {
  color: var(--graphite);
}

.hero-v2 .hero-v2-stat-text span,
.hero-v2 .hero-review-count {
  color: rgba(26,26,29,0.48);
}

.hero-v2 .hero-stars strong {
  color: var(--graphite);
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 390px) minmax(220px, 0.72fr);
    padding: 48px 40px 0;
    gap: 32px;
  }
  .hero-v2 .hero-v2-left h1 { font-size: clamp(38px, 4.8vw, 60px); }
  .hero-v2 .hero-v2-right { padding-bottom: 72px; }
  .hero-v2 .hero-v2-stat { padding: 22px 20px; }
  .hero-v2-portrait-trio {
    width: min(100%, 390px);
  }
}

@media(max-width:900px){
  .hero-v2 {
    padding: 14px 14px 0;
  }
  .hero-v2-shell {
    min-height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(70,54,24,0.1);
  }
  .hero-v2 .hero-v2-grid {
    grid-template-columns: 1fr;
    padding: 34px 22px 0;
    gap: 10px;
  }
  .hero-v2 .hero-v2-left,
  .hero-v2 .hero-v2-right {
    padding: 0;
    max-width: none;
  }
  .hero-v2 .hero-v2-left {
    gap: 18px;
  }
  .hero-v2 .hero-v2-left h1 {
    max-width: 11ch;
    font-size: clamp(36px, 10vw, 54px);
  }
  .hero-v2-lead {
    max-width: none;
    font-size: 15px;
  }
  .hero-v2-portrait {
    min-height: 0;
    margin-top: 12px;
    margin-left: 0;
  }
  .hero-v2-portrait-glow {
    width: 78vw;
    height: 78vw;
    max-width: 380px;
    max-height: 380px;
    bottom: 52px;
  }
  .hero-v2-portrait-trio {
    width: min(100%, 420px);
    height: 72vw;
    min-height: 320px;
    max-height: 500px;
  }
  .hero-v2 .hero-v2-right {
    margin-top: 4px;
    gap: 16px;
  }
  .hero-v2 .hero-v2-cta {
    width: 100%;
    justify-content: center;
  }
  .hero-v2 .hero-v2-stats {
    grid-template-columns: repeat(2,1fr);
  }
  .hero-v2 .hero-v2-stat:nth-child(2) { border-right: none; }
  .hero-v2 .hero-v2-stat:nth-child(1),
  .hero-v2 .hero-v2-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.09); }
  .hero-v2 .scales-svg {
    width: min(72vw, 360px);
    opacity: 0.36;
  }
}

@media(max-width:560px){
  .hero-v2-shell { border-radius: 20px; }
  .hero-v2 .hero-v2-grid { padding: 28px 18px 0; }
  .hero-v2 .hero-v2-badge {
    font-size: 9px;
    padding: 7px 13px;
  }
  .hero-v2 .hero-v2-left h1 { font-size: clamp(34px, 11vw, 46px); }
  .hero-v2-portrait-trio {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px;
    height: 88vw;
    min-height: 300px;
  }
  .hero-v2-person-left,
  .hero-v2-person-right {
    width: 27%;
  }
  .hero-v2-person-center {
    width: 46%;
  }
  .hero-v2 .hero-v2-stat {
    padding: 18px 16px;
    gap: 12px;
  }
}

/* ===== Hero V2 image-led refresh ===== */
.hero-v2 {
  background:
    radial-gradient(circle at 14% 18%, rgba(184,151,90,0.08), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede2 100%);
}

.hero-v2-shell {
  min-height: calc(100vh - 104px);
  background:
    radial-gradient(circle at 18% 16%, rgba(184,151,90,0.09), transparent 18%),
    linear-gradient(180deg, rgba(251,248,242,0.98) 0%, rgba(244,237,226,0.96) 100%);
}

.hero-v2-shell::before,
.hero-v2-shell::after,
.hero-v2-deco {
  display: none;
}

.hero-v2 .hero-v2-grid {
  grid-template-columns: minmax(320px, 540px) minmax(540px, 1fr);
  gap: 36px;
  padding: 44px 72px 0;
  align-items: center;
}

.hero-v2 .hero-v2-left {
  max-width: 540px;
  padding: 28px 0 52px;
  gap: 26px;
}

.hero-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(26,26,29,0.68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-v2-kicker::before {
  content: "";
  width: 66px;
  height: 1px;
  background: rgba(184,151,90,0.9);
  flex-shrink: 0;
}

.hero-v2-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.42) 35%, transparent 62%);
  transform: translateX(-135%);
  animation: kickerSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-v2 .hero-v2-left h1 {
  max-width: 11ch;
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-v2 .hero-v2-left h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.hero-v2-lead {
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(26,26,29,0.7);
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 10px;
}

.hero-v2-cta.hero-v2-cta-primary {
  background: #16181d;
  color: var(--cream);
  padding: 20px 34px;
  box-shadow: 0 16px 34px rgba(22,24,29,0.16);
}

.hero-v2-cta.hero-v2-cta-primary:hover {
  background: #20232a;
  color: var(--cream);
}

.hero-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(26,26,29,0.72);
  border-bottom: 1px solid rgba(184,151,90,0.45);
  padding-bottom: 8px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.hero-v2-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 18px;
}

.hero-v2-link svg {
  flex-shrink: 0;
}

.hero-v2-portrait {
  min-height: 0;
  margin-left: 0;
  align-self: end;
}

.hero-v2-art {
  width: min(100%, 1040px);
  height: auto;
  display: block;
  margin-left: auto;
  object-fit: contain;
}

.hero-v2 .hero-v2-stats {
  background: rgba(255,255,255,0.38);
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid {
    grid-template-columns: minmax(290px, 460px) minmax(420px, 1fr);
    gap: 28px;
    padding: 36px 40px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    font-size: clamp(46px, 5vw, 72px);
  }
  .hero-v2-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media(max-width:900px){
  .hero-v2 {
    padding: 14px 14px 0;
  }
  .hero-v2-shell {
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(70,54,24,0.1);
  }
  .hero-v2 .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 22px 0;
  }
  .hero-v2 .hero-v2-left {
    max-width: none;
    padding: 0;
    gap: 20px;
  }
  .hero-v2-kicker {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .hero-v2-kicker::before {
    width: 44px;
  }
  .hero-v2 .hero-v2-left h1 {
    max-width: 10.5ch;
    font-size: clamp(38px, 11vw, 58px);
  }
  .hero-v2-lead {
    max-width: none;
    font-size: 15px;
  }
  .hero-v2-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 2px;
  }
  .hero-v2-link {
    justify-content: space-between;
    width: 100%;
  }
  .hero-v2-art {
    width: min(100%, 720px);
    margin: 8px auto 0;
  }
  .hero-v2 .hero-v2-stats {
    grid-template-columns: repeat(2,1fr);
  }
  .hero-v2 .hero-v2-stat:nth-child(1),
  .hero-v2 .hero-v2-stat:nth-child(2) {
    border-bottom: 1px solid rgba(26,26,29,0.08);
  }
}

@media(max-width:560px){
  .hero-v2 .hero-v2-grid {
    padding: 24px 18px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    font-size: clamp(34px, 11.8vw, 48px);
  }
  .hero-v2-cta.hero-v2-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ===== Hero V2 image-led refresh — layout fix ===== */
@media(min-width:901px){
  .hero-v2-shell {
    position: relative;
    min-height: calc(100vh - 104px);
    overflow: hidden;
  }

  .hero-v2 .hero-v2-grid {
    display: block;
    position: relative;
    min-height: calc(100vh - 270px);
    padding: 52px 72px 0;
  }

  .hero-v2 .hero-v2-left {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 26px 0 44px;
  }

  .hero-v2-portrait {
    position: absolute;
    right: -24px;
    bottom: -8px;
    top: auto;
    left: auto;
    margin: 0;
    min-height: 0;
    z-index: 1;
    pointer-events: none;
    width: clamp(920px, 96vw, 1720px);
  }

  .hero-v2-art {
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: right bottom;
    display: block;
  }
}

@media(max-width:900px){
  .hero-v2-portrait {
    position: relative;
    inset: auto;
    pointer-events: auto;
  }

  .hero-v2-art {
    width: min(100%, 720px);
    height: auto;
    object-fit: contain;
    margin: 8px auto 0;
  }
}

/* ===== Hero V2 final reset ===== */
.hero-v2 {
  background:
    radial-gradient(circle at 14% 18%, rgba(184,151,90,0.08), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede2 100%);
}

.hero-v2-shell {
  min-height: calc(100vh - 104px);
  background:
    radial-gradient(circle at 18% 16%, rgba(184,151,90,0.08), transparent 18%),
    linear-gradient(180deg, rgba(251,248,242,0.98) 0%, rgba(244,237,226,0.96) 100%);
}

.hero-v2-shell::before,
.hero-v2-shell::after,
.hero-v2-deco,
.hero-v2-right {
  display: none;
}

.hero-v2 .hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(520px, 1fr);
  gap: 14px;
  align-items: center;
  min-height: calc(100vh - 270px);
  padding: 34px 72px 0;
}

.hero-v2 .hero-v2-left {
  max-width: 560px;
  padding: 26px 0 56px;
  gap: 22px;
  z-index: 2;
}

.hero-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(26,26,29,0.68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-v2-kicker::before {
  content: "";
  width: 66px;
  height: 1px;
  background: rgba(184,151,90,0.9);
  flex-shrink: 0;
}

.hero-v2 .hero-v2-left h1 {
  max-width: 11.5ch;
  font-size: clamp(46px, 4.7vw, 74px);
  line-height: 1.01;
  letter-spacing: -0.035em;
  color: var(--graphite);
}

.hero-v2 .hero-v2-left h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-v2-lead {
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26,26,29,0.66);
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 4px;
}

.hero-v2-cta.hero-v2-cta-primary {
  background: #181b20;
  color: var(--cream);
  padding: 20px 34px;
  box-shadow: 0 16px 34px rgba(22,24,29,0.16);
}

.hero-v2-cta.hero-v2-cta-primary:hover {
  background: #232730;
  color: var(--cream);
}

.hero-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184,151,90,0.45);
  color: rgba(26,26,29,0.72);
  font-size: 15px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.hero-v2-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 18px;
}

.hero-v2-portrait {
  position: relative;
  width: 100%;
  min-height: 660px;
  height: min(80vh, 760px);
  margin: 0;
  overflow: hidden;
  align-self: end;
}

.hero-v2-art {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  object-position: 79% center;
  filter: saturate(0.98);
  -webkit-mask-image: linear-gradient(to left, #000 74%, rgba(0,0,0,0.86) 82%, rgba(0,0,0,0.12) 100%), linear-gradient(to top, #000 86%, rgba(0,0,0,0.18) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, #000 74%, rgba(0,0,0,0.86) 82%, rgba(0,0,0,0.12) 100%), linear-gradient(to top, #000 86%, rgba(0,0,0,0.18) 100%);
  mask-composite: intersect;
}

.hero-v2 .hero-v2-stats {
  background: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(26,26,29,0.08);
}

.hero-v2 .hero-v2-stat {
  border-right-color: rgba(26,26,29,0.08);
}

.hero-v2 .hero-v2-stat svg {
  stroke: var(--gold);
}

.hero-v2 .hero-v2-stat-text strong {
  color: var(--graphite);
}

.hero-v2 .hero-v2-stat-text span {
  color: rgba(26,26,29,0.48);
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid {
    grid-template-columns: minmax(280px, 430px) minmax(360px, 1fr);
    gap: 18px;
    padding: 28px 40px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    font-size: clamp(42px, 4.9vw, 64px);
  }
  .hero-v2-portrait {
    min-height: 580px;
    height: min(72vh, 670px);
  }
}

@media(max-width:900px){
  .hero-v2 {
    padding: 14px 14px 0;
  }
  .hero-v2-shell {
    min-height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 56px rgba(70,54,24,0.1);
  }
  .hero-v2 .hero-v2-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
    padding: 28px 22px 0;
  }
  .hero-v2 .hero-v2-left {
    max-width: none;
    padding: 0;
    gap: 18px;
  }
  .hero-v2-kicker {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .hero-v2-kicker::before {
    width: 44px;
  }
  .hero-v2 .hero-v2-left h1 {
    max-width: 10.5ch;
    font-size: clamp(38px, 11vw, 56px);
  }
  .hero-v2-lead {
    max-width: none;
    font-size: 15px;
  }
  .hero-v2-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-v2-link {
    width: 100%;
    justify-content: space-between;
  }
  .hero-v2-portrait {
    min-height: 320px;
    height: 72vw;
    max-height: 520px;
    border-radius: 18px;
  }
  .hero-v2-art {
    object-position: 76% center;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media(max-width:560px){
  .hero-v2 .hero-v2-grid {
    padding: 24px 18px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    font-size: clamp(34px, 11.5vw, 48px);
  }
  .hero-v2-cta.hero-v2-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
  .hero-v2 .hero-v2-stats {
    grid-template-columns: repeat(2,1fr);
  }
  .hero-v2 .hero-v2-stat:nth-child(1),
  .hero-v2 .hero-v2-stat:nth-child(2) {
    border-bottom: 1px solid rgba(26,26,29,0.08);
  }
}

/* ===== Hero V2 sober reset ===== */
.hero-v2 {
  background:
    radial-gradient(circle at 14% 18%, rgba(184,151,90,0.06), transparent 24%),
    linear-gradient(180deg, #f8f3ea 0%, #f5eee4 100%);
}

.hero-v2-shell {
  background: transparent;
}

.hero-v2 .hero-v2-grid {
  grid-template-columns: minmax(320px, 520px) minmax(380px, 620px);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 260px);
  padding: 42px 72px 0;
}

.hero-v2 .hero-v2-left {
  max-width: 520px;
  padding: 18px 0 48px;
  gap: 22px;
}

.hero-v2 .hero-v2-left h1 {
  max-width: 9.8ch;
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-v2 .hero-v2-left h1 em {
  display: inline;
  font-style: italic;
  color: var(--gold);
}

.hero-v2-lead {
  max-width: 38ch;
  font-size: 16px;
  line-height: 1.82;
  color: rgba(26,26,29,0.66);
}

.hero-v2-actions {
  gap: 20px;
  padding-top: 6px;
}

.hero-v2-portrait {
  position: relative;
  min-height: 0;
  height: auto;
  overflow: visible;
  align-self: center;
}

.hero-v2-portrait::before {
  content: "";
  position: absolute;
  inset: -24px 28px 48px -18px;
  background: linear-gradient(145deg, rgba(184,151,90,0.12), rgba(184,151,90,0.02));
  border-radius: 42px;
  z-index: 0;
}

.hero-v2-portrait::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.14), transparent 72%);
  z-index: 0;
  animation: ambientGlow 6.4s ease-in-out infinite;
}

.hero-v2-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 36px;
  object-fit: contain;
  object-position: center top;
  box-shadow: 0 28px 60px rgba(70,54,24,0.14);
  mask-image: none;
  -webkit-mask-image: none;
  transition: transform .55s cubic-bezier(.22,.8,.28,1), box-shadow .55s ease;
}

.hero-v2-portrait:hover .hero-v2-art {
  transform:none;
  box-shadow: 0 28px 60px rgba(70,54,24,0.14);
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid {
    grid-template-columns: minmax(280px, 440px) minmax(320px, 520px);
    gap: 32px;
    padding: 34px 40px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    font-size: clamp(40px, 4.8vw, 58px);
  }
}

@media(max-width:900px){
  .hero-v2 .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 34px 22px 0;
  }
  .hero-v2-portrait {
    order: -1;
  }
  .hero-v2 .hero-v2-left {
    max-width: none;
    padding: 0 0 6px;
    gap: 16px;
  }
  .hero-v2-kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .hero-v2 .hero-v2-left h1 {
    max-width: 9.5ch;
    font-size: clamp(34px, 8.8vw, 46px);
    line-height: 1.02;
  }
  .hero-v2-lead {
    font-size: 14px;
    line-height: 1.72;
  }
  .hero-v2-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-v2-link {
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 6px;
  }
  .hero-v2-portrait {
    overflow: visible;
    min-height: 0;
    height: auto;
    max-height: none;
    border-radius: 0;
  }
  .hero-v2-portrait::before {
    inset: -10px 10px 24px -10px;
    border-radius: 28px;
  }
  .hero-v2-portrait::after {
    width: 100px;
    height: 100px;
    right: -6px;
    top: 18px;
  }
  .hero-v2-art {
    max-width: 100%;
    border-radius: 24px;
    object-position: center top;
  }
  .hero-v2 .hero-v2-stat {
    padding: 18px 18px;
    gap: 10px;
  }
  .hero-v2 .hero-v2-stat svg {
    display: none;
  }
  .hero-v2 .hero-v2-stat-text strong {
    font-size: 18px;
  }
  .hero-v2 .hero-v2-stat-text span {
    font-size: 10px;
    line-height: 1.35;
  }
}

@media(max-width:560px){
  .hero-v2 .hero-v2-grid {
    padding: 28px 16px 0;
  }
  .hero-v2 .hero-v2-left h1 {
    max-width: 9ch;
    font-size: clamp(31px, 10.4vw, 42px);
  }
  .hero-v2-lead {
    font-size: 13px;
    line-height: 1.7;
  }
  .hero-v2-art {
    border-radius: 20px;
  }
  .hero-v2-kicker::before {
    width: 34px;
  }
  .hero-v2-cta.hero-v2-cta-primary {
    padding: 16px 20px;
    font-size: 11px;
  }
}

/* ===== Hero V2 layout polish ===== */
.hero-v2{
  padding:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(184,151,90,.08), transparent 22%),
    linear-gradient(180deg, #f5efe4 0%, #f2eadf 100%);
}

.hero-v2-shell{
  position:relative;
  border-radius:0;
  overflow:visible;
  background:transparent;
  box-shadow:none;
  border:none;
}

.hero-v2-shell::before{
  content:"";
  position:absolute;
  inset:-12% auto auto -8%;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,151,90,.14), rgba(184,151,90,0) 68%);
  pointer-events:none;
}

.hero-v2-shell::after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:110px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(107,31,42,.08), rgba(107,31,42,0) 72%);
  pointer-events:none;
}

.hero-v2 .hero-v2-grid{
  grid-template-columns:minmax(340px, 520px) minmax(420px, 1fr);
  align-items:end;
  gap:56px;
  min-height:min(78vh, 860px);
  padding:54px 58px 24px;
  position:relative;
  z-index:1;
}

.hero-v2 .hero-v2-left{
  max-width:500px;
  padding:20px 0 38px;
  background:transparent;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.hero-v2-kicker{
  margin-bottom:2px;
}

.hero-v2 .hero-v2-left h1{
  max-width:8.8ch;
  font-size:clamp(50px, 4.8vw, 78px);
  line-height:.98;
}

.hero-v2-lead{
  max-width:34ch;
  font-size:15px;
  line-height:1.78;
  color:rgba(26,26,29,.68);
}

.hero-v2-actions{
  align-items:center;
  flex-wrap:wrap;
  gap:18px 20px;
}

.hero-v2-cta.hero-v2-cta-primary{
  padding:18px 28px;
  border-radius:16px;
}

.hero-v2-link{
  padding-bottom:4px;
}

.hero-v2-portrait{
  justify-self:end;
  width:min(100%, 640px);
}

.hero-v2-photo-frame{
  position:relative;
  display:block;
  width:100%;
  max-width:620px;
}

.hero-v2-photo-led{
  position:absolute;
  inset:-12px;
  border-radius:40px;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,245,220,.54), rgba(255,245,220,0) 22%),
    radial-gradient(circle at 82% 18%, rgba(255,238,194,.38), rgba(255,238,194,0) 24%),
    radial-gradient(circle at 50% 100%, rgba(184,151,90,.18), rgba(184,151,90,0) 55%);
  filter:blur(10px);
  opacity:.95;
}

.hero-v2-portrait::before{
  inset:28px 36px 34px 18px;
  border-radius:34px;
  background:linear-gradient(145deg, rgba(184,151,90,.18), rgba(184,151,90,.03));
}

.hero-v2-portrait::after{
  right:-8px;
  top:36px;
  width:120px;
  height:120px;
  background:radial-gradient(circle, rgba(255,244,217,.82), rgba(184,151,90,0) 72%);
}

.hero-v2-art{
  display:block;
  width:100%;
  max-width:620px;
  border-radius:30px;
  box-shadow:0 32px 74px rgba(70,54,24,.14);
  position:relative;
  z-index:1;
}

.hero-v2 .hero-v2-stats{
  position:relative;
  z-index:1;
  grid-template-columns:repeat(4, 1fr);
  margin:0;
  border:1px solid rgba(184,151,90,.12);
  border-radius:0;
  overflow:hidden;
  background:rgba(255,255,255,.42);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.hero-v2 .hero-v2-stat{
  min-width:0;
  padding:22px 24px;
}

.hero-v2 .hero-v2-stat-text strong{
  font-size:24px;
}

.hero-v2 .hero-v2-stat-text span{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid{
    grid-template-columns:minmax(300px, 1fr) minmax(360px, 1.02fr);
    gap:34px;
    padding:42px 34px 0;
  }
  .hero-v2 .hero-v2-left{
    padding:20px 0 30px;
  }
  .hero-v2 .hero-v2-left h1{
    font-size:clamp(42px, 5vw, 62px);
  }
}

@media(max-width:900px){
  .hero-v2{
    padding:0;
  }
  .hero-v2-shell{
    border-radius:0;
  }
  .hero-v2 .hero-v2-grid{
    grid-template-columns:1fr;
    min-height:0;
    gap:18px;
    padding:26px 20px 20px;
  }
  .hero-v2-portrait{
    order:-1;
    justify-self:center;
    width:min(100%, 560px);
  }
  .hero-v2-photo-frame{
    max-width:560px;
  }
  .hero-v2-photo-led{
    inset:-10px;
    border-radius:34px;
  }
  .hero-v2 .hero-v2-left{
    max-width:none;
    padding:0 0 24px;
  }
  .hero-v2 .hero-v2-left h1{
    max-width:9.2ch;
    font-size:clamp(36px, 9vw, 52px);
  }
  .hero-v2-lead{
    max-width:none;
    font-size:14px;
  }
  .hero-v2 .hero-v2-stats{
    grid-template-columns:repeat(2, 1fr);
    margin:0;
    border-radius:0;
  }
}

@media(max-width:560px){
  .hero-v2 .hero-v2-grid{
    padding:22px 16px 0;
  }
  .hero-v2 .hero-v2-left{
    padding:0 0 22px;
  }
  .hero-v2-photo-led{
    inset:-8px;
    border-radius:28px;
  }
  .hero-v2 .hero-v2-left h1{
    font-size:clamp(31px, 10.5vw, 42px);
  }
  .hero-v2 .hero-v2-stat{
    padding:18px 16px;
  }
}

/* ===== Hero home redesign ===== */
.hero-v2{
  margin-top:-98px;
  padding:108px 24px 0;
  background:
    linear-gradient(114deg, rgba(184,151,90,.26) 0 18%, transparent 18% 60%, rgba(184,151,90,.22) 60% 74%, transparent 74% 100%),
    linear-gradient(180deg, #f7f4ee 0%, #f6f1e8 100%);
}

.hero-v2-shell{
  max-width:1240px;
  margin:0 auto;
  position:relative;
  overflow:visible;
}

.hero-v2-shell::before,
.hero-v2-shell::after{
  display:none;
}

.hero-v2-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(250,246,239,.72));
  border:1px solid rgba(255,255,255,.35);
  border-radius:34px;
  box-shadow:0 18px 44px rgba(126,94,36,.08);
  overflow:visible;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:1;
}

.hero-v2-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 52% 44%, rgba(194,160,93,.14), rgba(194,160,93,0) 26%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events:none;
  border-radius:inherit;
}

.hero-v2 .hero-v2-grid{
  display:grid;
  grid-template-columns:minmax(320px, .92fr) minmax(360px, 1.02fr) minmax(210px, .48fr);
  gap:18px;
  align-items:end;
  min-height:720px;
  padding:10px 34px 0;
}

.hero-v2 .hero-v2-left{
  max-width:360px;
  padding:102px 0 44px;
  align-self:start;
  position:relative;
  z-index:2;
}

.hero-v2-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:26px;
  color:rgba(26,26,29,.52);
  font-size:10px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.hero-v2-kicker::before{
  content:"";
  width:34px;
  height:1px;
  background:rgba(184,151,90,.85);
}

.hero-v2 .hero-v2-left h1{
  max-width:5.4ch;
  font-family:var(--sans);
  font-size:clamp(44px, 4.7vw, 62px);
  font-weight:700;
  line-height:.94;
  letter-spacing:-.06em;
  color:#23232a;
}

.hero-v2 .hero-v2-left h1 em{
  display:block;
  font-style:normal;
  color:#b3882f;
}

.hero-v2-lead{
  max-width:30ch;
  margin-top:26px;
  font-size:14px;
  line-height:1.75;
  color:rgba(26,26,29,.5);
}

.hero-v2-actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:36px;
}

.hero-v2-cta.hero-v2-cta-primary{
  min-height:46px;
  padding:0 22px;
  border-radius:999px;
  background:#b3882f;
  color:#fff;
  box-shadow:0 16px 30px rgba(179,136,47,.24);
  font-size:12px;
  letter-spacing:.01em;
}

.hero-v2-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#26262a;
  font-size:13px;
  font-weight:500;
}

.hero-v2-link svg{
  transition:transform .25s ease;
}

.hero-v2-link:hover svg{
  transform:translateX(4px);
}

.hero-v2-logos{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:72px;
  color:rgba(26,26,29,.34);
  font-size:15px;
  font-weight:800;
  letter-spacing:-.03em;
}

.hero-v2-portrait{
  justify-self:end;
  width:100%;
  max-width:520px;
  position:relative;
  align-self:end;
  z-index:3;
  margin-top:-126px;
  margin-right:-10px;
}

.hero-v2-photo-frame{
  position:relative;
  height:830px;
  overflow:visible;
}

.hero-v2-photo-frame::before{
  content:"";
  position:absolute;
  inset:120px 18px 10px 18px;
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.72), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, rgba(250,243,230,.78), rgba(244,236,223,.72));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74), 0 26px 50px rgba(184,151,90,.08);
}

.hero-v2-photo-frame::after{
  content:"";
  position:absolute;
  left:6%;
  right:5%;
  bottom:0;
  height:64px;
  background:radial-gradient(circle, rgba(68,48,17,.28), rgba(68,48,17,0) 72%);
  filter:blur(24px);
}

.hero-v2-art{
  position:relative;
  z-index:1;
  width:224%;
  max-width:none;
  height:100%;
  margin-left:-72%;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 24px 26px rgba(73,47,13,.12));
}

.hero-v2-side{
  max-width:260px;
  padding:108px 6px 40px 0;
  justify-self:end;
  align-self:start;
  position:relative;
  z-index:2;
}

.hero-v2-icon-row{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.hero-v2-icon-row span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(184,151,90,.34);
  color:#a67c28;
  font-size:11px;
  font-weight:700;
}

.hero-v2-side-copy h2{
  font-family:var(--sans);
  font-size:18px;
  line-height:1.34;
  margin-bottom:12px;
  color:#222227;
}

.hero-v2-side-copy p{
  color:rgba(26,26,29,.52);
  font-size:12px;
  line-height:1.68;
}

.hero-v2-feature-list{
  list-style:none;
  margin:22px 0 38px;
  padding:0;
}

.hero-v2-feature-list li + li{
  margin-top:12px;
}

.hero-v2-feature-list a{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(26,26,29,.72);
  font-size:13px;
  transition:color .25s ease, transform .25s ease;
}

.hero-v2-feature-list a::before{
  content:"\2192";
  color:#b3882f;
}

.hero-v2-feature-list a:hover{
  color:#1f1f22;
  transform:translateX(3px);
}

.hero-v2-side-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:26px;
}

.hero-v2-side-stat span{
  display:block;
  margin-bottom:10px;
  color:rgba(26,26,29,.45);
  font-size:10px;
  line-height:1.35;
}

.hero-v2-side-stat strong{
  color:#1d1d21;
  font-size:26px;
  line-height:1;
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid{
    grid-template-columns:minmax(280px, .9fr) minmax(300px, 1fr) minmax(180px, .42fr);
    gap:10px;
    min-height:660px;
    padding:10px 24px 0;
  }
  .hero-v2 .hero-v2-left{
    max-width:330px;
    padding:90px 0 30px;
  }
  .hero-v2 .hero-v2-left h1{
    font-size:clamp(40px, 4.6vw, 54px);
  }
  .hero-v2-portrait{
    max-width:450px;
    margin-top:-92px;
    margin-right:-6px;
  }
  .hero-v2-photo-frame{
    height:700px;
  }
  .hero-v2-logos{
    margin-top:58px;
    gap:18px;
  }
  .hero-v2-side{
    max-width:190px;
    padding-top:102px;
  }
}

@media(max-width:980px){
  .hero-v2{
    margin-top:0;
    padding:20px 16px 0;
  }
  .hero-v2 .hero-v2-grid{
    grid-template-columns:1fr;
    gap:8px;
    min-height:0;
    padding:24px 22px 24px;
  }
  .hero-v2-portrait{
    order:-1;
    max-width:360px;
    margin-top:0;
    margin-right:0;
  }
  .hero-v2-photo-frame{
    height:500px;
  }
  .hero-v2-photo-frame::before{
    inset:50px 8px 10px;
  }
  .hero-v2-art{
    width:168%;
    margin-left:-22%;
    object-position:center bottom;
  }
  .hero-v2 .hero-v2-left,
  .hero-v2-side{
    max-width:none;
    text-align:center;
    justify-self:center;
  }
  .hero-v2 .hero-v2-left{
    padding:6px 0 18px;
  }
  .hero-v2 .hero-v2-left h1{
    max-width:7ch;
    font-size:clamp(38px, 8vw, 52px);
  }
  .hero-v2-lead{
    max-width:38ch;
    font-size:14px;
    margin-left:auto;
    margin-right:auto;
  }
  .hero-v2-kicker,
  .hero-v2-actions,
  .hero-v2-logos,
  .hero-v2-icon-row{
    justify-content:center;
  }
  .hero-v2-logos{
    margin-top:34px;
  }
  .hero-v2-side{
    padding:8px 0 0;
  }
  .hero-v2-side-copy{
    max-width:540px;
    margin:0 auto;
  }
  .hero-v2-feature-list{
    max-width:380px;
    margin-left:auto;
    margin-right:auto;
  }
  .hero-v2-side-stats{
    max-width:280px;
    margin:0 auto;
  }
}

@media(max-width:560px){
  .hero-v2{
    padding:16px 12px 0;
  }
  .hero-v2 .hero-v2-grid{
    padding:20px 16px 18px;
  }
  .hero-v2 .hero-v2-left{
    padding:2px 0 14px;
  }
  .hero-v2 .hero-v2-left h1{
    font-size:clamp(34px, 11vw, 44px);
  }
  .hero-v2-actions{
    flex-direction:column;
    gap:14px;
  }
  .hero-v2-cta.hero-v2-cta-primary,
  .hero-v2-link{
    width:100%;
    justify-content:center;
  }
  .hero-v2-logos{
    gap:12px;
    font-size:15px;
    flex-wrap:wrap;
    margin-top:28px;
  }
  .hero-v2-portrait{
    max-width:300px;
  }
  .hero-v2-photo-frame{
    height:410px;
  }
  .hero-v2-photo-frame::before{
    inset:40px 4px 10px;
    border-radius:22px;
  }
  .hero-v2-art{
    width:176%;
    margin-left:-26%;
  }
  .hero-v2-side-stats{
    grid-template-columns:1fr 1fr;
  }
  .hero-v2-side-stat strong{
    font-size:20px;
  }
}

/* ===== Hero cleanup override ===== */
@media(min-width:981px){
  .hero-v2{
    margin-top:-96px;
    padding:106px 24px 0;
  }

  .hero-v2-shell{
    max-width:1240px;
  }

  .hero-v2-card{
    min-height:680px;
    border-radius:32px;
    overflow:hidden;
  }

  .hero-v2 .hero-v2-grid{
    grid-template-columns:300px 1fr 230px;
    grid-template-rows:auto 1fr auto;
    gap:0 26px;
    min-height:680px;
    padding:34px 34px 28px;
    align-items:start;
  }

  .hero-v2 .hero-v2-left{
    grid-column:1;
    grid-row:1 / span 3;
    max-width:300px;
    padding:84px 0 0;
  }

  .hero-v2 .hero-v2-left h1{
    max-width:5.7ch;
    font-size:60px;
    line-height:.93;
  }

  .hero-v2-lead{
    max-width:30ch;
    margin-top:22px;
  }

  .hero-v2-actions{
    margin-top:30px;
  }

  .hero-v2-logos{
    margin-top:86px;
    gap:22px;
    font-size:14px;
  }

  .hero-v2-portrait{
    grid-column:2;
    grid-row:1 / span 3;
    align-self:end;
    justify-self:center;
    width:100%;
    max-width:470px;
    margin:0;
    z-index:1;
  }

  .hero-v2-photo-frame{
    height:618px;
  }

  .hero-v2-photo-frame::before{
    inset:34px 10px 0;
    border-radius:30px;
  }

  .hero-v2-photo-frame::after{
    left:14%;
    right:12%;
    bottom:0;
    height:44px;
    filter:blur(18px);
  }

  .hero-v2-art{
    width:176%;
    height:100%;
    margin-left:-34%;
    object-fit:contain;
    object-position:center bottom;
  }

  .hero-v2-side{
    grid-column:3;
    grid-row:1 / span 3;
    max-width:230px;
    padding:88px 0 0;
    justify-self:end;
  }

  .hero-v2-side-copy h2{
    font-size:16px;
    line-height:1.4;
  }

  .hero-v2-side-copy p{
    font-size:12px;
    line-height:1.7;
  }

  .hero-v2-feature-list{
    margin:20px 0 34px;
  }

  .hero-v2-feature-list a{
    font-size:12px;
  }

  .hero-v2-side-stats{
    gap:14px;
  }

  .hero-v2-side-stat strong{
    font-size:20px;
  }
}

@media(min-width:981px) and (max-width:1180px){
  .hero-v2 .hero-v2-grid{
    grid-template-columns:270px 1fr 200px;
    padding:28px 26px 24px;
    min-height:620px;
  }

  .hero-v2 .hero-v2-left{
    max-width:270px;
    padding-top:70px;
  }

  .hero-v2 .hero-v2-left h1{
    font-size:50px;
  }

  .hero-v2-portrait{
    max-width:420px;
  }

  .hero-v2-photo-frame{
    height:560px;
  }

  .hero-v2-art{
    width:170%;
    margin-left:-28%;
  }

  .hero-v2-side{
    max-width:200px;
    padding-top:74px;
  }
}

/* ===== Hero final override ===== */
.hero-v2{
  margin-top:-96px;
  padding:106px 0 0;
  background:
    linear-gradient(114deg, rgba(184,151,90,.2) 0 18%, transparent 18% 60%, rgba(184,151,90,.16) 60% 74%, transparent 74% 100%),
    linear-gradient(180deg, #f7f4ee 0%, #f6f1e8 100%);
}

.hero-v2-shell{
  max-width:none;
  width:100%;
}

.hero-v2-shell::before,
.hero-v2-shell::after{
  display:none;
}

.hero-v2-card{
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}

.hero-v2-card::before{
  background:none;
}

.hero-v2 .hero-v2-grid{
  display:grid;
  grid-template-columns:minmax(320px, 360px) minmax(420px, 1fr) minmax(220px, 260px);
  justify-content:space-between;
  align-items:end;
  min-height:720px;
  padding:42px 64px 0;
  gap:28px;
}

.hero-v2 .hero-v2-left{
  max-width:360px;
  padding:74px 0 48px;
}

.hero-v2-kicker{
  margin-bottom:22px;
}

.hero-v2 .hero-v2-left h1{
  max-width:5.8ch;
  font-size:clamp(44px, 4.7vw, 64px);
  line-height:.92;
}

.hero-v2-lead{
  max-width:31ch;
  margin-top:24px;
  line-height:1.8;
  color:rgba(26,26,29,.48);
}

.hero-v2-actions{
  margin-top:34px;
}

.hero-v2-logos{
  margin-top:96px;
  gap:22px;
}

.hero-v2-portrait{
  justify-self:center;
  align-self:end;
  max-width:560px;
  margin:0;
  z-index:2;
}

.hero-v2-photo-frame{
  height:760px;
}

.hero-v2-photo-frame::before{
  content:none;
}

.hero-v2-photo-frame::after{
  left:18%;
  right:16%;
  bottom:8px;
  height:48px;
  background:radial-gradient(circle, rgba(68,48,17,.12), rgba(68,48,17,0) 72%);
  filter:blur(16px);
}

.hero-v2-art{
  width:205%;
  height:100%;
  margin-left:-54%;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 14px 18px rgba(73,47,13,.1));
}

.hero-v2-side{
  max-width:250px;
  padding:82px 0 38px;
}

.hero-v2-side-copy h2{
  font-size:17px;
}

.hero-v2-side-copy p{
  line-height:1.72;
}

.hero-v2-feature-list{
  margin:22px 0 38px;
}

.hero-v2-side-stats{
  gap:18px;
}

.hero-v2-side-stat strong{
  font-size:22px;
}

@media(min-width:981px){
  .hero-v2-portrait{
    max-width:620px;
    margin-top:-152px;
    margin-right:-34px;
    align-self:start;
  }

  .hero-v2-photo-frame{
    height:940px;
  }

  .hero-v2-photo-frame::after{
    left:10%;
    right:8%;
    bottom:10px;
    height:56px;
    filter:blur(20px);
  }

  .hero-v2-art{
    width:232%;
    margin-left:-76%;
    filter:drop-shadow(0 22px 26px rgba(73,47,13,.12));
  }

  .hero-v2 .hero-v2-left{
    padding-top:110px;
  }

  .hero-v2-side{
    max-width:230px;
    padding-top:112px;
  }
}

@media(max-width:1180px){
  .hero-v2 .hero-v2-grid{
    grid-template-columns:minmax(260px, 300px) minmax(320px, 1fr) minmax(180px, 210px);
    min-height:620px;
    padding:28px 28px 0;
    gap:22px;
  }

  .hero-v2 .hero-v2-left{
    max-width:300px;
    padding:66px 0 30px;
  }

  .hero-v2 .hero-v2-left h1{
    font-size:clamp(38px, 4.4vw, 52px);
  }

  .hero-v2-portrait{
    max-width:440px;
    margin-top:0;
    margin-right:0;
    align-self:end;
  }

  .hero-v2-photo-frame{
    height:620px;
  }

  .hero-v2-art{
    width:186%;
    margin-left:-42%;
  }

  .hero-v2-logos{
    margin-top:62px;
    gap:18px;
  }

  .hero-v2-side{
    max-width:200px;
    padding-top:74px;
  }
}

@media(max-width:980px){
  .hero-v2{
    margin-top:0;
    padding:20px 12px 0;
  }

  .hero-v2 .hero-v2-grid{
    grid-template-columns:1fr;
    min-height:0;
    padding:24px 20px 24px;
    gap:12px;
  }

  .hero-v2-portrait{
    order:-1;
    max-width:420px;
  }

  .hero-v2-photo-frame{
    height:560px;
  }

  .hero-v2-art{
    width:170%;
    margin-left:-26%;
  }

  .hero-v2 .hero-v2-left,
  .hero-v2-side{
    max-width:none;
    text-align:center;
    justify-self:center;
  }

  .hero-v2 .hero-v2-left{
    padding:6px 0 18px;
  }

  .hero-v2 .hero-v2-left h1{
    max-width:7ch;
    font-size:clamp(38px, 8vw, 52px);
  }

  .hero-v2-lead{
    max-width:38ch;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-v2-kicker,
  .hero-v2-actions,
  .hero-v2-logos,
  .hero-v2-icon-row{
    justify-content:center;
  }

  .hero-v2-logos{
    margin-top:34px;
  }

  .hero-v2-side{
    padding:8px 0 0;
  }

  .hero-v2-side-copy{
    max-width:540px;
    margin:0 auto;
  }

  .hero-v2-feature-list{
    max-width:380px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-v2-side-stats{
    max-width:280px;
    margin:0 auto;
  }
}

@media(max-width:560px){
  .hero-v2{
    padding:16px 0 0;
  }

  .hero-v2 .hero-v2-grid{
    padding:20px 16px 18px;
  }

  .hero-v2 .hero-v2-left{
    padding:2px 0 14px;
  }

  .hero-v2 .hero-v2-left h1{
    font-size:clamp(34px, 11vw, 44px);
  }

  .hero-v2-actions{
    flex-direction:column;
    gap:14px;
  }

  .hero-v2-cta.hero-v2-cta-primary,
  .hero-v2-link{
    width:100%;
    justify-content:center;
  }

  .hero-v2-logos{
    gap:12px;
    font-size:15px;
    flex-wrap:wrap;
    margin-top:28px;
  }

  .hero-v2-portrait{
    max-width:320px;
  }

  .hero-v2-photo-frame{
    height:430px;
  }

  .hero-v2-art{
    width:178%;
    margin-left:-32%;
  }

  .hero-v2-side-stats{
    grid-template-columns:1fr 1fr;
  }

  .hero-v2-side-stat strong{
    font-size:20px;
  }
}

/* ===== Hero immersive rebuild ===== */
.hero-immersive{
  position:relative;
  margin-top:-96px;
  padding:112px 0 56px;
  min-height:876px;
  overflow:hidden;
  background:var(--cream);
}

.hero-immersive::before{
  display:none;
}

.hero-immersive::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:220px;
  background:linear-gradient(180deg, rgba(247,244,238,0) 0%, var(--cream) 74%);
  pointer-events:none;
  z-index:0;
}

.hero-immersive-wrap{
  position:relative;
  z-index:1;
  max-width:1320px;
  min-height:820px;
  margin:0 auto;
  padding:0 64px;
  display:grid;
  grid-template-columns:320px minmax(460px, 1fr) 250px;
  gap:48px;
  align-items:end;
}

.hero-immersive-copy{
  align-self:center;
  max-width:360px;
  padding:84px 0 72px;
  position:relative;
  z-index:3;
}

.hero-immersive-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:26px;
  color:#54545d;
  font-size:10px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.hero-immersive-kicker::before{
  content:"";
  width:34px;
  height:1px;
  background:#8f6920;
}

.hero-immersive-copy h1{
  max-width:5.6ch;
  font-family:var(--sans);
  font-size:clamp(48px, 4.9vw, 68px);
  font-weight:700;
  line-height:.95;
  letter-spacing:-.06em;
  color:#23232a;
  text-wrap:balance;
}

.hero-immersive-copy h1 em{
  display:block;
  font-style:normal;
  color:#956913;
}

.hero-immersive-lead{
  max-width:34ch;
  margin-top:28px;
  color:#4a4a53;
  font-size:16px;
  line-height:1.88;
  font-weight:600;
}

.hero-immersive-actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:42px;
}

.hero-immersive-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 22px;
  border-radius:999px;
  background:#956913;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 16px 30px rgba(149,105,19,.2);
  position:relative;
  overflow:hidden;
  transform:translate3d(var(--hero-cta-x, 0), var(--hero-cta-y, 0), 0);
  transition:transform .28s cubic-bezier(.22,.8,.28,1), box-shadow .28s ease, background-color .28s ease;
  will-change:transform;
}

.hero-immersive-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.18) 42%, rgba(255,255,255,.52) 50%, rgba(255,255,255,.16) 58%, transparent 78%);
  transform:translateX(-135%);
  transition:transform .7s cubic-bezier(.22,.8,.28,1);
  pointer-events:none;
}

.hero-immersive-cta:hover,
.hero-immersive-cta:focus-visible{
  box-shadow:0 22px 38px rgba(149,105,19,.26);
  background:#7f590f;
}

.hero-immersive-cta:hover::before,
.hero-immersive-cta:focus-visible::before{
  transform:translateX(135%);
}

.hero-immersive-cta:focus-visible{
  outline:2px solid rgba(149,105,19,.46);
  outline-offset:3px;
}

.hero-immersive-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#18181c;
  font-size:13px;
  font-weight:700;
}

.hero-immersive-link svg{
  transition:transform .25s ease;
}

.hero-immersive-link:hover svg{
  transform:translateX(4px);
}

.hero-immersive-brands{
  display:flex;
  gap:22px;
  margin-top:64px;
  color:rgba(26,26,29,.4);
  font-size:14px;
  font-weight:800;
  letter-spacing:-.02em;
}

.hero-immersive-statue{
  position:relative;
  align-self:end;
  justify-self:center;
  width:100%;
  max-width:660px;
  height:820px;
  margin-right:0;
  isolation:isolate;
  z-index:1;
}

.hero-immersive-statue::after{
  content:"";
  position:absolute;
  left:18%;
  right:16%;
  bottom:18px;
  height:40px;
  background:rgba(184,151,90,.08);
  filter:blur(18px);
  z-index:0;
}

.hero-immersive-statue::before{
  content:"";
  position:absolute;
  inset:10% 16% 12% 12%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.34), transparent 34%),
    radial-gradient(circle at 72% 42%, rgba(184,151,90,.14), transparent 40%);
  mix-blend-mode:screen;
  opacity:.55;
  pointer-events:none;
  z-index:2;
}

.hero-immersive-art{
  position:relative;
  z-index:1;
  display:block;
  width:192%;
  max-width:none;
  height:100%;
  margin-left:-32%;
  object-fit:contain;
  object-position:center bottom;
  filter:
    saturate(1.08)
    contrast(1.06)
    brightness(1.02)
    drop-shadow(0 10px 18px rgba(255,255,255,.22))
    drop-shadow(0 24px 32px rgba(73,47,13,.1));
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  mask-image:linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.hero-immersive-side{
  align-self:center;
  max-width:250px;
  padding:124px 0 56px;
  position:relative;
  z-index:3;
  background:none;
  border-radius:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  padding-left:0;
  padding-right:0;
}

.hero-immersive-icons{
  display:flex;
  gap:10px;
  margin-bottom:22px;
}

.hero-immersive-icons span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(184,151,90,.56);
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  background:rgba(255,255,255,.42);
}

.hero-immersive-side h2{
  font-family:var(--sans);
  font-size:18px;
  line-height:1.38;
  margin-bottom:14px;
  color:#17171b;
  max-width:12ch;
  font-weight:800;
}

.hero-immersive-side p{
  color:#55555d;
  font-size:14px;
  line-height:1.8;
  font-weight:600;
  max-width:26ch;
}

.hero-immersive-list{
  list-style:none;
  margin:24px 0 34px;
  padding:0;
}

.hero-immersive-list li + li{
  margin-top:12px;
}

.hero-immersive-list a{
  display:flex;
  align-items:center;
  gap:10px;
  color:#26262c;
  font-size:14px;
  font-weight:700;
  transition:color .25s ease, transform .25s ease;
}

.hero-immersive-list a::before{
  content:"\2192";
  color:#956913;
}

.hero-immersive-list a:hover{
  color:#111116;
  transform:translateX(3px);
}

.hero-immersive-metrics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  padding-top:10px;
  border-top:1px solid rgba(149,105,19,.22);
}

.hero-immersive-metrics span{
  display:block;
  margin-bottom:10px;
  color:#5e5e66;
  font-size:10px;
  line-height:1.35;
  font-weight:700;
}

.hero-immersive-metrics strong{
  color:#101014;
  font-size:24px;
  line-height:1;
}

@media(max-width:1180px){
  .hero-immersive-wrap{
    max-width:1200px;
    min-height:700px;
    padding:0 32px;
    grid-template-columns:280px minmax(360px, 1fr) 210px;
    gap:28px;
  }

  .hero-immersive-copy{
    max-width:280px;
    padding-top:68px;
  }

  .hero-immersive-copy h1{
    font-size:clamp(40px, 4.4vw, 56px);
  }

  .hero-immersive-statue{
    max-width:520px;
    height:680px;
  }

  .hero-immersive-statue::before{
    inset:12% 16% 14% 12%;
  }

  .hero-immersive-art{
    width:180%;
    margin-left:-24%;
  }

  .hero-immersive-side{
    max-width:210px;
    padding-top:94px;
  }
}

@media(max-width:980px){
  .hero-immersive{
    margin-top:0;
    padding:18px 0 0;
    min-height:auto;
  }

  .hero-immersive::before,
  .hero-immersive::after{
    display:none;
  }

  .hero-immersive-wrap{
    min-height:0;
    padding:0 20px 24px;
    grid-template-columns:1fr;
    gap:14px;
    align-items:start;
  }

  .hero-immersive-copy{
    display:grid;
    gap:0;
  }

  .hero-immersive-kicker{
    margin-bottom:18px;
  }

  .hero-immersive-statue{
    display:none;
  }

  .hero-immersive-copy,
  .hero-immersive-side{
    max-width:none;
    text-align:left;
    justify-self:stretch;
    padding:0;
  }

  .hero-immersive-copy h1{
    max-width:9ch;
    font-size:clamp(38px, 8vw, 54px);
  }

  .hero-immersive-lead{
    max-width:34ch;
    margin-top:22px;
  }

  .hero-immersive-kicker,
  .hero-immersive-actions,
  .hero-immersive-brands,
  .hero-immersive-icons{
    justify-content:flex-start;
  }

  .hero-immersive-actions{
    margin-top:24px;
  }

  .hero-immersive-side{
    display:none;
  }
}

@media(max-width:560px){
  .hero-immersive{
    padding:10px 0 0;
  }

  .hero-immersive-wrap{
    padding:0 16px 20px;
    gap:12px;
  }

  .hero-immersive-copy h1{
    max-width:10ch;
    font-size:clamp(32px, 10.4vw, 42px);
    line-height:1.01;
  }

  .hero-immersive-lead{
    font-size:15px;
    line-height:1.72;
    margin-top:18px;
  }

  .hero-immersive-actions{
    flex-direction:column;
    gap:12px;
    margin-top:20px;
  }

  .hero-immersive-cta,
  .hero-immersive-link{
    width:100%;
    justify-content:center;
  }

  .hero-immersive-brands{
    gap:12px;
    font-size:15px;
    flex-wrap:wrap;
    margin-top:28px;
  }

}
