/* ==========================================================
   Stan Advisors — Unified Site System
   Trusted advisor first. Strategic tax and wealth advisory.
   Clean, modern, professional, efficient.
   ========================================================== */

:root {
    --navy: #08111D;
    --navy-2: #101E31;
    --navy-3: #15263D;
    --deep: #050A12;
    --gold: #B99A63;
    --gold-bright: #E0B84A;
    --gold-2: #D3BC83;
    --cream: #F4EFE6;
    --soft: #C7CDD5;
    --muted: #909AA8;
    --line: rgba(255,255,255,.085);
    --gold-line: rgba(185,154,99,.36);

    --serif: "Fraunces", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
    --ease: cubic-bezier(.22,.8,.24,1);

    --shell: 1120px;

    --eyebrow-size: .92rem;
    --home-h1: 2.8rem;
    --interior-h1: 2.4rem;
    --h2-size: 1.8rem;
    --h3-size: 1.3rem;
    --body-size: 1.1rem;
    --body-line: 1.6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--sans);
    font-size: var(--body-size);
    line-height: var(--body-line);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; }
img, svg { max-width: 100%; display: block; }
p { margin: 0; }
ul, ol { margin-top: 0; }

.shell {
    width: min(var(--shell), 91vw);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 14px;
    z-index: 999;
}
.skip-link:focus { left: 12px; }

/* =========================
   Typography
   ========================= */

.eyebrow,
.section-number {
    display: block;
    margin-bottom: 14px;
    color: rgba(211,188,131,.95);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: var(--eyebrow-size);
    font-weight: 600;
    line-height: 1;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    margin: 0;
    color: var(--cream);
}

h1 {
    font-size: var(--interior-h1);
    line-height: 1.08;
    letter-spacing: -.035em;
}

h2 {
    font-size: var(--h2-size);
    line-height: 1.15;
    letter-spacing: -.03em;
}

h3 {
    font-size: var(--h3-size);
    line-height: 1.25;
    letter-spacing: -.02em;
}

p, li {
    font-size: var(--body-size);
    line-height: var(--body-line);
}

.copy-muted,
.section-header p,
.statement-copy p,
.card p,
.feature-card p,
.framework-card p,
.process-card p,
.value-list p,
.split-panel p,
.home-hero-copy p,
.interior-copy p {
    color: var(--soft);
}

.text-link {
    color: var(--gold-2);
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
    border-bottom: 1px solid rgba(211,188,131,.42);
}
.text-link:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* =========================
   Header / Navigation
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,17,29,.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.brand img { width: 125px; height: auto; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-nav a {
    color: var(--soft);
    text-decoration: none;
    font-size: .94rem;
    line-height: 1;
    transition: color .2s var(--ease);
}
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--cream); }

.primary-nav .nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 12px 18px;
    font-weight: 700;
}
.primary-nav .nav-cta:hover { color: var(--navy); background: var(--gold-2); }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 12px;
}
.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--cream);
    margin: 7px 0;
}

/* =========================
   Buttons
   ========================= */

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 0;
    text-decoration: none;
    font-size: .96rem;
    line-height: 1;
    font-weight: 700;
    transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: var(--gold-2); color: var(--navy); }
.button-quiet {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.015);
    color: var(--cream);
}
.button-quiet:hover { border-color: var(--gold-line); }

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* =========================
   Universal Sections
   ========================= */

.site-section,
.home-section,
.interior-section {
    position: relative;
    padding: 32px 0; /* sets size of section */
    border-bottom: 1px solid var(--line);
}

.section-light,
.home-section-light { background: var(--navy-2); }
.section-dark,
.home-section-dark { background: var(--navy); }
.section-deep,
.home-section-deep { background: var(--deep); }
.section-no-border,
.no-border { border-bottom: 0; }
.section-tight { padding: 24px 0; }
.section-large { padding: 24px 0; }

.section-header,
.home-section-header {
    max-width: 860px;
    margin-bottom: 34px;
}
.section-header.wide,
.home-section-header.wide { max-width: none; }
.section-header.narrow,
.home-section-header.narrow { max-width: 680px; }
.section-header h2,
.home-section-header h2 { max-width: 760px; }
.section-header p,
.home-section-header p {
    max-width: 680px;
    margin-top: 16px;
}

/* =========================
   Homepage Hero
   ========================= */

.home-hero {
    display: block;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(8,17,29,.99), rgba(8,17,29,.94) 58%, rgba(8,17,29,.80)),
        url('../images/mountain-atmosphere.svg') center right / cover no-repeat;
}
.home-hero-title::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}
.home-hero-copy::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1px;
    margin-top: 24px;
}
.home-hero-highlight {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.25rem;
    margin-top: 24px;
}
.home-hero-layout {
    display: block;
    max-width: 980px;
    padding: 34px 0 34px;
}

.home-hero-kicker { grid-area: kicker; }
.home-hero-title { grid-area: title; min-width: 0; }
.home-hero-title h1 {
    font-size: var(--home-h1);
    line-height: 1.08;
    letter-spacing: -.035em;
    max-width: 900px;
    padding-bottom: 12px;
}
.home-hero-copy {
    grid-area: copy;
    max-width: 720px;
    min-width: 0;
}
.home-hero-copy p { color: var(--soft); }
.home-hero-copy p + p { margin-top: 14px; }
.home-subnote {
    margin-top: 12px;
    color: var(--muted) !important;
    font-size: .96rem !important;
    line-height: 1.5 !important;
}

.home-hero-aside {
    grid-area: aside;
    align-self: center;
    border-left: 1px solid var(--gold-line);
    padding-left: 28px;
    min-width: 0;
}
.home-hero-aside > span {
    display: block;
    margin-bottom: 14px;
    color: rgba(211,188,131,.95);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: var(--eyebrow-size);
    font-weight: 600;
    line-height: 1;
}
.home-hero-aside p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    font-style: italic;
}
.home-hero-aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.home-hero-aside li {
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--soft);
    font-size: 1rem;
    line-height: 1.35;
}
.home-hero-aside li:last-child { border-bottom: 1px solid var(--line); }

/* =========================
   Interior Hero
   ========================= */

.interior-hero,
.page-hero {
    display: block;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(8,17,29,.99), rgba(8,17,29,.90) 56%, rgba(8,17,29,.72)),
        url('../images/mountain-atmosphere.svg') center right / cover no-repeat;
}

.interior-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
    grid-template-areas:
        "kicker aside"
        "title aside"
        "copy aside";
    column-gap: 64px;
    row-gap: 18px;
    padding: 58px 0 56px;
    align-items: start;
}

.interior-hero-layout > .eyebrow,
.interior-kicker { grid-area: kicker; }
.interior-title { grid-area: title; max-width: 880px; min-width: 0; }
.interior-title h1 {
    font-size: var(--interior-h1);
    line-height: 1.08;
    letter-spacing: -.035em;
    max-width: 840px;
}
.interior-copy { grid-area: copy; max-width: 690px; min-width: 0; }
.interior-copy p { max-width: 670px; }
.interior-copy p + p { margin-top: 14px; }

.interior-aside {
    grid-area: aside;
    align-self: center;
    border-left: 1px solid var(--gold-line);
    padding-left: 28px;
    min-width: 0;
}
.interior-aside > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(211,188,131,.95);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: var(--eyebrow-size);
    font-weight: 600;
    line-height: 1;
}
.interior-aside ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.interior-aside li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
    color: var(--soft);
    font-size: 1rem;
    line-height: 1.35;
}
.interior-aside li:last-child { border-bottom: 1px solid var(--line); }

/* Legacy page hero compatibility */
.page-hero { padding: 58px 0 56px; }
.page-hero-inner { max-width: 760px; }
.page-hero h1 { font-size: var(--interior-h1); }
.page-hero p { max-width: 670px; margin-top: 16px; color: var(--soft); }

/* =========================
   Core Layout Blocks
   ========================= */

.statement-grid,
.value-grid,
.split-statement,
.home-advisor-grid,
.advisor-feature {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 640px);
    gap: clamp(42px, 6vw, 74px);
    align-items: start;
}
.statement-copy { max-width: 640px; }
.statement-copy p + p { margin-top: 16px; }

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.split-panel {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.018);
    padding: 30px;
}
.split-panel p { margin-top: 12px; }

.line-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--line);
}
.line-list li {
    position: relative;
    color: var(--soft);
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid var(--line);
}
.line-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    background: var(--gold);
}

/* =========================
   Cards
   ========================= */

.cards-grid,
.home-audience-grid,
.home-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.home-focus-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card,
.home-audience-card,
.home-focus-card,
.feature-card {
    min-height: 215px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.018);
    text-decoration: none;
    transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
a.card:hover,
.home-audience-card:hover,
.home-focus-card:hover,
a.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-line);
    background: rgba(255,255,255,.03);
}
.card p,
.home-audience-card p,
.home-focus-card p,
.feature-card p { margin-top: 12px; line-height: 1.55; }
.card .text-link,
.home-audience-card .text-link,
.home-focus-card .text-link,
.feature-card .text-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 22px;
}
.card > span,
.home-focus-card > span {
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.8rem;
    line-height: 1;
}

/* =========================
   Framework / Process
   ========================= */

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.framework-card {
    display: grid;
    grid-template-columns: 84px minmax(0,1fr);
    gap: 24px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.framework-card > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2.35rem;
    line-height: .95;
    letter-spacing: -.035em;
}
.framework-card p { margin-top: 9px; line-height: 1.55; }

.home-process-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.home-process-item,
.process-card {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}
.home-process-item > span,
.process-card > span {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 14px;
}
.home-process-item p,
.process-card p { margin-top: 10px; line-height: 1.55; }
.home-inline-link { display: inline-block; margin-top: 26px; }

/* =========================
   Value List
   ========================= */

.value-list { border-top: 1px solid var(--line); }
.value-list div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.value-list strong {
    display: block;
    color: var(--cream);
    font-family: var(--serif);
    font-size: var(--h3-size);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.value-list p { margin-top: 6px; line-height: 1.55; }

/* =========================
   Advisor Feature
   ========================= */

.home-advisor-grid,
.home-about-grid,
.advisor-feature { align-items: center; }
.home-advisor-image,
.advisor-image,
.portrait-frame { position: relative; }
.home-advisor-image::before,
.advisor-image::before,
.portrait-frame::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0px;
    width: 52%;
    height: 100%;
    border: 0px solid var(--gold-line);
    opacity: .72;
}
.home-advisor-image img {
	object-fit: cover;
    object-position: left;
}
.advisor-image img,
.portrait-frame img {
    position: relative;
    z-index: 1;
    width: 120px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
	
}
.home-advisor-content {
        align: top;
        padding: 0;
}

.advisor-content { max-width: 640px; }
.home-advisor-content p,
.advisor-content p { margin-top: 16px; color: var(--soft); }
.home-advisor-content .text-link,
.advisor-content .text-link { display: inline-block; margin-top: 24px; }

/* Legacy founder compatibility */
.founder-section { padding: 68px 0; border-bottom: 1px solid var(--line); background: var(--navy); }
.founder-grid { display: grid; grid-template-columns: minmax(280px,390px) minmax(0,640px); gap: clamp(42px,6vw,74px); align-items: center; }
.copy-stack p { color: var(--soft); margin-top: 16px; }
.portrait-frame span { position: relative; z-index: 1; min-height: 420px; display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255,255,255,.2); color: var(--muted); }
.home-advisor-grid {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.35fr);
    gap: 56px;
    align-items: start;
}

.home-advisor-image {
    max-width: 290px;
    justify-self: end;
	transform: translateX(-30px);
}

.home-advisor-content {
    max-width: 640px;
    justify-self: start;
}
/* =========================
   Quote / Metrics / Inline CTA
   ========================= */

.quote-block {
    border-top: 1px solid var(--gold-line);
    padding-top: 28px;
    max-width: 860px;
}
.quote-block blockquote {
    margin: 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.65rem;
    line-height: 1.25;
    letter-spacing: -.025em;
}
.quote-block cite {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-style: normal;
    font-size: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.metric {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}
.metric strong {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
}
.metric span { display: block; margin-top: 8px; color: var(--soft); font-size: 1rem; }

.inline-cta,
.final-cta {
    padding: 68px 0;
    border-bottom: 1px solid var(--line);
    background: var(--navy-2);
}
.final-cta .home-section-header::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}

.final-cta .home-section-header::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background: var(--gold);
    margin-top: 32px;
}
.inline-cta-inner,
.final-layout {
    display: grid;
    grid-template-columns: minmax(0,420px) minmax(0,640px);
    gap: clamp(42px,6vw,74px);
    align-items: start;
}
.final-copy p { color: var(--soft); }
.final-copy .button { margin-top: 24px; }


/* =========================
   Discovery Booking Page
   ========================= */

.discovery-page-section {
    position: relative;
    padding: 44px 0 46px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(8,17,29,.99), rgba(8,17,29,.94) 58%, rgba(8,17,29,.82)),
        url('../images/mountain-atmosphere.svg') center right / cover no-repeat;
}

.discovery-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(38px, 5vw, 62px);
    align-items: start;
    margin-bottom: 34px;
}

.discovery-hero-copy,
.discovery-support-copy {
    min-width: 0;
}

.discovery-hero-copy::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}

.discovery-hero-copy h1 {
    max-width: 580px;
    font-size: var(--interior-h1);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.discovery-support-copy {
    padding-top: 39px;
}

.discovery-support-copy p {
    max-width: 560px;
    color: var(--soft);
}

.discovery-contact {
    max-width: 560px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.discovery-contact span {
    display: block;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.4;
}

.discovery-contact a {
    display: inline-block;
    margin-top: 5px;
    color: var(--gold-2);
    font-weight: 700;
    text-decoration: none;
}

.discovery-contact a:hover { color: var(--cream); }

.discovery-calendar {
    width: 85%;
    max-width: 1050px;
    margin: 0 auto;
    border-top: 1px solid var(--gold-line);
    padding-top: 20px;
}

.discovery-calendar iframe {
    display: block;
    width: 100%;
    height: 650px;
    min-height: unset;
    border: 0;
    background: var(--cream);
}
/* =========================
   Footer
   ========================= */

.site-footer {
    border-top: 1px solid var(--line);
    padding-top: 48px;
    background: var(--deep);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}
.footer-stan {
    color: var(--gold-bright);
    font-weight: 700;
}
.footer-tagline { color: var(--cream); margin-bottom: 8px; }
.footer-description { color: var(--muted); }
.footer-column h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: var(--eyebrow-size);
    margin: 0 0 12px;
}
.footer-column a {
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
    text-decoration: none;
    color: rgba(255,255,255,.78);
    transition: color .2s ease;
}
.footer-column a:hover { color: var(--cream); text-decoration: none; }
.footer-column p {
    display: block;
    color: var(--soft);
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.55;
    font-size: 1rem;
}
.footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: .9rem;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 980px) {
    :root {
        --home-h1: 2.45rem;
        --interior-h1: 2.2rem;
    }

    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 4.5vw 28px;
        background: rgba(8,17,29,.98);
        border-bottom: 1px solid var(--line);
    }
    .primary-nav.open { display: flex; }
    .primary-nav a { padding: 12px 0; }
    .primary-nav .nav-cta { text-align: center; margin-top: 8px; }

    .site-section,
    .home-section,
    .interior-section,
    .founder-section,
    .inline-cta,
    .final-cta { padding: 18px 0; }

    .home-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "title"
            "copy"
            "aside";
        padding: 50px 0 48px;
        row-gap: 18px;
            display: block;
    max-width: 1000px;
    }
    .interior-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "title"
            "copy"
            "aside";
        padding: 50px 0 48px;
        row-gap: 18px;
    }

    .interior-aside {
        max-width: 640px;
        border-left: 0;
        border-top: 1px solid var(--gold-line);
        padding-left: 0;
        padding-top: 22px;
        align-self: start;
    }

    .statement-grid,
    .value-grid,
    .split-statement,
    .home-advisor-grid,
    .advisor-feature,
    .founder-grid,
    .inline-cta-inner,
    .final-layout,
    .split-grid,
    .cards-grid,
    .home-audience-grid,
    .home-focus-grid,
    .home-process-grid,
    .process-grid,
    .metrics-grid,
    .framework-grid,
    .discovery-intro-grid {
        grid-template-columns: 1fr;
    }

    .discovery-page-section { padding: 36px 0 34px; }
    .discovery-intro-grid { margin-bottom: 28px; }
    .discovery-support-copy { padding-top: 0; }
    .discovery-calendar iframe { min-height: 860px; }

    .framework-grid { border-left: 0; }
    .framework-card {
        grid-template-columns: 70px minmax(0,1fr);
        padding: 24px 0;
        border-left: 0;
        border-right: 0;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    :root {
        --home-h1: 2.15rem;
        --interior-h1: 2rem;
        --h2-size: 1.6rem;
        --h3-size: 1.22rem;
        --body-size: 1.02rem;
    }

    .brand img { width: 106px; }
    .nav-shell { min-height: 70px; }
    .primary-nav { top: 70px; }

    .button-row { flex-direction: column; }
    .button { width: 100%; }

    .home-hero-layout,
    .interior-hero-layout { padding: 42px 0; }

    .card,
    .home-audience-card,
    .home-focus-card,
    .feature-card,
    .split-panel { padding: 24px; }

    .framework-card { grid-template-columns: 1fr; gap: 10px; }
    .framework-card > span { font-size: 2rem; }

    .footer-grid { grid-template-columns: 1fr; }
}
