:root {
      --cream:       #F5F1EB;
      --warm-white:  #FAF8F5;
      --stone:       #C8BFB0;
      --sage:        #7A8C7E;
      --sage-deep:   #4E6352;
      --charcoal:    #2A2A28;
      --ink:         #1A1A18;
      --gold:        #A8915A;
      --gold-light:  #C8A96A;
      --mist:        #E8E2D9;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

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

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(245, 241, 235, 0.95);
      backdrop-filter: blur(8px);
      box-shadow: 0 1px 0 var(--stone);
    }
    /* Logo sits over dark hero-left before scroll — use light text (nav-brand from nav-branding.css is --ink) */
    #nav:not(.scrolled) .nav-brand {
      color: var(--cream) !important;
    }
    #nav:not(.scrolled) .nav-sub {
      color: rgba(245, 241, 235, 0.78) !important;
    }
    /* Links sit on the right, usually over the lighter hero half — keep them dark for contrast */
    #nav:not(.scrolled) .nav-links a:not(.nav-cta) {
      color: var(--sage-deep);
    }
    #nav:not(.scrolled) .nav-links a:not(.nav-cta):hover {
      color: var(--ink);
    }
    #nav:not(.scrolled) .nav-logo-mark-svg svg {
      filter: brightness(0) invert(1);
      opacity: 0.92;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sage-deep); }
    .nav-cta {
      font-size: 0.75rem !important;
      font-weight: 500 !important;
      letter-spacing: 0.1em !important;
      padding: 0.55rem 1.3rem;
      background: var(--sage-deep);
      color: var(--cream) !important;
      border-radius: 2px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--sage) !important; color: var(--cream) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      background: var(--ink);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 4rem 5rem 5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-left::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 60%, rgba(78,99,82,0.35) 0%, transparent 65%);
      pointer-events: none;
    }
    /* Subtle etching lines */
    .hero-left::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(168,145,90,0.12);
      box-shadow: 0 0 0 40px rgba(168,145,90,0.05), 0 0 0 80px rgba(168,145,90,0.03);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4vw, 4.2rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 1.8rem;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.35s forwards;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-body {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--stone);
      max-width: 420px;
      margin-bottom: 2.8rem;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      background: var(--gold);
      color: var(--ink);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.8rem;
      border: 1px solid rgba(200,191,176,0.3);
      color: var(--stone);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: var(--stone); color: var(--cream); transform: translateY(-1px); }

    .hero-trust {
      position: absolute;
      bottom: 2.5rem; left: 5rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.85s forwards;
    }
    .hero-trust-icon {
      width: 28px; height: 28px;
      border: 1px solid rgba(168,145,90,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-trust-icon svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; }
    .hero-trust-text {
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--stone);
    }
    .hero-trust-text strong {
      color: var(--gold);
      font-weight: 500;
    }

    .hero-right {
      background: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 5rem 5rem 4rem;
      position: relative;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 60%; height: 60%;
      background: radial-gradient(ellipse at bottom right, var(--mist) 0%, transparent 70%);
      pointer-events: none;
    }
    .path-label {
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .path-cards {
      display: flex;
      flex-direction: column;
      gap: 1px;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s forwards;
    }
    .path-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.6rem 1.8rem;
      background: var(--warm-white);
      text-decoration: none;
      border: 1px solid var(--mist);
      border-radius: 3px;
      margin-bottom: 0.6rem;
      transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    .path-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--sage-deep);
      transform: scaleY(0);
      transition: transform 0.25s;
      transform-origin: bottom;
    }
    .path-card:hover {
      border-color: var(--stone);
      background: white;
      transform: translateX(4px);
      box-shadow: 0 4px 20px rgba(42,42,40,0.06);
    }
    .path-card:hover::before { transform: scaleY(1); }
    .path-card-inner { display: flex; flex-direction: column; gap: 0.3rem; }
    .path-card-tag {
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage);
    }
    .path-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.2;
    }
    .path-card-desc {
      font-size: 0.78rem;
      font-weight: 300;
      color: #777;
      line-height: 1.5;
      margin-top: 0.1rem;
    }
    .path-card-arrow {
      width: 36px; height: 36px;
      border: 1px solid var(--mist);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.2s, background 0.2s;
    }
    .path-card:hover .path-card-arrow {
      border-color: var(--sage-deep);
      background: var(--sage-deep);
    }
    .path-card-arrow svg {
      width: 14px; height: 14px;
      stroke: var(--charcoal);
      fill: none;
      transition: stroke 0.2s;
    }
    .path-card:hover .path-card-arrow svg { stroke: white; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--sage-deep);
      padding: 1.2rem 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .trust-item svg {
      width: 16px; height: 16px;
      stroke: var(--gold-light);
      fill: none;
      flex-shrink: 0;
    }
    .trust-item span {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: rgba(245,241,235,0.85);
    }
    .trust-divider {
      width: 1px; height: 20px;
      background: rgba(245,241,235,0.15);
    }

    /* ── HOW IT WORKS ── */
    .section {
      padding: 7rem 5rem;
      position: relative;
    }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--sage);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 300;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-subtitle {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.75;
      color: #666;
      max-width: 520px;
    }

    /* Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 4rem;
    }
    .step-card {
      background: var(--warm-white);
      border: 1px solid var(--mist);
      padding: 2.2rem;
      position: relative;
    }
    .step-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--mist);
      line-height: 1;
      margin-bottom: 1rem;
      transition: color 0.3s;
    }
    .step-card:hover .step-number { color: var(--stone); }
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }
    .step-desc {
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.7;
      color: #777;
    }
    .step-connector {
      position: absolute;
      top: 2.5rem; right: -1px;
      width: 2px; height: 30px;
      background: var(--gold);
      opacity: 0.3;
    }
    .step-card:last-child .step-connector { display: none; }

    /* ── WHY SECTION ── */
    .why-section {
      background: var(--ink);
      padding: 7rem 5rem;
    }
    .why-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .why-left .section-eyebrow { color: var(--gold); }
    .why-left .section-eyebrow::before { background: var(--gold); }
    .why-left .section-title { color: var(--cream); }
    .why-left .section-subtitle { color: var(--stone); max-width: 100%; }
    .why-points {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .why-point {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .why-point-icon {
      width: 32px; height: 32px;
      border: 1px solid rgba(168,145,90,0.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }
    .why-point-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }
    .why-point-text { }
    .why-point-title {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 0.2rem;
      letter-spacing: 0.02em;
    }
    .why-point-desc {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--stone);
      line-height: 1.65;
    }
    .why-right {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(200,191,176,0.12);
      border-radius: 4px;
      padding: 2.5rem;
    }
    .why-license-label {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .why-license-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    .why-license-body {
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--stone);
      margin-bottom: 1.5rem;
    }
    .why-license-divider {
      height: 1px;
      background: rgba(200,191,176,0.12);
      margin: 1.5rem 0;
    }
    .why-license-stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .why-stat-item { text-align: center; }
    .why-stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
    }
    .why-stat-label {
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--stone);
      margin-top: 0.3rem;
    }
    .why-stat-divider {
      width: 1px; height: 40px;
      background: rgba(200,191,176,0.15);
    }

    /* ── LISTING PREVIEW ── */
    .listings-section { background: var(--cream); }
    .listings-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
    }
    .listings-link {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage-deep);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding-bottom: 0.2rem;
      border-bottom: 1px solid currentColor;
      transition: color 0.2s;
    }
    .listings-link:hover { color: var(--gold); }
    .listings-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
    .listings-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .listing-card {
      background: var(--warm-white);
      border: 1px solid var(--mist);
      border-radius: 3px;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .listing-card:hover {
      box-shadow: 0 8px 32px rgba(42,42,40,0.1);
      transform: translateY(-3px);
    }
    .listing-card-image {
      height: 140px;
      background: linear-gradient(135deg, var(--sage-deep) 0%, #3a5040 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .listing-card-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    }
    .listing-card-image svg {
      width: 32px; height: 32px;
      stroke: rgba(245,241,235,0.2);
      fill: none;
    }
    .listing-badge {
      position: absolute;
      top: 0.8rem; left: 0.8rem;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      background: var(--gold);
      color: var(--ink);
      border-radius: 2px;
    }
    .listing-card-body { padding: 1.4rem; }
    .listing-type {
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.4rem;
    }
    .listing-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.3;
      margin-bottom: 0.3rem;
    }
    .listing-location {
      font-size: 0.72rem;
      font-weight: 300;
      color: #888;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-bottom: 1rem;
    }
    .listing-location svg { width: 10px; height: 10px; stroke: currentColor; fill: none; }
    .listing-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.9rem;
      border-top: 1px solid var(--mist);
    }
    .listing-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--ink);
    }
    .listing-price small {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 300;
      color: #888;
      display: block;
      line-height: 1;
      margin-bottom: 0.1rem;
    }
    .listing-action {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sage-deep);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      transition: color 0.2s;
    }
    .listing-action:hover { color: var(--gold); }
    .listing-action svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--sage-deep);
      padding: 5rem;
    }
    .cta-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-inner .section-eyebrow {
      justify-content: center;
      color: rgba(245,241,235,0.6);
    }
    .cta-inner .section-eyebrow::before { background: rgba(245,241,235,0.4); }
    .cta-inner .section-title { color: var(--cream); margin-bottom: 1rem; }
    .cta-inner .section-subtitle { color: rgba(245,241,235,0.7); margin: 0 auto 2.5rem; text-align: center; }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-cream {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      background: var(--cream);
      color: var(--sage-deep);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-cream:hover { background: white; transform: translateY(-1px); }
    .btn-outline-cream {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.8rem;
      border: 1px solid rgba(245,241,235,0.35);
      color: rgba(245,241,235,0.85);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-outline-cream:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 4rem 5rem 2.5rem;
    }
    .footer-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(200,191,176,0.1);
    }
    .footer-brand-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 0.8rem;
    }
    .footer-brand-desc {
      font-size: 0.78rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--stone);
      margin-bottom: 1.2rem;
    }
    .footer-license {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.8rem;
      border: 1px solid rgba(168,145,90,0.3);
      border-radius: 2px;
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--gold);
    }
    .footer-license svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; }
    .footer-col-title {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 1.2rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .footer-links a {
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(200,191,176,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--cream); }
    .footer-bottom {
      max-width: 1100px;
      margin: 2rem auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-copyright {
      font-size: 0.7rem;
      font-weight: 300;
      color: rgba(200,191,176,0.4);
    }
    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      font-style: italic;
      color: rgba(200,191,176,0.4);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { min-height: 60vh; padding: 7rem 2rem 4rem; }
      .hero-right { padding: 3rem 2rem 4rem; }
      .hero-trust { left: 2rem; }
      .trust-bar { padding: 1.2rem 2rem; gap: 1.5rem; }
      .trust-divider { display: none; }
      .section { padding: 5rem 2rem; }
      .steps-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 3rem; }
      .listings-grid { grid-template-columns: 1fr; }
      .listings-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .cta-band { padding: 4rem 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      footer { padding: 3rem 2rem 2rem; }
    }