  :root {
    --gold: #C9A84C;
    --gold-light: #E6C97A;
    --gold-dark: #8B6914;
    --black: #090909;
    --dark: #0F0F0F;
    --dark2: #161616;
    --dark3: #1E1E1E;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --white: #F5F0E8;
  }

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

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

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: difference;
  }

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

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    background: rgba(9,9,9,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    transition: padding 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.7rem;
    text-decoration: none; cursor: pointer;
  }
  .nav-logo img { height: 48px; width: auto; }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 0.65rem 1.6rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ─── PAGES ─── */
  .page { display: none; min-height: 100vh; padding-top: 80px; }
  .page.active { display: block; }

  /* ─── HOME ─── */
  .hero {
    min-height: calc(100vh - 80px);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4.5rem, 10vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .hero-title span { color: var(--gold); }
  .hero-title .outline {
    -webkit-text-stroke: 1px rgba(201,168,76,0.4);
    color: transparent;
    display: block;
  }
  .hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-top: 2rem;
    position: relative; z-index: 1;
  }
  .hero-actions {
    display: flex; gap: 1.5rem; margin-top: 3rem;
    position: relative; z-index: 1;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

  .hero-stats {
    display: flex; gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201,168,76,0.12);
    position: relative; z-index: 1;
  }
  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* Marquee */
  .marquee-bar {
    background: var(--gold);
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
  }
  .marquee-inner span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 3rem;
  }
  .marquee-inner span::before { content: '✦'; margin-right: 3rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* Services preview */
  .section {
    padding: 7rem 4rem;
    position: relative;
  }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .section-title span { color: var(--gold); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    margin-top: 4rem;
    border: 1px solid rgba(201,168,76,0.1);
  }
  .service-card {
    background: var(--dark);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }
  .service-card:hover { background: var(--dark2); }
  .service-card:hover::after { width: 100%; }
  .service-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.15); }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Why us */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
  .why-item {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .why-item:last-child { border-bottom: none; }
  .why-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
  }
  .why-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--white);
  }
  .why-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
  .why-visual {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.12);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .why-visual-inner {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem;
  }
  .why-big-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
    text-align: center;
  }
  .why-big-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
  }

  /* ─── SERVICES PAGE ─── */
  .page-hero {
    padding: 5rem 4rem 4rem;
    background: var(--dark);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right center, rgba(201,168,76,0.06) 0%, transparent 60%);
  }
  .page-hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .page-hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .page-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
    position: relative; z-index: 1;
  }
  .page-hero h1 span { color: var(--gold); }
  .page-hero p {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 550px; line-height: 1.75;
    margin-top: 1.5rem; position: relative; z-index: 1;
  }

  .tier-block {
    padding: 5rem 4rem;
    border-bottom: 1px solid rgba(201,168,76,0.06);
  }
  .tier-block:nth-child(even) { background: var(--dark); }
  .tier-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 2rem; margin-bottom: 3rem;
  }
  .tier-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.4rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .tier-name {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--white);
  }
  .tier-name span { color: var(--gold); }
  .tier-pricing {
    text-align: right; flex-shrink: 0;
  }
  .tier-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
  }
  .tier-period {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }
  .tier-meta {
    display: flex; gap: 3rem; margin-top: 0.5rem;
  }
  .tier-meta-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .tier-meta-item strong { color: var(--gold-light); }
  .tier-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  .tier-feature {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.08);
    transition: border-color 0.2s, background 0.2s;
  }
  .tier-feature:hover { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.07); }
  .tier-check { color: var(--gold); font-size: 0.9rem; margin-top: 0.05rem; flex-shrink: 0; }
  .tier-feature-text { font-size: 0.88rem; color: var(--text); line-height: 1.5; }

  .ai-section {
    padding: 5rem 4rem;
    background: var(--dark2);
  }
  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  .ai-card {
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .ai-card:hover { border-color: rgba(201,168,76,0.4); }
  .ai-card-glow {
    position: absolute; top: -30px; right: -30px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  }
  .ai-icon {
    font-size: 2rem; margin-bottom: 1.5rem;
  }
  .ai-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .ai-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .ai-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--white);
  }
  .ai-price span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    vertical-align: middle;
    margin-left: 0.5rem;
  }

  /* ─── AREAS PAGE ─── */
  .areas-hero { padding: 5rem 4rem 4rem; background: var(--dark); position: relative; overflow: hidden; }
  .areas-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  }
  .areas-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
    position: relative; z-index: 1;
  }
  .areas-hero h1 span { color: var(--gold); }
  .areas-hero p {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 580px; line-height: 1.75;
    margin-top: 1.5rem; position: relative; z-index: 1;
  }

  .hq-banner {
    background: var(--gold);
    padding: 2rem 4rem;
    display: flex; align-items: center; gap: 2rem;
  }
  .hq-pin { font-size: 2rem; }
  .hq-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
  }
  .hq-text p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
    margin-top: 0.25rem;
  }

  .state-section { padding: 4rem 4rem 3rem; border-bottom: 1px solid rgba(201,168,76,0.06); }
  .state-section:last-child { border-bottom: none; }
  .state-header {
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .state-flag {
    font-size: 2.5rem;
  }
  .state-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
  }
  .state-name span { color: var(--gold); }
  .state-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }
  .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
  }
  .city-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 0.65rem 1rem;
    border: 1px solid rgba(201,168,76,0.07);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    cursor: default;
  }
  .city-tag:hover { color: var(--white); border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.04); }
  .city-tag.featured {
    color: var(--gold);
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.06);
    font-weight: 600;
    font-size: 0.92rem;
  }
  .city-tag.featured::before { content: '★ '; font-size: 0.7rem; }

  /* ─── ABOUT ─── */
  .about-hero { padding: 5rem 4rem 4rem; background: var(--dark); position: relative; overflow: hidden; }
  .about-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
  }
  .about-hero h1 span { color: var(--gold); }

  .about-mission {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-mission-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 2rem;
  }
  .about-mission-text h2 span { color: var(--gold); }
  .about-mission-text p {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.85; margin-bottom: 1.5rem;
  }
  .about-quote {
    background: var(--dark2);
    border-left: 3px solid var(--gold);
    padding: 2rem 2.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
  }
  .about-quote cite {
    display: block;
    font-style: normal;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
  }
  .about-visual {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.12);
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .about-visual-content {
    text-align: center; padding: 3rem;
  }
  .about-visual-content .big-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
  }
  .about-visual-content .small-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 60%);
  }

  .values-section {
    padding: 6rem 4rem;
    background: var(--dark);
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.08);
    margin-top: 3rem;
  }
  .value-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
  }
  .value-card:hover { background: var(--dark2); }
  .value-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
  .value-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .value-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

  /* ─── CONTACT ─── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: calc(100vh - 80px);
  }
  .contact-info {
    background: var(--dark);
    padding: 5rem 4rem;
    border-right: 1px solid rgba(201,168,76,0.1);
    position: relative; overflow: hidden;
  }
  .contact-info::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: radial-gradient(ellipse at bottom left, rgba(201,168,76,0.06) 0%, transparent 60%);
  }
  .contact-info h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    position: relative; z-index: 1;
  }
  .contact-info h1 span { color: var(--gold); }
  .contact-info p {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.8; margin-top: 1.5rem;
    max-width: 400px; position: relative; z-index: 1;
  }
  .contact-details {
    margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem;
    position: relative; z-index: 1;
  }
  .contact-detail {
    display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .contact-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.9rem;
  }
  .contact-detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
  }
  .contact-detail-value {
    font-size: 0.95rem;
    color: var(--white);
  }
  .contact-service-tags {
    margin-top: 3rem;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    position: relative; z-index: 1;
  }
  .contact-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 0.35rem 0.85rem;
  }

  .contact-form-wrap {
    padding: 5rem 4rem;
    background: var(--black);
  }
  .form-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
  }
  .form-control {
    width: 100%;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 0.9rem 1.25rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 1.5rem;
  }
  .form-control:focus { border-color: var(--gold); }
  .form-control::placeholder { color: var(--text-muted); }
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }
  textarea.form-control { min-height: 140px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1.1rem 3rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 4rem 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 1.25rem;
    max-width: 300px;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-col ul a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
  }
  .footer-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: rgba(154,144,128,0.5);
    text-transform: uppercase;
  }
  .footer-socials { display: flex; gap: 1rem; }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
  }
  .footer-social:hover { border-color: var(--gold); color: var(--gold); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 4rem 1.5rem 3rem; }
    .section { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info, .contact-form-wrap { padding: 3rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .tier-header { flex-direction: column; }
    .tier-pricing { text-align: left; }
    .about-mission { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .page-hero, .areas-hero, .about-hero { padding: 3rem 1.5rem; }
    .tier-block, .state-section, .ai-section { padding: 3rem 1.5rem; }
    .hq-banner { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .tier-features { grid-template-columns: 1fr; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .page.active .hero-eyebrow { animation: fadeUp 0.6s ease both; }
  .page.active .hero-title { animation: fadeUp 0.7s 0.1s ease both; }
  .page.active .hero-sub { animation: fadeUp 0.7s 0.2s ease both; }
  .page.active .hero-actions { animation: fadeUp 0.7s 0.3s ease both; }
  .page.active .hero-stats { animation: fadeUp 0.7s 0.4s ease both; }

  /* Progress bar */
  .scroll-progress {
    position: fixed; top: 80px; left: 0;
    height: 2px; background: var(--gold);
    width: 0%; z-index: 499;
    transition: width 0.1s;
  }
