:root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dim: #8B6914;
      --gold-muted: rgba(201,168,76,0.35);
      --black: #050505;
      --black-2: #0D0D0D;
      --black-3: #111111;
      --black-4: #1A1A1A;
      --white: #F5F0E8;
      --white-dim: rgba(245,240,232,0.6);
      --white-faint: rgba(245,240,232,0.35);
      --glass: rgba(201,168,76,0.05);
      --glass-border: rgba(201,168,76,0.18);
      --glow: rgba(201,168,76,0.2);
      --glow-strong: rgba(201,168,76,0.35);
      --red-accent: #D97070;
      --red-bg: rgba(200,80,80,0.07);
      --green-accent: #7DC98A;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* ── GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 180px;
      opacity: 0.4;
    }

    /* ── LOADER ── */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--black);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-diamond {
      position: relative; width: 56px; height: 56px;
      margin-bottom: 2rem;
    }
    .loader-diamond::before {
      content: '';
      position: absolute; inset: 0;
      border: 1px solid var(--gold-dim);
      transform: rotate(45deg);
      animation: diamondSpin 2s linear infinite;
    }
    .loader-diamond::after {
      content: '';
      position: absolute; inset: 8px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      animation: diamondSpin 2s linear infinite reverse;
    }
    .loader-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .loader-wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.68rem; font-weight: 400;
      color: var(--gold); letter-spacing: 0.5em;
      text-transform: uppercase;
      animation: breathe 1.8s ease-in-out infinite;
    }
    .loader-subtitle {
      font-size: 0.55rem; letter-spacing: 0.35em;
      color: var(--gold-dim); text-transform: uppercase;
      margin-top: 0.5rem; text-align: center;
      animation: breathe 1.8s ease-in-out infinite 0.4s;
    }
    @keyframes diamondSpin { to { transform: rotate(225deg); } }
    @keyframes breathe { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      height: 80px; padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(5,5,5,0.90);
      backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--glass-border);
      transition: height 0.4s ease, background 0.4s ease;
    }
    nav.scrolled { height: 64px; background: rgba(5,5,5,0.97); }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.48rem; font-weight: 500;
      color: var(--gold); text-decoration: none;
      letter-spacing: 0.06em;
    }
    .nav-logo em { font-style: italic; color: var(--gold-light); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--white-dim); text-decoration: none;
      font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
      transition: color 0.3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
      height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
      transform: scaleX(0); transform-origin: center;
      transition: transform 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--gold); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 5px; background: none; border: none;
    }
    .hamburger span { display: block; width: 22px; height: 1px; background: var(--gold); transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav-mobile {
      display: none; position: fixed; top: 80px; inset-inline: 0; bottom: 0;
      background: rgba(5,5,5,0.97); backdrop-filter: blur(30px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.8rem; z-index: 998;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; letter-spacing: 0.15em;
      color: var(--white-dim); text-decoration: none;
      text-transform: uppercase; transition: color 0.3s;
    }
    .nav-mobile a:hover, .nav-mobile a.active { color: var(--gold-light); }

    /* ── HERO ── */
    .page-hero {
      min-height: 52vh; padding: 150px 5% 90px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .hero-radial {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 55% at 50% 45%, rgba(201,168,76,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 30% 20% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 25% 20% at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
    }
    .hero-ornament {
      width: 1px; height: 64px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      margin: 0 auto 2rem;
      animation: fadeUp 1s ease 0.4s both;
    }
    .hero-eyebrow {
      font-size: 0.62rem; letter-spacing: 0.55em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.4rem;
      animation: fadeUp 1s ease 0.6s both;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6.5vw, 5.2rem); font-weight: 300;
      color: var(--white); line-height: 1.05; margin-bottom: 1.4rem;
      animation: fadeUp 1s ease 0.8s both;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-desc {
      font-size: 0.76rem; letter-spacing: 0.14em; color: var(--white-dim);
      max-width: 480px; margin: 0 auto;
      animation: fadeUp 1s ease 1s both;
    }
    .hero-rule {
      width: 130px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 2.2rem auto 0;
      animation: fadeUp 1s ease 1.2s both;
    }

    /* ── ALERT STRIP ── */
    .alert-wrap {
      max-width: 920px; margin: 0 auto 3.5rem;
      padding: 0 5%;
      animation: fadeUp 1s ease 1.4s both;
    }
    .alert-box {
      border: 1px solid var(--gold);
      background: rgba(201,168,76,0.06);
      border-radius: 2px; padding: 2rem 2.8rem;
      position: relative; overflow: hidden;
    }
    .alert-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }
    .alert-head {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; color: var(--gold-light);
      margin-bottom: 0.7rem; letter-spacing: 0.04em;
    }
    .alert-body { font-size: 0.81rem; color: var(--white-dim); line-height: 1.75; }
    .alert-body strong { color: var(--gold-light); font-weight: 500; }

    /* ── CONTENT ── */
    .content {
      max-width: 920px; margin: 0 auto;
      padding: 0 5% 110px;
    }
    .section {
      margin-bottom: 2.5rem;
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .section.visible { opacity: 1; transform: translateY(0); }

    /* Card base */
    .card {
      border: 1px solid var(--glass-border);
      background: var(--glass);
      border-radius: 2px; padding: 2.6rem 3.2rem;
      position: relative; overflow: hidden;
      transition: border-color 0.4s, box-shadow 0.4s;
    }
    .card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
    }
    .card:hover {
      border-color: rgba(201,168,76,0.32);
      box-shadow: 0 0 50px var(--glow);
    }

    /* Accented card */
    .card-accent {
      border-color: var(--gold);
      background: rgba(201,168,76,0.05);
    }
    .card-accent::before {
      background: linear-gradient(to right, transparent, var(--gold-light), transparent);
      height: 2px;
    }
    .card-accent:hover { box-shadow: 0 0 60px var(--glow-strong); }

    /* Danger card */
    .card-danger {
      border-color: rgba(217,112,112,0.35);
      background: var(--red-bg);
    }
    .card-danger::before {
      background: linear-gradient(to right, transparent, var(--red-accent), transparent);
    }

    .sec-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.67rem; color: var(--gold-dim);
      letter-spacing: 0.42em; text-transform: uppercase; margin-bottom: 0.45rem;
    }
    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.72rem; font-weight: 400;
      color: var(--gold-light); line-height: 1.2; margin-bottom: 1.5rem;
    }
    .sec-body { font-size: 0.84rem; color: var(--white-dim); line-height: 1.95; }
    .sec-body p { margin-bottom: 0.9rem; }
    .sec-body p:last-child { margin-bottom: 0; }
    .sec-body strong { color: var(--white); font-weight: 500; }
    .sec-body a {
      color: var(--gold); text-decoration: none;
      border-bottom: 1px solid var(--gold-dim);
      transition: color 0.3s, border-color 0.3s;
    }
    .sec-body a:hover { color: var(--gold-light); border-color: var(--gold-light); }

    /* ── DIAMOND LIST ── */
    .dl { list-style: none; margin: 1rem 0; }
    .dl li {
      padding: 0.55rem 0 0.55rem 1.6rem;
      position: relative;
      border-bottom: 1px solid rgba(201,168,76,0.07);
      font-size: 0.83rem; color: var(--white-dim);
    }
    .dl li:last-child { border-bottom: none; }
    .dl li::before {
      content: '◆'; position: absolute; left: 0; top: 0.65rem;
      color: var(--gold); font-size: 0.4rem;
    }

    /* ── CROSS LIST (not eligible) ── */
    .xl { list-style: none; margin: 1rem 0; }
    .xl li {
      padding: 0.5rem 0 0.5rem 1.8rem;
      position: relative;
      border-bottom: 1px solid rgba(200,80,80,0.1);
      font-size: 0.82rem; color: rgba(245,240,232,0.45);
    }
    .xl li:last-child { border-bottom: none; }
    .xl li::before {
      content: '✕'; position: absolute; left: 0; top: 0.52rem;
      color: var(--red-accent); font-size: 0.72rem; font-weight: 500;
    }

    /* ── CHECK LIST (eligible) ── */
    .cl { list-style: none; margin: 1rem 0; }
    .cl li {
      padding: 0.55rem 0 0.55rem 1.8rem;
      position: relative;
      border-bottom: 1px solid rgba(125,201,138,0.1);
      font-size: 0.83rem; color: var(--white-dim);
    }
    .cl li:last-child { border-bottom: none; }
    .cl li::before {
      content: '✓'; position: absolute; left: 0; top: 0.52rem;
      color: var(--green-accent); font-size: 0.75rem; font-weight: 500;
    }

    /* ── PROCESS FLOW ── */
    .process-flow {
      display: flex; flex-direction: column; gap: 0;
      margin-top: 1.8rem; position: relative;
    }
    .process-flow::before {
      content: '';
      position: absolute; left: 22px; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
    }
    .flow-step {
      display: flex; align-items: flex-start; gap: 1.6rem;
      padding: 1.2rem 1.2rem 1.2rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.07);
      transition: background 0.3s;
    }
    .flow-step:last-child { border-bottom: none; }
    .flow-step:hover { background: rgba(201,168,76,0.04); }
    .flow-num {
      min-width: 44px; height: 44px;
      border: 1px solid var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold);
      background: var(--black); z-index: 1;
      flex-shrink: 0;
    }
    .flow-content {}
    .flow-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; color: var(--white);
      margin-bottom: 0.25rem;
    }
    .flow-desc { font-size: 0.79rem; color: var(--white-dim); }

    /* ── VIDEO GRID ── */
    .video-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 1.8rem;
    }
    .vid-item {
      background: rgba(201,168,76,0.06);
      border: 1px solid var(--glass-border);
      border-radius: 2px; padding: 1.4rem 1.6rem;
      display: flex; gap: 1.1rem; align-items: flex-start;
      transition: border-color 0.3s, transform 0.3s;
    }
    .vid-item:hover { border-color: var(--gold-muted); transform: translateY(-3px); }
    .vid-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--gold);
      line-height: 1; min-width: 28px;
    }
    .vid-text { font-size: 0.79rem; color: var(--white-dim); line-height: 1.55; }
    .vid-text strong { color: var(--white); display: block; margin-bottom: 0.18rem; font-size: 0.82rem; }

    /* ── CONDITIONS GRID ── */
    .conditions-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.5rem; margin-top: 1.2rem;
    }
    .cond-col {}
    .cond-head {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 0.8rem; padding-bottom: 0.6rem;
      border-bottom: 1px solid var(--glass-border);
    }
    .cond-head.yes { color: var(--green-accent); }
    .cond-head.no { color: var(--red-accent); }

    /* ── TIMELINE ── */
    .timeline { position: relative; padding-left: 2rem; margin: 1.5rem 0; }
    .timeline::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
    }
    .tl-item { position: relative; margin-bottom: 1.4rem; padding-left: 1rem; }
    .tl-item::before {
      content: ''; position: absolute; left: -2rem; top: 0.45rem;
      width: 8px; height: 8px;
      border: 1px solid var(--gold); border-radius: 50%;
      background: var(--black);
    }
    .tl-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; color: var(--gold-light); margin-bottom: 0.25rem;
    }
    .tl-desc { font-size: 0.79rem; color: var(--white-dim); }

    /* ── SPLIT ROW ── */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 0.5rem; }
    .split-card {
      background: rgba(201,168,76,0.05);
      border: 1px solid var(--glass-border);
      border-radius: 2px; padding: 1.6rem;
      transition: border-color 0.3s;
    }
    .split-card:hover { border-color: var(--gold-muted); }
    .split-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; color: var(--gold-light);
      letter-spacing: 0.1em; margin-bottom: 0.8rem;
    }
    .split-body { font-size: 0.79rem; color: var(--white-dim); line-height: 1.65; }

    /* ── FOOTER ── */
    footer {
      background: var(--black-2);
      border-top: 1px solid var(--glass-border);
      padding: 5.5rem 5% 2.5rem;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem; margin-bottom: 4rem;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 500;
      color: var(--gold); display: block; margin-bottom: 0.8rem;
    }
    .footer-logo em { font-style: italic; color: var(--gold-light); }
    .footer-tagline {
      font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--white-dim); margin-bottom: 1.8rem;
    }
    .footer-contact p { font-size: 0.79rem; color: var(--white-dim); margin-bottom: 0.55rem; }
    .footer-contact a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    .footer-contact a:hover { color: var(--gold-light); }
    .footer-col-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; color: var(--gold);
      letter-spacing: 0.18em; text-transform: uppercase;
      padding-bottom: 0.8rem; margin-bottom: 1.4rem;
      position: relative;
    }
    .footer-col-title::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 28px; height: 1px; background: var(--gold);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.75rem; }
    .footer-links a {
      color: var(--white-dim); text-decoration: none;
      font-size: 0.76rem; letter-spacing: 0.08em;
      transition: color 0.3s, padding-left 0.3s; display: inline-block;
    }
    .footer-links a:hover { color: var(--gold); padding-left: 5px; }
    .footer-divider {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, var(--glass-border), transparent);
      margin-bottom: 2rem;
    }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.7rem; color: var(--white-faint); letter-spacing: 0.07em; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.7rem; color: var(--white-faint); text-decoration: none; transition: color 0.3s; }
    .footer-legal a:hover { color: var(--gold); }

    /* ── WHATSAPP ── */
    .wa-btn {
      position: fixed; bottom: 28px; right: 28px; z-index: 888;
      width: 56px; height: 56px; background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 22px rgba(37,211,102,0.45);
      text-decoration: none;
      animation: waFloat 3s ease-in-out infinite;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
    .wa-btn svg { width: 26px; height: 26px; fill: #fff; }
    @keyframes waFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-title { font-size: 2.6rem; }
      .card, .card-accent, .card-danger { padding: 2rem 1.6rem; }
      .video-grid, .conditions-grid, .split { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
