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

    :root {
  --nav-h: 80px;
      --ink:    #111828;
      --navy:   #364A74;
      --gold:   #b8965a;
      --gold2:  #d4af72;
      --gold3:  #f0d9a8;
      --cream:  #f7f3ec;
      --warm:   #faf8f4;
      --mist:   #e8e2d9;
      --slate:  #8a8a8a;
      --white:  #ffffff;
      --exp-navy: #364A74;
      --exp-dark: #111828;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--ink);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════
       CURSOR GLOW
    ══════════════════════════════════════ */
    .cursor-glow {
      position: fixed;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 70%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
      transition: opacity 0.3s;
    }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex; flex-direction: row;
      align-items: center; justify-content: space-between;
      padding: 0 48px; height: 80px;
      transition: all 0.4s ease;
    }
    

    /* Logo lockup */
    .nav-logo {
      display: flex; flex-direction: row;
      align-items: center; gap: 0;
      text-decoration: none; flex-shrink: 0;
    }
    .nav-exp-logo {
      height: 40px; width: auto;
      opacity: 1; display: block; flex-shrink: 0;
    }
    .nav-divider {
      width: 1px; height: 44px; flex-shrink: 0;
      background: linear-gradient(to bottom, transparent, rgba(212,175,114,0.45), transparent);
      margin: 0 18px;
    }
    .nav-name-block {
      display: flex; flex-direction: column;
      justify-content: center; gap: 3px;
    }
    .nav-scott {
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem; font-weight: 300;
      letter-spacing: 0.22em; color: #ffffff;
      text-transform: uppercase; line-height: 1.2;
    }
    .nav-landau {
      font-family: 'Jost', sans-serif;
      font-size: 1.21rem; font-weight: 700;
      letter-spacing: 0.18em; color: rgba(232,201,122,0.92);
      text-transform: uppercase; line-height: 1.1;
    }
    .nav-team {
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem; font-weight: 300;
      letter-spacing: 0.1em; color: rgba(232,201,122,0.92);
      text-transform: uppercase; line-height: 1.2;
      text-align: right; white-space: nowrap;
    }

    /* Mobile menu — hidden by default */
    .nav-center {
      display: flex; flex-direction: row; gap: 15px; list-style: none;
      align-items: center;
    }
    .nav-center a {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #ffffff;
      text-decoration: none; transition: color 0.25s;
      position: relative;
    }
    .nav-center a::after {
      content: ''; position: absolute;
      bottom: -4px; left: 0; right: 0; height: 1px;
      background: var(--gold2); transform: scaleX(0);
      transition: transform 0.3s; transform-origin: left;
    }
    .nav-center a:hover { color: var(--white); }
    .nav-center a:hover::after { transform: scaleX(1); }

    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-phone {
      font-size: 0.72rem; letter-spacing: 0.12em;
      color: var(--gold2); text-decoration: none;
      font-weight: 500;
    }
    .nav-btn {
      background: transparent;
      border: 1px solid rgba(184,150,90,0.5);
      color: var(--gold2);
      padding: 10px 24px; border-radius: 2px;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      text-decoration: none; cursor: pointer;
      transition: all 0.3s;
    }
    .nav-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    /* ══════════════════════════════════════
       HERO — CINEMATIC FULLSCREEN
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh; min-height: 800px;
      display: flex; align-items: flex-end;
      overflow: hidden;
    }

    /* ── CANVAS HERO BACKGROUND ── */
    #heroCanvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      z-index: 0;
    }
    .hero-vignette {
      position: absolute; inset: 0; z-index: 1;
      background:
        radial-gradient(ellipse 70% 80% at 30% 50%, transparent 30%, rgba(10,15,26,0.55) 100%),
        linear-gradient(to top, rgba(10,15,26,0.95) 0%, transparent 40%),
        linear-gradient(to right, rgba(10,15,26,0.6) 0%, transparent 60%);
    }

    /* Diagonal gold slash */
    .hero-slash {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%; width: 2px;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(184,150,90,0.6) 30%,
        rgba(212,175,114,0.9) 50%,
        rgba(184,150,90,0.6) 70%,
        transparent 100%);
      z-index: 3;
      transform: skewX(-15deg);
    }

    .hero-content {
      position: relative; z-index: 4;
      width: 100%;
      padding: 160px 80px 100px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      max-width: 820px;
    }

    .hero-left { max-width: 680px; }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-line {
      width: 40px; height: 1px;
      background: var(--gold2);
    }
    .hero-eyebrow-text {
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold2);
    }

    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6.5vw, 6rem);
      font-weight: 300; line-height: 1.05;
      color: var(--white);
      margin-bottom: 32px;
    }
    .hero-h1 em {
      font-style: italic; color: var(--gold2);
      font-weight: 300;
    }
    .hero-h1 strong {
      font-weight: 600; display: block;
    }

    .hero-sub {
      font-size: 0.95rem; font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.9; max-width: 500px;
      margin-bottom: 44px;
      letter-spacing: 0.03em;
    }

    .hero-actions { display: flex; gap: 16px; align-items: center; }
    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      padding: 16px 36px; border-radius: 2px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-gold:hover {
      background: var(--gold2);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(184,150,90,0.35);
    }
    .btn-ghost {
      background: transparent;
      color: rgba(255,255,255,0.7);
      padding: 16px 36px; border-radius: 2px;
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-ghost:hover {
      border-color: var(--gold2);
      color: var(--gold2);
    }

    .hero-right {
      display: flex; flex-direction: column;
      align-items: flex-end; gap: 32px;
    }
    .hero-stat-stack {
      display: flex; flex-direction: column; gap: 1px;
      width: 100%; max-width: 320px;
    }
    .hero-stat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,150,90,0.12);
      padding: 20px 28px;
      display: flex; justify-content: space-between; align-items: center;
      transition: background 0.3s;
    }
    .hero-stat:hover { background: rgba(184,150,90,0.08); }
    .hero-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 600;
      color: var(--gold2);
    }
    .hero-stat-label {
      font-size: 0.65rem; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      text-align: right;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex; flex-direction: column;
      align-items: center; gap: 10px;
    }
    .hero-scroll span {
      font-size: 0.58rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: rgba(255,255,255,0.35);
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, rgba(184,150,90,0.8), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    /* ══════════════════════════════════════
       MARQUEE TICKER
    ══════════════════════════════════════ */
    
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 35s linear infinite;
      white-space: nowrap;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    
    

    /* ══════════════════════════════════════
       SECTION COMMONS
    ══════════════════════════════════════ */
    .section { padding: 120px 60px; }
    .section-dark { background: var(--ink); }
    .section-cream { background: var(--cream); color: var(--ink); }
    .section-warm  { background: var(--warm); color: var(--ink); }
    .section-navy  { background: var(--navy); }

    .eyebrow {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 20px;
    }
    .eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
    .eyebrow-text {
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--gold);
    }
    .eyebrow.dark .eyebrow-text { color: var(--gold); }
    .eyebrow.light .eyebrow-line { background: var(--gold); }
    .eyebrow.light .eyebrow-text { color: var(--gold); }

    .display-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 300; line-height: 1.15;
      margin-bottom: 20px;
    }
    .display-title em { font-style: italic; color: var(--gold2); }
    .display-title.dark { color: var(--ink); }
    .display-title.light { color: var(--white); }

    .body-text {
      font-size: 0.9rem; font-weight: 300;
      line-height: 1.9; letter-spacing: 0.02em;
      max-width: 520px;
    }
    .body-text.dark { color: rgba(10,15,26,0.6); }
    .body-text.light { color: rgba(255,255,255,0.5); }

    .container { max-width: 1280px; margin: 0 auto; }

    /* ══════════════════════════════════════
       SEARCH — EDITORIAL STYLE
    ══════════════════════════════════════ */
    .search-section {
      background: var(--cream);
      padding: 80px 60px;
      width: 100%;
    }

    .search-section .search-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    .search-section iframe {
      display: block;
      border: none;
    }
/* ── search section header layout (mirrors markets-header) ─────────── */
.search-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

    .search-inner {
      max-width: 1100px; margin: 0 auto;
    }
    .search-label {
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .search-label::before {
      content: ''; width: 24px; height: 1px; background: var(--gold);
    }
    .search-tabs {
      display: flex; gap: 0; margin-bottom: 0;
      border-bottom: 1px solid var(--mist);
    }
    .stab {
      padding: 12px 28px;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(10,15,26,0.4);
      background: transparent; border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer; transition: all 0.25s;
      margin-bottom: -1px;
    }
    .stab.active {
      color: var(--ink);
      border-bottom-color: var(--gold);
    }
    .stab:hover:not(.active) { color: var(--ink); }

    .search-bar {
      display: flex; align-items: center;
      background: var(--white);
      border: 1px solid var(--mist);
      border-top: none;
      padding: 6px 6px 6px 24px;
      gap: 0;
    }
    .search-bar input {
      flex: 1; border: none; outline: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem; font-weight: 300;
      color: var(--ink); background: transparent;
      padding: 14px 0;
    }
    .search-bar input::placeholder { color: rgba(10,15,26,0.35); }
    .search-divider {
      width: 1px; height: 28px;
      background: var(--mist); margin: 0 16px;
    }
    .search-bar select {
      border: none; outline: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem; font-weight: 400;
      color: rgba(10,15,26,0.55);
      background: transparent; cursor: pointer;
      padding: 0 12px;
    }
    .search-go {
      background: var(--ink);
      color: var(--white);
      border: none; cursor: pointer;
      padding: 18px 32px;
      font-family: 'Jost', sans-serif;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      display: flex; align-items: center; gap: 10px;
      transition: background 0.3s;
    }
    .search-go:hover { background: var(--gold); color: var(--ink); }

    /* ══════════════════════════════════════
       MARKETS — IMMERSIVE GRID
    ══════════════════════════════════════ */
    .markets-section {
      background: var(--ink);
      padding: 120px 60px;
    }
    .markets-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 64px;
      flex-wrap: wrap; gap: 32px;
    }
    .markets-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 340px 280px;
      gap: 3px;
    }
    .mcard {
      position: relative; overflow: hidden;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }
    .mcard:first-child { grid-row: 1 / 3; }
    .mcard img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.6) saturate(0.85);
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                  filter 0.5s;
    }
    .mcard:hover img {
      transform: scale(1.06);
      filter: brightness(0.45) saturate(0.7);
    }
    .mcard-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top,
        rgba(10,15,26,0.9) 0%,
        rgba(10,15,26,0.1) 50%,
        transparent 100%);
      pointer-events: none;
    }
    .mcard-body {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 32px;
      pointer-events: none;
    }
    .mcard-tag {
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold2); margin-bottom: 8px;
    }
    .mcard-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem; font-weight: 400;
      color: var(--white); line-height: 1.1;
      margin-bottom: 12px;
    }
    .mcard:first-child .mcard-name { font-size: 2.8rem; }
    .mcard-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold2); text-decoration: none;
      opacity: 0; transform: translateY(8px);
      transition: all 0.3s;
      pointer-events: auto;
    }
    .mcard:hover .mcard-link { opacity: 1; transform: translateY(0); }
    .mcard-link i { font-size: 0.6rem; }

    /* ══════════════════════════════════════
       SERVICES — DARK EDITORIAL
    ══════════════════════════════════════ */
    .services-section {
      background: var(--navy);
      padding: 120px 60px;
    }
    .services-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }
    .services-left { position: sticky; top: 100px; }
    .services-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.05);
    }
    .scard {
      background: var(--navy);
      padding: 40px 36px;
      border: 1px solid rgba(255,255,255,0.05);
      transition: all 0.35s;
      cursor: pointer;
    }
    .scard:hover {
      background: rgba(184,150,90,0.07);
      border-color: rgba(184,150,90,0.2);
    }
    .scard-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 300;
      color: var(--gold);
      line-height: 1; margin-bottom: 20px;
    }
    .scard-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 500;
      color: var(--white); margin-bottom: 12px;
    }
    .scard-desc {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(255,255,255,0.45);
      line-height: 1.8;
    }
    .scard-arrow {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 20px;
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold2); text-decoration: none;
      opacity: 0; transition: opacity 0.3s;
    }
    .scard:hover .scard-arrow { opacity: 1; }

    /* ══════════════════════════════════════
       ABOUT — SPLIT LUXURY
    ══════════════════════════════════════ */
    .about-section {
      background: var(--ink);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
    }
    .about-img-side {
      position: relative; overflow: hidden;
    }
    .about-img-side img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.75) saturate(0.8);
    }
    .about-img-side::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--ink) 100%);
    }
    /* Gold frame accent */
    .about-img-side::before {
      content: '';
      position: absolute;
      top: 40px; left: 40px; right: 40px; bottom: 40px;
      border: 1px solid rgba(184,150,90,0.25);
      z-index: 2; pointer-events: none;
    }
    .about-content-side {
      padding: 100px 80px 100px 60px;
      display: flex; flex-direction: column;
      justify-content: center;
    }
    .about-content-side .body-text { margin-bottom: 16px; }
    .cred-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px; margin: 36px 0;
    }
    .cred-item {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,150,90,0.12);
    }
    .cred-item i { color: var(--gold2); font-size: 0.85rem; }
    .cred-item span {
      font-size: 0.75rem; font-weight: 400;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.04em;
    }
    .lang-row {
      display: flex; gap: 10px; margin-top: 8px;
    }
    .lang-pill {
      padding: 7px 16px;
      background: rgba(184,150,90,0.1);
      border: 1px solid rgba(184,150,90,0.25);
      font-size: 0.7rem; font-weight: 500;
      color: var(--gold2); letter-spacing: 0.1em;
    }
    .about-rating {
      display: flex; align-items: center; gap: 16px;
      margin-top: 36px; padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .rating-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 300;
      color: var(--gold2); line-height: 1;
    }
    .rating-detail { display: flex; flex-direction: column; gap: 4px; }
    .rating-stars { color: var(--gold2); font-size: 0.85rem; letter-spacing: 2px; }
    .rating-label {
      font-size: 0.65rem; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ══════════════════════════════════════
       TESTIMONIALS — MAGAZINE LAYOUT
    ══════════════════════════════════════ */
    .testimonials-section {
      background: var(--cream);
      padding: 120px 60px;
    }
    .testimonials-header {
      text-align: center; margin-bottom: 80px;
    }
    .testimonials-header .eyebrow { justify-content: center; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
    }
    .tcard {
      background: var(--white);
      padding: 48px 40px;
      position: relative;
      transition: transform 0.35s;
    }
    .tcard:hover { transform: translateY(-6px); }
    .tcard-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 300;
      color: var(--gold2); opacity: 0.25;
      line-height: 0.8;
      margin-bottom: 20px;
    }
    .tcard-stars {
      color: var(--gold); font-size: 0.75rem;
      letter-spacing: 3px; margin-bottom: 20px;
    }
    .tcard-text {
      font-size: 0.88rem; font-weight: 300;
      color: rgba(10,15,26,0.65);
      line-height: 1.85; font-style: italic;
      margin-bottom: 32px;
    }
    .tcard-author {
      display: flex; align-items: center; gap: 14px;
      padding-top: 24px;
      border-top: 1px solid var(--mist);
    }
    .tcard-avatar {
      width: 44px; height: 44px;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--gold2); flex-shrink: 0;
    }
    .tcard-name {
      font-size: 0.82rem; font-weight: 600;
      color: var(--ink); letter-spacing: 0.04em;
    }
    .tcard-loc {
      font-size: 0.7rem; font-weight: 300;
      color: var(--slate); margin-top: 2px;
    }

    /* ══════════════════════════════════════
       INSIGHTS — EDITORIAL CARDS
    ══════════════════════════════════════ */
    .insights-section {
      background: var(--ink);
      padding: 120px 60px;
    }
    .insights-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 64px;
      flex-wrap: wrap; gap: 32px;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3px;
    }
    .icard {
      position: relative; overflow: hidden;
      cursor: pointer;
    }
    .icard-img {
      height: 420px; overflow: hidden;
    }
    .icard:not(:first-child) .icard-img { height: 200px; }
    .icard-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
      transition: transform 0.6s, filter 0.4s;
    }
    .icard:hover .icard-img img {
      transform: scale(1.05);
      filter: brightness(0.4);
    }
    .icard-body {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-top: none;
      padding: 28px 28px 32px;
    }
    .icard-tag {
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold2); margin-bottom: 10px;
    }
    .icard-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 400;
      color: var(--white); line-height: 1.35;
      margin-bottom: 12px;
    }
    .icard:first-child .icard-title { font-size: 1.6rem; }
    .icard-excerpt {
      font-size: 0.8rem; font-weight: 300;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
    }
    .icard-read {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 20px;
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold2); text-decoration: none;
      transition: gap 0.25s;
    }
    .icard-read:hover { gap: 14px; }

    /* ══════════════════════════════════════
       CTA — FULL BLEED LUXURY
    ══════════════════════════════════════ */
    .cta-section {
      position: relative;
      padding: 160px 60px;
      overflow: hidden;
      text-align: center;
    }
    .cta-bg {
      position: absolute; inset: 0;
    }
    .cta-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.25) saturate(0.6);
    }
    .cta-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%,
        rgba(10,15,26,0.4) 0%,
        rgba(10,15,26,0.85) 100%);
    }
    .cta-content {
      position: relative; z-index: 2;
      max-width: 700px; margin: 0 auto;
    }
    .cta-content .eyebrow { justify-content: center; }
    .cta-content .display-title { color: var(--white); margin-bottom: 20px; }
    .cta-content .body-text {
      color: rgba(255,255,255,0.5);
      margin: 0 auto 48px; text-align: center;
    }
    .cta-actions {
      display: flex; gap: 16px;
      justify-content: center; flex-wrap: wrap;
    }
    .cta-trust {
      display: flex; justify-content: center;
      gap: 48px; margin-top: 64px;
      padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .trust-item { text-align: center; }
    .trust-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 300;
      color: var(--gold2); display: block;
    }
    .trust-label {
      font-size: 0.62rem; font-weight: 400;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-top: 6px;
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #050a12;
      padding: 80px 60px 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1280px; margin: 0 auto 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 400;
      color: var(--white); margin-bottom: 4px;
    }
    .footer-brand-sub {
      font-size: 0.6rem; font-weight: 400;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
      display: block;
    }
    .footer-brand-desc {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(255,255,255,0.35);
      line-height: 1.8; margin-bottom: 28px;
    }
    .footer-socials {
      display: flex; gap: 10px;
    }
    .fsoc {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      text-decoration: none; font-size: 0.8rem;
      transition: all 0.25s;
    }
    .fsoc:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .footer-col h5 {
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 0.82rem; font-weight: 300;
      color: rgba(255,255,255,0.35);
      text-decoration: none; transition: color 0.2s;
      letter-spacing: 0.03em;
    }
    .footer-col ul li a:hover { color: var(--gold2); }
    .footer-bottom {
      max-width: 1280px; margin: 0 auto;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; flex-direction: column;
      align-items: center; gap: 8px;
      text-align: center;
    }
    .footer-bottom p {
      font-size: 0.72rem; font-weight: 300;
      letter-spacing: 0.04em;
    }


    /* ══════════════════════════════════════
       FLOATING ACTIONS
    ══════════════════════════════════════ */
    /* ── FLOATING PILL BUBBLES ── */
    .float-actions {
      position: fixed; bottom: 36px; right: 36px;
      z-index: 998;
      display: flex; flex-direction: column;
      align-items: flex-end; gap: 12px;
      animation: fabSlideIn 0.8s cubic-bezier(0.23,1,0.32,1) 1s both;
    }
    @keyframes fabSlideIn {
      from { opacity: 0; transform: translateX(60px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .fab {
      display: flex; align-items: center; justify-content: center;
      gap: 10px;
      width: 172px; height: 48px;
      padding: 0 22px;
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      text-decoration: none; cursor: pointer;
      border-radius: 100px;
      transition: transform 0.25s cubic-bezier(0.23,1,0.32,1),
                  box-shadow 0.25s ease,
                  background 0.25s ease;
      white-space: nowrap;
    }
    .fab i { font-size: 0.75rem; }

    /* Call Us — gold fill, navy border + text */
    .fab-primary {
      background: var(--gold);
      color: var(--ink);
      border: 1.5px solid var(--navy);
      box-shadow: 0 6px 24px rgba(184,150,90,0.25),
                  0 2px 8px rgba(0,0,0,0.2);
      animation: fabSlideIn 0.8s cubic-bezier(0.23,1,0.32,1) 1s both,
                 fabPulse 3.5s ease-in-out 4s infinite;
    }
    @keyframes fabPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(184,150,90,0.25), 0 2px 8px rgba(0,0,0,0.2); }
      50%       { box-shadow: 0 8px 32px rgba(184,150,90,0.45), 0 4px 16px rgba(0,0,0,0.25); }
    }
    .fab-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(184,150,90,0.4), 0 4px 12px rgba(0,0,0,0.25);
      background: var(--gold2);
    }

    /* Message Us — navy fill, gold border + text */
    .fab-secondary {
      background: rgba(13,31,60,0.92);
      color: var(--gold2);
      border: 1.5px solid rgba(212,175,114,0.6);
      box-shadow: 0 6px 24px rgba(0,0,0,0.3),
                  0 2px 8px rgba(0,0,0,0.2);
      backdrop-filter: blur(12px);
      animation: fabSlideIn 0.8s cubic-bezier(0.23,1,0.32,1) 1.15s both;
    }
    .fab-secondary:hover {
      transform: translateY(-3px);
      border-color: var(--gold2);
      box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 4px 12px rgba(184,150,90,0.15);
      background: rgba(13,31,60,0.98);
    }

    /* Available dot on Call Us */
    .fab-primary::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--navy);
      flex-shrink: 0;
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50%       { opacity: 1; transform: scale(1.3); }
    }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1; transform: translateY(0);
    }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .markets-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .mcard:first-child { grid-row: auto; }
      .services-layout { grid-template-columns: 1fr; }
      .services-left { position: static; }
      .about-section { grid-template-columns: 1fr; }
      .about-img-side { height: 400px; }
      .insights-grid { grid-template-columns: 1fr; }
      .icard-img { height: 260px !important; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    /* Hamburger button */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none;
      padding: 4px; z-index: 1001;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: rgba(255,255,255,0.7);
      transition: all 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    /* Mobile dropdown */
    .nav-mobile-menu {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0;
      background: rgba(10,15,26,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(184,150,90,0.15);
      padding: 20px 24px;
      flex-direction: column; gap: 0;
      z-index: 999;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .nav-mobile-menu a:last-child { border-bottom: none; }
    .nav-mobile-menu a:hover { color: var(--gold2); }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-center { display: none; }
      .nav-hamburger { display: flex; }
      .section, .markets-section,
      .services-section, .testimonials-section,
      .insights-section, .cta-section { padding: 80px 24px; }
      .hero-content { padding: 120px 24px 80px; }
      .markets-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .services-right { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .cta-trust { gap: 24px; flex-wrap: wrap; }
      /* search-section padding set above */
    }

    /* ══════════════════════════════════════
       INTRO SPLASH SCREEN
    ══════════════════════════════════════ */
    #intro {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: #162340;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: opacity 1.4s cubic-bezier(0.77,0,0.175,1),
                  transform 1.4s cubic-bezier(0.77,0,0.175,1);
    }
    #intro.hide {
      opacity: 0;
      pointer-events: none;
      transform: scale(1.03);
    }
    #intro-canvas {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
    }

    /* Horizontal gold sweep line */
    .intro-line {
      position: absolute;
      top: 50%; left: 0;
      width: 0; height: 1px;
      background: linear-gradient(to right,
        transparent 0%,
        rgba(184,150,90,0.4) 20%,
        rgba(212,175,114,0.8) 50%,
        rgba(184,150,90,0.4) 80%,
        transparent 100%);
      transform: translateY(-50%);
      animation: lineSweep 1.6s cubic-bezier(0.77,0,0.175,1) 0.4s forwards;
    }
    @keyframes lineSweep {
      from { width: 0; opacity: 0; }
      to   { width: 100%; opacity: 1; }
    }

    /* Logo container — horizontal lockup */
    /* Vertical divider between eXp and right block */
    .intro-divider {
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,0.22);
      margin: 0 22px;
      opacity: 0;
      animation: introFadeUp 0.8s ease 1.5s forwards;
    }
    /* Right side stack */

    /* ── INTRO LOGO — Star of the splash ── */

    /* Outer wrapper: vertical stack, centered on page */
    .intro-logo-wrap {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: 100%;
      margin-top: -6vh;
    }
    /* Inner content block — centered as a unit on page */
    .intro-logo-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* eXp — official PNG logo, centered */
    .intro-exp {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 8px;
      opacity: 0;
      animation: introFadeUp 1s cubic-bezier(0.23,1,0.32,1) 1.0s forwards;
    }
    .intro-exp-img {
      height: clamp(2.4rem, 6vw, 5rem);
      width: auto;
      display: block;
      opacity: 1;
      animation: expMute 1.8s ease 2.0s forwards;
    }
    @keyframes expMute {
      from { opacity: 1; }
      to   { opacity: 0.38; }
    }
    .intro-presents {
      font-family: 'Jost', sans-serif;
      font-size: clamp(0.55rem, 0.9vw, 0.7rem);
      font-weight: 300;
      letter-spacing: 0.4em;
      color: rgba(255,255,255,0.85);
      font-style: italic;
      text-transform: lowercase;
      animation: expMute 1.8s ease 2.0s forwards;
    }

    /* Gold horizontal rule — centered, expands outward */
    .intro-rule {
      width: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, #d4af72, transparent);
      margin: 22px auto 20px;
      animation: introRule 1s cubic-bezier(0.77,0,0.175,1) 2.7s forwards;
    }
    @keyframes introRule {
      to { width: clamp(200px, 30vw, 380px); }
    }

    /* Name block — text left-aligned, block centered via auto margins */
    .intro-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      width: auto;
      text-align: left;
      margin: 0 auto;
      position: relative;
    }
    /* Aura glow behind Scott Landau Team LLC — soft, diffused, no hard edges */
    .intro-right::before {
      content: "";
      position: absolute;
      inset: -60px -80px;
      background: radial-gradient(
        ellipse 100% 100% at 50% 55%,
        rgba(212,175,114,0.11) 0%,
        rgba(184,150,90,0.05) 45%,
        transparent 100%
      );
      filter: blur(36px);
      z-index: -1;
      opacity: 0;
      animation: auraFadeIn 2.6s ease 3.0s forwards, auraPulse 4.5s ease-in-out 4.6s infinite;
      pointer-events: none;
    }
    @keyframes auraFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes auraPulse {
      0%, 100% { opacity: 1;   }
      50%       { opacity: 0.55; }
    }

    /* SCOTT — left-aligned, precisely spans L→N of LANDAU */
    .intro-scott {
      font-family: 'Jost', sans-serif;
      font-size: clamp(0.7rem, 1.6vw, 0.9rem);
      font-weight: 400;
      color: rgba(255,255,255,0.62);
      letter-spacing: 0.48em;
      text-transform: uppercase;
      line-height: 1;
      text-align: left;
      white-space: nowrap;
      opacity: 0;
      animation: introFadeUp 0.9s ease 2.9s forwards;
    }

    /* LANDAU — gold, reduced size */
    .intro-landau {
      font-family: 'Jost', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 3rem);
      font-weight: 700;
      color: rgba(232,201,122,0.92);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1;
      opacity: 0;
      animation: introFadeUp 1s cubic-bezier(0.23,1,0.32,1) 3.0s forwards;
    }

    /* TEAM LLC — handled by inline SVG */

    /* Tagline */
    .intro-tagline {
      position: relative;
      font-family: 'Jost', sans-serif;
      font-size: 0.98rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      text-align: center;
      align-self: center;
      margin-top: 175px;
      opacity: 0;
      animation: introFadeUp 1s ease 2.9s forwards;
    }

    /* Corner accents */
    .intro-corner {
      position: absolute;
      width: 32px; height: 32px;
      opacity: 0;
      animation: introFadeUp 0.8s ease 1.6s forwards;
    }
    .intro-corner.tl { top: 36px; left: 36px;
      border-top: 1px solid rgba(184,150,90,0.35);
      border-left: 1px solid rgba(184,150,90,0.35); }
    .intro-corner.tr { top: 36px; right: 36px;
      border-top: 1px solid rgba(184,150,90,0.35);
      border-right: 1px solid rgba(184,150,90,0.35); }
    .intro-corner.bl { bottom: 36px; left: 36px;
      border-bottom: 1px solid rgba(184,150,90,0.35);
      border-left: 1px solid rgba(184,150,90,0.35); }
    .intro-corner.br { bottom: 36px; right: 36px;
      border-bottom: 1px solid rgba(184,150,90,0.35);
      border-right: 1px solid rgba(184,150,90,0.35); }

    /* Enter button */
    .intro-enter {
      position: absolute;
      bottom: 5vh;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      cursor: pointer;
      opacity: 0;
      animation: introFadeUp 1s ease 3.2s forwards;
      border: none;
      background: transparent;
    }
    .intro-enter-text {
      font-family: 'Jost', sans-serif;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      transition: color 0.3s;
    }
    .intro-enter:hover .intro-enter-text { color: rgba(212,175,114,0.8); }
    .intro-enter-line {
      width: 1px;
      height: 0;
      background: linear-gradient(to bottom, rgba(212,175,114,0.6), transparent);
      animation: enterLine 1s ease 3.8s forwards;
    }
    @keyframes enterLine { to { height: 36px; } }

    @keyframes introFadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    body.intro-active { overflow: hidden; }

    /* Skip Intro button */
    .intro-skip {
      position: relative;
      align-self: center;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.4);
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      padding: 10px 28px; cursor: pointer;
      z-index: 10; white-space: nowrap;
      margin-top: 120px;
      /* opacity: 0;
      animation: introFadeUp 0.8s ease 3.8s forwards;
      transition: all 0.23s; */
    }
    .intro-skip:hover {
      border-color: rgba(212,175,114,0.5);
      color: rgba(212,175,114,0.8);
    }

    /* Scroll down indicator */
    .intro-scroll-hint {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 8px;
      opacity: 0;
      animation: introFadeUp 1s ease 4.2s forwards;
      cursor: pointer;
    }
    .intro-scroll-hint:hover .intro-scroll-arrow { transform: translateY(4px); }
    .intro-scroll-text {
      font-family: 'Jost', sans-serif;
      font-size: 0.58rem; font-weight: 300;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }
    .intro-scroll-arrow {
      color: rgba(212,175,114,0.5);
      font-size: 0.9rem;
      animation: scrollBounce 2s ease-in-out 5s infinite;
      transition: transform 0.2s;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 0.5; }
      50%       { transform: translateY(6px); opacity: 1; }
    }


/* ── search section stacked layout ─────────────────────────────────── */
.search-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 60px 80px;
  box-sizing: border-box;
}
.search-stack-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search-iframe-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111828 !important;
  margin-bottom: 12px;
}
.search-iframe-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══ Live Marquee Bar ═══════════════════════════════════════════════════════ */


.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 80s linear infinite;
  will-change: transform;
}
.live-marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item-label { color: rgba(255,255,255,0.4); font-weight: 400; }
.marquee-item-value { color: #fff; font-weight: 600; }
.marquee-item-change { font-size: 0.65rem; font-weight: 700; }
.marquee-item-change.up   { color: #4ade80; }
.marquee-item-change.down { color: #f87171; }
.marquee-cat {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(200,169,110,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-loading {
  color: rgba(255,255,255,0.25);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  padding: 0 24px;
}


/* ── Marquee bar (live data) ────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  width: 100%;
  position: sticky;
  top: var(--nav-h, 80px);
  z-index: 999;
  transition: top 0.4s ease;
}

/* ── Marquee bar (live data) ────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  width: 100%;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 90s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  border-right: 1px solid rgba(10,15,26,0.12);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.marquee-item-label {
  color: rgba(10,15,26,0.55);
  font-weight: 500;
}
.marquee-item-value {
  color: #0a0f1a;
  font-weight: 700;
}
.marquee-item-change {
  font-size: 0.6rem;
  font-weight: 700;
}
.marquee-item-change.up   { color: #14532d; }
.marquee-item-change.down { color: #7f1d1d; }
.marquee-cat {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(10,15,26,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-loading {
  color: rgba(10,15,26,0.45);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  padding: 0 24px;
}
/* Fixed clone that appears when scrolling past original */
    nav.scrolled {
      background: rgba(10,15,26,0.96);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(184,150,90,0.15);
      height: 68px;
    }
/* ── Testimonials Marquee ───────────────────────────────────────────── */
.testimonials-marquee-wrap {
  background: var(--ink);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.testimonials-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tMarqueeScroll 60s linear infinite;
  will-change: transform;
}
.testimonials-marquee-wrap:hover .testimonials-marquee-track {
  animation-play-state: paused;
}
@keyframes tMarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tmarquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  flex-shrink: 0;
}
.tmarquee-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.tmarquee-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  white-space: normal;
  line-height: 1.5;
}
.tmarquee-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}
.tmarquee-dot {
  color: rgba(200,169,110,0.4);
  font-size: 0.5rem;
  padding: 0 20px;
  flex-shrink: 0;
}

/* scard title as link */
.scard-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.scard-title-link:hover .scard-title {
  color: var(--gold2);
  transition: color 0.2s;
}

/* scard as full clickable link */
a.scard {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.scard:hover {
  background: rgba(184,150,90,0.07);
  border-color: rgba(184,150,90,0.2);
}

/* scard-arrow always visible when card is <a> */
a.scard .scard-arrow {
  opacity: 1;
}
