@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik Regular'),
       local('Aeonik-Regular'),
       local('Aeonik'),
       url('fonts/Aeonik-Regular.woff2') format('woff2'),
       url('fonts/Aeonik-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik Medium'),
       local('Aeonik-Medium'),
       url('fonts/Aeonik-Medium.woff2') format('woff2'),
       url('fonts/Aeonik-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik Bold'),
       local('Aeonik-Bold'),
       url('fonts/Aeonik-Bold.woff2') format('woff2'),
       url('fonts/Aeonik-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
    --clay-700: #442919;
    --tan-500: #906744;
    --gold-400: #BF986B;
    --white: #FFFFFF;

    --cream-50: #FBF7F2;
    --cream-100: #F5EDE3;
    --ink: #1E1410;
    --ink-soft: #5A4A3F;

    --hairline: rgba(144, 103, 68, 0.18);
    --hairline-strong: rgba(144, 103, 68, 0.32);

    --font: 'Aeonik', 'Manrope', sans-serif;
    --font-body: var(--font);
    --font-display: var(--font);
    --ease: cubic-bezier(.22,1,.36,1);
  }

  *{ margin:0; padding:0; box-sizing:border-box; }
  html{
    scroll-behavior: smooth;
  }
  html.lenis, html.lenis body{
    height: auto;
  }
  .lenis.lenis-smooth{
    scroll-behavior: auto !important;
  }
  .lenis.lenis-smooth [data-lenis-prevent]{
    overscroll-behavior: contain;
  }

  body{
    background: var(--cream-50);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  body.is-loading{ overflow: hidden; }
  body.nav-open{ overflow: hidden; }
  html.awaiting-auth body > *:not(.site-preloader){ visibility: hidden; }
  html.awaiting-auth body{ background: #FBF7F2; }

  h1, h2, h3, h4, h5, h6{
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  ::selection{ background: var(--gold-400); color: var(--white); }
  a{ text-decoration:none; color:inherit; }
  img{ display:block; max-width:100%; }

  :focus-visible{
    outline: 1.5px solid var(--tan-500);
    outline-offset: 4px;
  }

  .eyebrow{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--tan-500);
  }

  /* Editorial accent — soft italic line like funnel serif emphasis, kept in brand gold */
  h1 .accent, h2 .accent{
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .wrap{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
  }
  @media (max-width: 900px){ .wrap{ padding: 0 24px; } }

  .img-slot{
    position: relative;
    background:
      repeating-linear-gradient(135deg, transparent, transparent 11px, rgba(144,103,68,0.08) 11px, rgba(144,103,68,0.08) 12px),
      var(--cream-100);
    border: 1px solid var(--hairline-strong);
  }
  .img-slot.has-img{ overflow: hidden; }
  .img-slot.has-img::after{ display: none; }
  .img-slot.has-img img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .img-slot::after{
    content: attr(data-label);
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tan-500);
    opacity: 0.7;
  }

  header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 247, 242, 0.88);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
    transition: background .4s var(--ease);
  }
  .nav-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
  }
  .logo{
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold-400);
    line-height: 1;
  }
  .logo small{
    display: block;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--ink-soft);
    margin-top: 6px;
    text-transform: uppercase;
  }
  nav ul{ list-style: none; display: flex; gap: 28px; flex-wrap: nowrap; }
  @media (min-width: 1201px){
    nav{ flex: 1; display: flex; justify-content: center; margin: 0 24px; }
  }
  nav ul li{ position: relative; }
  nav ul li a{
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
    padding-bottom: 4px;
    transition: color .25s var(--ease);
  }
  nav ul li a:not(.nav-drop-trigger)::after{
    content:'';
    position: absolute;
    left: 0; bottom: 0;
    width: 0%; height: 1px;
    background: var(--gold-400);
    transition: width .3s var(--ease);
  }
  nav ul li a:hover{ color: var(--ink); }
  nav ul li a:not(.nav-drop-trigger):hover::after{ width: 100%; }

  .nav-right{ display: flex; align-items: center; gap: 22px; }
  .nav-actions{
    display: flex; align-items: center; gap: 18px;
    font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
    font-weight: 600; color: var(--ink-soft);
  }
  .nav-actions a:hover{ color: var(--tan-500); }
  .divider-dot{ width: 1px; height: 12px; background: var(--hairline-strong); }
  .lang-pill{
    display: flex; align-items: center; gap: 6px;
    border: 1px solid var(--hairline-strong);
    padding: 7px 14px; border-radius: 100px;
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em;
  }

  .nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span{
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  @media (max-width: 1200px){
    .nav-toggle{ display: flex; }
    .nav-actions{ display: none; }
    nav{
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      background: rgba(251, 247, 242, 0.98);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--hairline);
      padding: 8px 24px 24px;
      transform: translateY(calc(-100% - 88px));
      opacity: 0;
      pointer-events: none;
      transition: transform .35s var(--ease), opacity .35s var(--ease);
      z-index: 99;
      max-height: calc(100vh - 88px);
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
    }
    nav.open{
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
      z-index: 101;
    }
    nav ul{
      flex-direction: column;
      gap: 0;
    }
    nav ul li a{
      display: block;
      padding: 16px 0;
      font-size: 12px;
      border-bottom: 1px solid var(--hairline);
    }
    nav ul > li:last-child > a{ border-bottom: none; }
    .nav-has-dropdown{
      width: 100%;
      border-bottom: 1px solid var(--hairline);
    }
    .nav-has-dropdown::after{ display: none; }
    .nav-has-dropdown > .nav-drop-trigger::before{ display: none; }
    .nav-has-dropdown > .nav-drop-trigger{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      border-bottom: none;
    }
    .nav-has-dropdown > .nav-drop-trigger::after{
      content: '+';
      position: static;
      width: auto;
      height: auto;
      background: none;
      font-size: 18px;
      font-weight: 400;
      line-height: 1;
      color: var(--tan-500);
      transform: none;
      opacity: 1;
      flex-shrink: 0;
    }
    .nav-has-dropdown.is-open > .nav-drop-trigger::after{
      content: '−';
    }
    .nav-dropdown{
      display: none;
      position: static;
      left: auto;
      top: auto;
      right: auto;
      transform: none;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      box-shadow: none;
      border: none;
      border-radius: 0;
      padding: 4px 0 12px 16px;
      margin: 0 0 4px;
      border-left: 1px solid var(--hairline);
      min-width: 0;
      width: 100%;
      max-width: 100%;
      flex-direction: column;
      gap: 0;
      background: transparent;
    }
    .nav-has-dropdown.is-open .nav-dropdown{
      display: flex;
    }
    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown{
      transform: none;
    }
    .nav-dropdown a{
      display: block;
      padding: 11px 0;
      font-size: 11px;
      border-bottom: none;
      border-radius: 0;
      white-space: normal;
      width: 100%;
    }
    .nav-dropdown a::after{ display: none !important; }
    .nav-dropdown-all{
      border-top: 1px solid var(--hairline);
      margin-top: 6px;
      padding-top: 14px !important;
    }
  }

  @media (min-width: 1201px){
    .nav-has-dropdown > .nav-drop-trigger{ padding-right: 14px; }
    .nav-has-dropdown > .nav-drop-trigger::before{
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: translateY(-65%) rotate(45deg);
      opacity: 0.55;
      pointer-events: none;
    }
    .nav-has-dropdown::after{
      content: '';
      position: absolute;
      left: -12px;
      right: -12px;
      top: 100%;
      height: 18px;
    }
    .nav-dropdown{
      position: absolute;
      top: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 230px;
      background: var(--white);
      border: 1px solid var(--hairline);
      border-radius: 14px;
      box-shadow: 0 24px 54px -28px rgba(30, 20, 16, 0.28);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
      z-index: 110;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown a{
      display: block;
      padding: 10px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ink-soft);
      border-radius: 8px;
      white-space: nowrap;
      transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-dropdown a::after{ display: none; }
    .nav-dropdown a:hover{
      background: var(--cream-100);
      color: var(--ink);
    }
    .nav-dropdown-all{
      margin-top: 4px;
      padding-top: 12px !important;
      border-top: 1px solid var(--hairline);
      color: var(--tan-500) !important;
    }
    .nav-dropdown{ display: flex; }
  }

  .hero{
    position: relative;
    background: #c9baa8;
    padding-top: 88px;
    overflow: hidden;
    min-height: clamp(720px, 86vh, 960px);
  }
  .hero-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    padding-top: clamp(52px, 8vh, 96px);
    padding-bottom: clamp(200px, 24vh, 280px);
  }
  .hero-copy{
    max-width: 520px;
  }
  .hero-visual{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .hero-visual img,
  .hero-visual video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 42%;
  }
  .hero-visual::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(251, 247, 242, 0.97) 0%,
      rgba(251, 247, 242, 0.9) 18%,
      rgba(251, 247, 242, 0.55) 34%,
      rgba(251, 247, 242, 0.15) 50%,
      transparent 62%
    );
  }
  .hero-visual::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    z-index: 1;
    background: linear-gradient(to top, var(--cream-50), transparent);
  }

  .hero-eyebrow{ margin-bottom: 22px; }
  .hero h1{
    font-size: clamp(42px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .hero h1 .accent{ color: var(--gold-400); }

  .hero-sub{
    margin-top: 28px;
    max-width: 420px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    opacity: 0.92;
  }

  section[id]{ scroll-margin-top: 100px; }

  .hero-ctas{ margin-top: 38px; }

  .btn-gold{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-400), var(--tan-500));
    color: var(--white);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 32px;
    border-radius: 100px;
    transition: all .35s var(--ease);
    box-shadow: 0 14px 30px -12px rgba(144,103,68,0.45);
  }
  .btn-gold span.arrow{ transition: transform .35s var(--ease); }
  .btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(144,103,68,0.55); }
  .btn-gold:hover span.arrow{ transform: translateX(5px); }

  @media (max-width: 768px){
    .hero{
      min-height: auto;
      background: var(--cream-50);
      overflow: visible;
    }
    .hero-inner{
      grid-template-columns: 1fr;
      padding-top: 40px;
      padding-bottom: 0;
      background: var(--cream-50);
    }
    .hero-copy{
      max-width: none;
    }
    .hero-visual{
      position: relative;
      inset: auto;
      width: 100vw;
      max-width: 100vw;
      margin: 36px calc(50% - 50vw) 0;
      height: clamp(280px, 68vw, 460px);
    }
    .hero-visual img,
    .hero-visual video{
      object-fit: cover;
      object-position: 88% 44%;
    }
    .hero-visual::before{
      background: linear-gradient(
        180deg,
        var(--cream-50) 0%,
        rgba(251, 247, 242, 0.96) 10%,
        rgba(251, 247, 242, 0.72) 24%,
        rgba(251, 247, 242, 0.28) 46%,
        transparent 68%
      );
    }
    .hero-visual::after{
      height: 32%;
      background: linear-gradient(to top, var(--cream-50) 8%, transparent);
    }
  }

  @media (max-width: 640px){
    .hero-inner{
      padding-top: 32px;
    }
    .hero-visual{
      margin-top: 28px;
      height: clamp(260px, 72vw, 400px);
    }
    .hero-visual img,
    .hero-visual video{
      object-position: 92% 46%;
    }
  }

  .trust-strip{
    position: relative;
    z-index: 3;
    background: transparent;
    margin-top: clamp(-112px, -13vh, -72px);
  }
  .trust-strip .wrap{
    position: relative;
  }
  .trust-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: 0 30px 60px -34px rgba(144,103,68,0.28);
  }
  .trust-item{
    padding: 38px 36px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-right: 1px solid var(--hairline);
  }
  .trust-item:last-child{ border-right: none; }
  .trust-icon{
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: var(--cream-100);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .trust-icon svg{ width: 19px; height: 19px; stroke: var(--tan-500); }
  .trust-item h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .trust-item p{
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    font-weight: 400;
  }

  @media (max-width: 768px){
    .trust-strip{
      margin-top: clamp(-64px, -8vw, -36px);
    }
  }

  @media (max-width: 900px){
    .trust-inner{ grid-template-columns: 1fr; border-radius: 16px; }
    .trust-item{ border-right: none; border-bottom: 1px solid var(--hairline); }
    .trust-item:last-child{ border-bottom: none; }
  }

  .section-pad{
    padding: 110px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
  @media (max-width: 900px){ .section-pad{ padding: 72px 0; } }

  .section-head{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 56px;
  }
  .section-head .eyebrow{ margin-bottom: 16px; }
  .section-head h2{
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .section-head h2 .accent{ color: var(--gold-400); }
  .section-head p{
    max-width: 340px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-weight: 400;
    padding-bottom: 4px;
  }
  @media (max-width: 900px){ .section-head{ grid-template-columns: 1fr; } }

  .proc-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  .proc-card{
    display: block;
    transition: transform .45s var(--ease);
  }
  .proc-card:hover{ transform: translateY(-4px); }
  .proc-img{
    aspect-ratio: 4/5;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: box-shadow .45s var(--ease);
  }
  .proc-card:hover .proc-img{
    box-shadow: 0 22px 40px -28px rgba(144,103,68,0.35);
  }
  .proc-img.has-img img{
    transition: transform .7s var(--ease);
  }
  .proc-card:hover .proc-img.has-img img{
    transform: scale(1.04);
  }
  .proc-card h3{
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .proc-card p{
    font-size: 11.5px;
    color: var(--ink-soft);
    line-height: 1.5;
    font-weight: 400;
  }

  @media (max-width: 1100px){ .proc-grid{ grid-template-columns: repeat(3, 1fr); gap: 24px 18px; } }
  @media (max-width: 640px){ .proc-grid{ grid-template-columns: repeat(2, 1fr); } }

  .explore-row{ display: flex; justify-content: flex-start; margin-top: 44px; }

  .btn-outline{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--hairline-strong);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 100px;
    transition: all .3s var(--ease);
  }
  .btn-outline:hover{ background: var(--ink); border-color: var(--ink); color: var(--white); }

  .how-it-works{ background: var(--cream-100); }

  .steps-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
  }
  .step-img{
    aspect-ratio: 3/4;
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .step{
    position: relative;
    transition: transform .45s var(--ease);
  }
  .step:hover{ transform: translateY(-3px); }
  .step-img.has-img img{
    transition: transform .7s var(--ease);
  }
  .step:hover .step-img.has-img img{
    transform: scale(1.04);
  }
  .step-num{
    position: absolute;
    top: 14px; left: 14px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: var(--tan-500);
    box-shadow: 0 4px 12px rgba(30,20,16,0.12);
  }
  .step h4{
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .step p{
    font-size: 11.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    font-weight: 400;
  }

  @media (max-width: 1100px){
    .steps-grid{ grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
  }
  @media (max-width: 640px){
    .steps-grid{ grid-template-columns: repeat(2, 1fr); }
  }

  .why-section{ background: var(--cream-50); }
  .why-grid{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
  }
  .why-copy h2{
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .why-copy h2 .accent{ color: var(--gold-400); }
  .why-copy > p{
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-weight: 400;
    max-width: 440px;
    margin-bottom: 36px;
  }

  .cred-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
  .cred{ display: flex; gap: 14px; }
  .cred-icon{
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream-100);
    display: flex; align-items: center; justify-content: center;
  }
  .cred-icon svg{ width: 15px; height: 15px; stroke: var(--tan-500); }
  .cred h4{ font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
  .cred p{ font-size: 11.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 400; }

  .why-visual{
    aspect-ratio: 4/3;
    border-radius: 18px;
  }

  @media (max-width: 1100px){
    .why-grid{ grid-template-columns: 1fr; gap: 40px; }
    .why-visual{ order: -1; }
  }

  .cta-band{ background: var(--cream-100); }
  .cta-inner{
    text-align: center;
    padding: 90px 0;
  }
  .cta-inner .eyebrow{ display: block; margin-bottom: 20px; }
  .cta-inner h2{
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-inner h2 .accent{ color: var(--gold-400); }
  .cta-inner > p{
    margin: 20px auto 36px;
    max-width: 420px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-weight: 400;
  }
  .cta-buttons{ display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }

  .btn-line{
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--hairline-strong);
    padding: 18px 0 8px;
    transition: border-color .3s var(--ease), color .3s var(--ease);
  }
  .btn-line:hover{ border-color: var(--gold-400); color: var(--tan-500); }

  footer{
    background: var(--white);
    color: var(--ink-soft);
    border-top: 1px solid var(--hairline);
  }
  .footer-top{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    padding: 70px 0 56px;
  }
  .footer-logo{ font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-400); margin-bottom: 16px; }
  .footer-brand p{ font-size: 12.5px; line-height: 1.8; max-width: 280px; font-weight: 400; }
  .footer-col h5{
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 20px;
  }
  .footer-col ul{ list-style:none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a{ font-size: 12.5px; font-weight: 400; transition: color .25s var(--ease); }
  .footer-col ul li a:hover{ color: var(--tan-500); }

  .footer-bottom{
    border-top: 1px solid var(--hairline);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
  }

  @media (max-width: 900px){
    .footer-top{ grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-bottom{ flex-direction: column; gap: 12px; text-align:center; }
  }

  /* Scroll reveals — adapted from funnel whileInView / stagger patterns */
  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    will-change: opacity, transform;
  }
  .reveal.in{ opacity: 1; transform: translateY(0); }
  .reveal-left{
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
  }
  .reveal-left.in{ opacity: 1; transform: translateX(0); }
  .reveal-right{
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
  }
  .reveal-right.in{ opacity: 1; transform: translateX(0); }

  .reveal-stagger > *{
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal-stagger.in > *:nth-child(1){ transition-delay: 0.04s; }
  .reveal-stagger.in > *:nth-child(2){ transition-delay: 0.10s; }
  .reveal-stagger.in > *:nth-child(3){ transition-delay: 0.16s; }
  .reveal-stagger.in > *:nth-child(4){ transition-delay: 0.22s; }
  .reveal-stagger.in > *:nth-child(5){ transition-delay: 0.28s; }
  .reveal-stagger.in > *:nth-child(6){ transition-delay: 0.34s; }
  .reveal-stagger.in > *:nth-child(7){ transition-delay: 0.40s; }
  .reveal-stagger.in > *:nth-child(8){ transition-delay: 0.46s; }
  .reveal-stagger.in > *,
  .reveal.in .reveal-stagger > *,
  .reveal-left.in .reveal-stagger > *,
  .reveal-right.in .reveal-stagger > *{
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.in .reveal-stagger > *:nth-child(1),
  .reveal-left.in .reveal-stagger > *:nth-child(1),
  .reveal-right.in .reveal-stagger > *:nth-child(1){ transition-delay: 0.12s; }
  .reveal.in .reveal-stagger > *:nth-child(2),
  .reveal-left.in .reveal-stagger > *:nth-child(2),
  .reveal-right.in .reveal-stagger > *:nth-child(2){ transition-delay: 0.20s; }
  .reveal.in .reveal-stagger > *:nth-child(3),
  .reveal-left.in .reveal-stagger > *:nth-child(3),
  .reveal-right.in .reveal-stagger > *:nth-child(3){ transition-delay: 0.28s; }
  .reveal.in .reveal-stagger > *:nth-child(4),
  .reveal-left.in .reveal-stagger > *:nth-child(4),
  .reveal-right.in .reveal-stagger > *:nth-child(4){ transition-delay: 0.36s; }

  .hero-copy > *{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .hero.is-ready .hero-copy > *:nth-child(1){ transition-delay: 0.08s; }
  .hero.is-ready .hero-copy > *:nth-child(2){ transition-delay: 0.18s; }
  .hero.is-ready .hero-copy > *:nth-child(3){ transition-delay: 0.30s; }
  .hero.is-ready .hero-copy > *:nth-child(4){ transition-delay: 0.42s; }
  .hero.is-ready .hero-copy > *{
    opacity: 1;
    transform: translateY(0);
  }
  .hero-visual{
    opacity: 0;
    transition: opacity 1.1s var(--ease);
  }
  .hero.is-ready .hero-visual{ opacity: 1; }

  @media (prefers-reduced-motion: reduce){
    .reveal, .reveal-left, .reveal-right, .reveal-stagger > *,
    .hero-copy > *, .hero-visual{
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    html{ scroll-behavior: auto; }
  }

/* ============================================================
   PRELOADER + COOKIE BAR
   ============================================================ */
.site-preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
  overflow: hidden;
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), visibility .55s;
}
.site-preloader.is-done{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-card{
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-100);
  box-shadow: 0 24px 50px -28px rgba(144, 103, 68, 0.45);
  will-change: filter, transform;
}
.preloader-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preloader-counter{
  position: fixed;
  bottom: clamp(28px, 5vw, 56px);
  right: clamp(24px, 5vw, 64px);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  will-change: filter;
}
.preloader-counter span{
  color: var(--gold-400);
  font-weight: 400;
}

.cookie-bar{
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(120%);
  z-index: 9000;
  width: calc(100% - 2rem);
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 14px 12px 12px;
  border-radius: 100px;
  background: rgba(30, 20, 16, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px -20px rgba(30, 20, 16, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .55s cubic-bezier(.22, 1, .36, 1);
}
.cookie-bar.is-visible{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-bar-copy{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.cookie-icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
}
.cookie-icon svg{ width: 15px; height: 15px; }
.cookie-bar p{
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}
.cookie-bar p a{
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s var(--ease);
}
.cookie-bar p a:hover{ color: rgba(255, 255, 255, 0.9); }
.cookie-actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 30px;
  padding: 0 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cookie-btn:hover{ transform: scale(1.04); }
.cookie-btn:active{ transform: scale(0.96); }
.cookie-btn-decline{
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}
.cookie-btn-decline:hover{
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.cookie-btn-accept{
  background: var(--cream-50);
  color: var(--ink);
}
.cookie-btn-accept:hover{
  background: var(--gold-400);
  color: var(--white);
}

@media (max-width: 640px){
  .cookie-bar{
    border-radius: 18px;
    bottom: 14px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions{
    width: 100%;
  }
  .cookie-btn{ flex: 1; }
  .preloader-counter{
    font-size: 4rem;
    bottom: 24px;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce){
  .site-preloader{ display: none !important; }
  .cookie-bar{ transition: none; }
}

/* ============================================================
   SHARED SUBPAGE COMPONENTS
   ============================================================ */

/* Breadcrumb */
.breadcrumb{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-top: 28px;
}
.breadcrumb a:hover{ color: var(--tan-500); }
.breadcrumb .sep{ opacity: 0.4; }
.breadcrumb .current{ color: var(--ink); }

/* Page hero — for subpages, shorter than homepage hero */
.page-hero{
  background: var(--cream-50);
  padding-top: 88px;
}
.page-hero-inner{
  padding-top: 28px;
  padding-bottom: 64px;
}
.page-hero-inner.with-image{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding-top: 16px;
}
.page-hero h1{
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.page-hero h1 .accent{ color: var(--gold-400); }
.page-hero-sub{
  margin-top: 24px;
  max-width: 480px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.page-hero-image{
  aspect-ratio: 5/4;
  border-radius: 18px;
}

/* Stat row */
.stat-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.stat{
  background: var(--white);
  padding: 28px 24px;
  text-align: left;
}
.stat .num{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-400);
  line-height: 1;
}
.stat .lbl{
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 900px){ .stat-row{ grid-template-columns: repeat(2, 1fr); } }

/* Content prose block (About narrative) */
.prose-block{
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
}
.prose-block .sticky-label{ position: sticky; top: 120px; align-self: start; }
.prose-block .body p{
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 22px;
  max-width: 620px;
}
.prose-block .body p:last-child{ margin-bottom: 0; }
.prose-block .body strong{ color: var(--ink); font-weight: 700; }
@media (max-width: 900px){
  .prose-block{ grid-template-columns: 1fr; gap: 28px; }
  .prose-block .sticky-label{ position: static; }
}

/* Value / pillar cards (About) */
.value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 34px 30px;
}
.value-card .vc-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .vc-icon svg{ width: 19px; height: 19px; stroke: var(--tan-500); }
.value-card h3{ font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-card p{ font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); font-weight: 400; }
@media (max-width: 900px){ .value-grid{ grid-template-columns: 1fr; } }

/* Team / leadership strip */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card{ text-align: left; }
.team-photo{
  aspect-ratio: 3/4;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}
.team-card h4{ font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.team-card p{ font-size: 11.5px; color: var(--tan-500); font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 900px){ .team-grid{ grid-template-columns: repeat(2, 1fr); } }

/* Filter pills (Procedures hub) */
.filter-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-pill{
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--hairline-strong);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--white);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.filter-pill:hover{ border-color: var(--gold-400); color: var(--ink); }
.filter-pill.active{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.proc-row.is-hidden{ display: none; }
.proc-filter-empty{
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--ink-soft);
  font-size: 14px;
}
.proc-filter-empty.is-visible{ display: block; }

/* Large procedure list rows (Procedures hub — alternative richer layout) */
.proc-row-list{ display: flex; flex-direction: column; }
.proc-row{
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .35s var(--ease);
}
.proc-row:first-child{ border-top: 1px solid var(--hairline); }
.proc-row:hover{ padding-left: 12px; }
.proc-row-img{
  aspect-ratio: 4/3;
  border-radius: 14px;
}
.proc-row-num{
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.proc-row h3{ font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.proc-row p{ font-size: 13px; color: var(--ink-soft); line-height: 1.6; max-width: 440px; }
.proc-row-tags{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.proc-row-tag{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tan-500);
  background: var(--cream-100);
  padding: 5px 12px;
  border-radius: 100px;
}
.proc-row-arrow{
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.proc-row-arrow svg{ width: 16px; height: 16px; stroke: var(--ink); transition: transform .3s var(--ease); }
.proc-row:hover .proc-row-arrow{ background: var(--ink); border-color: var(--ink); }
.proc-row:hover .proc-row-arrow svg{ stroke: var(--white); transform: translateX(2px); }
@media (max-width: 900px){
  .proc-row{ grid-template-columns: 1fr; gap: 18px; }
  .proc-row-arrow{ display: none; }
}

/* Sub-procedure pill list (used on detail page sidebar) */
.subnav{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.subnav a{
  padding: 16px 22px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .25s var(--ease);
}
.subnav a:last-child{ border-bottom: none; }
.subnav a:hover{ background: var(--cream-100); color: var(--ink); padding-left: 26px; }
.subnav a.active{ background: var(--cream-100); color: var(--ink); font-weight: 700; }
.subnav a .arrow-mini{ opacity: 0; transition: opacity .25s var(--ease); }
.subnav a:hover .arrow-mini, .subnav a.active .arrow-mini{ opacity: 1; }

/* Detail page layout */
.detail-layout{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.detail-layout .side{ position: sticky; top: 120px; }
@media (max-width: 1000px){
  .detail-layout{ grid-template-columns: 1fr; }
  .detail-layout .side{ position: static; order: 2; }
}

.detail-section{ margin-bottom: 64px; }
.detail-section:last-child{ margin-bottom: 0; }
.detail-section h2{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.detail-section .lede{
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 0;
}

.candidate-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.candidate-item{
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
}
.candidate-item .check{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.candidate-item .check svg{ width: 11px; height: 11px; stroke: var(--tan-500); }
.candidate-item h4{ font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.candidate-item p{ font-size: 11.5px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 600px){ .candidate-grid{ grid-template-columns: 1fr; } }

.process-timeline{ display: flex; flex-direction: column; }
.process-step-row{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
}
.process-step-row .rail{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step-row .dot{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; color: var(--tan-500);
  flex-shrink: 0;
}
.process-step-row .line{
  width: 1px;
  flex: 1;
  background: var(--hairline-strong);
  margin: 6px 0;
}
.process-step-row:last-child .line{ display: none; }
.process-step-row .content{ padding-bottom: 32px; }
.process-step-row h4{ font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.process-step-row p{ font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); }

.faq-list{ display: flex; flex-direction: column; }
.faq-item{ border-bottom: 1px solid var(--hairline); }
.faq-item:first-child{ border-top: 1px solid var(--hairline); }
.faq-q{
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after{
  content: '';
  position: absolute;
  background: var(--tan-500);
}
.faq-q .plus::before{ width: 10px; height: 1px; }
.faq-q .plus::after{ width: 1px; height: 10px; transition: opacity .25s var(--ease); }
.faq-item.open .faq-q .plus::after{ opacity: 0; }
.faq-item.open .faq-q .plus{ transform: rotate(180deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner{
  padding-bottom: 24px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 600px;
}
.faq-item.open .faq-a{ max-height: 320px; }

.detail-cta-card{
  background: var(--cream-100);
  border-radius: 18px;
  padding: 28px 26px;
  margin-top: 24px;
}
.detail-cta-card h4{ font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.detail-cta-card p{ font-size: 11.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.detail-cta-card .btn-gold{ width: 100%; justify-content: center; padding: 14px 20px; font-size: 10.5px; }

/* Results / Reviews page */
.tab-row{
  display: flex;
  gap: 8px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  background: var(--white);
  margin-bottom: 56px;
}
.tab-btn{
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.tab-btn.active{ background: var(--ink); color: var(--white); }

.ba-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
}
.ba-compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.ba-compare .img-slot{ aspect-ratio: 3/4; border: none; border-radius: 0; }
.ba-compare .img-slot:first-child{ border-right: 1px solid var(--hairline-strong); }
.ba-tag{
  position: absolute;
  top: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(30,20,16,0.78);
  color: var(--white);
  padding: 5px 11px;
  border-radius: 100px;
  z-index: 2;
}
.ba-tag.before{ left: 12px; }
.ba-tag.after{ right: 12px; }
.ba-body{ padding: 22px 24px; }
.ba-body h4{ font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ba-body p{ font-size: 11.5px; color: var(--ink-soft); }
@media (max-width: 900px){ .ba-grid{ grid-template-columns: 1fr; } }

.review-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.review-stars{ display: flex; gap: 3px; margin-bottom: 18px; }
.review-stars svg{ width: 14px; height: 14px; fill: var(--gold-400); }
.review-card p.quote{
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 24px;
  flex: 1;
}
.review-person{ display: flex; align-items: center; gap: 12px; }
.review-avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.review-person h5{ font-size: 12.5px; font-weight: 700; color: var(--ink); }
.review-person span{ font-size: 11px; color: var(--ink-soft); }
@media (max-width: 900px){ .review-grid{ grid-template-columns: 1fr; } }

/* Guide / editorial page */
.guide-feature{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 64px;
}
.guide-feature-img{ aspect-ratio: 4/3; border-radius: 0; border: none; }
.guide-feature-body{ padding: 12px 40px 12px 0; }
.guide-feature .eyebrow{ margin-bottom: 14px; }
.guide-feature h2{ font-size: 26px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.guide-feature p{ font-size: 13.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
@media (max-width: 900px){
  .guide-feature{ grid-template-columns: 1fr; }
  .guide-feature-body{ padding: 0 28px 28px; }
}

.guide-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card{ display: block; }
.guide-card-img{ aspect-ratio: 4/3; border-radius: 16px; margin-bottom: 18px; }
.guide-card-cat{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-500);
  margin-bottom: 8px;
  display: block;
}
.guide-card h3{ font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 8px; }
.guide-card p{ font-size: 12px; color: var(--ink-soft); line-height: 1.6; }
.guide-card .meta{ margin-top: 14px; font-size: 11px; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }
@media (max-width: 900px){ .guide-grid{ grid-template-columns: 1fr; } }

.newsletter-band{
  background: var(--cream-100);
  border-radius: 22px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.newsletter-band h3{ font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.newsletter-band p{ font-size: 13px; color: var(--ink-soft); }
.newsletter-form{ display: flex; gap: 10px; }
.newsletter-form input{
  font-family: var(--font-body);
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  font-size: 12.5px;
  width: 260px;
  color: var(--ink);
}
.newsletter-form input::placeholder{ color: var(--ink-soft); }
.newsletter-form input:focus{ outline: 1.5px solid var(--gold-400); outline-offset: 2px; }
@media (max-width: 900px){
  .newsletter-band{ grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .newsletter-form{ flex-direction: column; }
  .newsletter-form input{ width: 100%; }
}

/* ============================================================
   AI DIAGNOSTIC
   ============================================================ */
.ai-app{
  padding-top: 88px;
  min-height: 100vh;
  background: var(--cream-50);
}
.ai-wrap{
  padding-top: 48px;
  padding-bottom: 80px;
}
.ai-screen[hidden]{ display: none !important; }
.ai-intro{
  max-width: 640px;
  padding: 32px 0 24px;
}
.ai-intro h1{
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  margin: 18px 0 20px;
}
.ai-lede{
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 28px;
}
.ai-key-panel--global{
  margin-top: 0;
  margin-bottom: 28px;
}
.ai-key-panel{
  margin-top: 32px;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px 22px;
}
.ai-key-panel summary{
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-500);
}
.ai-key-note{
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.ai-key-note a{ color: var(--tan-500); text-decoration: underline; }
.ai-key-row{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.ai-key-row input{
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  padding: 14px 18px;
  border-radius: 100px;
  border: 1px solid var(--hairline-strong);
  background: var(--cream-50);
  font-size: 13px;
  color: var(--ink);
}
.ai-key-status{
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-soft);
}
.ai-panel{
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 50px -36px rgba(144, 103, 68, 0.22);
}
.ai-panel h2{
  font-size: clamp(26px, 3vw, 34px);
  margin: 12px 0 10px;
}
.ai-field-label{
  display: block;
  margin: 22px 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan-500);
}
.ai-input{
  width: 100%;
  font-family: var(--font-body);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--hairline-strong);
  background: var(--cream-50);
  font-size: 14px;
  color: var(--ink);
}
.ai-thumb-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ai-thumb{
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: var(--cream-100);
}
.ai-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-thumb-empty{
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  cursor: pointer;
  color: var(--tan-500);
  font-size: 22px;
  background: var(--cream-50);
}
.ai-thumb-remove{
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 20, 16, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.ai-thumb-label{
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 8px;
  font-weight: 700;
  color: var(--white);
  background: rgba(30, 20, 16, 0.55);
  padding: 2px 5px;
  border-radius: 4px;
}
.ai-photo-count{
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ai-consent{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  cursor: pointer;
}
.ai-consent input{ margin-top: 3px; flex-shrink: 0; }
.ai-error{
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(144, 68, 68, 0.08);
  border: 1px solid rgba(144, 68, 68, 0.18);
  color: #8b3a3a;
  font-size: 13px;
}
.ai-analyze-btn{ width: 100%; justify-content: center; margin-top: 8px; }
.ai-analyze-btn:disabled{ opacity: 0.45; cursor: not-allowed; transform: none !important; }
.ai-processing{
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.ai-spinner{
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 2px solid var(--cream-100);
  border-top-color: var(--gold-400);
  animation: ai-spin 0.9s linear infinite;
}
@keyframes ai-spin{ to { transform: rotate(360deg); } }
.ai-processing h2{ font-size: 28px; margin-bottom: 12px; }
.ai-processing p{ color: var(--ink-soft); font-size: 14px; min-height: 1.5em; }
.ai-progress{
  margin-top: 24px;
  height: 4px;
  background: var(--cream-100);
  border-radius: 100px;
  overflow: hidden;
}
.ai-progress-bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-400), var(--tan-500));
  transition: width 0.35s var(--ease);
}
.ai-results-head{ margin-bottom: 32px; }
.ai-results-head h2{ font-size: clamp(28px, 3.2vw, 40px); margin-top: 12px; }
.ai-results-grid{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.ai-profile-card{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 18px;
}
.ai-profile-eyebrow{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan-500);
}
.ai-profile-label{
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 14px;
  color: var(--ink);
}
.ai-limiting{
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--cream-100);
  border: 1px solid var(--hairline);
}
.ai-limiting span{
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-500);
  margin-bottom: 6px;
}
.ai-card{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.ai-card h3{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.ai-card p{
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ai-proc-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-proc-tag{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tan-500);
  background: var(--cream-100);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--hairline);
}
.ai-feature-section{ margin-bottom: 16px; }
.ai-feature-section h3{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.ai-feature-list{
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
}
.ai-feature-row{
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  transition: background .2s var(--ease);
}
.ai-feature-row:last-child{ border-bottom: none; }
.ai-feature-row:hover,
.ai-feature-row.is-active{ background: var(--cream-100); }
.ai-feature-text{
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
}
.ai-feature-meta{
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.ai-results-side{
  position: sticky;
  top: 108px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 18px;
}
.ai-viewer-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ai-reset-btn{
  border: none;
  background: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tan-500);
  cursor: pointer;
}
.ai-viewer{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-viewer-frame{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: var(--ink);
}
.ai-viewer-frame img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
}
.ai-viewer-box{
  position: absolute;
  border: 2px solid var(--white);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.ai-viewer-note{
  margin: 12px 0 18px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.ai-cta-full{
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
@media (max-width: 900px){
  .ai-results-grid{ grid-template-columns: 1fr; }
  .ai-results-side{ position: static; }
  .ai-panel{ padding: 28px 22px; }
}
