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

  :root {
    --ink: #1A1714;
    --ink-soft: #2E2A27;
    --cream: #F6F1E9;
    --bone: #EDE6D8;
    --sand: #BFA98C;
    --sand-light: #D9CCBA;
    --slate: #496472;
    --slate-light: #6A8A97;
    --text: #3A342F;
    --text-muted: #7A6F67;
    --white: #FEFCF9;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --nav-h: 72px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-sans); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    background: rgba(250, 247, 241, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bone);
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
  }
  .nav-logo span { color: var(--slate); }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted);
    text-decoration: none; transition: color 0.2s; cursor: pointer;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--white) !important;
    background: var(--ink); padding: 10px 22px; border-radius: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--slate) !important; color: var(--white) !important; }

  /* ─── PAGE ROUTING ─── */
  .page { display: none; min-height: 100vh; padding-top: var(--nav-h); }
  .page.active { display: block; }

  /* ─── SHARED COMPONENTS ─── */
  .section { padding: 96px 48px; max-width: 1280px; margin: 0 auto; }
  .section-sm { padding: 64px 48px; max-width: 1280px; margin: 0 auto; }
  .eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--slate);
    margin-bottom: 16px; display: block;
  }
  h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
  h1 { font-size: clamp(52px, 7vw, 96px); }
  h2 { font-size: clamp(36px, 4.5vw, 60px); }
  h3 { font-size: clamp(24px, 3vw, 36px); }
  h4 { font-size: 22px; }
  p { font-family: var(--font-sans); font-weight: 300; color: var(--text); }

  .btn-primary {
    display: inline-block; font-family: var(--font-sans);
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; cursor: pointer;
    background: var(--ink); color: var(--white);
    padding: 16px 36px; border-radius: 2px; border: none;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-primary:hover { background: var(--slate); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-outline {
    display: inline-block; font-family: var(--font-sans);
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; cursor: pointer;
    background: transparent; color: var(--ink);
    padding: 14px 34px; border-radius: 2px; border: 1.5px solid var(--ink);
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--ink); color: var(--white); }

  /* Photo placeholder (swap for real images in Framer) */
  .photo-block {
    background: var(--bone); border-radius: 2px; overflow: hidden;
    position: relative; display: flex; align-items: flex-end;
  }
  .photo-block::before {
    content: attr(data-label);
    position: absolute; top: 12px; left: 12px;
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--sand); background: rgba(26,23,20,0.5);
    padding: 4px 8px; border-radius: 2px; z-index: 1;
  }
  /* Actual photo backgrounds using uploaded images */
  .photo-hero { background: var(--ink-soft) url("/photos/hero-1.jpg") center/cover no-repeat; }
  .photo-inspection { background: var(--ink-soft) url("/photos/hero-2.jpg") center/cover no-repeat; }
  .photo-studs { background: var(--ink-soft) url("/photos/hero-3.jpg") center/cover no-repeat; }
  .photo-couple { background: var(--ink-soft) url("/photos/hero-4.jpg") center/cover no-repeat; }
  .photo-porch { background: var(--ink-soft) url("/photos/hero-5.jpg") center/cover no-repeat; }
  .photo-family { background: var(--ink-soft) url("/photos/hero-6.jpg") center/cover no-repeat; }
  .photo-sons { background: var(--ink-soft) url("/photos/hero-7.jpg") center/cover no-repeat; }
  .photo-kitchen { background: var(--ink-soft) url("/photos/hero-8.jpg") center/cover no-repeat; }
  .photo-portrait { background: var(--ink-soft) url("/photos/hero-9.jpg") center/cover no-repeat; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.5);
    padding: 64px 48px 40px;
  }
  footer .footer-inner { max-width: 1280px; margin: 0 auto; }
  footer .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  footer h4 { font-family: var(--font-serif); color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 16px; }
  footer p, footer a { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.45); text-decoration: none; display: block; }
  footer a:hover { color: var(--sand); }
  footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.06em; }
  footer .footer-logo { font-family: var(--font-serif); font-size: 28px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }

  /* ─────────────────────────────────────────
     HOME PAGE
  ───────────────────────────────────────── */
  .home-hero {
    height: calc(100vh - var(--nav-h));
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--ink);
  }
  .home-hero-left {
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; z-index: 2;
  }
  .home-hero-right {
    position: relative; overflow: hidden;
  }
  .home-hero-right .photo-block {
    position: absolute; inset: 0; border-radius: 0;
  }
  .home-hero-right .photo-block::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,23,20,0.3) 0%, transparent 40%);
  }
  .hero-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 24px;
  }
  .hero-name {
    font-family: var(--font-serif); font-size: clamp(60px, 8vw, 108px);
    font-weight: 300; line-height: 0.95; color: var(--white);
    margin-bottom: 32px;
  }
  .hero-name em { font-style: italic; color: var(--sand-light); }
  .hero-desc {
    font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6);
    max-width: 400px; line-height: 1.7; margin-bottom: 40px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-btns .btn-primary { background: var(--sand); color: var(--ink); }
  .hero-btns .btn-primary:hover { background: var(--sand-light); }
  .hero-btns .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
  .hero-btns .btn-outline:hover { border-color: var(--white); background: transparent; color: var(--white); }
  .hero-scroll {
    margin-top: 64px; display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3);
  }
  .hero-scroll::before { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.2); }

  /* Stats strip */
  .stats-strip {
    background: var(--bone); border-bottom: 1px solid var(--sand-light);
    padding: 32px 48px;
  }
  .stats-strip-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border-left: 1px solid var(--sand-light);
  }
  .stat-item {
    padding: 0 40px; border-right: 1px solid var(--sand-light);
    text-align: center;
  }
  .stat-num {
    font-family: var(--font-serif); font-size: 44px; font-weight: 300;
    color: var(--ink); line-height: 1; display: block; margin-bottom: 4px;
  }
  .stat-label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); font-weight: 400;
  }

  /* What I Do */
  .what-i-do-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--bone); border: 1px solid var(--bone);
    margin-top: 64px;
  }
  .what-card {
    background: var(--white); padding: 48px 40px;
    position: relative; overflow: hidden; cursor: pointer;
    transition: background 0.3s;
  }
  .what-card:hover { background: var(--cream); }
  .what-card-num {
    font-family: var(--font-serif); font-size: 80px; font-weight: 300;
    color: var(--bone); line-height: 1; position: absolute;
    top: 20px; right: 24px; pointer-events: none;
  }
  .what-card-icon {
    width: 40px; height: 40px; background: var(--ink);
    border-radius: 50%; margin-bottom: 24px; display: flex;
    align-items: center; justify-content: center;
  }
  .what-card-icon span { color: var(--white); font-size: 18px; }
  .what-card h3 { font-size: 26px; margin-bottom: 12px; color: var(--ink); }
  .what-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
  .what-card-link {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate); font-weight: 500; text-decoration: none; cursor: pointer;
  }
  .what-card-link:hover { color: var(--ink); }

  /* Story section */
  .story-section {
    background: var(--ink); padding: 96px 48px; overflow: hidden;
  }
  .story-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .story-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-photo { border-radius: 2px; overflow: hidden; }
  .story-photo:first-child { grid-row: span 2; }
  .story-text { padding: 20px 0; }
  .story-text .eyebrow { color: var(--sand); }
  .story-text h2 { color: var(--white); font-size: clamp(36px, 4vw, 56px); margin-bottom: 24px; }
  .story-text p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
  .story-text .btn-outline { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); margin-top: 16px; }
  .story-text .btn-outline:hover { border-color: var(--sand); background: transparent; color: var(--sand); }

  /* How it works */
  .hiw-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
    margin-top: 64px;
  }
  .hiw-step { padding: 40px 36px; border: 1px solid var(--bone); border-radius: 2px; position: relative; }
  .hiw-step-num {
    font-family: var(--font-serif); font-size: 64px; font-weight: 300;
    color: var(--bone); line-height: 1; margin-bottom: 20px;
  }
  .hiw-step h4 { color: var(--ink); margin-bottom: 12px; font-size: 20px; }
  .hiw-step p { font-size: 14px; color: var(--text-muted); }

  /* CTA band */
  .cta-band {
    background: var(--cream); border-top: 1px solid var(--bone);
    border-bottom: 1px solid var(--bone); padding: 80px 48px; text-align: center;
  }
  .cta-band h2 { font-size: clamp(32px, 4vw, 54px); color: var(--ink); margin-bottom: 16px; }
  .cta-band p { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cta-band .btn-primary { margin-right: 12px; }

  /* ─────────────────────────────────────────
     ABOUT PAGE
  ───────────────────────────────────────── */
  .about-hero {
    background: var(--cream); padding: 80px 48px 0;
    border-bottom: 1px solid var(--bone);
  }
  .about-hero-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: end;
  }
  .about-hero-text { padding-bottom: 64px; }
  .about-hero-text h1 { font-size: clamp(48px, 6vw, 80px); color: var(--ink); margin-bottom: 24px; }
  .about-hero-text p { font-size: 17px; color: var(--text-muted); max-width: 440px; line-height: 1.75; }
  .about-photo { height: 520px; border-radius: 2px 2px 0 0; }

  .about-body {
    padding: 80px 48px; max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  }
  .about-sidebar .eyebrow { margin-bottom: 24px; }
  .about-sidebar-link {
    display: block; font-size: 13px; color: var(--text-muted);
    padding: 10px 0; border-bottom: 1px solid var(--bone);
    text-decoration: none; cursor: pointer; transition: color 0.2s;
  }
  .about-sidebar-link:hover { color: var(--ink); }
  .about-sidebar-link.active { color: var(--slate); font-weight: 500; }

  .about-content h2 { color: var(--ink); margin-bottom: 24px; font-size: clamp(32px, 3.5vw, 48px); }
  .about-content p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
  .about-content p.lead { font-size: 20px; font-family: var(--font-serif); font-weight: 300; color: var(--ink-soft); line-height: 1.6; margin-bottom: 32px; }
  .about-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 48px 0; }
  .about-photo-sm { height: 280px; border-radius: 2px; }

  .about-numbers { background: var(--ink); padding: 80px 48px; }
  .about-numbers-inner { max-width: 1280px; margin: 0 auto; }
  .about-numbers h2 { color: var(--white); margin-bottom: 48px; font-size: 40px; }
  .about-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
  .about-num .num { font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: var(--sand); display: block; }
  .about-num .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .about-num .sublabel { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 4px; }

  /* Philosophy cards */
  .philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .phil-card { background: var(--cream); border: 1px solid var(--bone); padding: 32px; border-radius: 2px; }
  .phil-card h4 { font-size: 18px; color: var(--ink); margin-bottom: 12px; }
  .phil-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ─────────────────────────────────────────
     SELL AS-IS PAGE
  ───────────────────────────────────────── */
  .asis-hero {
    background: var(--ink); padding: 80px 48px;
    min-height: 60vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .asis-hero-bg {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    opacity: 0.25;
  }
  .asis-hero-bg .photo-block { border-radius: 0; height: 100%; }
  .asis-hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
  .asis-hero h1 { color: var(--white); font-size: clamp(44px, 6vw, 80px); max-width: 700px; margin-bottom: 24px; }
  .asis-hero h1 em { color: var(--sand-light); font-style: italic; }
  .asis-hero p { color: rgba(255,255,255,0.55); font-size: 17px; max-width: 520px; line-height: 1.75; margin-bottom: 40px; }
  .asis-hero .trust-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
  .trust-pill {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  }

  .asis-why { padding: 80px 48px; background: var(--white); }
  .asis-why-inner { max-width: 1280px; margin: 0 auto; }
  .asis-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
  .asis-why-photo { height: 480px; border-radius: 2px; }
  .compare-table { width: 100%; border-collapse: collapse; }
  .compare-table th { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--bone); }
  .compare-table th:first-child { color: var(--slate); }
  .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--bone); font-size: 14px; color: var(--text); }
  .compare-table td:first-child { font-weight: 500; color: var(--ink); }
  .compare-table .check { color: #2A7A4B; font-weight: 500; }
  .compare-table .cross { color: #B84040; }
  .compare-table tr:hover td { background: var(--cream); }

  .asis-how-it-works { background: var(--cream); border-top: 1px solid var(--bone); border-bottom: 1px solid var(--bone); padding: 80px 48px; }
  .asis-hiw-inner { max-width: 1280px; margin: 0 auto; }

  /* Multi-step form */
  .asis-form-section { background: var(--ink); padding: 96px 48px; }
  .asis-form-inner { max-width: 800px; margin: 0 auto; }
  .asis-form-inner .eyebrow { color: var(--sand); }
  .asis-form-inner h2 { color: var(--white); font-size: clamp(32px, 4vw, 52px); margin-bottom: 12px; }
  .asis-form-inner > p { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 48px; }

  .form-steps { display: flex; gap: 0; margin-bottom: 48px; position: relative; }
  .form-steps::before {
    content: ''; position: absolute; top: 16px; left: 16px; right: 16px;
    height: 1px; background: rgba(255,255,255,0.1);
  }
  .form-step-indicator {
    flex: 1; text-align: center; position: relative;
  }
  .step-dot {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2); background: var(--ink);
    margin: 0 auto 8px; display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: rgba(255,255,255,0.4); position: relative; z-index: 1;
    transition: all 0.3s;
  }
  .step-dot.active { border-color: var(--sand); background: var(--sand); color: var(--ink); }
  .step-dot.done { border-color: var(--sand); background: transparent; color: var(--sand); }
  .step-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
  .step-label.active { color: var(--sand); }

  .form-panel { display: none; }
  .form-panel.active { display: block; animation: fadeUp 0.3s ease; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); padding: 14px 18px; font-family: var(--font-sans);
    font-size: 15px; border-radius: 2px; outline: none; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sand); }
  .form-group select option { background: #1A1714; }
  .form-group textarea { min-height: 100px; resize: vertical; }

  .radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .radio-option {
    border: 1px solid rgba(255,255,255,0.12); padding: 14px 18px;
    border-radius: 2px; cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; gap: 10px;
  }
  .radio-option:hover { border-color: rgba(255,255,255,0.3); }
  .radio-option input { width: auto; display: none; }
  .radio-option span { font-size: 14px; color: rgba(255,255,255,0.6); }
  .radio-option.selected { border-color: var(--sand); background: rgba(191,169,140,0.1); }
  .radio-option.selected span { color: var(--white); }

  .form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
  .form-back { background: transparent; border: none; color: rgba(255,255,255,0.4); font-size: 13px; cursor: pointer; font-family: var(--font-sans); }
  .form-back:hover { color: rgba(255,255,255,0.7); }
  .form-note { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 20px; }

  /* ─────────────────────────────────────────
     DEAL ROOM PAGE
  ───────────────────────────────────────── */
  .dealroom-hero {
    background: var(--ink-soft); min-height: 70vh;
    display: flex; align-items: center; padding: 80px 48px;
    position: relative; overflow: hidden;
  }
  .dealroom-hero::before {
    content: 'DEAL\AROOM'; white-space: pre; position: absolute;
    font-family: var(--font-serif); font-size: 260px; font-weight: 300;
    color: rgba(255,255,255,0.03); right: -40px; bottom: -40px; line-height: 0.85;
    pointer-events: none; letter-spacing: -10px;
  }
  .dealroom-hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
  .dealroom-hero h1 { color: var(--white); font-size: clamp(48px, 7vw, 96px); max-width: 760px; margin-bottom: 24px; }
  .dealroom-hero h1 em { color: var(--sand-light); font-style: italic; }
  .dealroom-hero p { color: rgba(255,255,255,0.5); font-size: 17px; max-width: 520px; line-height: 1.75; margin-bottom: 40px; }

  .dealroom-what { padding: 80px 48px; max-width: 1280px; margin: 0 auto; }
  .dealroom-what h2 { color: var(--ink); margin-bottom: 48px; }
  .dealroom-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .dealroom-card {
    border: 1px solid var(--bone); padding: 40px 32px;
    border-radius: 2px; background: var(--white);
  }
  .dealroom-card-icon {
    width: 48px; height: 48px; background: var(--slate);
    border-radius: 2px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .dealroom-card h4 { font-size: 20px; color: var(--ink); margin-bottom: 12px; }
  .dealroom-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  .dealroom-access { background: var(--cream); border-top: 1px solid var(--bone); padding: 80px 48px; }
  .dealroom-access-inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .dealroom-access h2 { color: var(--ink); margin-bottom: 16px; font-size: clamp(28px, 3.5vw, 44px); }
  .dealroom-access p { color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }

  .access-form { text-align: left; }
  .access-form .form-group label { color: var(--text-muted); }
  .access-form input, .access-form select {
    width: 100%; background: var(--white); border: 1.5px solid var(--bone);
    color: var(--ink); padding: 14px 18px; font-family: var(--font-sans);
    font-size: 15px; border-radius: 2px; outline: none; transition: border-color 0.2s;
    margin-bottom: 14px;
  }
  .access-form input:focus, .access-form select:focus { border-color: var(--slate); }
  .access-form .btn-primary { width: 100%; text-align: center; display: block; }

  /* ─────────────────────────────────────────
     WORK WITH ME PAGE
  ───────────────────────────────────────── */
  .wwm-hero { background: var(--cream); padding: 80px 48px; border-bottom: 1px solid var(--bone); }
  .wwm-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .wwm-hero h1 { font-size: clamp(40px, 5vw, 72px); color: var(--ink); margin-bottom: 20px; }
  .wwm-hero p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
  .wwm-photo { height: 460px; border-radius: 2px; }

  .wwm-services { padding: 80px 48px; max-width: 1280px; margin: 0 auto; }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--bone); border: 1px solid var(--bone); margin-top: 48px; }
  .service-item { background: var(--white); padding: 48px 40px; }
  .service-item:hover { background: var(--cream); }
  .service-item h4 { font-size: 22px; color: var(--ink); margin-bottom: 12px; }
  .service-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .service-tag {
    display: inline-block; font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase; background: var(--slate); color: var(--white);
    padding: 4px 10px; border-radius: 2px; margin-bottom: 16px;
  }

  .wwm-markets { background: var(--ink); padding: 64px 48px; }
  .wwm-markets-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
  .wwm-markets h3 { color: rgba(255,255,255,0.85); font-size: 32px; }
  .market-list { display: flex; gap: 32px; }
  .market-item { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

  /* ─────────────────────────────────────────
     BLOG PAGE
  ───────────────────────────────────────── */
  .blog-hero { background: var(--cream); padding: 64px 48px 48px; border-bottom: 1px solid var(--bone); }
  .blog-hero-inner { max-width: 1280px; margin: 0 auto; }
  .blog-hero h1 { font-size: clamp(40px, 5vw, 64px); color: var(--ink); margin-bottom: 12px; }
  .blog-hero p { color: var(--text-muted); font-size: 16px; }

  .blog-grid-section { padding: 64px 48px; max-width: 1280px; margin: 0 auto; }
  .blog-category-nav { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
  .blog-cat-btn {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 18px; border-radius: 100px; border: 1px solid var(--bone);
    background: var(--white); color: var(--text-muted); cursor: pointer;
    transition: all 0.2s;
  }
  .blog-cat-btn:hover, .blog-cat-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .blog-card { border-radius: 2px; overflow: hidden; }
  .blog-card:hover .blog-card-image { transform: scale(1.03); }
  .blog-card-image-wrap { overflow: hidden; border-radius: 2px 2px 0 0; }
  .blog-card-image { height: 220px; background: var(--bone); transition: transform 0.4s ease; }
  .blog-card-body { padding: 20px 0; }
  .blog-cat-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); font-weight: 500; display: block; margin-bottom: 8px; }
  .blog-card h4 { font-size: 20px; color: var(--ink); margin-bottom: 8px; line-height: 1.3; cursor: pointer; }
  .blog-card h4:hover { color: var(--slate); }
  .blog-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
  .blog-card-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }

  .blog-featured { grid-column: span 3; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; border: 1px solid var(--bone); border-radius: 2px; overflow: hidden; margin-bottom: 12px; }
  .blog-featured-image { height: 360px; background: var(--bone); }
  .blog-featured-body { padding: 48px 40px 48px 0; display: flex; flex-direction: column; justify-content: center; }
  .blog-featured-body h3 { font-size: 32px; color: var(--ink); margin-bottom: 12px; cursor: pointer; }
  .blog-featured-body h3:hover { color: var(--slate); }
  .blog-featured-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

  /* ─────────────────────────────────────────
     CONTACT PAGE
  ───────────────────────────────────────── */
  .contact-hero { background: var(--cream); padding: 80px 48px; border-bottom: 1px solid var(--bone); }
  .contact-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-hero h1 { font-size: clamp(40px, 5vw, 72px); color: var(--ink); margin-bottom: 20px; }
  .contact-hero p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 40px; }
  .contact-photo { height: 480px; border-radius: 2px; }
  .contact-details { display: flex; flex-direction: column; gap: 24px; }
  .contact-detail-item { border-bottom: 1px solid var(--bone); padding-bottom: 20px; }
  .contact-detail-item label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 4px; }
  .contact-detail-item a { font-size: 16px; color: var(--ink); text-decoration: none; font-family: var(--font-serif); }
  .contact-detail-item a:hover { color: var(--slate); }

  .contact-form-section { padding: 80px 48px; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-form-col {}
  .contact-form-col h2 { font-size: 36px; color: var(--ink); margin-bottom: 8px; }
  .contact-form-col > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
  .light-form .form-group label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
  .light-form input, .light-form select, .light-form textarea {
    width: 100%; background: var(--white); border: 1.5px solid var(--bone);
    color: var(--ink); padding: 14px 18px; font-family: var(--font-sans);
    font-size: 15px; border-radius: 2px; outline: none; transition: border-color 0.2s;
    margin-bottom: 14px; -webkit-appearance: none;
  }
  .light-form input:focus, .light-form select:focus, .light-form textarea:focus { border-color: var(--slate); }
  .light-form textarea { min-height: 120px; resize: vertical; }
  .light-form .btn-primary { width: 100%; text-align: center; display: block; }

  .contact-quick-links { display: flex; flex-direction: column; gap: 16px; }
  .quick-link-card {
    border: 1px solid var(--bone); padding: 28px 28px; border-radius: 2px;
    cursor: pointer; transition: all 0.2s; background: var(--white);
  }
  .quick-link-card:hover { border-color: var(--slate); background: var(--cream); }
  .quick-link-card h4 { font-size: 18px; color: var(--ink); margin-bottom: 6px; }
  .quick-link-card p { font-size: 13px; color: var(--text-muted); }
  .quick-link-card .arrow { font-size: 20px; color: var(--slate); float: right; margin-top: -24px; }

  /* ─── MOBILE NAV ─── */
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .ham-bar { width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: all 0.3s; display: block; }

  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--bone); gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--bone); width: 100%; }
    .hamburger { display: block; }
    .home-hero { grid-template-columns: 1fr; min-height: 90vh; }
    .home-hero-right { height: 340px; position: relative; }
    .home-hero-left { padding: 40px 24px 48px; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; }
    .what-i-do-grid { grid-template-columns: 1fr; }
    .story-inner { grid-template-columns: 1fr; }
    .section { padding: 64px 24px; }
    .about-body { grid-template-columns: 1fr; gap: 32px; }
    .about-numbers-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .asis-why-grid { grid-template-columns: 1fr; }
    .dealroom-cards { grid-template-columns: 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }
    .wwm-hero-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; grid-column: span 1; }
    .blog-featured-body { padding: 24px; }
    .contact-hero-inner { grid-template-columns: 1fr; }
    .contact-form-section { grid-template-columns: 1fr; }
    .wwm-markets-inner { flex-direction: column; gap: 24px; }
    .market-list { flex-wrap: wrap; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .footer .footer-top { grid-template-columns: 1fr; }
    .about-hero-inner { grid-template-columns: 1fr; }
  }

/* Active nav link */
.nav-links a.nav-active { color: var(--ink); font-weight: 500; }

/* Footer layout */
.footer { background: var(--ink); color: var(--white); padding: 64px 48px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; max-width: 1280px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer { padding: 48px 24px 24px; } }
