﻿  :root {
    --terracotta: #8B4A3C;
    --terracotta-light: #a85f50;
    --sage: #7A9E8E;
    --sage-light: #9bbdae;
    --stone: #B5A898;
    --stone-light: #cfc4bb;
    --offwhite: #F7F5F2;
    --charcoal: #2C2C2C;
    --charcoal-light: #555;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background: var(--offwhite);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── PAGE SYSTEM ── */
  .page { display: none; }
  .page.active { display: block; padding-top: 120px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,245,242,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(181,168,152,0.25);
    padding: 0 5%;
    height: 120px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; text-decoration: none;
  }

  .logo-mark {
    width: 48px; height: 58px;
  }

  .nav-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: var(--charcoal);
    line-height: 1.3;
    text-transform: uppercase;
  }

  .nav-wordmark span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--terracotta);
  }

  .nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 2px;
    letter-spacing: 0.12em !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--terracotta-light) !important; color: var(--white) !important; }

  /* ── MOBILE MENU BUTTON (hamburger) ── */
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }
  .mobile-menu-btn span {
    display: block;
    width: 26px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── PAGE BANNERS (responsive height, scales with viewport width) ── */
  .page-banner { overflow: hidden; position: relative; margin-top: 72px; }
  .banner-services { height: clamp(240px, 32vw, 540px); }
  .banner-who      { height: clamp(280px, 40vw, 620px); }
  .banner-fees     { height: clamp(160px, 22vw, 360px); }
  .banner-contact  { height: clamp(200px, 28vw, 460px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 72px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    position: relative;
    overflow: hidden;
    max-width: 1560px;
    margin: 0 auto;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7% 3% 7% 5%;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 28px;
    font-weight: 400;
  }

  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 28px;
  }

  .hero-heading em {
    font-style: italic;
    color: var(--terracotta);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal-light);
    max-width: 560px;
    margin-bottom: 44px;
    text-align: center;
  }

  .hero-divider {
    width: 100%;
    max-width: 560px;
    height: 1px;
    background: rgba(44,44,44,0.15);
    margin: 0 auto 20px;
  }

  .hero-location {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(44,44,44,0.55);
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .hero-location a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .hero-location a:hover {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
  }

  .hero-actions {
    display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--terracotta-light); }

  .btn-ghost {
    background: transparent;
    color: var(--charcoal);
    padding: 14px 32px;
    border: 1px solid rgba(44,44,44,0.25);
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

  .hero-right {
    position: relative;
    background: var(--offwhite);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
  }

  .hero-photo-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #9bbdae 0%, #7A9E8E 100%);
  }

  .photo-placeholder-inner {
    text-align: center;
    color: rgba(255,255,255,0.7);
  }

  .photo-placeholder-inner svg {
    width: 64px; height: 64px; opacity: 0.5; margin-bottom: 12px;
  }

  .photo-placeholder-inner p {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero-accent-line {
    width: 40px;
    height: 2px;
    background: var(--terracotta);
    margin: 12px auto 0;
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 100px 8%;
  }

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    font-weight: 400;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .section-heading em {
    font-style: italic;
    color: var(--terracotta);
  }

  .divider {
    width: 48px;
    height: 1.5px;
    background: var(--terracotta);
    margin-bottom: 32px;
  }

  /* ── HOME: PILLARS ── */
  .pillars {
    background: var(--charcoal);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .pillar {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .pillar:last-child { border-right: none; }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--terracotta);
    opacity: 1;
    line-height: 1;
    margin-bottom: 20px;
  }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
  }

  .pillar p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
  }

  /* ── HOME: QUOTE ── */
  .quote-band {
    background: var(--terracotta);
    padding: 80px 10%;
    text-align: center;
  }

  .quote-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--white);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
  }

  .quote-band cite {
    display: block;
    margin-top: 24px;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-style: normal;
  }

  /* ── HOME: ABOUT PREVIEW ── */
  .about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center;
  }

  .about-preview-text p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 20px;
  }

  .about-preview-img {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--stone-light) 0%, var(--stone) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .credentials-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--terracotta);
    padding: 20px 24px;
  }

  .credentials-strip p {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }

  /* ── ABOUT PAGE ── */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8%;
    align-items: start;
    padding-top: 140px;
  }

  .about-image {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #c4d4cd 0%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .about-image-tag {
    position: absolute;
    top: 32px; left: -1px;
    background: var(--terracotta);
    padding: 12px 20px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
  }

  .about-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    margin-bottom: 8px;
    margin-top: 68px;
  }

  .about-content .subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 28px;
  }

  .about-content p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 20px;
  }

  .credential-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 32px 0;
  }

  .tag {
    border: 1px solid var(--stone);
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    border-radius: 1px;
  }

  .about-col-left {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .outside-card {
    margin: auto 0;
    background: var(--white);
    border: 1.5px solid var(--sage);
    border-top: 4px solid var(--terracotta);
    border-radius: 14px;
    padding: 26px 26px 22px;
    text-align: center;
    box-shadow: 0 10px 30px -22px rgba(44,44,44,0.4);
  }
  .outside-card .outside-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 12px;
  }
  .outside-card .outside-text {
    font-size: 0.8rem;
    line-height: 1.72;
    color: var(--charcoal-light);
    margin: 0 0 16px;
  }
  .outside-emojis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    border-top: 1px solid var(--stone-light);
    padding-top: 14px;
  }
  .outside-emojis span {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 1.05rem;
  }
  .outside-emojis span small {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    text-align: center;
    line-height: 1.25;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .service-card {
    background: var(--white);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
  }

  .service-card:hover { transform: translateY(-4px); }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--terracotta);
    transition: height 0.3s;
  }

  .service-card:hover::before { height: 100%; }

  .service-icon {
    width: 40px; height: 40px;
    margin-bottom: 24px;
    color: var(--sage);
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--charcoal);
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--charcoal-light);
  }

  .service-mode {
    margin-top: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
  }

  /* ── WHO I WORK WITH ── */
  .who-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    margin-bottom: 80px;
  }

  .who-intro p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 16px;
  }

  .who-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .who-card {
    background: var(--white);
    padding: 36px 28px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease;
  }

  .who-card:hover { border-color: var(--terracotta); }

  .who-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--charcoal);
  }

  .who-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--charcoal-light);
  }

  .who-highlight {
    background: var(--sage);
    padding: 80px 10%;
    margin-top: 0;
    text-align: center;
  }

  .who-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: var(--white);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 32px;
  }

  /* ── FEES & FAQs ── */
  .fees-grid {
    display:grid;
    grid-template-columns: 1fr 1.4fr;
    gap:6%;
    margin-top:40px;
  }

  .fee-card {
    background: var(--white);
    padding: 40px 36px;
    margin-bottom: 16px;
    border-left: 3px solid var(--terracotta);
  }

  .fee-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 6px;
  }

  .fee-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--terracotta);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
  }

  .fee-card p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    line-height: 1.7;
  }

  .faq-item {
    border-bottom: 1px solid rgba(181,168,152,0.3);
    padding: 24px 0;
  }

  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
  }

  .faq-q span {
    color: var(--terracotta);
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    transition: transform 0.2s;
  }

  .faq-a {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    display: none;
  }

  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-q span { transform: rotate(45deg); }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8%;
    padding-top: 140px;
  }

  .contact-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 8px;
    margin-top: 60px;
  }

  .contact-info .sub {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 32px;
  }

  .contact-info p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
  }

  .contact-detail-icon {
    width: 18px; min-width: 18px;
    color: var(--terracotta);
    margin-top: 2px;
  }

  .contact-detail p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    margin: 0;
    line-height: 1.6;
  }

  .contact-form {
    background: var(--white);
    padding: 52px 48px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--offwhite);
    border: 1px solid rgba(181,168,152,0.4);
    border-radius: 1px;
    padding: 12px 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--terracotta);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-note {
    font-size: 0.75rem;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
  }

  .form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--terracotta);
    margin-bottom: 12px;
  }

  .form-success p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 60px 8% 36px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 6%;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
  }

  .footer-brand .nav-wordmark {
    color: var(--white);
    font-size: 1.15rem;
  }

  .footer-brand p {
    margin-top: 16px;
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
  }

  .footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li {
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
  }

  /* ── PAGE TRANSITIONS ── */
  .page {
    animation: fadeIn 0.4s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  /* ── TABLET (max 900px) ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 60vw; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .about-preview, .about-hero, .who-intro, .fees-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .who-cards { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  /* ── MOBILE (max 600px) ── */
  @media (max-width: 600px) {

    /* --- NAV --- */
    nav { padding: 4px 5%; height: 80px; }
    .nav-wordmark { font-size: 0.88rem; }
    .nav-wordmark span { font-size: 0.55rem; }
    .logo-mark { width: 44px; height: 54px; }
    nav .nav-logo img { height: 54px !important; }
    .nav-links { display: none !important; }
    .mobile-menu-btn { display: flex !important; }

    /* --- MOBILE MENU OVERLAY --- */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0; bottom: 0;
      background: var(--offwhite);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 32px 5%;
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--charcoal);
      text-decoration: none;
      letter-spacing: 0.04em;
      cursor: pointer;
    }
    .mobile-nav a.cta {
      font-family: 'Lato', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--terracotta);
      color: white !important;
      padding: 13px 32px;
      border-radius: 2px;
    }

    /* --- SECTIONS --- */
    section { padding: 52px 5%; }

    /* --- HERO --- */
    /* Show photo FIRST on mobile, text below */
    .hero {
      display: flex !important;
      flex-direction: column !important;
      min-height: auto !important;
    }
    .hero-right {
      order: 1;
      height: 100vw !important;
      max-height: 520px;
      min-height: 320px;
      width: 100%;
    }
    .hero-right img {
      object-position: 50% 8% !important;
      width: auto !important;
      height: 100% !important;
      max-width: 100% !important;
      object-fit: contain !important;
    }
    .hero-left {
      order: 2;
      padding: 44px 5% 48px !important;
      background: var(--offwhite);
    }
    .hero-heading { font-size: 2.2rem; line-height: 1.15; }
    .hero-sub { font-size: 0.92rem; max-width: 100%; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; padding: 14px; }
    .hero-accent-line { display: none; }
    .hero-eyebrow { margin-bottom: 18px; }

    /* --- PILLARS --- */
    .pillars {
      padding: 0 !important;
      grid-template-columns: 1fr !important;
    }
    .pillar {
      padding: 32px 5%;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .pillar-num { font-size: 2.2rem; margin-bottom: 12px; }
    .pillar h3 { font-size: 1.15rem; }
    .pillar p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

    /* --- QUOTE BAND --- */
    .quote-band { padding: 52px 5%; }
    .quote-band blockquote { font-size: 1.15rem; line-height: 1.65; }
    .quote-band cite { font-size: 0.65rem; margin-top: 18px; }

    /* --- HEADINGS --- */
    .section-heading { font-size: 1.9rem; }
    .section-eyebrow { font-size: 0.65rem; }
    .divider { margin-bottom: 24px; }

    /* --- ABOUT PAGE --- */
    .about-hero {
      display: flex !important;
      flex-direction: column !important;
      padding-top: 80px !important;
      gap: 0 !important;
    }
    .about-image {
      width: 100%;
      aspect-ratio: 4/5 !important;
      min-height: 380px;
      max-height: 500px;
    }
    .about-image-tag { font-size: 0.58rem; padding: 9px 14px; }
    .about-content { padding: 36px 5% 0; }
    .about-content h1 { font-size: 2rem; margin-top: 0 !important; }
    .about-content .subtitle { font-size: 0.68rem; }
    .about-content p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; color: var(--charcoal); }
    .credential-tags { gap: 6px; margin: 24px 0; }
    .tag { font-size: 0.62rem; padding: 6px 11px; color: #ffffff !important; background: var(--terracotta); border-color: var(--terracotta-light); }
    .approaches-tags .tag { background: var(--sage); border-color: var(--sage-light); }
    .approaches-label { color: var(--charcoal-light) !important; }
    .btn-primary { padding: 12px 24px; font-size: 0.72rem; }

    /* Approach section - stack image below text */
    div[style*="grid-template-columns:1.4fr 1fr"],
    div[style*="grid-template-columns: 1.4fr 1fr"] {
      display: flex !important;
      flex-direction: column !important;
    }
    div[style*="grid-template-columns:1.4fr 1fr"] > div:last-child,
    div[style*="grid-template-columns: 1.4fr 1fr"] > div:last-child {
      height: 260px !important;
      overflow: hidden;
    }

    /* Dark ER section */
    div[style*="background:var(--charcoal); padding:80px 8%"] {
      padding: 48px 5% !important;
    }
    div[style*="background:var(--charcoal); padding:80px 8%"] > div {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }
    div[style*="background:var(--charcoal); padding:80px 8%"] > div > div:last-child {
      height: 240px !important;
      margin-top: 32px;
      border-radius: 2px;
      overflow: hidden;
    }

    /* --- SERVICES PAGE --- */
    .services-grid { grid-template-columns: 1fr !important; gap: 2px; }
    .service-card { padding: 32px 5%; }
    .service-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }
    .service-icon { width: 32px; height: 32px; }
    div[style*="grid-template-columns:1fr 1fr; min-height:340px"] {
      display: flex !important;
      flex-direction: column !important;
    }
    div[style*="background:var(--charcoal); padding:60px 52px"] {
      padding: 36px 5% !important;
    }

    /* Banner heights handled by .page-banner clamp() */

    /* --- WHO I WORK WITH --- */
    .who-cards { grid-template-columns: 1fr !important; }
    .who-card { padding: 28px 5%; border-bottom: 2px solid var(--terracotta); }
    .who-highlight { padding: 48px 5%; }
    .who-highlight p { font-size: 1.1rem; }
    .banner-who h1 { font-size: 1.9rem !important; }
    .banner-who > div:last-child { bottom: 32px !important; }

    /* Who intro */
    div[style*="max-width:960px; margin-bottom:60px"] { margin-bottom: 36px; }
    div[style*="max-width:960px; margin-bottom:60px"] p { font-size: 1.0rem; }

    /* --- FEES PAGE --- */

    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:2px"],
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:16px"],
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:2px"] {
      grid-template-columns: 1fr !important;
    }
    .fee-card { padding: 28px 20px; margin-bottom: 2px; }
    .fee-price { font-size: 1.9rem; }
    div[style*="background:var(--sage); padding:48px 44px"] {
      padding: 40px 5% !important;
    }
    div[style*="background:var(--sage); padding:48px 44px"] > div {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
    }
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:32px"] {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
    }
    div[style*="margin-top:60px"] > .section-eyebrow { margin-top: 0; }
    .faq-item { padding: 20px 0; }
    .faq-q { font-size: 1rem; }
    .faq-a { font-size: 0.88rem; }

    /* --- CONTACT PAGE --- */

    .contact-grid {
      display: flex !important;
      flex-direction: column !important;
      padding-top: 32px !important;
      gap: 0 !important;
    }
    .contact-info { padding: 32px 5% 0; }
    .contact-info h1 { font-size: 1.9rem; margin-top: 12px !important; }
    .contact-info .sub { margin-bottom: 20px; }
    .contact-info p { font-size: 0.9rem; margin-bottom: 24px; }
    .contact-form { padding: 32px 5%; margin: 0; }
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:16px"] {
      grid-template-columns: 1fr !important;
    }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; } /* Prevents iOS zoom */

    /* --- FOOTER --- */
    footer { padding: 44px 5% 28px; }
    .footer-top { gap: 28px; padding-bottom: 32px; }
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
    .footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.85); }
    .footer-col { display: none; } /* Hide nav column on mobile */
    .footer-col:last-child { display: block; } /* Show Connect column on mobile */
    .footer-col h4 { font-size: 0.65rem; margin-top: 8px; }
    .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.9); }
    /* Land acknowledgement readable on mobile */
    div[style*="font-style:italic; max-width:700px"] { font-size: 0.72rem !important; line-height: 1.7 !important; }
    /* Pride flag statement */
    div[style*="display:flex; align-items:center; gap:12px; padding:20px"] p { font-size: 0.72rem !important; }
    /* Footer brand paragraph */
    .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

    /* Mobile: brighten text sitting on dark/charcoal backgrounds */
    [style*="background:var(--charcoal)"] p { color: #ffffff !important; }
    [style*="background:var(--charcoal)"] h1,
    [style*="background:var(--charcoal)"] h2,
    [style*="background:var(--charcoal)"] h3 { color: #ffffff !important; }
    [style*="background:var(--charcoal)"] [style*="rgba(255,255,255,0.4"],
    [style*="background:var(--charcoal)"] [style*="rgba(255,255,255,0.5"],
    [style*="background:var(--charcoal)"] [style*="rgba(255,255,255,0.6"] { color: rgba(255,255,255,0.88) !important; }
    .pillar p { color: #ffffff !important; }
    .footer-brand p,
    footer p[style*="rgba(255,255,255"],
    .footer-col a { color: #ffffff !important; }

    /* Mobile: make "The Space" stand out (light background -> larger, stronger) */
    .office-space__label { font-size: 0.99rem !important; }
    .office-space__heading { font-size: 1.6rem !important; font-weight: 400 !important; color: var(--charcoal) !important; }
    .office-space__caption { font-size: 0.9rem !important; color: var(--charcoal-light) !important; }

    /* --- THE NAME SECTION --- */
    /* Reduce section padding on mobile */
    section[style*="background:var(--white); padding:80px 8%"] { padding: 40px 5% 48px !important; }
    /* Stack image above text, remove gap */
    div[style*="grid-template-columns:1fr 1fr; gap:8%; align-items:center"] {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }
    /* Image: fixed height, no min-height blowing out layout */
    div[style*="min-height:520px; display:flex; align-items:center"] {
      min-height: 240px !important;
      height: 260px !important;
      width: 100% !important;
    }
    /* Text div: tight top padding only */
    div[style*="grid-template-columns:1fr 1fr; gap:8%; align-items:center"] > div:last-child {
      padding-top: 28px !important;
      padding-bottom: 0 !important;
      width: 100% !important;
    }
    /* Ensure section doesn't bleed — add explicit bottom padding */
    div[style*="grid-template-columns:1fr 1fr; gap:8%; align-items:center"] > div:last-child p:last-child {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }

    /* --- THE SPACE SECTION --- */
    div[style*="min-height:500px; overflow:hidden; position:relative"] {
      height: 280px !important;
      min-height: auto !important;
    }

    /* Getting Started steps - stack on mobile */
    /* Getting Started — vertical timeline on mobile */
    .steps-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }
    .step-item {
      display: flex !important;
      flex-direction: row !important;
      align-items: flex-start !important;
      gap: 16px !important;
      padding: 20px 0 !important;
      border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    .step-item:last-child {
      border-bottom: none !important;
    }
    .step-circle {
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      margin-bottom: 0 !important;
      flex-shrink: 0 !important;
    }
    .step-circle span {
      font-size: 1.1rem !important;
    }
    /* Hide horizontal connector line on mobile */
    div[style*="position:absolute; top:26px; left:26px"] {
      display: none !important;
    }
    div[style*="background:var(--charcoal); padding:80px 8%"] { padding: 52px 5% !important; margin-top: 0 !important; }
    div[style*="background:var(--charcoal); padding:80px 8%"] > div { text-align: left !important; }
    /* What Clients - stack cards on mobile */
    div[style*="display:grid; grid-template-columns:repeat(3,1fr)"] {
      grid-template-columns: 1fr !important;
    }
    /* Connector line - hide on mobile */
    div[style*="position:absolute; top:28px; left:16%"] { display: none !important; }
    /* General inline grid collapse */
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns:repeat(3"] {
      grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns: 1fr 1."],
    div[style*="grid-template-columns:1fr 1."],
    div[style*="grid-template-columns: 1."] {
      grid-template-columns: 1fr !important;
    }
  
    /* --- OFFICE SPACE --- */
    .office-space { margin-top: 20px; }
    .office-space__photos {
      grid-template-columns: 1fr;
      height: auto;
    }
    .office-space__photo { height: 240px; }
    .office-space__caption { padding-bottom: 40px; }
  }


  /* ── OFFICE SPACE SECTION ── */
  .office-space {
    max-width: 860px;
    margin: 32px auto 0;
    padding: 0 5%;
    text-align: center;
  }
  .office-space__label {
    font-size: 0.88rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
  }
  .office-space__heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 28px;
    line-height: 1.4;
  }
  .office-space__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 340px;
  }
  .office-space__photo {
    overflow: hidden;
    border-radius: 4px;
  }
  .office-space__caption {
    margin-top: 16px;
    font-size: 0.78rem;
    color: rgba(44,44,44,0.45);
    letter-spacing: 0.04em;
    padding-bottom: 64px;
  }
