
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --white: #ffffff;
      --gray-100: #f5f5f5;
      --gray-200: #e8e8e8;
      --gray-400: #999999;
      --gray-600: #555555;
      --gold: #c9a96e;
      --gold-light: #e8d5b0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── CURSOR ── */
    .cursor {
      width: 8px; height: 8px;
      background: var(--white);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
    }
    
    .hero-img-wrap {
      height: 85vh !important;
    }
    
    @media (min-width: 769px) {
      .hero-content {
         padding-top: 150px !important;
      }
      .hero-actions {
         padding-bottom: 55px !important;
      }
      nav.scrolled {
         padding: 0px 60px !important;
      }
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    }
    .cursor-ring.hovered { width: 56px; height: 56px; opacity: 0.6; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 18px 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 44px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      padding: 12px 28px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--white); }

    /* Desktop: panel children stay in nav flex row */
    .nav-panel { display: contents; }
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      z-index: 1002;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 0.5px;
      background: var(--white);
      transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
      transform-origin: center;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
      width: 0;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }
    .nav-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .nav-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 0 0 0 60px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(201,169,110,0.06) 0%, transparent 65%),
                  radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
    }
    .hero-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding-right: 60px;
      padding-top: 90px;
    }
    /* ── HERO VISUAL ── */
    .hero-visual {
      position: relative;
      z-index: 2;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .hero-img-wrap {
      position: relative;
      width: 100%;
      height: 78vh;
      overflow: hidden;
      transform: translateY(-28px);
    }
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      top: -14px; right: -14px;
      width: 100%; height: 100%;
      border: 1px solid rgba(201,169,110,0.28);
      z-index: 3;
      pointer-events: none;
    }
    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 0%;
      display: block;
      filter: grayscale(18%) brightness(0.72) contrast(1.05);
    }
    .hero-img-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, var(--black) 0%, rgba(10,10,10,0.5) 30%, transparent 65%),
        linear-gradient(to top, var(--black) 0%, transparent 35%);
      z-index: 2;
    }
    .hero-img-stats {
      position: absolute;
      bottom: 40px;
      left: 0; right: 0;
      display: flex;
      justify-content: center;
      gap: 0;
      z-index: 4;
    }
    .hero-stat-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 28px;
      background: rgba(10,10,10,0.72);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.07);
      border-right: none;
      min-width: 110px;
    }
    .hero-stat-pill:last-child { border-right: 1px solid rgba(255,255,255,0.07); }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--gold); }
    .hero-stat-lbl {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 5px;
      white-space: nowrap;
    }
    .hero-stats-mobile { display: none; }
    .hero-img-badge {
      position: absolute;
      top: 44px;
      left: 28px;
      z-index: 4;
      background: rgba(10,10,10,0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(201,169,110,0.2);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      animation: pulse 2s ease infinite;
    }
    .badge-text {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s ease 0.3s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--gold);
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.2rem, 6.5vw, 6rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s ease 0.5s forwards;
    }
    .hero-title em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
      max-width: 480px;
      margin-bottom: 52px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s ease 0.7s forwards;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s ease 0.9s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      padding: 18px 40px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover { color: var(--white); }
    .btn-secondary {
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: color 0.3s;
    }
    .btn-secondary svg { transition: transform 0.3s; }
    .btn-secondary:hover { color: var(--white); }
    .btn-secondary:hover svg { transform: translateX(4px); }

    .hero-visual {
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
    }

    /* ── MARQUEE ── */
    .marquee-section {
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 22px 0;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
    }
    .marquee-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 40px;
      padding: 0 40px;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }
    .marquee-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── SECTION BASE ── */
    section { padding: 56px 60px; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .section-label::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.4rem);
      font-weight: 700;
      line-height: 1.12;
    }
    .section-title em { font-style: normal; color: var(--gold); }

    /* ── ABOUT ── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 60px;
      position: relative;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: -1px; left: 40px;
      width: 80px; height: 1px;
      background: var(--gold);
    }
    .about-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      font-style: normal;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
    }
    .about-card-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .meta-dot {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.8;
    }
    .meta-text { font-size: 0.92rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
    .about-accent {
      position: absolute;
      bottom: -24px; right: -24px;
      width: 120px; height: 120px;
      border: 1px solid rgba(201,169,110,0.2);
    }
    .about-text .section-title {
      margin-bottom: 10px;
      font-size: clamp(2.2rem, 3.6vw, 3.4rem);
      white-space: nowrap;
    }
    .about-subtitle {
      font-size: 0.95rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }
    .about-desc {
      font-size: 1.1rem;
      font-weight: 500;
      line-height: 1.85;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }
    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 20px;
    }
    .pillar {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.97rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.7);
    }
    .pillar-icon {
      width: 32px; height: 32px;
      border: 1px solid rgba(201,169,110,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      font-size: 0.7rem;
    }

    /* ── SERVICES ── */
    .services-section { background: rgba(255,255,255,0.015); }
    .services-header {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 48px;
    }
    .services-header .section-title { max-width: none; }
    .services-intro {
      max-width: none;
      font-size: 1.22rem;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.6);
      padding: 22px 0 22px 28px;
      border-left: 2px solid rgba(201,169,110,0.42);
      background: linear-gradient(90deg, rgba(201,169,110,0.05) 0%, transparent 72%);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
    }
    .service-card {
      background: var(--black);
      padding: 52px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
      cursor: default;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.5s cubic-bezier(0.77,0,0.175,1);
    }
    .service-card:hover { background: rgba(255,255,255,0.03); }
    .service-card:hover::after { width: 100%; }
    .service-number {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
      line-height: 1;
      margin-bottom: 32px;
    }
    .service-card:hover .service-number {
      color: rgba(255,255,255,0.72);
    }
    .service-icon {
      width: 44px; height: 44px;
      margin-bottom: 28px;
      color: var(--gold);
    }
    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.85rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .service-desc {
      font-size: 0.97rem;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.4);
    }
    .service-arrow {
      position: absolute;
      bottom: 40px; right: 40px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
      color: var(--gold);
    }
    .service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

    /* ── PROCESS ── */
    .process-section { position: relative; }
    .process-header { text-align: center; margin-bottom: 40px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3) 20%, rgba(201,169,110,0.3) 80%, transparent);
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
    }
    .step-circle {
      width: 80px; height: 80px;
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      position: relative;
      background: var(--black);
      transition: border-color 0.3s, background 0.3s;
    }
    .step:hover .step-circle {
      border-color: var(--gold);
      background: rgba(201,169,110,0.06);
    }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
    }
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .step-desc {
      font-size: 0.97rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
    }

    /* ── PLANS ── */
    .plans-section { background: rgba(255,255,255,0.015); }
    .plans-header { text-align: center; margin-bottom: 36px; }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
      max-width: 1320px;
      margin: 0 auto;
    }
    .plan-card {
      background: var(--black);
      padding: 56px 48px;
      position: relative;
      transition: background 0.3s;
    }
    .plan-card.featured {
      background: rgba(255,255,255,0.05);
    }
    .plan-badge {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--gold);
      padding: 5px 14px;
      margin-bottom: 36px;
    }
    .plan-name {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .plan-tagline {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.35);
      margin-bottom: 40px;
    }
    .plan-offer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .plan-original-price {
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255,255,255,0.3);
      text-decoration: line-through;
      letter-spacing: 0.02em;
    }
    .plan-discount {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--gold);
      padding: 5px 10px;
    }
    .plan-price {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
    }
    .price-line {
      display: inline-flex;
      align-items: baseline;
      white-space: nowrap;
    }
    .price-currency {
      font-size: 1rem;
      color: var(--gold);
      vertical-align: super;
    }
    .price-value {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1;
    }
    .price-period {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.35);
      margin-left: 4px;
    }
    @media (min-width: 1101px) {
      .plan-card:last-child .price-line .price-value {
        font-size: 2.85rem;
      }
    }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 44px;
    }
    .plan-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
    }
    .plan-features li::before {
      content: '';
      width: 16px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .plan-btn {
      display: block;
      text-align: center;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 16px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }
    .plan-btn-outline {
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.6);
    }
    .plan-btn-outline:hover {
      border-color: var(--white);
      color: var(--white);
    }
    .plan-btn-solid {
      background: var(--white);
      color: var(--black);
    }
    .plan-btn-solid:hover {
      background: var(--gold);
      color: var(--white);
    }

    .plan-details-toggle {
      display: none;
      width: 100%;
      min-height: 44px;
      margin-bottom: 16px;
      padding: 10px 0;
      border: none;
      background: transparent;
      color: rgba(255,255,255,0.45);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      cursor: pointer;
      transition: color 0.3s;
    }
    .plan-details-toggle:hover { color: var(--gold); }

    .plans-slider-controls { display: none; }

    .service-learn-more {
      display: none;
      margin-top: 14px;
      min-height: 44px;
      padding: 10px 0;
      border: none;
      background: transparent;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      text-align: left;
      transition: color 0.3s;
    }
    .service-learn-more:hover { color: var(--gold-light); }

    .testi-carousel-mobile { display: none; }
    .testi-carousel-count {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.45);
      min-width: 3.5rem;
      text-align: center;
      display: none;
    }
    .testi-desktop-only { display: block; }

    .value-accordion {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 20px;
      row-gap: 6px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .value-accordion:last-child { border-bottom: none; }
    .value-accordion-trigger {
      display: contents;
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: default;
    }
    .value-chevron { display: none; }
    .value-num { grid-column: 1; grid-row: 1; }
    .value-name { grid-column: 2; grid-row: 1; margin-bottom: 6px; }
    .value-accordion-panel { grid-column: 2; grid-row: 2; }

    .footer-contact-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
    .footer-contact-links a {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s;
    }
    .footer-contact-links a:hover { color: var(--gold); }
    .footer-accordion-trigger {
      display: block;
      width: 100%;
      background: none;
      border: none;
      padding: 0;
      color: inherit;
      text-align: left;
      cursor: default;
    }
    .footer-accordion-icon { display: none; }
    .footer-accordion-panel { display: block; }

    .mobile-sticky-cta { display: none; }

    .cta-secondary-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ── TEAM ── */
    .team-section {
      padding: 56px 60px;
      position: relative;
      overflow: hidden;
    }
    .team-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,110,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .team-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
    }
    .team-intro {
      max-width: 380px;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.07);
    }
    .team-card {
      background: var(--black);
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      min-width: 0;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .team-card:hover { background: rgba(255,255,255,0.025); }
    .team-photo-wrap {
      position: relative;
      overflow: hidden;
    }
    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(20%) brightness(0.78);
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
    }
    .team-card:hover .team-photo-wrap img {
      transform: scale(1.04);
      filter: grayscale(0%) brightness(0.88);
    }
    .team-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 55%, rgba(10,10,10,0.5) 100%),
                  linear-gradient(to top, rgba(10,10,10,0.45) 0%, transparent 40%);
    }
    .team-photo-num {
      position: absolute;
      top: 24px; left: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      user-select: none;
    }
    .team-body {
      padding: 52px 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 0;
    }
    .team-body-top { flex: 1; }
    .team-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .team-tag::before {
      content: '';
      width: 10px; height: 1px;
      background: var(--gold);
    }
    .team-name {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }
    .team-role {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 28px;
    }
    .team-bio {
      font-size: 0.92rem;
      font-weight: 400;
      line-height: 1.85;
      color: rgba(255,255,255,0.45);
      margin-bottom: 32px;
    }
    .team-expertise {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }
    .expertise-tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 6px 14px;
      transition: border-color 0.3s, color 0.3s;
    }
    .team-card:hover .expertise-tag {
      border-color: rgba(201,169,110,0.25);
      color: rgba(255,255,255,0.7);
    }
    .team-body-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }
    .team-stats {
      display: flex;
      gap: 36px;
      width: 100%;
      justify-content: space-between;
      order: 1;
    }
    .team-stat-val {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--white);
    }
    .team-stat-val span { color: var(--gold); }
    .team-stat-lbl {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-top: 4px;
    }
    .team-connect {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 12px 20px;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
      flex-shrink: 0;
      order: 2;
      width: auto;
      margin: 0 auto;
    }
    .team-connect:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,169,110,0.05);
    }
    .team-connect svg { transition: transform 0.3s; }
    .team-connect:hover svg { transform: translateX(4px); }

    @media (max-width: 1200px) {
      .team-card { grid-template-columns: 240px minmax(0, 1fr); }
    }
    @media (max-width: 900px) {
      .team-grid { grid-template-columns: 1fr; }
      .team-card { grid-template-columns: 1fr; }
      .team-photo-wrap { height: 340px; }
    }
    @media (max-width: 768px) {
      .team-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .team-body { padding: 36px 28px; }
      .team-stats { gap: 24px; }
    }

    /* ── VALUE PROPS ── */
    .values-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .values-left {
      padding: 56px 80px 56px 60px;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .values-right {
      padding: 56px 60px 56px 80px;
    }
    .values-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .values-title em { font-style: normal; color: var(--gold); }
    .values-subtitle {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
      margin-bottom: 52px;
    }
    .value-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .value-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .value-item:last-child { border-bottom: none; }
    .value-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      padding-top: 2px;
    }
    .value-name {
      font-size: 1.08rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .value-desc {
      font-size: 0.97rem;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.4);
    }
    .brand-statement {
      background: rgba(201,169,110,0.06);
      border: 1px solid rgba(201,169,110,0.15);
      padding: 52px;
    }
    .brand-statement .qs {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      line-height: 0.8;
      color: var(--gold);
      opacity: 0.5;
    }
    .brand-statement blockquote {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      font-style: normal;
      line-height: 1.5;
      color: rgba(255,255,255,0.85);
      margin: 12px 0 28px;
    }
    .brand-statement .attribution {
      font-size: 0.88rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      padding: 56px 60px;
      background: rgba(255,255,255,0.012);
      position: relative;
      overflow: hidden;
    }
    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,169,110,0.25) 40%, rgba(201,169,110,0.25) 60%, transparent);
    }
    .testi-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
    }
    .testi-header-right {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .testi-rating-summary {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }
    .testi-score {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: var(--white);
    }
    .testi-score span { color: var(--gold); }
    .testi-stars-row {
      display: flex;
      gap: 4px;
    }
    .star-icon { color: var(--gold); font-size: 0.85rem; }
    .testi-count {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }
    .testi-nav-btns {
      display: flex;
      gap: 8px;
    }
    .testi-nav-btn {
      width: 46px; height: 46px;
      border: 1px solid rgba(255,255,255,0.12);
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .testi-nav-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,169,110,0.05);
    }

    /* ── TESTIMONIALS LAYOUT ── */
    .testi-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.07);
      margin-bottom: 1px;
    }
    .testi-layout-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.07);
    }

    /* ── TEXT TESTIMONIAL ── */
    .testi-card {
      background: var(--black);
      padding: 52px 52px;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }
    .testi-card:hover { background: rgba(255,255,255,0.03); }
    .testi-card::before {
      content: '\201C';
      position: absolute;
      top: 24px; right: 36px;
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      font-weight: 800;
      line-height: 1;
      color: rgba(201,169,110,0.08);
      pointer-events: none;
    }
    .testi-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 24px;
    }
    .testi-star { color: var(--gold); font-size: 0.8rem; }
    .testi-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.6;
      color: rgba(255,255,255,0.88);
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }
    .testi-quote-sm {
      font-family: 'Playfair Display', serif;
      font-size: 0.98rem;
      font-weight: 700;
      line-height: 1.65;
      color: rgba(255,255,255,0.82);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .testi-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(201,169,110,0.3);
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-avatar-initials {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.3);
      background: rgba(201,169,110,0.1);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 800;
      color: var(--gold);
      flex-shrink: 0;
    }
    .testi-name {
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .testi-detail {
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(255,255,255,0.35);
      margin-top: 3px;
      letter-spacing: 0.04em;
    }
    .testi-verified {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(201,169,110,0.7);
    }
    .testi-verified svg { flex-shrink: 0; }

    /* ── VIDEO TESTIMONIAL ── */
    .testi-video-card {
      background: var(--black);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: background 0.35s;
    }
    .testi-video-card:hover { background: rgba(255,255,255,0.03); }
    .testi-video-thumb {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      overflow: hidden;
    }
    .testi-video-thumb img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      filter: grayscale(20%) brightness(0.65);
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    }
    .testi-video-card:hover .testi-video-thumb img {
      transform: scale(1.05);
      filter: grayscale(0%) brightness(0.75);
    }
    .testi-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
    }
    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
    }
    .testi-video-card:hover .play-btn {
      background: var(--gold);
      border-color: var(--gold);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .play-btn svg { margin-left: 4px; }
    .video-duration {
      position: absolute;
      bottom: 14px; right: 14px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.7);
      background: rgba(0,0,0,0.5);
      padding: 4px 10px;
    }
    .testi-video-body {
      padding: 28px 32px 32px;
    }
    .testi-video-body .testi-stars { margin-bottom: 14px; }
    .testi-video-quote {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.55;
      color: rgba(255,255,255,0.8);
      margin-bottom: 20px;
    }
    .testi-video-author {
      display: flex; align-items: center; gap: 12px;
    }
    .testi-video-thumb-avatar {
      width: 36px; height: 36px;
      border-radius: 50%; overflow: hidden;
      border: 1px solid rgba(201,169,110,0.25);
      flex-shrink: 0;
    }
    .testi-video-thumb-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-video-name { font-size: 0.8rem; font-weight: 700; }
    .testi-video-role { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

    /* ── VIDEO MODAL ── */
    .video-modal {
      display: none;
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.93);
      align-items: center; justify-content: center;
    }
    .video-modal.open { display: flex; }
    .video-modal-inner {
      position: relative;
      width: min(860px, 92vw);
    }
    .video-modal-inner iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
      display: block;
    }
    .video-modal-close {
      position: absolute;
      top: -48px; right: 0;
      background: none; border: none;
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      cursor: pointer;
      display: flex; align-items: center; gap: 10px;
      transition: color 0.3s;
    }
    .video-modal-close:hover { color: var(--white); }
    .video-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px;
    }
    .video-placeholder svg { color: rgba(255,255,255,0.2); }
    .video-placeholder p {
      font-size: 0.82rem; color: rgba(255,255,255,0.3);
      letter-spacing: 0.06em;
    }

    /* ── TESTI RESPONSIVE ── */
    @media (max-width: 1100px) {
      .testi-layout { grid-template-columns: 1fr; }
      .testi-layout-bottom { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .testimonials-section { padding: 44px 30px; }
      .testi-header { flex-direction: column; align-items: flex-start; gap: 28px; }
      .testi-layout-bottom { grid-template-columns: 1fr; }
      .testi-card { padding: 36px 28px; }
    }

    /* ── CTA STRIP ── */
    .cta-strip {
      padding: 56px 60px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 48px;
      background: var(--white);
      color: var(--black);
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      font-weight: 700;
      line-height: 1.15;
    }
    .cta-title em { font-style: normal; color: var(--gold); }
    .cta-actions { display: flex; gap: 20px; flex-shrink: 0; }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--black);
      padding: 18px 36px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
    }
    .btn-dark::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--gold);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    }
    .btn-dark:hover::before { transform: translateX(0); }
    .btn-dark span { position: relative; z-index: 1; }
    .btn-text-dark {
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s;
      align-self: center;
    }
    .btn-text-dark:hover { color: var(--black); }

    /* ── FOOTER ── */
    footer {
      padding: 70px 60px 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo { display: block; margin-bottom: 20px; }
    .footer-tagline {
      font-size: 0.97rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.35);
      max-width: 240px;
    }
    .footer-col-title {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 24px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      font-size: 0.97rem;
      font-weight: 400;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-copy {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.04em;
    }
    .footer-socials { display: flex; gap: 20px; }
    .footer-socials a {
      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.7rem;
      letter-spacing: 0.05em;
      transition: border-color 0.3s, color 0.3s;
    }
    .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .about { grid-template-columns: 1fr; gap: 48px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .process-steps::before { display: none; }
      .plans-grid { grid-template-columns: 1fr; max-width: 460px; }
      .values-section { grid-template-columns: 1fr; }
      .values-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 44px 60px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .cursor, .cursor-ring { display: none !important; }

      /* Nav + hamburger */
      nav {
        padding: 6px 8px;
        gap: 12px;
      }
      nav.scrolled {
        padding: 6px 8px !important;
        background: rgba(10,10,10,0.94);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      .nav-logo img { height: 52px; width: auto; display: block; }
      .nav-toggle { display: flex; }
      .nav-backdrop { display: block; }
      .nav-panel {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 340px);
        padding: 88px 28px 36px;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255,255,255,0.08);
        z-index: 1001;
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      .nav-panel.open { transform: translateX(0); }
      .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        letter-spacing: 0.14em;
        color: rgba(255,255,255,0.75);
      }
      .nav-links a::after { display: none; }
      .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 28px;
        width: 100%;
        text-align: center;
        padding: 14px 22px;
        font-size: 0.82rem;
      }

      /* Base spacing */
      section { padding: 48px 20px; }
      .section-label {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 14px;
        gap: 10px;
      }
      .section-label::before { width: 20px; }
      .section-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        line-height: 1.18;
      }

      /* Hero — stacked with image */
      .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 0;
        align-items: stretch;
      }
      .hero-content {
        padding: 72px 20px 28px;
        padding-right: 20px;
        padding-top: 72px;
      }
      .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 18px;
        gap: 10px;
      }
      .hero-eyebrow::before { width: 20px; }
      .hero-title {
        font-size: clamp(2.15rem, 10.5vw, 2.85rem);
        line-height: 1.1;
        margin-bottom: 16px;
      }
      .hero-title br { display: none; }
      .hero-sub {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 28px;
        max-width: none;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
      }
      .hero-actions .btn-secondary { display: none; }
      .btn-primary {
        justify-content: center;
        width: 100%;
        padding: 16px 28px;
        font-size: 0.82rem;
      }
      .btn-secondary {
        justify-content: center;
        font-size: 0.82rem;
        padding: 8px 0;
      }
      .hero-visual {
        display: flex;
        height: auto;
        min-height: 0;
        justify-content: stretch;
        padding: 0 20px 36px;
        opacity: 1;
        animation: none;
      }
      .hero-img-wrap {
        width: 100%;
        height: 52vw;
        min-height: 220px;
        max-height: 340px;
        transform: none;
      }
      .hero-img-wrap::before {
        top: -8px;
        right: -8px;
      }
      .hero-img-wrap img {
        object-position: center 15%;
        filter: grayscale(12%) brightness(0.78) contrast(1.05);
      }
      .hero-img-badge {
        top: 14px;
        left: 14px;
        padding: 8px 12px;
        gap: 8px;
      }
      .badge-text { font-size: 0.58rem; letter-spacing: 0.1em; }
      .hero-img-stats { display: none; }
      .hero-stats-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 16px;
      }
      .hero-stats-mobile .hero-stat-pill {
        flex: unset;
        min-width: 0;
        padding: 14px 10px;
        border-right: 1px solid rgba(255,255,255,0.07);
      }
      .hero-stats-mobile .hero-stat-pill:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
      }
      .hero-stat-num { font-size: 1.35rem; }
      .hero-stat-lbl {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
      }
      .hero-img-overlay {
        background:
          linear-gradient(to top, var(--black) 0%, transparent 45%),
          linear-gradient(to right, rgba(10,10,10,0.35) 0%, transparent 50%);
      }

      /* Marquee */
      .marquee-section { padding: 16px 0; }
      .marquee-item {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        gap: 24px;
        padding: 0 24px;
      }

      /* About */
      .about { gap: 28px; }
      .about-card { padding: 28px 20px; }
      .about-text .section-title { white-space: normal; }
      .about-quote {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 20px;
      }
      .about-card-meta {
        padding-top: 18px;
        gap: 12px;
      }
      .meta-dot { width: 28px; height: 28px; flex-shrink: 0; }
      .meta-text {
        font-size: 0.75rem;
        line-height: 1.45;
      }
      .about-accent { display: none; }
      .about-text .section-title {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
        line-height: 1.2;
      }
      .about-subtitle {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 16px;
      }
      .about-desc {
        font-size: 0.9rem;
        line-height: 1.65;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .about-desc:last-of-type { display: none; }
      .pillar {
        font-size: 0.85rem;
        align-items: flex-start;
        line-height: 1.45;
      }

      /* Services */
      .services-header {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 28px;
      }
      .services-intro {
        font-size: 0.92rem;
        line-height: 1.65;
        padding: 14px 0 14px 16px;
      }
      .services-grid { grid-template-columns: 1fr; gap: 0; }
      .service-card { padding: 28px 18px 26px; }
      .service-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: rgba(255,255,255,0.52);
      }
      .service-icon { width: 36px; height: 36px; margin-bottom: 14px; }
      .service-name { font-size: 1.35rem; margin-bottom: 10px; }
      .service-desc {
        font-size: 0.88rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .service-card.is-expanded .service-desc {
        -webkit-line-clamp: unset;
        display: block;
      }
      .service-learn-more { display: inline-flex; align-items: center; }
      .service-card.is-expanded .service-learn-more { display: none; }
      .service-arrow { display: none; }

      /* Process */
      .process-header { margin-bottom: 20px; }
      .process-header .section-title {
        font-size: clamp(1.7rem, 7.5vw, 2.25rem);
        line-height: 1.15;
      }
      .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        padding-left: 8px;
      }
      .process-steps::before { display: none; }
      .process-steps::after {
        content: '';
        position: absolute;
        left: 35px;
        top: 48px;
        bottom: 48px;
        width: 1px;
        background: linear-gradient(to bottom, rgba(201,169,110,0.5), rgba(201,169,110,0.15));
        pointer-events: none;
      }
      .step {
        display: grid;
        grid-template-columns: 56px 1fr;
        align-items: start;
        text-align: left;
        gap: 4px 14px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .step:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .step-circle {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
        grid-row: 1 / span 2;
      }
      .step-num { font-size: 1.2rem; }
      .step-title {
        font-size: 1.05rem;
        margin-bottom: 0;
      }
      .step-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* Plans carousel */
      .plans-slider-wrap { position: relative; overflow: hidden; width: 100%; }
      .plans-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow: visible;
        gap: 0;
        max-width: none;
        width: 100%;
        margin: 0;
        background: transparent;
      }
      .plan-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 28px 20px;
        opacity: 1 !important;
        transform: none !important;
      }
      .plan-details-toggle { display: block; }
      .plan-card.is-expanded .plan-details-toggle { display: none; }
      .plan-card:not(.is-expanded) .plan-features li:nth-child(n+4) { display: none; }
      .plans-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
      }
      .plans-slider-btn {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,0.15);
        background: transparent;
        color: rgba(255,255,255,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color 0.3s, color 0.3s;
      }
      .plans-slider-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .plans-slider-count {
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.45);
        min-width: 3.5rem;
        text-align: center;
      }
      .plan-name { font-size: 1.75rem; }
      .plan-tagline {
        font-size: 0.88rem;
        margin-bottom: 18px;
        line-height: 1.5;
      }
      .plan-price {
        margin-bottom: 20px;
        padding-bottom: 20px;
      }
      .price-value { font-size: 2.35rem; }
      .plan-features {
        gap: 10px;
        margin-bottom: 22px;
      }
      .plan-features li {
        font-size: 0.88rem;
        line-height: 1.4;
      }

      /* Team */
      .team-section { padding: 48px 20px; }
      .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
      }
      .team-grid { grid-template-columns: 1fr; gap: 20px; }
      .team-card { grid-template-columns: 1fr; }
      .team-photo-wrap {
        height: auto;
        width: 100%;
        aspect-ratio: 3 / 4;
        max-height: 62vh;
      }
      .team-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 12%;
      }
      .team-body { padding: 24px 18px; }
      .team-name { font-size: 1.45rem; }
      .team-role { font-size: 0.75rem; margin-bottom: 12px; }
      .team-bio {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .team-expertise { display: none; }
      .team-view-profile {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 0.75rem;
      }
      .team-stats {
        gap: 10px;
        flex-wrap: nowrap;
      }
      .team-stats > div {
        min-width: 0;
        flex: 1;
      }
      .team-stat-val {
        font-size: 1.05rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .team-stat-lbl {
        font-size: 0.62rem;
        white-space: normal;
        line-height: 1.3;
      }
      .team-connect {
        font-size: 0.68rem;
        padding: 10px 14px;
      }

      /* Values */
      .values-section { grid-template-columns: 1fr; }
      .values-left,
      .values-right { padding: 24px 20px; }
      .values-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .values-subtitle {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 24px;
      }
      .value-list { gap: 0; }
      .value-item.value-accordion,
      .value-accordion {
        display: block;
        padding-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .value-accordion-trigger {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        min-height: 48px;
        padding: 14px 0;
        cursor: pointer;
      }
      .value-chevron {
        display: block;
        margin-left: auto;
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
      }
      .value-chevron::before,
      .value-chevron::after {
        content: '';
        position: absolute;
        background: rgba(255,255,255,0.5);
        transition: transform 0.25s ease;
      }
      .value-chevron::before {
        top: 9px; left: 4px;
        width: 12px; height: 1px;
      }
      .value-chevron::after {
        top: 4px; left: 9px;
        width: 1px; height: 12px;
      }
      .value-accordion.is-open .value-chevron::after {
        transform: scaleY(0);
      }
      .value-num { grid-column: unset; grid-row: unset; font-size: 1rem; }
      .value-name { grid-column: unset; grid-row: unset; margin-bottom: 0; flex: 1; }
      .value-accordion-panel {
        display: none;
        grid-column: unset;
        grid-row: unset;
        padding: 0 0 16px 36px;
      }
      .value-accordion.is-open .value-accordion-panel { display: block; }
      .value-num { font-size: 1.15rem; }
      .value-name { font-size: 0.95rem; }
      .value-desc {
        font-size: 0.86rem;
        line-height: 1.6;
      }
      .brand-statement { padding: 24px 18px; }
      .brand-statement .qs { font-size: 2.5rem; }
      .brand-statement blockquote {
        font-size: 1.2rem;
        line-height: 1.4;
      }

      /* Testimonials */
      .testimonials-section { padding: 48px 20px; }
      .testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 24px;
      }
      .testi-header-right {
        width: 100%;
        justify-content: space-between;
      }
      .testi-carousel-count { display: inline; }
      .testi-desktop-only { display: none; }
      .testi-carousel-mobile {
        display: block;
        overflow: hidden;
      }
      .testi-carousel-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      }
      .testi-slide {
        flex: 0 0 100%;
        min-width: 100%;
      }
      .testi-carousel-mobile .testi-card { padding: 24px 18px; }
      .testi-video-body { padding: 18px; }
      .team-photo-num { font-size: 2.4rem; top: 16px; left: 16px; }
      .testi-quote,
      .testi-quote-sm {
        font-size: 0.95rem;
        line-height: 1.55;
      }
      .testi-avatar,
      .testi-video-thumb-avatar {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
      }
      .testi-avatar img,
      .testi-video-thumb-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
      }
      .testi-name,
      .testi-video-name { font-size: 0.9rem; }
      .testi-detail,
      .testi-video-role { font-size: 0.75rem; }

      /* CTA */
      .cta-strip {
        grid-template-columns: 1fr;
        padding: 44px 20px;
        gap: 24px;
      }
      .cta-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.2;
      }
      .cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }
      .cta-secondary-links { display: none; }
      .btn-dark {
        justify-content: center;
        width: 100%;
        padding: 16px 28px;
        font-size: 0.82rem;
      }
      .btn-text-dark {
        justify-content: center;
        font-size: 0.82rem;
      }

      /* Footer */
      footer { padding: 44px 20px 80px; }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 36px;
      }
      .footer-brand { margin-bottom: 24px; }
      .footer-col.footer-accordion {
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .footer-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 14px 0;
        cursor: pointer;
      }
      .footer-accordion-trigger .footer-col-title {
        margin-bottom: 0;
        font-size: 0.82rem;
      }
      .footer-accordion-icon {
        display: block;
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
      }
      .footer-accordion-icon::before,
      .footer-accordion-icon::after {
        content: '';
        position: absolute;
        background: rgba(255,255,255,0.5);
        transition: transform 0.25s ease;
      }
      .footer-accordion-icon::before {
        top: 9px; left: 4px;
        width: 12px; height: 1px;
      }
      .footer-accordion-icon::after {
        top: 4px; left: 9px;
        width: 1px; height: 12px;
      }
      .footer-accordion.is-open .footer-accordion-icon::after {
        transform: scaleY(0);
      }
      .footer-accordion-panel {
        display: none;
        padding-bottom: 16px;
      }
      .footer-accordion.is-open .footer-accordion-panel { display: block; }
      .footer-contact-links a { font-size: 0.94rem; min-height: 44px; }
      .footer-tagline {
        font-size: 0.9rem;
        max-width: none;
      }
      .footer-col-title {
        font-size: 0.75rem;
        margin-bottom: 14px;
      }
      .footer-links { gap: 10px; }
      .footer-links a { font-size: 0.9rem; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 24px;
      }
      .footer-copy {
        font-size: 0.78rem;
        line-height: 1.5;
      }

      /* Global mobile typography + tap targets */
      body { font-size: 15px; }
      .footer-links a,
      .nav-links a,
      .btn-primary,
      .btn-dark,
      .plan-btn,
      .testi-nav-btn {
        min-height: 44px;
      }

      .mobile-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        min-height: 52px;
        padding: 14px 20px;
        background: var(--gold);
        color: var(--black);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
      }
    }

    @media (max-width: 420px) {
      .hero-title {
        font-size: 2rem;
      }
      .hero-img-wrap {
        height: 58vw;
        min-height: 200px;
      }
      .hero-stats-mobile .hero-stat-pill { padding: 12px 8px; }
      .hero-stat-num { font-size: 1.2rem; }
      .price-value { font-size: 2.1rem; }
    }
  