  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #B4935A;
    --gold-light: #D4B483;
    --dark: #141412;
    --dark-2: #1E1E1B;
    --dark-3: #2A2A26;
    --cream: #F7F3EC;
    --cream-2: #EDE8DF;
    --text: #1A1A17;
    --text-muted: #6B6860;
    --text-faint: #A09D97;
    --border: rgba(26,26,23,0.1);
    --border-dark: rgba(247,243,236,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: #fff;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── UTILITY ─────────────────────────────────────── */
  .gold { color: var(--gold); }
  .serif { font-family: var(--serif); }
  .tag {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    display: flex; align-items: center; gap: 10px;
  }
  .tag::before { content:''; width: 22px; height: 0.5px; background: var(--gold); display:block; flex-shrink:0; }
  .section-pad { padding: 6rem 6vw; }

  /* ─── NAV ─────────────────────────────────────────── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 6vw;
  }
  .nav-logo {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: none; border: 0.5px solid var(--text); color: var(--text);
    padding: 9px 20px; border-radius: 2px; cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none; display: inline-block;
  }
  .nav-cta:hover { background: var(--text); color: #fff; }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span {
    display: block; width: 22px; height: 0.5px; background: var(--text);
    margin: 5px 0; transition: all 0.3s;
  }

  /* ─── HERO ────────────────────────────────────────── */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 62px);
    align-items: center;
  }
  .hero-left {
    padding: 5rem 6vw 5rem;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 0.5px solid var(--border);
  }
  .hero-tag {
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
  }
  .hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .hero-headline em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; align-items: center; gap: 1.75rem; }
  .btn-primary {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: var(--text); color: #fff;
    border: none; padding: 14px 30px; border-radius: 2px; cursor: pointer;
    transition: background 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold); }
  .btn-ghost {
    font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px; text-decoration: none;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); }
  .btn-ghost .arrow { transition: transform 0.2s; }
  .btn-ghost:hover .arrow { transform: translateX(4px); }
  .hero-right {
    height: 100%;
    background: var(--cream);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .hero-img-area {
    flex: 1; display: flex; align-items: center; justify-content: center;
    position: relative; width: 100%; height: 100%;
  }
  .hero-monogram {
    font-family: var(--serif); font-size: 220px; font-weight: 300;
    color: rgba(180,147,90,0.12); line-height: 1; user-select: none;
    position: absolute;
  }
  .hero-badge {
    position: absolute; bottom: 2rem; right: 2rem;
    background: #fff; border: 0.5px solid var(--border);
    border-radius: 2px; padding: 1rem 1.25rem;
  }
  .hero-badge-num {
    font-family: var(--serif); font-size: 32px; font-weight: 400;
    color: var(--text); line-height: 1;
  }
  .hero-badge-label {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-faint); margin-top: 3px;
  }
  .hero-stats {
    display: flex; border-top: 0.5px solid var(--border);
  }
  .hero-stat {
    flex: 1; padding: 1.25rem 1.5rem;
    border-right: 0.5px solid var(--border);
    background: #fff;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num {
    font-family: var(--serif); font-size: 24px; font-weight: 400;
    color: var(--text); line-height: 1; margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-faint);
  }

  /* ─── BUSINESS BAR ────────────────────────────────── */
  .biz-bar {
    display: flex; align-items: center; gap: 2.5rem;
    padding: 1rem 6vw;
    border-bottom: 0.5px solid var(--border);
    background: #fff; overflow-x: auto;
  }
  .biz-bar-label {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-faint); white-space: nowrap; flex-shrink: 0;
  }
  .biz-pills { display: flex; gap: 1.5rem; }
  .biz-pill {
    font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px; white-space: nowrap;
    text-decoration: none; transition: color 0.2s;
  }
  .biz-pill:hover { color: var(--text); }
  .biz-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* ─── ABOUT ───────────────────────────────────────── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    padding: 6rem 6vw;
    border-bottom: 0.5px solid var(--border);
  }
  .about-headline {
    font-family: var(--serif); font-size: clamp(36px, 3.5vw, 52px); font-weight: 300;
    line-height: 1.15; color: var(--text); margin: 1.25rem 0;
  }
  .about-headline em { font-style: italic; color: var(--gold); }
  .about-body {
    font-size: 14px; font-weight: 300; line-height: 1.9;
    color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .about-right { display: flex; flex-direction: column; gap: 1px; }
  .about-card {
    background: var(--cream); border-radius: 2px;
    padding: 1.75rem 2rem; border-left: 2px solid var(--gold);
    margin-bottom: 1px;
  }
  .about-card h3 {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--text); margin-bottom: 0.5rem;
  }
  .about-card p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.75; }

  /* ─── BUSINESSES ──────────────────────────────────── */
  .businesses { padding: 6rem 6vw; background: var(--cream); }
  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
  }
  .section-headline {
    font-family: var(--serif); font-size: clamp(32px, 3vw, 46px); font-weight: 300;
    line-height: 1.15; color: var(--text); margin-top: 0.75rem;
  }
  .section-headline em { font-style: italic; color: var(--gold); }
  .businesses-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 0.5px solid var(--border);
  }
  .biz-card {
    background: #fff; padding: 2.5rem 2rem;
    transition: background 0.25s;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .biz-card:hover { background: var(--dark); }
  .biz-card:hover .biz-card-title { color: var(--cream); }
  .biz-card:hover .biz-card-desc { color: rgba(247,243,236,0.5); }
  .biz-card:hover .biz-card-icon { color: var(--gold); }
  .biz-card:hover .biz-card-link { color: var(--gold); border-color: rgba(180,147,90,0.3); }
  .biz-card-icon { font-size: 28px; line-height: 1; transition: color 0.25s; }
  .biz-card-title {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--text); transition: color 0.25s;
  }
  .biz-card-desc {
    font-size: 13px; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); flex: 1; transition: color 0.25s;
  }
  .biz-card-link {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    border-top: 0.5px solid var(--border); padding-top: 1rem;
    display: inline-block; margin-top: auto; transition: color 0.25s, border-color 0.25s;
  }

  /* ─── WHY HORIZON ─────────────────────────────────── */
  .why {
    padding: 6rem 6vw;
    display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
    align-items: start; border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }
  .why-left { position: sticky; top: 100px; }
  .why-headline {
    font-family: var(--serif); font-size: clamp(30px, 2.8vw, 42px); font-weight: 300;
    line-height: 1.2; margin: 0.75rem 0 1.5rem; color: var(--text);
  }
  .why-headline em { font-style: italic; color: var(--gold); }
  .why-body { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--text-muted); }
  .why-right { display: flex; flex-direction: column; gap: 0; }
  .why-item {
    padding: 2rem 0; border-bottom: 0.5px solid var(--border);
    display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; align-items: start;
  }
  .why-item:first-child { border-top: 0.5px solid var(--border); }
  .why-num {
    font-family: var(--serif); font-size: 13px; color: var(--gold);
    padding-top: 3px;
  }
  .why-item-title {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--text); margin-bottom: 0.5rem;
  }
  .why-item-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }

  /* ─── LIFELINE ────────────────────────────────────── */
  .lifeline {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
  }
  .lifeline-left {
    background: var(--dark);
    padding: 5rem 6vw;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .lifeline-tag { color: var(--gold); }
  .lifeline-tag::before { background: var(--gold); }
  .lifeline-headline {
    font-family: var(--serif); font-size: clamp(32px, 3vw, 48px); font-weight: 300;
    line-height: 1.15; color: var(--cream); margin: 1.25rem 0 1.25rem;
    letter-spacing: -0.01em;
  }
  .lifeline-headline em { font-style: italic; color: var(--gold); }
  .lifeline-sub {
    font-size: 14px; font-weight: 300; line-height: 1.85;
    color: rgba(247,243,236,0.55); max-width: 380px; margin-bottom: 2.5rem;
  }
  .lifeline-cta {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: none; border: 0.5px solid rgba(247,243,236,0.25);
    color: var(--cream); padding: 13px 26px; border-radius: 2px; cursor: pointer;
    transition: border-color 0.2s, color 0.2s; text-decoration: none; display: inline-block;
    width: fit-content;
  }
  .lifeline-cta:hover { border-color: var(--gold); color: var(--gold); }
  .lifeline-right {
    background: var(--dark-2);
    padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center; gap: 1px;
  }
  .impact-row {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.75rem 0; border-bottom: 0.5px solid var(--border-dark);
  }
  .impact-row:first-child { border-top: 0.5px solid var(--border-dark); }
  .impact-icon-wrap {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .icon-edu { background: rgba(99,153,34,0.15); }
  .icon-med { background: rgba(226,75,74,0.15); }
  .impact-num {
    font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--cream); line-height: 1;
  }
  .impact-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(247,243,236,0.45); margin-top: 4px;
  }
  .lifeline-quote {
    margin-top: 2.5rem; padding-top: 2.5rem;
    border-top: 0.5px solid var(--border-dark);
  }
  .quote-text {
    font-family: var(--serif); font-size: 18px; font-style: italic; font-weight: 300;
    color: rgba(247,243,236,0.6); line-height: 1.7;
  }

  /* ─── CONTACT ─────────────────────────────────────── */
  .contact { padding: 6rem 6vw; background: var(--cream); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-headline {
    font-family: var(--serif); font-size: clamp(32px, 3vw, 46px); font-weight: 300;
    line-height: 1.15; color: var(--text); margin: 1rem 0 1.5rem;
  }
  .contact-headline em { font-style: italic; color: var(--gold); }
  .contact-sub { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--text-muted); margin-bottom: 2rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-row { display: flex; align-items: flex-start; gap: 1rem; }
  .contact-icon {
    width: 36px; height: 36px; border: 0.5px solid var(--border);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; background: #fff;
  }
  .contact-row-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 3px; }
  .contact-row-val { font-size: 14px; font-weight: 300; color: var(--text); }
  .contact-form { display: flex; flex-direction: column; gap: 1px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
  .form-field {
    background: #fff; border: 0.5px solid var(--border); border-radius: 0;
    padding: 1rem 1.25rem;
  }
  .form-field label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 6px; }
  .form-field input, .form-field textarea, .form-field select {
    width: 100%; border: none; outline: none; background: none;
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: var(--text); resize: none;
  }
  .form-field textarea { min-height: 80px; }
  .form-submit {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: var(--text); color: #fff; border: none;
    padding: 1.1rem 2rem; cursor: pointer; border-radius: 2px;
    transition: background 0.2s; margin-top: 1px;
  }
  .form-submit:hover { background: var(--gold); }

  /* ─── FOOTER ──────────────────────────────────────── */
  footer {
    background: var(--dark); color: var(--cream);
    padding: 4rem 6vw 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 0.5px solid var(--border-dark);
    margin-bottom: 2rem;
  }
  .footer-logo {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cream); margin-bottom: 1rem; display: block;
  }
  .footer-logo span { color: var(--gold); }
  .footer-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(247,243,236,0.45); margin-bottom: 1.5rem; }
  .footer-socials { display: flex; gap: 0.75rem; }
  .social-btn {
    width: 34px; height: 34px; border: 0.5px solid var(--border-dark);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 13px; color: rgba(247,243,236,0.5);
    transition: border-color 0.2s, color 0.2s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a {
    font-size: 13px; font-weight: 300; color: rgba(247,243,236,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 11px; color: rgba(247,243,236,0.3); letter-spacing: 0.04em; }
  .footer-tagline {
    font-family: var(--serif); font-size: 11px; font-style: italic;
    color: rgba(247,243,236,0.25);
  }

  /* ─── ANIMATIONS ──────────────────────────────────── */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-2 { transition-delay: 0.1s; }
  .fade-up-3 { transition-delay: 0.2s; }
  .fade-up-4 { transition-delay: 0.3s; }
  .fade-up-5 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 3.5rem 6vw 2.5rem; border-right: none; border-bottom: 0.5px solid var(--border); }
    .hero-right { min-height: 320px; }
    .hero-monogram { font-size: 140px; }
    .about, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .businesses-grid { grid-template-columns: 1fr 1fr; }
    .why { grid-template-columns: 1fr; gap: 3rem; }
    .why-left { position: static; }
    .lifeline { grid-template-columns: 1fr; }
    .lifeline-right { padding: 3rem 6vw; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
  }
  @media (max-width: 560px) {
    .businesses-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; }
    .hero-stat { border-right: none; border-bottom: 0.5px solid var(--border); }
  }