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

  :root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e44;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f8f5ee;
    --cream-dark: #ede9df;
    --slate: #5a6a7a;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── 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 5%;
    background: rgba(13,27,42,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 0.6rem 1.4rem; border-radius: 2px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  }
  .hero-lines {
    position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 60px, rgba(255,255,255,0.5) 60px, rgba(255,255,255,0.5) 61px
    );
  }
  .hero-content {
    padding: 7rem 5% 6rem 8%;
    position: relative; z-index: 2;
    animation: fadeUp 0.9s ease both;
  }
  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 2.5rem; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 500; line-height: 1.12;
    color: var(--white); margin-bottom: 1.75rem;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 1.05rem; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.65); max-width: 460px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.9rem 2rem; border-radius: 2px;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
    padding: 0.9rem 2rem; border-radius: 2px;
    font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    padding: 7rem 8% 6rem 4%;
    position: relative; z-index: 2;
    animation: fadeUp 0.9s 0.15s ease both;
  }
  .building-frame {
    position: relative;
    width: 460px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
  }
  .building-frame img {
    width: 100%; display: block;
    transition: transform 0.6s ease;
  }
  .building-frame:hover img { transform: scale(1.03); }
  .building-caption {
    background: rgba(13,27,42,0.92);
    color: var(--gold);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; text-align: center;
    padding: 0.85rem 1rem;
  }

  .hero-stats {
    position: absolute; bottom: 3rem; left: 8%;
    display: flex; gap: 3rem;
    animation: fadeUp 0.9s 0.3s ease both;
    z-index: 2;
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: var(--font-display); font-size: 2rem; font-weight: 500;
    color: var(--gold); display: block;
  }
  .stat-label {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* ── NON-ATTORNEY DISCLOSURE ── */
  .disclosure-bar {
    background: #1a2e44;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0.9rem 8%;
    text-align: center;
  }
  .disclosure-bar p {
    font-size: 0.72rem; line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 900px; margin: 0 auto;
    letter-spacing: 0.02em;
  }
  .disclosure-bar strong { color: rgba(255,255,255,0.8); }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 5rem; align-items: start;
  }
  .about-text p {
    font-size: 0.95rem; line-height: 1.85; color: var(--slate);
    margin-bottom: 1.25rem;
  }
  .credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .credential-group h4 {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--cream-dark);
  }
  .credential-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
  .credential-group li {
    font-size: 0.85rem; color: var(--navy); line-height: 1.5;
    padding-left: 1rem; position: relative;
  }
  .credential-group li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem; top: 0.15rem;
  }
  .about-photo-mobile { display: none; }
  .about-visual { position: sticky; top: 7rem; }

  .diane-photo-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13,27,42,0.15);
    border: 1px solid rgba(201,168,76,0.25);
  }
  .diane-photo-wrap img { width: 100%; display: block; }

  /* ── GALLERY ── */
  .gallery { background: var(--navy); padding: 5rem 8%; }
  .gallery-inner { max-width: 1100px; margin: 0 auto; }
  .gallery .section-label { color: var(--gold); }
  .gallery .section-title { color: var(--white); margin-bottom: 2rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .gallery-item {
    overflow: hidden; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover img { transform: scale(1.03); }
  .gallery-item--wide { grid-row: span 2; max-height: 520px; }
  .gallery-address {
    text-align: center; margin-top: 1.5rem;
    font-size: 0.8rem; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
  }

  /* ── HEADSHOT ── */
  .headshot-caption {
    text-align: center;
    display: flex; flex-direction: column; gap: 0.25rem;
  }
  .headshot-caption strong {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
    color: var(--navy);
  }
  .headshot-caption span { font-size: 0.82rem; color: var(--slate); }

  /* ── AI ARTICLE ── */
  .ai-article { background: var(--white); }
  .ai-article-inner {
    max-width: 780px; margin: 0 auto;
  }
  .ai-article-inner p {
    font-size: 0.975rem; line-height: 1.9; color: var(--slate);
    margin-bottom: 1.25rem;
  }
  .ai-article-inner p strong { color: var(--navy); }
  .ai-lead {
    font-size: 1.1rem !important; color: var(--navy) !important;
    font-weight: 400;
  }
  .ai-article-inner h3 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
    color: var(--navy); margin: 2.5rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
  }
  .ai-comparisons {
    display: flex; flex-direction: column; gap: 0;
    margin: 1.5rem 0 1.5rem;
    border: 1px solid rgba(13,27,42,0.08); border-radius: 4px;
    overflow: hidden;
  }
  .ai-comparison-item {
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .ai-comparison-item:not(:last-child) {
    border-bottom: 1px solid rgba(13,27,42,0.08);
  }
  .ai-comparison-them {
    padding: 1rem 1.25rem;
    font-size: 0.875rem; line-height: 1.7; color: var(--slate);
    background: var(--cream);
    border-right: 1px solid rgba(13,27,42,0.08);
  }
  .ai-comparison-us {
    padding: 1rem 1.25rem;
    font-size: 0.875rem; line-height: 1.7; color: var(--navy);
    font-weight: 500; background: var(--white);
  }
  .ai-comparison-us::before {
    content: '✓ '; color: var(--gold);
  }
  .ai-closing {
    background: var(--navy); border-radius: 4px;
    padding: 2.5rem; margin-top: 2.5rem;
    text-align: center;
  }
  .ai-closing p {
    color: rgba(255,255,255,0.75) !important;
    font-size: 1rem !important;
  }
  .ai-closing p strong { color: var(--white) !important; font-size: 1.15rem; }

  /* ── SERVICE MODEL ── */
  .service-model {
    background: var(--cream);
    border-top: 1px solid rgba(13,27,42,0.08);
    padding: 5rem 8%;
  }
  .service-model-inner {
    max-width: 780px; margin: 0 auto; text-align: center;
  }
  .service-model-inner .section-label { justify-content: center; }
  .service-model-inner .section-label::before { display: none; }
  .service-model-inner p {
    font-size: 1rem; line-height: 1.85; color: var(--slate);
    margin-bottom: 1rem;
  }
  .service-model-inner p:last-child { margin-bottom: 0; }
  .service-model-inner strong { color: var(--navy); font-weight: 500; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--cream-dark);
    border-top: 1px solid rgba(13,27,42,0.1);
    border-bottom: 1px solid rgba(13,27,42,0.1);
    padding: 1.25rem 8%;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.04em;
    color: var(--slate);
  }
  .trust-item svg { color: var(--gold); flex-shrink: 0; }

  /* ── SECTIONS ── */
  section { padding: 6rem 8%; }

  .section-label {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
  }
  .section-label::before {
    content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500; line-height: 1.2; color: var(--navy); margin-bottom: 1.25rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub {
    font-size: 1rem; font-weight: 300; line-height: 1.75;
    color: var(--slate); max-width: 540px;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--white);
  }
  .how-inner { max-width: 1100px; margin: 0 auto; }
  .how-header { margin-bottom: 4rem; }
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; position: relative;
  }
  .steps::before {
    content: '';
    position: absolute; top: 2.5rem; left: 16%; right: 16%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .step {
    padding: 2.5rem 2rem; text-align: center;
    position: relative;
    animation: fadeUp 0.7s ease both;
  }
  .step:nth-child(2) { animation-delay: 0.1s; }
  .step:nth-child(3) { animation-delay: 0.2s; }
  .step-num {
    width: 5rem; height: 5rem; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.75rem; position: relative; z-index: 1;
    border: 3px solid var(--cream-dark);
    transition: all 0.3s;
  }
  .step:hover .step-num { background: var(--gold); color: var(--navy); transform: scale(1.05); }
  .step h3 {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
    color: var(--navy); margin-bottom: 0.75rem;
  }
  .step p { font-size: 0.9rem; line-height: 1.7; color: var(--slate); }

  /* ── SERVICES ── */
  .services { background: var(--cream); }
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 3.5rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 4px; padding: 2rem;
    transition: all 0.3s; cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,0.1); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 44px; height: 44px; background: var(--cream-dark);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; font-size: 1.3rem;
  }
  .service-card h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.875rem; line-height: 1.7; color: var(--slate); }
  .guarantee-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--navy);
    background: var(--gold);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
  }
  .guarantee-badge:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.3);
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem; font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.7rem; }

  /* ── WHY US ── */
  .why-us {
    background: var(--navy-mid);
    color: var(--white);
  }
  .why-us-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .why-us .why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .why-us .why-feature:nth-child(4),
  .why-us .why-feature:nth-child(5) {
    grid-column: span 1;
  }
  .why {
    background: var(--navy);
    color: var(--white);
    padding-left: 0;
    padding-right: 0;
  }
  .why .section-title { color: var(--white); }
  .why .section-sub { color: rgba(255,255,255,0.6); }
  .why-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
  .why-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s, background 0.3s;
  }
  .why-feature:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
  .why-feature-icon {
    width: 36px; height: 36px; background: rgba(201,168,76,0.15);
    border-radius: 3px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem;
  }
  .why-feature h4 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .why-feature p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.5); }

  .reviews-header {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    padding: 0 8%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .reviews-header-text { max-width: 600px; }
  .why .section-label { color: var(--gold); }
  .reviews-rating-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }
  .reviews-rating-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
  }
  .reviews-rating-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .reviews-rating-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
  .reviews-rating-count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
  }
  .reviews-track {
    position: relative;
  }
  .reviews-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0 1.5rem;
    scrollbar-width: none;
  }
  .reviews-scroll::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.75rem;
    height: fit-content;
    align-self: flex-start;
    transition: transform 0.3s, border-color 0.3s;
  }
  .review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,168,76,0.25);
  }
  .review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
  }
  .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,168,76,0.25);
    flex-shrink: 0;
  }
  .review-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
  }
  .review-meta { display: flex; flex-direction: column; }
  .review-name { font-size: 0.88rem; font-weight: 500; color: var(--white); }
  .review-location { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.1rem; }
  .review-stars {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
  }
  .review-text {
    font-size: 0.88rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    flex: 1;
  }
  .review-date {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .scroll-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .scroll-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
  }
  .scroll-btn:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── DOCS TYPES ── */
  .doc-types { background: var(--cream-dark); }
  .doc-types-inner { max-width: 1100px; margin: 0 auto; }
  .doc-types-header { text-align: center; margin-bottom: 3rem; }
  .doc-types-header .section-label { justify-content: center; }
  .doc-types-header .section-label::before { display: none; }
  .doc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  }
  .doc-type {
    background: var(--white); border: 1px solid rgba(13,27,42,0.08);
    border-radius: 4px; padding: 1.5rem 1.25rem;
    text-align: center; transition: all 0.25s;
    cursor: default;
  }
  .doc-type:hover { border-color: var(--gold); background: var(--navy); }
  .doc-type:hover .doc-type-name { color: var(--white); }
  .doc-type:hover .doc-type-icon { background: rgba(201,168,76,0.2); }
  .doc-type-icon {
    width: 48px; height: 48px; background: var(--cream-dark);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 1.25rem; transition: background 0.25s;
  }
  .doc-type-name {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    color: var(--navy); transition: color 0.25s;
  }
  .doc-type--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    text-align: left;
    align-items: center;
    padding: 2rem 2.5rem;
  }
  .doc-type--featured .doc-type-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
  }
  .doc-type--featured .doc-type-icon { margin: 0; }
  .doc-type--featured .doc-type-name { font-size: 1.1rem; }
  .doc-type-desc {
    font-size: 0.82rem; line-height: 1.7; color: var(--slate);
    transition: color 0.25s;
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
  }
  .doc-type--featured:hover .doc-type-desc { color: rgba(255,255,255,0.65); }

  /* ── GUARANTEE SECTION ── */
  .guarantee-section {
    background: var(--white);
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
    padding: 5rem 5%;
  }
  .guarantee-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .guarantee-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .guarantee-header .section-label {
    color: var(--gold); justify-content: center;
  }
  .guarantee-header .section-label::before { display: none; }
  .guarantee-header .section-title { color: var(--navy); }

  .guarantee-hero {
    display: flex; gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
  }
  .guarantee-seal {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
  }
  .guarantee-seal-num {
    font-family: var(--font-display);
    font-size: 5rem; font-weight: 500;
    line-height: 1; color: var(--navy);
    text-align: center; width: 100%;
  }
  .guarantee-seal-word {
    font-size: 0.7rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--slate);
    margin-top: 0.6rem;
  }
  .guarantee-seal-sub {
    font-size: 0.55rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    margin-top: 0.25rem;
  }
  .guarantee-lead p {
    font-size: 0.95rem; line-height: 1.8;
    color: var(--slate);
  }
  .guarantee-lead p + p { margin-top: 0.9rem; }
  .guarantee-lead sup,
  .guarantee-item-title sup { color: var(--gold); font-weight: 700; font-size: 0.65em; }
  .guarantee-check circle { fill: rgba(201,168,76,0.12); }

  .guarantee-divider {
    margin: 3rem auto;
    max-width: 80px;
    height: 1px;
    background: rgba(201,168,76,0.5);
  }

  .guarantee-coverage h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--navy); text-align: center;
    margin-bottom: 2rem;
  }
  .guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    list-style: none;
  }
  .guarantee-item {
    display: flex; gap: 1rem;
    align-items: flex-start;
    padding: 0.4rem 0;
  }
  .guarantee-check {
    flex: 0 0 auto; width: 24px; height: 24px; margin-top: 2px;
  }
  .guarantee-item-title {
    font-weight: 600; color: var(--navy);
    font-size: 0.95rem; line-height: 1.35;
  }
  .guarantee-item-desc {
    font-size: 0.84rem; color: var(--slate);
    margin-top: 0.2rem; line-height: 1.65;
  }

  .guarantee-closing {
    margin-top: 2.5rem;
    text-align: center;
  }
  .guarantee-closing p {
    font-size: 0.92rem;
    color: var(--slate);
    max-width: 540px; margin: 0 auto;
    line-height: 1.75;
  }
  .guarantee-footnote {
    margin: 2rem auto 0;
    max-width: 540px;
    font-size: 0.72rem; color: var(--slate);
    text-align: center; line-height: 1.65;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(13,27,42,0.1);
  }
  .guarantee-footnote sup { color: var(--gold); font-weight: 700; }

  @media (max-width: 900px) {
    .guarantee-section { padding: 4rem 5%; }
    .guarantee-hero { flex-direction: column; text-align: center; gap: 1.5rem; }
    .guarantee-seal { min-width: auto; }
    .guarantee-seal-num { font-size: 4rem; }
    .guarantee-lead p { text-align: left; font-size: 0.9rem; }
    .guarantee-grid { grid-template-columns: 1fr; gap: 1rem; }
    .guarantee-coverage h3 { font-size: 1.2rem; }
    .guarantee-closing p { font-size: 0.88rem; }
  }
  @media (max-width: 480px) {
    .guarantee-section { padding: 3rem 4%; }
    .guarantee-item-title { font-size: 0.88rem; }
    .guarantee-item-desc { font-size: 0.78rem; }
    .guarantee-closing p { font-size: 0.85rem; max-width: 100%; }
  }

  /* ── VIDEO SECTION ── */
  .video-section {
    background: var(--navy);
    padding: 5rem 5%;
  }
  .video-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .video-inner .section-label {
    color: var(--gold);
    justify-content: center;
  }
  .video-inner .section-label::before { display: none; }
  .video-inner .section-title {
    color: var(--white);
    margin-bottom: 2rem;
  }
  .video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
    cursor: pointer;
  }
  .video-wrap video {
    width: 100%;
    display: block;
  }
  .video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(201,168,76,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s, visibility 0.3s, background 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 3;
  }
  .video-play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--navy);
    margin-left: 4px;
  }
  .video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    animation: playPulse 2s ease infinite;
  }
  .video-wrap:hover .video-play-btn { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }
  .video-wrap.playing .video-play-btn,
  .video-wrap.playing:hover .video-play-btn { opacity: 0; visibility: hidden; }
  .video-wrap.paused .video-play-btn { opacity: 1; visibility: visible; }
  .video-wrap.playing .video-play-btn::before,
  .video-wrap.paused .video-play-btn::before { animation: none; }
  @keyframes playPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
  }
  .video-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(13,27,42,0.8));
    padding: 2rem 1rem 0.75rem;
    display: flex; align-items: center; gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 4;
  }
  .video-wrap.playing .video-controls,
  .video-wrap.paused .video-controls { opacity: 1; }
  .video-progress-bar {
    flex: 1; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: transform 0.15s;
  }
  .video-progress-bar:hover { transform: scaleY(1.5); }
  .video-progress-fill {
    height: 100%; width: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.1s linear;
    position: relative;
  }
  .video-progress-fill::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .video-progress-bar:hover .video-progress-fill::after { opacity: 1; }
  .video-time {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: right;
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #162840 100%);
    text-align: center; padding: 7rem 8%;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .cta-section .section-label { justify-content: center; }
  .cta-section .section-label::before { display: none; }
  .cta-section .section-title { color: var(--white); margin-bottom: 1.25rem; }
  .cta-section .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 2.5rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: #080f18;
    color: rgba(255,255,255,0.4);
    padding: 3rem 8%;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
  }
  .footer-brand .nav-logo { font-size: 1.3rem; display: block; margin-bottom: 0.75rem; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.7; }
  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem;
  }
  .footer-disclaimer {
    font-size: 0.72rem; line-height: 1.6; color: rgba(255,255,255,0.25);
    max-width: 600px;
  }

  .footer-contact {
    max-width: 1100px; margin: 0 auto 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-contact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; margin-bottom: 1.5rem;
  }
  .footer-contact-grid div {
    font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.4);
  }
  .footer-contact-grid strong { color: rgba(255,255,255,0.65); }
  .footer-contact-grid a {
    color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
  }
  .footer-contact-grid a:hover { color: var(--gold); }
  .footer-book { text-align: center; padding-top: 0.5rem; }

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

  /* ── HAMBURGER & MOBILE MENU ── */
  .nav-right { display: flex; align-items: center; gap: 1rem; }
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 9px;
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(12px);
    padding: 4rem 5% 2rem;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .mobile-menu.open {
    transform: translateY(0);
  }
  .mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.5rem;
  }
  .mobile-menu a:hover { color: var(--gold); }

  @media (max-width: 900px) {
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
  }

  /* ── CALL BUBBLE ── */
  .call-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    padding: 0.9rem 1.4rem 0.9rem 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(201,168,76,0.4), 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: bubblePulse 2s infinite;
  }
  .call-bubble:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(201,168,76,0.5), 0 4px 12px rgba(0,0,0,0.2);
  }
  .call-bubble svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .call-bubble-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  @keyframes bubblePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(201,168,76,0.4), 0 2px 8px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 32px rgba(201,168,76,0.6), 0 2px 8px rgba(0,0,0,0.2), 0 0 0 8px rgba(201,168,76,0.15); }
  }
  @media (max-width: 600px) {
    .call-bubble { bottom: 1.2rem; right: 1.2rem; padding: 0.8rem; }
    .call-bubble-label { display: none; }
    .call-bubble { border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    /* Global mobile padding fix — 8% → 5% */
    section { padding: 4rem 5%; }
    .gallery { padding: 3.5rem 5%; }
    .service-model { padding: 3.5rem 5%; }
    .disclosure-bar { padding: 0.9rem 5%; }
    .trust-bar { padding: 1rem 5%; gap: 1.5rem; }
    .cta-section { padding: 4rem 5%; }
    footer { padding: 2.5rem 5%; }
    .why-us-inner { max-width: 100%; }

    /* Nav */
    nav { padding: 0.9rem 4%; }
    nav .nav-links { display: none; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.72rem; }
    .hamburger { padding: 8px 7px; }

    /* Hero */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { display: none; }
    .hero-content { padding: 5rem 5% 1.5rem; }
    .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .hero-sub { font-size: 0.92rem; line-height: 1.7; }
    .hero-eyebrow { font-size: 0.65rem; margin-bottom: 1rem; }
    .hero-stats {
      position: relative; bottom: auto; left: auto;
      padding: 1.25rem 5% 2rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }
    .stat-item { text-align: center; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }

    /* About */
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { display: none; }
    .about-photo-mobile {
      display: block;
      margin-bottom: 1.5rem;
    }
    .about-photo-mobile .diane-photo-wrap img {
      max-height: 320px;
      object-fit: cover;
      object-position: center 20%;
    }
    .about-text p { font-size: 0.9rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-row: span 1; max-height: 250px; }

    /* Services */
    .services-header { grid-template-columns: 1fr; gap: 1rem; }

    /* Why Us */
    .why-us .why-features { grid-template-columns: 1fr; gap: 1rem; }
    .why-feature { padding: 1rem; }
    .why-feature h4 { font-size: 0.95rem; }
    .why-feature p { font-size: 0.82rem; }

    /* Reviews */
    .reviews-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .reviews-rating-num { font-size: 2.2rem; }
    .reviews-rating-stars { font-size: 0.8rem; }
    .review-card { flex: 0 0 280px; padding: 1.4rem; }
    .review-header { gap: 0.6rem; margin-bottom: 0.85rem; }
    .review-avatar, .review-avatar-placeholder { width: 38px; height: 38px; }
    .review-name { font-size: 0.84rem; }
    .review-text { font-size: 0.84rem; line-height: 1.65; }
    .review-date { margin-top: 1rem; padding-top: 0.6rem; }
    .scroll-controls { display: none; }

    /* Docs */
    .doc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .doc-type { padding: 1.25rem 1rem; }
    .doc-type-name { font-size: 0.9rem; }
    .doc-type--featured {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 1.5rem 1.25rem;
      gap: 1rem;
    }
    .doc-type--featured .doc-type-left { min-width: auto; }
    .doc-type-desc {
      font-size: 0.78rem;
      border-left: none;
      border-top: 2px solid var(--gold);
      padding-left: 0;
      padding-top: 1rem;
    }

    /* Video */
    .video-section { padding: 3.5rem 5%; }

    /* Steps */
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }

    /* CTA */
    .cta-section .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-contact-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-disclaimer { max-width: 100%; }

    /* Section titles */
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-sub { font-size: 0.9rem; }
  }

  @media (max-width: 480px) {
    section { padding: 3rem 4%; }
    .gallery { padding: 3rem 4%; }
    .service-model { padding: 3rem 4%; }
    .cta-section { padding: 3rem 4%; }
    footer { padding: 2rem 4%; }
    nav { padding: 0.75rem 4%; }

    .hero-content { padding: 4.5rem 4% 1.25rem; }
    .hero-stats { padding: 1rem 4% 1.75rem; }
    .hero h1 { font-size: 1.8rem; line-height: 1.15; }
    .hero-sub { font-size: 0.88rem; margin-bottom: 1.75rem; }

    .about-photo-mobile .diane-photo-wrap img { max-height: 280px; }
    .about-text p { font-size: 0.88rem; }
    .credential-group li { font-size: 0.82rem; }

    .services-grid { grid-template-columns: 1fr; }
    .doc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .doc-type { padding: 1rem 0.75rem; }
    .doc-type-icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
    .doc-type-name { font-size: 0.82rem; }
    .doc-type--featured { grid-column: 1 / -1; padding: 1.25rem 1rem; gap: 0.75rem; }
    .doc-type-desc { font-size: 0.72rem; line-height: 1.6; }
    .video-section { padding: 3rem 4%; }

    .ai-comparison-item { grid-template-columns: 1fr; }
    .ai-comparison-them { border-right: none; border-bottom: 1px solid rgba(13,27,42,0.08); }
    .ai-article p, .ai-article li { font-size: 0.88rem; }
    .ai-closing { padding: 1.5rem; }

    .review-card { flex: 0 0 260px; padding: 1.15rem; }
    .review-avatar, .review-avatar-placeholder { width: 34px; height: 34px; font-size: 0.95rem; }
    .review-name { font-size: 0.8rem; }
    .review-location { font-size: 0.68rem; }
    .review-text { font-size: 0.82rem; line-height: 1.6; }
    .reviews-rating-num { font-size: 2rem; }

    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-contact-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .trust-bar { gap: 1rem; padding: 0.75rem 4%; }
    .trust-item { font-size: 0.72rem; }

    .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); margin-bottom: 0.75rem; }

    .btn-primary, .btn-outline { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
    .cta-actions { gap: 0.75rem; }

    .why-feature-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .scroll-controls { gap: 0.5rem; }
    .scroll-btn { width: 36px; height: 36px; font-size: 1rem; }
  }
