/* =========================================================
   STUDIO EVNT & CO.
   Final homepage stylesheet
   Editorial scale + approved imagery + logo behaviour
   ========================================================= */

/* ---------------------------------------------------------
   01. RESET
   --------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #f8f6f1;
    color: #202020;
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

p {
    margin-bottom: 1.15rem;
}

::selection {
    background: #b79a61;
    color: #ffffff;
}

.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    z-index: 5000;
    padding: 0.75rem 1rem;
    background: #f8f6f1;
    color: #202020;
    border: 1px solid rgba(32, 32, 32, 0.18);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}


/* ---------------------------------------------------------
   02. TOKENS
   --------------------------------------------------------- */

:root {
    --cream: #f8f6f1;
    --cream-soft: #f2eee6;
    --cream-deep: #ebe5da;
    --charcoal: #202020;
    --charcoal-soft: #2a2a2a;
    --black: #111111;
    --gold: #b79a61;
    --gold-soft: #c9af79;
    --line-dark: rgba(32, 32, 32, 0.13);
    --line-light: rgba(248, 246, 241, 0.15);
    --text-soft: rgba(32, 32, 32, 0.66);
    --text-light-soft: rgba(248, 246, 241, 0.68);
    --max-width: 1380px;
}


/* ---------------------------------------------------------
   03. SHARED LAYOUT
   --------------------------------------------------------- */

.wide-container {
    width: min(calc(100% - 4rem), var(--max-width));
    margin-inline: auto;
}

.narrow-container {
    width: min(calc(100% - 4rem), 1080px);
    margin-inline: auto;
}

.section-padding {
    padding: clamp(4.75rem, 7vw, 7.25rem) 0;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-kicker span {
    opacity: 0.45;
}

.light-text {
    color: rgba(248, 246, 241, 0.72);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: end;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-heading-row h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.section-introduction {
    max-width: 430px;
    margin: 0 0 0.3rem;
    color: var(--text-light-soft);
    font-size: 0.96rem;
    line-height: 1.72;
}

.section-introduction.dark-copy {
    color: var(--text-soft);
}

.section-action {
    margin-top: 3.25rem;
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: gap 0.25s ease, opacity 0.25s ease;
}

.text-link:hover {
    gap: 0.8rem;
    opacity: 0.68;
}

.button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.55rem;
    border: 1px solid transparent;
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.button-gold:hover {
    background: transparent;
    color: var(--gold-soft);
    border-color: var(--gold-soft);
}

.button-dark {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.button-dark:hover {
    background: transparent;
    color: var(--charcoal);
}


/* ---------------------------------------------------------
   04. HEADER
   --------------------------------------------------------- */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 3000;
    color: var(--cream);
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: rgba(248, 246, 241, 0.12);
    transition: background-color 0.35s ease;
}

.site-header.scrolled {
    background: rgba(248, 246, 241, 0.96);
    color: var(--charcoal);
    box-shadow: 0 8px 24px rgba(32, 32, 32, 0.05);
    backdrop-filter: blur(16px);
}

.site-header.scrolled::after {
    background: rgba(32, 32, 32, 0.08);
}

.header-inner {
    width: min(calc(100% - 4rem), var(--max-width));
    min-height: 78px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(210px, 1fr);
    gap: 1.75rem;
    align-items: center;
}

.brand {
    position: relative;
    display: inline-flex;
    width: fit-content;
    min-width: 225px;
    align-items: center;
}

.brand-logo {
    width: min(235px, 20vw);
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.brand-logo-light {
    opacity: 1;
    visibility: visible;
}

.brand-logo-dark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.site-header.scrolled .brand-logo-light {
    opacity: 0;
    visibility: hidden;
}

.site-header.scrolled .brand-logo-dark {
    opacity: 1;
    visibility: visible;
}

.brand-fallback {
    display: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.05rem, 1.7vw, 1.9rem);
}

.desktop-navigation a {
    position: relative;
    display: inline-flex;
    gap: 0.4rem;
    align-items: baseline;
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-navigation a span {
    font-size: 0.54rem;
    opacity: 0.46;
}

.desktop-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.38rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active-page::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.15rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.language-switcher a,
.header-phone {
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.language-link {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.language-link:hover,
.language-link.active-language {
    opacity: 1;
}

.language-divider {
    opacity: 0.35;
}

.header-phone {
    white-space: nowrap;
}

.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.mobile-navigation {
    display: none;
}


/* ---------------------------------------------------------
   05. HERO IMAGE
   --------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    background: var(--black);
    color: var(--cream);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.015);
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.46) 45%, rgba(12, 12, 12, 0.12) 100%),
        linear-gradient(0deg, rgba(12, 12, 12, 0.42) 0%, transparent 56%);
}

.hero-inner {
    width: min(calc(100% - 4rem), var(--max-width));
    margin-inline: auto;
}

.hero-content {
    max-width: 850px;
    padding: 9rem 0 clamp(5.2rem, 9vh, 6.75rem);
}

.eyebrow {
    margin-bottom: 1.35rem;
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 1.45rem;
    font-size: clamp(3.25rem, 6.2vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-statement {
    max-width: 590px;
    margin-bottom: 2rem;
    color: rgba(248, 246, 241, 0.76);
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    line-height: 1.72;
}

.hero-index {
    position: absolute;
    right: max(2rem, calc((100vw - var(--max-width)) / 2));
    top: 52%;
    transform: translateY(-50%);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 11vw, 11rem);
    line-height: 1;
    color: rgba(248, 246, 241, 0.045);
    pointer-events: none;
}

.scroll-cue {
    position: absolute;
    right: max(2rem, calc((100vw - var(--max-width)) / 2));
    bottom: 2.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue-line {
    width: 1px;
    height: 48px;
    background: rgba(248, 246, 241, 0.42);
}


/* ---------------------------------------------------------
   06. BELIEF + PHILOSOPHY IMAGE
   --------------------------------------------------------- */

.belief-section {
    background: var(--cream);
}

.belief-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.belief-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.belief-copy {
    padding-top: 0.35rem;
}

.belief-copy p {
    color: var(--text-soft);
}

.belief-copy .lead-copy {
    color: var(--charcoal);
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    line-height: 1.6;
}

.belief-visual {
    margin-top: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}

.belief-image {
    width: 100%;
    height: clamp(320px, 42vw, 540px);
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s ease;
}

.belief-visual:hover .belief-image {
    transform: scale(1.02);
}


/* ---------------------------------------------------------
   07. IMPACT CARDS
   --------------------------------------------------------- */

.expertise-preview {
    background: var(--cream);
}

.expertise-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.expertise-column {
    min-height: 280px;
    padding: 1.65rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.expertise-column:hover {
    background: var(--cream-soft);
    transform: translateY(-3px);
}

.expertise-number {
    margin-bottom: 2.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    opacity: 0.42;
}

.expertise-column h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.expertise-column p {
    margin-bottom: 0;
    color: var(--text-soft);
}


/* ---------------------------------------------------------
   08. SERVICES / METHOD
   --------------------------------------------------------- */

.method-section {
    background: var(--charcoal);
    color: var(--cream);
}

.method-heading {
    margin-bottom: 3.5rem;
}

.method-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.method-list {
    border-top: 1px solid var(--line-light);
}

.method-step {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(210px, 0.7fr) minmax(300px, 1fr) 36px;
    gap: 1.6rem;
    align-items: center;
    min-height: 132px;
    border-bottom: 1px solid var(--line-light);
    transition:
        padding-left 0.25s ease,
        background-color 0.25s ease;
}

.method-step:hover {
    padding-left: 0.7rem;
    background: rgba(248, 246, 241, 0.025);
}

.method-number {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: rgba(248, 246, 241, 0.35);
}

.method-step h3 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.method-step p {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(248, 246, 241, 0.6);
}

.method-arrow {
    justify-self: end;
    font-size: 1rem;
    color: rgba(248, 246, 241, 0.46);
}


/* ---------------------------------------------------------
   09. FOUNDER IMAGE
   --------------------------------------------------------- */

.founder-preview {
    background: var(--cream-deep);
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.founder-portrait-wrap {
    min-height: clamp(520px, 55vw, 700px);
    overflow: hidden;
    background: #2d2927;
}

.founder-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.85s ease;
}

.founder-portrait-wrap:hover .founder-image {
    transform: scale(1.025);
}

.founder-copy {
    max-width: 590px;
}

.founder-copy h2 {
    margin-bottom: 1.6rem;
    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.founder-name {
    margin-bottom: 0.05rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.founder-role {
    margin-bottom: 1.6rem;
    color: rgba(32, 32, 32, 0.48);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.founder-copy p:not(.founder-name):not(.founder-role) {
    color: var(--text-soft);
}


/* ---------------------------------------------------------
   10. PERSPECTIVES
   --------------------------------------------------------- */

.perspectives-preview {
    background: var(--cream);
}

.perspective-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.perspective-card {
    background: var(--cream-soft);
}

.perspective-image {
    min-height: 300px;
}

.perspective-copy {
    padding: 1.6rem;
}

.perspective-copy > span {
    display: block;
    margin-bottom: 0.9rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.48;
}

.perspective-copy h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}

.perspective-copy p {
    color: var(--text-soft);
}

.perspective-copy a {
    display: inline-flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   11. PLACEHOLDER VISUALS
   --------------------------------------------------------- */

.placeholder-visual {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(
            45deg,
            rgba(248, 246, 241, 0.025) 0,
            rgba(248, 246, 241, 0.025) 1px,
            transparent 1px,
            transparent 18px
        ),
        #3b3b3b;
}

.placeholder-visual::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(248, 246, 241, 0.13);
    pointer-events: none;
}

.placeholder-label {
    position: absolute;
    left: 1.6rem;
    bottom: 1.6rem;
    max-width: 240px;
    color: rgba(248, 246, 241, 0.62);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   12. CONVERSATION
   --------------------------------------------------------- */

.conversation-section {
    background: var(--black);
    color: var(--cream);
}

.conversation-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
}

.conversation-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.98;
}

.conversation-action {
    padding-bottom: 0.4rem;
}

.conversation-action p {
    max-width: 440px;
    margin-bottom: 1.7rem;
    color: rgba(248, 246, 241, 0.64);
}


/* ---------------------------------------------------------
   13. FOOTER
   --------------------------------------------------------- */

.site-footer {
    background: #151515;
    color: var(--cream);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
    gap: 3rem;
    padding: 3.2rem 0;
}

.footer-logo {
    display: block;
    margin-bottom: 0.7rem;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.15em;
}

.footer-logo span {
    font-weight: 300;
}

.footer-brand p,
.footer-contact p {
    color: rgba(248, 246, 241, 0.42);
    font-size: 0.76rem;
}

.footer-navigation,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 0.5rem;
}

.footer-navigation a,
.footer-contact a {
    width: fit-content;
    font-size: 0.76rem;
}

.footer-contact {
    justify-self: end;
}

.footer-legal {
    padding: 1.35rem 0 2rem;
    border-top: 1px solid rgba(248, 246, 241, 0.1);
}

.footer-legal p {
    max-width: 1150px;
    margin-bottom: 0;
    color: rgba(248, 246, 241, 0.3);
    font-size: 0.62rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   14. REVEAL
   --------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ---------------------------------------------------------
   15. TABLET
   --------------------------------------------------------- */

@media (max-width: 1180px) {

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-navigation {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-navigation {
        position: fixed;
        inset: 78px 0 auto 0;
        z-index: 2999;
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding: 0 2rem;
        background: var(--cream);
        color: var(--charcoal);
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .mobile-navigation.open {
        max-height: calc(100svh - 78px);
        padding-top: 1.35rem;
        padding-bottom: 1.8rem;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }

    .mobile-navigation > a {
        display: flex;
        gap: 0.65rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line-dark);
        font-size: 1rem;
        letter-spacing: 0.03em;
    }

    .mobile-navigation > a span {
        font-size: 0.6rem;
        opacity: 0.42;
    }

    .mobile-language-switcher {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        margin-top: 1.25rem;
        font-size: 0.74rem;
        letter-spacing: 0.1em;
    }

    .mobile-language-switcher a {
        opacity: 0.5;
    }

    .mobile-language-switcher .active-language {
        opacity: 1;
    }

    .mobile-phone {
        margin-top: 0.85rem;
        border-bottom: 0 !important;
        font-size: 0.78rem !important;
        letter-spacing: 0.08em;
    }

    .expertise-columns {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .perspective-card:last-child {
        grid-column: 1 / -1;
    }
}


/* ---------------------------------------------------------
   16. MOBILE
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .wide-container,
    .narrow-container,
    .header-inner,
    .hero-inner {
        width: min(calc(100% - 2rem), var(--max-width));
    }

    .section-padding {
        padding: 4.25rem 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .mobile-navigation {
        inset: 70px 0 auto 0;
        padding-inline: 1rem;
    }

    .mobile-navigation.open {
        max-height: calc(100svh - 70px);
    }

    .brand {
        min-width: 145px;
    }

    .brand-logo {
        width: 150px;
        max-width: 48vw;
    }

    .header-phone,
    .language-switcher {
        display: none;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .hero {
        min-height: 88svh;
    }

    .hero-image {
        object-position: 58% center;
    }

    .hero-content {
        padding-top: 8rem;
        padding-bottom: 4.8rem;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.3rem);
    }

    .hero-statement {
        max-width: 96%;
    }

    .hero-index,
    .scroll-cue {
        display: none;
    }

    .belief-grid,
    .section-heading-row,
    .founder-grid,
    .conversation-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .belief-heading h2,
    .section-heading-row h2,
    .method-heading h2,
    .founder-copy h2,
    .conversation-heading h2 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .belief-image {
        height: 300px;
    }

    .expertise-columns,
    .perspective-grid {
        grid-template-columns: 1fr;
    }

    .perspective-card:last-child {
        grid-column: auto;
    }

    .expertise-column {
        min-height: 235px;
    }

    .method-step {
        grid-template-columns: 44px 1fr;
        gap: 0.9rem;
        padding: 1.35rem 0;
    }

    .method-step p {
        grid-column: 2;
    }

    .method-arrow {
        display: none;
    }

    .founder-portrait-wrap {
        min-height: 470px;
    }

    .founder-image {
        object-position: center 16%;
    }

    .perspective-image {
        min-height: 270px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact {
        justify-self: start;
    }
}


/* ---------------------------------------------------------
   17. SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 430px) {

    .brand-logo {
        width: 138px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .belief-heading h2,
    .section-heading-row h2,
    .method-heading h2,
    .founder-copy h2,
    .conversation-heading h2 {
        font-size: 2.45rem;
    }

    .belief-image {
        height: 250px;
    }

    .founder-portrait-wrap {
        min-height: 430px;
    }

    .placeholder-label {
        left: 1.25rem;
        bottom: 1.25rem;
    }
}
/* =========================================================
   18. INTERIOR PAGE — SHARED
   ========================================================= */

.inner-page {
    background: var(--cream);
}

.inner-header {
    background: rgba(17, 17, 17, 0.92);
}

.inner-header::after {
    background: rgba(248, 246, 241, 0.12);
}

.inner-header.scrolled {
    background: rgba(248, 246, 241, 0.96);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 10.5rem 0 6.25rem;
    background:
        linear-gradient(135deg, #efe9de 0%, #f8f6f1 58%, #eee8dc 100%);
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(32, 32, 32, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(32, 32, 32, 0.025) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.inner-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.35fr);
    gap: 3rem;
    align-items: end;
}

.inner-hero-copy {
    max-width: 900px;
}

.inner-hero h1 {
    max-width: 860px;
    margin-bottom: 1.6rem;
    font-size: clamp(3.35rem, 6.2vw, 6.3rem);
    line-height: 0.98;
}

.inner-hero-copy > p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.72;
}

.inner-hero-index {
    justify-self: end;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(6rem, 12vw, 12rem);
    line-height: 0.8;
    color: rgba(32, 32, 32, 0.055);
    pointer-events: none;
}


/* =========================================================
   19. EXPERTISE — WHY ORGANIZATIONS INVEST
   ========================================================= */

.investment-section {
    background: var(--cream);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.investment-item {
    min-height: 270px;
    padding: 1.65rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.investment-item:hover {
    background: var(--cream-soft);
    transform: translateY(-3px);
}

.investment-item > span {
    display: block;
    margin-bottom: 2.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    opacity: 0.4;
}

.investment-item h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.investment-item p {
    margin-bottom: 0;
    color: var(--text-soft);
}


/* =========================================================
   20. EXPERTISE — SERVICE CHAPTERS
   ========================================================= */

.service-chapter-light {
    background: var(--cream-deep);
}

.service-chapter-dark {
    background: var(--charcoal);
    color: var(--cream);
}

.service-chapter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(3.5rem, 8vw, 8rem);
    align-items: start;
}

.service-chapter-copy {
    max-width: 760px;
}

.service-chapter-copy h2,
.service-chapter-feature h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.9rem, 5.1vw, 5.2rem);
}

.service-lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.35;
    color: var(--charcoal);
}

.service-chapter-dark .service-lead {
    color: var(--cream);
}

.service-chapter-copy > p:not(.service-lead),
.service-feature-copy > p:not(.service-lead) {
    max-width: 650px;
    color: var(--text-soft);
}

.service-chapter-dark .service-feature-copy > p:not(.service-lead) {
    color: rgba(248, 246, 241, 0.62);
}

.service-includes {
    margin-top: 2.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
}

.service-includes h3 {
    margin-bottom: 1.2rem;
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-includes ul,
.service-examples ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-includes li,
.service-examples li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.25rem;
    border-bottom: 1px solid var(--line-dark);
    color: var(--text-soft);
}

.service-includes li::before,
.service-examples li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.service-chapter-side {
    padding-top: 4.5rem;
}

.service-examples {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid var(--line-dark);
}

.service-side-label {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 0.61rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.52;
}

.service-chapter-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
    margin-bottom: 4rem;
}

.service-feature-copy {
    padding-top: 2.3rem;
}


/* =========================================================
   21. EMPLOYEE ENGAGEMENT PROGRAM
   ========================================================= */

.seasonal-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.season-card {
    min-height: 300px;
    padding: 1.6rem;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.season-card:hover {
    background: rgba(248, 246, 241, 0.025);
    transform: translateY(-3px);
}

.season-card > span {
    display: block;
    margin-bottom: 2.5rem;
    color: rgba(248, 246, 241, 0.42);
    font-size: 0.59rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.season-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

.season-card p {
    margin-bottom: 0;
    color: rgba(248, 246, 241, 0.58);
}

.engagement-examples {
    margin-top: 3.2rem;
}

.engagement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.engagement-tags span {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(248, 246, 241, 0.18);
    color: rgba(248, 246, 241, 0.75);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   22. EXPERTISE — DIFFERENCE
   ========================================================= */

.difference-section {
    background: var(--cream);
}

.difference-heading {
    max-width: 820px;
    margin-bottom: 3.5rem;
}

.difference-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3rem, 5.3vw, 5.4rem);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.difference-item {
    min-height: 230px;
    padding: 1.65rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.difference-item > span {
    display: block;
    margin-bottom: 3rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    opacity: 0.4;
}

.difference-item h3 {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 2.2vw, 2.4rem);
}


/* =========================================================
   23. EXPERTISE — PROCESS
   ========================================================= */

.process-section {
    background: var(--charcoal-soft);
    color: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.process-step {
    position: relative;
    min-height: 210px;
    padding: 1.35rem;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -0.55rem;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    display: grid;
    place-items: center;
    background: var(--charcoal-soft);
    color: rgba(248, 246, 241, 0.35);
    font-size: 0.7rem;
}

.process-step > span {
    display: block;
    margin-bottom: 3.6rem;
    color: rgba(248, 246, 241, 0.36);
    font-size: 0.56rem;
    letter-spacing: 0.14em;
}

.process-step h3 {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
}


/* =========================================================
   24. INTERIOR PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {

    .investment-grid,
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seasonal-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 900px) {

    .inner-hero-grid,
    .service-chapter-grid,
    .service-chapter-feature {
        grid-template-columns: 1fr;
    }

    .inner-hero-index {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .service-chapter-side,
    .service-feature-copy {
        padding-top: 0;
    }
}

@media (max-width: 760px) {

    .inner-hero {
        padding: 8.5rem 0 4.75rem;
    }

    .inner-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.4rem);
    }

    .inner-hero-index {
        display: none;
    }

    .investment-grid,
    .difference-grid,
    .seasonal-timeline,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .investment-item,
    .difference-item,
    .season-card {
        min-height: auto;
    }

    .service-chapter-copy h2,
    .service-chapter-feature h2,
    .difference-heading h2 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .service-chapter-side {
        padding-top: 0;
    }

    .service-examples {
        padding: 1.5rem;
    }

    .process-step {
        min-height: 150px;
    }

    .process-step::after {
        display: none !important;
    }
}

/* =========================================================
   25. FINAL CONTENT SCALE & HOMEPAGE ICONS
   Header/navigation typography intentionally remains unchanged.
   ========================================================= */

main,
.site-footer {
    font-size: 0.93em;
}

.hero h1 {
    font-size: clamp(3rem, 5.65vw, 5.45rem);
}

.hero-statement {
    font-size: clamp(0.88rem, 1.02vw, 0.98rem);
}

.section-heading-row h2 {
    font-size: clamp(2.25rem, 4.05vw, 4.2rem);
}

.method-heading h2,
.founder-copy h2,
.conversation-heading h2 {
    font-size: clamp(2.5rem, 4.4vw, 4.35rem);
}

.expertise-column h3,
.method-step h3,
.perspective-copy h3 {
    font-size: clamp(1.4rem, 1.85vw, 1.95rem);
}

.lead-copy,
.service-lead {
    font-size: clamp(1.2rem, 1.75vw, 1.65rem);
}

.inner-hero h1 {
    font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.service-chapter-copy h2,
.service-chapter-feature h2,
.difference-heading h2 {
    font-size: clamp(2.6rem, 4.65vw, 4.75rem);
}

.investment-item h3,
.season-card h3,
.difference-item h3 {
    font-size: clamp(1.42rem, 1.85vw, 2rem);
}

.process-step h3 {
    font-size: clamp(1.2rem, 1.55vw, 1.65rem);
}

.method-introduction {
    max-width: 540px;
    margin: 1.25rem 0 0;
    color: rgba(248, 246, 241, 0.62);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.impact-icon-grid .expertise-column {
    position: relative;
}

.impact-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1.35rem;
    color: var(--gold);
}

.impact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.impact-closing {
    max-width: 810px;
    margin: 3.25rem auto 0;
    text-align: center;
    color: var(--text-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 1.65vw, 1.45rem);
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .brand {
        min-width: 205px;
    }

    .brand-logo {
        width: min(215px, 24vw);
    }
}

@media (max-width: 760px) {
    .brand {
        min-width: 168px;
    }

    .brand-logo {
        width: min(185px, 48vw);
    }

    .hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .section-heading-row h2,
    .method-heading h2,
    .founder-copy h2,
    .conversation-heading h2 {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .impact-closing {
        text-align: left;
    }
}


/* =========================================================
   26. CONTACT PAGE
   ========================================================= */

.contact-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 0.85rem 0;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.contact-form .button {
  margin-top: 0.75rem;
}

.form-confirmation {
  margin-top: 1rem;
  color: var(--text-soft);
}

.contact-process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-process-grid .process-step {
  min-height: 260px;
}

.contact-process-grid .process-step p {
  color: rgba(248,246,241,0.58);
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .form-grid,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   27. AMENDED GLOBAL SCALE
   ========================================================= */
:root { --compact-pad: clamp(4.25rem, 7vw, 7rem); }
html { font-size: 15px; }
main, .site-footer { font-size: .9rem; }
.compact-section { padding: var(--compact-pad) 0; }
.brand { min-width: 245px; }
.brand-logo { width: min(250px, 20vw); }
.hero h1 { font-size: clamp(2.9rem, 5.15vw, 5rem); }
.section-heading-row h2, .method-heading h2, .founder-copy h2, .conversation-heading h2,
.inner-hero h1, .visual-hero h1 { font-size: clamp(2.25rem, 4.1vw, 4.2rem); }
p { line-height: 1.65; }
.conversation-email { display:block; margin:.5rem 0 1.25rem; color:inherit; text-decoration:none; border-bottom:1px solid currentColor; width:max-content; }
.impact-icon-grid { grid-template-columns:repeat(3,1fr); }
.impact-icon-grid .expertise-column { min-height:210px; padding:1.2rem; }
.impact-icon-grid .expertise-column h3 { font-size:clamp(1.15rem,1.45vw,1.55rem); }
.impact-icon-grid .expertise-column p { font-size:.82rem; }
.impact-icon { width:1.8rem; height:1.8rem; margin-bottom:.9rem; }

.visual-hero { position:relative; min-height:72vh; display:flex; align-items:flex-end; background-image:var(--hero-image); background-size:cover; background-position:center; color:var(--cream); }
.compact-visual-hero { min-height:64vh; }
.visual-hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(16,16,16,.84),rgba(16,16,16,.32)); }
.visual-hero-content { position:relative; z-index:1; padding-top:11rem; padding-bottom:4.5rem; }
.visual-hero-content h1 { max-width:920px; margin:1rem 0 1.3rem; }
.visual-hero-content p { max-width:630px; color:rgba(248,246,241,.75); font-size:1rem; }

.approach-layout { display:grid; grid-template-columns:1.05fr .75fr; gap:3rem; align-items:start; }
.approach-heading h2 { font-size:clamp(2.4rem,4.5vw,4.5rem); }
.approach-intro { padding-top:2.3rem; color:var(--text-soft); }
.approach-path { grid-column:1/-1; display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:center; margin-top:1rem; }
.approach-path article { min-height:185px; border:1px solid var(--line-dark); padding:1.4rem; }
.approach-path article span { opacity:.4; font-size:.6rem; letter-spacing:.14em; }
.approach-path article strong { display:block; font-family:Georgia,serif; font-size:1.7rem; margin:1.5rem 0 .6rem; font-weight:400; }
.approach-path article p { color:var(--text-soft); font-size:.8rem; margin:0; }
.path-line { width:48px; height:1px; background:var(--gold); }

.service-editorial { background:var(--cream-deep); }
.service-editorial.alternate { background:var(--cream); }
.service-editorial-grid { display:grid; grid-template-columns:1fr .82fr; gap:clamp(3rem,7vw,7rem); align-items:center; }
.service-editorial-grid.reverse { grid-template-columns:.82fr 1fr; }
.service-editorial-copy h2 { font-size:clamp(2.3rem,4.1vw,4.1rem); }
.service-photo { margin:0; aspect-ratio:4/5; overflow:hidden; }
.service-photo img,.signature-photo img,.featured-journal-image img,.journal-image img,.contact-intro figure img { width:100%; height:100%; object-fit:cover; }
.expertise-ribbon { display:grid; grid-template-columns:repeat(4,1fr); margin-top:3.2rem; border-top:1px solid var(--line-dark); border-left:1px solid var(--line-dark); }
.expertise-ribbon > * { padding:1rem; border-right:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); font-size:.72rem; }
.expertise-ribbon > span { color:var(--gold); letter-spacing:.12em; text-transform:uppercase; }

.event-types-section { background:var(--charcoal); color:var(--cream); }
.event-types-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:5rem; }
.event-types-heading h2 { font-size:clamp(2.4rem,4.3vw,4.2rem); }
.event-types-heading p { color:rgba(248,246,241,.62); }
.event-type-list { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line-light); }
.event-type-list span { padding:1rem 0; border-bottom:1px solid var(--line-light); font-family:Georgia,serif; font-size:1.15rem; }

.mini-service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:.7rem; margin-top:2rem; }
.mini-service-grid span { border:1px solid var(--line-dark); padding:.85rem; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; }

.signature-program { background:var(--charcoal-soft); color:var(--cream); }
.signature-grid { display:grid; grid-template-columns:1fr .8fr; gap:5rem; align-items:center; }
.signature-copy h2 { font-size:clamp(2.5rem,4.5vw,4.5rem); }
.signature-copy p:not(.service-lead) { color:rgba(248,246,241,.62); }
.signature-photo { aspect-ratio:4/3; overflow:hidden; margin:0; }
.annual-rhythm { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:2.5rem; }
.annual-rhythm span { border:1px solid var(--line-light); padding:.7rem .9rem; font-size:.68rem; text-transform:uppercase; letter-spacing:.06em; }

.personal-note-grid { display:grid; grid-template-columns:340px 1fr; gap:clamp(3rem,7vw,7rem); align-items:start; }
.personal-note-side { position:sticky; top:8rem; }
.personal-note-side img { width:100%; aspect-ratio:4/5; object-fit:cover; }
.personal-note-side div { padding-top:1.2rem; display:grid; gap:.25rem; }
.personal-note-side span { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:.62rem; }
.personal-note-side strong { font-family:Georgia,serif; font-size:1.6rem; font-weight:400; }
.personal-note-side small { color:var(--text-soft); }
.personal-note-copy { max-width:760px; }
.personal-note-copy h2 { font-size:clamp(2.6rem,4.4vw,4.3rem); }
.personal-note-copy p { font-size:.93rem; }
.signature-block { margin-top:2.5rem; display:grid; gap:.2rem; }
.signature-block em { font-family:Georgia,serif; font-size:1.2rem; }
.signature-block strong { font-family:Georgia,serif; font-size:2rem; font-weight:400; }
.signature-block span { color:var(--text-soft); font-size:.75rem; }
.compact-difference-grid .difference-item { min-height:165px; padding:1.2rem; }
.compact-difference-grid .difference-item > span { margin-bottom:1.8rem; }
.compact-difference-grid .difference-item h3 { font-size:1.35rem; }

.process-intro { display:grid; grid-template-columns:1fr .65fr; gap:4rem; align-items:end; margin-bottom:2.5rem; }
.process-intro h2 { font-size:clamp(2.4rem,4.3vw,4.3rem); }
.process-intro p { color:rgba(248,246,241,.58); }
.process-journey { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-light); }
.process-journey article { background:var(--charcoal-soft); padding:1.4rem; min-height:190px; }
.process-journey article span { opacity:.35; }
.process-journey h3 { font-size:1.45rem; margin:2.3rem 0 .5rem; }
.process-journey p { color:rgba(248,246,241,.55); font-size:.78rem; }

.featured-journal { background:var(--cream-deep); }
.featured-journal-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.featured-journal-image { margin:0; aspect-ratio:5/4; overflow:hidden; }
.featured-journal-copy > span,.journal-copy > span { color:var(--gold); font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; }
.featured-journal-copy h2 { font-size:clamp(2.3rem,4vw,4rem); }
.featured-journal-copy blockquote { margin:1.5rem 0; font-family:Georgia,serif; font-size:1.35rem; }
.journal-library { padding-top:4rem; }
.journal-heading { display:flex; justify-content:space-between; align-items:end; margin-bottom:2.2rem; }
.journal-heading h2 { font-size:clamp(2.2rem,3.8vw,3.8rem); margin:0; }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.journal-card { border:1px solid var(--line-dark); background:var(--cream); }
.journal-image { display:block; aspect-ratio:16/10; overflow:hidden; }
.journal-image img { transition:transform .45s ease; }
.journal-card:hover .journal-image img { transform:scale(1.03); }
.journal-copy { padding:1.2rem; }
.journal-copy h3 { font-size:1.45rem; margin:.7rem 0; }
.journal-copy h3 a { color:inherit; text-decoration:none; }
.journal-copy p { font-size:.8rem; color:var(--text-soft); }

.article-hero { position:relative; min-height:68vh; display:flex; align-items:flex-end; background-image:var(--article-image); background-size:cover; background-position:center; color:var(--cream); }
.article-hero-shade { position:absolute; inset:0; background:linear-gradient(0deg,rgba(10,10,10,.86),rgba(10,10,10,.18)); }
.article-hero-copy { position:relative; z-index:1; padding-bottom:4rem; }
.article-hero-copy span { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:.65rem; }
.article-hero-copy h1 { max-width:850px; font-size:clamp(2.8rem,5vw,5rem); }
.article-hero-copy p { color:rgba(248,246,241,.65); }
.article-layout { width:min(1100px,calc(100% - 2rem)); margin:auto; display:grid; grid-template-columns:220px 1fr; gap:5rem; }
.article-aside { position:sticky; top:8rem; height:max-content; display:grid; gap:1rem; }
.article-aside span { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:.65rem; }
.article-aside a { color:inherit; text-decoration:none; font-size:.75rem; }
.article-content { max-width:720px; }
.article-content > p:first-child { font-family:Georgia,serif; font-size:1.45rem; }
.article-content p { font-size:.96rem; margin-bottom:1.4rem; }
.article-ending { margin-top:3rem; padding-top:2rem; border-top:1px solid var(--line-dark); }

.contact-main-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:5rem; align-items:start; }
.contact-intro h2 { font-size:clamp(2.3rem,4vw,4rem); }
.contact-intro figure { margin:2rem 0 0; aspect-ratio:4/3; overflow:hidden; }
.hidden-field { position:absolute; left:-9999px; }
.next-step-section { background:var(--charcoal-soft); color:var(--cream); }
.next-step-heading { margin-bottom:2rem; }
.next-step-heading h2 { font-size:clamp(2.4rem,4.3vw,4.2rem); }
.next-step-flow { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-light); }
.next-step-flow article { display:grid; grid-template-columns:auto 1fr; gap:1rem; background:var(--charcoal-soft); padding:1.5rem; min-height:180px; }
.next-step-flow article > span { opacity:.35; }
.next-step-flow h3 { font-size:1.35rem; margin:0 0 .7rem; }
.next-step-flow p { color:rgba(248,246,241,.55); font-size:.78rem; }
.direct-contact { background:var(--cream-deep); }
.direct-contact-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:6rem; align-items:center; }
.direct-contact-statement h2 { font-size:clamp(2.7rem,4.7vw,4.7rem); }
.direct-contact-card { background:var(--cream); border:1px solid var(--line-dark); padding:2rem; display:grid; gap:.75rem; }
.direct-contact-card > span { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:.65rem; }
.direct-contact-card p { margin:0; color:var(--text-soft); }
.direct-contact-card a { color:inherit; text-decoration:none; border-bottom:1px solid var(--line-dark); padding-bottom:.5rem; }

@media(max-width:1000px){
  .approach-layout,.service-editorial-grid,.service-editorial-grid.reverse,.signature-grid,.personal-note-grid,.featured-journal-grid,.contact-main-grid,.direct-contact-grid{grid-template-columns:1fr;}
  .personal-note-side{position:static;max-width:360px;}
  .approach-path{grid-template-columns:1fr;gap:1px;}
  .path-line{display:none;}
  .expertise-ribbon{grid-template-columns:repeat(2,1fr);}
  .event-types-grid,.process-intro{grid-template-columns:1fr;gap:2rem;}
  .journal-grid{grid-template-columns:repeat(2,1fr);}
  .article-layout{grid-template-columns:1fr;gap:2rem;}
  .article-aside{position:static;}
}
@media(max-width:760px){
  html{font-size:14px;}
  .brand{min-width:175px}.brand-logo{width:min(195px,52vw)}
  .impact-icon-grid,.journal-grid,.event-type-list,.mini-service-grid,.process-journey,.next-step-flow{grid-template-columns:1fr;}
  .expertise-ribbon{grid-template-columns:1fr;}
  .approach-path article,.process-journey article,.next-step-flow article{min-height:auto;}
  .visual-hero-content{padding-top:9rem;padding-bottom:3.5rem;}
  .compact-visual-hero{min-height:58vh;}
}

/* =========================================================
   28. FINAL AMENDMENTS — RESTORED SCALE & NEW VISUAL DETAILS
   ========================================================= */

/* Restore the previous overall text scale and spacing.
   The compact card dimensions remain unchanged. */
html {
    font-size: 16px;
}

main,
.site-footer {
    font-size: 1em;
}

:root {
    --compact-pad: clamp(5.75rem, 9vw, 9rem);
}

.hero h1 {
    font-size: clamp(3rem, 5.65vw, 5.45rem);
}

.section-heading-row h2 {
    font-size: clamp(2.25rem, 4.05vw, 4.2rem);
}

.method-heading h2,
.founder-copy h2,
.conversation-heading h2 {
    font-size: clamp(2.5rem, 4.4vw, 4.35rem);
}

.inner-hero h1,
.visual-hero h1 {
    font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.perspective-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.perspective-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.perspective-card:hover .perspective-image img {
    transform: scale(1.035);
}

/* More editorial areas-of-expertise treatment */
.expertise-showcase {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    margin-top: 3.5rem;
    border: 1px solid var(--line-dark);
    background: rgba(255,255,255,0.22);
}

.expertise-showcase-title {
    padding: 2rem;
    border-right: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-showcase-title span {
    color: var(--gold);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.expertise-showcase-title p {
    margin: 4rem 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.45;
}

.expertise-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.expertise-showcase-grid article {
    min-height: 116px;
    padding: 1.25rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    display: grid;
    align-content: space-between;
    transition: background-color .25s ease;
}

.expertise-showcase-grid article:hover {
    background: var(--cream-soft);
}

.expertise-showcase-grid b {
    font-size: 0.56rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    opacity: .4;
}

.expertise-showcase-grid strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Ensure the signature program lead sentence is white */
.signature-program .service-lead {
    color: var(--cream) !important;
}

/* Founder heading on one line where space allows */
.personal-note-title {
    white-space: nowrap;
    font-size: clamp(2.35rem, 4vw, 4rem) !important;
}

/* Gold manuscript-style signature */
.manuscript-signature {
    color: var(--gold);
    font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive !important;
    font-size: clamp(2.4rem, 4vw, 3.8rem) !important;
    font-weight: 400 !important;
    line-height: 1;
    transform: rotate(-3deg);
    transform-origin: left center;
    display: inline-block;
    margin-top: .25rem;
}

/* Small process visuals */
.process-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-journey h3 {
    margin-top: 1.1rem;
}

/* Better notebook crop */
.service-photo img[src*="charcoal-notebook-gold-logo"] {
    object-position: center;
}

@media (max-width: 1000px) {
    .expertise-showcase {
        grid-template-columns: 1fr;
    }

    .expertise-showcase-title {
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .expertise-showcase-title p {
        margin-top: 1.5rem;
    }

    .personal-note-title {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    html {
        font-size: 15px;
    }

    .expertise-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Safety fallback: page content remains visible when local JavaScript is blocked. */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   V4 REFINEMENTS — PROPORTION, RHYTHM & VISUAL CLARITY
   ========================================================= */

/* Homepage hero now matches the scale of interior hero images. */
.hero {
    min-height: 64vh !important;
    height: auto !important;
}

.hero-media,
.hero-shade {
    min-height: 64vh;
}

.hero-image {
    object-fit: cover;
    image-rendering: auto;
}

/* Content blocks should feel complete without suggesting a false page ending. */
.compact-section,
.section-padding {
    padding-top: clamp(4rem, 6vw, 6rem) !important;
    padding-bottom: clamp(4rem, 6vw, 6rem) !important;
}

.conversation-section.compact-section,
.signature-program.compact-section,
.event-types-section.compact-section,
.process-section.compact-section,
.next-step-section.compact-section,
.direct-contact.compact-section {
    padding-top: clamp(3.75rem, 5.5vw, 5.5rem) !important;
    padding-bottom: clamp(3.75rem, 5.5vw, 5.5rem) !important;
}

/* Header ribbon: logo and navigation enlarged by approximately 15%. */
.brand-logo {
    width: min(288px, 23vw) !important;
}

.desktop-navigation a,
.language-switcher,
.header-phone {
    font-size: 1.15em !important;
}

.site-header .header-inner {
    min-height: 92px;
}

/* Organic icon list instead of a boxed expertise table. */
.expertise-icon-section {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: minmax(230px, .65fr) 1.35fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    padding-top: 2.25rem;
    border-top: 1px solid var(--line-dark);
}

.expertise-icon-heading > span {
    display: block;
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.expertise-icon-heading p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.45;
}

.expertise-icon-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
}

.expertise-icon-list article {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .85rem;
    align-items: center;
    min-height: 68px;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line-dark);
}

.expertise-icon {
    color: var(--gold);
    font-size: 1.35rem;
    text-align: center;
}

.expertise-icon-list strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 400;
}

/* Small event visuals. */
.event-type-list span {
    display: grid !important;
    grid-template-columns: 1.55rem 1fr;
    gap: .8rem;
    align-items: center;
}

.event-type-list i {
    color: var(--gold);
    font-style: normal;
    font-size: 1rem;
    text-align: center;
}

/* Larger founder portrait and better balance. */
.personal-note-grid {
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr) !important;
    gap: clamp(3rem, 6vw, 6.5rem) !important;
    align-items: start;
}

.personal-note-side img {
    width: 100%;
    max-height: 760px;
    object-fit: cover;
    object-position: center top;
}

/* Warmly matches the body typography; signature is finer and more natural. */
.signature-block em {
    font-family: inherit !important;
    font-size: 1rem !important;
    font-style: normal !important;
    color: var(--text-soft);
}

.manuscript-signature {
    font-family: "Segoe Script", "Bradley Hand", "Snell Roundhand", cursive !important;
    font-size: clamp(2.25rem, 3.6vw, 3.25rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.055em;
    line-height: 1.15 !important;
    transform: rotate(-2deg) !important;
}

/* Give editorial images enough presence without creating oversized blocks. */
.service-photo {
    aspect-ratio: 5 / 4 !important;
}

.contact-intro figure {
    aspect-ratio: 5 / 4 !important;
}

@media (max-width: 1000px) {
    .expertise-icon-section,
    .personal-note-grid {
        grid-template-columns: 1fr !important;
    }

    .brand-logo {
        width: min(250px, 55vw) !important;
    }
}

@media (max-width: 700px) {
    .hero,
    .hero-media,
    .hero-shade {
        min-height: 58vh !important;
    }

    .expertise-icon-list {
        grid-template-columns: 1fr;
    }

    .compact-section,
    .section-padding {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}



/* =========================================================
   LAUNCH CANDIDATE — APPROVED BRAND ASSETS & EDITORIAL IMAGERY
   ========================================================= */

/* Navigation returned to the earlier, more understated scale. */
.desktop-navigation a,
.language-switcher,
.header-phone {
    font-size: 0.88rem !important;
}

.site-header .header-inner {
    min-height: 78px !important;
}

.brand {
    min-width: 205px !important;
}

.brand-logo {
    width: min(220px, 18vw) !important;
}

.footer-logo-image {
    display: block;
    width: min(240px, 100%);
    height: auto;
    margin-bottom: 1.15rem;
}

/* Image-led ways-to-work-together cards. */
.work-together-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 3rem;
    background: rgba(248, 246, 241, 0.16);
}

.work-together-card {
    background: var(--charcoal-soft);
    overflow: hidden;
}

.work-together-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.work-together-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.work-together-card:hover .work-together-image img {
    transform: scale(1.035);
}

.work-together-copy {
    padding: 1.4rem 1.45rem 1.6rem;
}

.work-together-copy h3 {
    margin: 0 0 0.8rem;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 1.7vw, 1.8rem);
    font-weight: 400;
}

.work-together-copy p {
    min-height: 4.4em;
    color: rgba(248, 246, 241, 0.62);
    font-size: 0.8rem;
}

.work-together-copy > a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Real founder signature and discreet seal. */
.signature-image {
    display: block;
    width: min(330px, 86%);
    height: auto;
    margin-top: 0.35rem;
}

.founder-badge {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 1.6rem 0 0 auto;
    opacity: 0.78;
}

.process-editorial-image {
    width: min(720px, 100%);
    margin: 0 0 3rem auto;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.process-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure personal and editorial photography remains crisp. */
.founder-image,
.personal-note-side img {
    object-position: center top;
}

@media (max-width: 1000px) {
    .work-together-grid {
        grid-template-columns: 1fr;
    }

    .work-together-copy p {
        min-height: 0;
    }

    .brand-logo {
        width: min(205px, 49vw) !important;
    }
}

@media (max-width: 760px) {
    .desktop-navigation a,
    .language-switcher,
    .header-phone {
        font-size: 0.82rem !important;
    }

    .founder-badge {
        margin-left: 0;
    }
}



/* =========================================================
   LAUNCH CANDIDATE V2 — BUSINESS MODEL & NAVIGATION
   ========================================================= */

/* Smaller, modern navigation typography */
.desktop-navigation a,
.language-switcher,
.header-phone {
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif !important;
    font-size: 0.62rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.075em !important;
    text-transform: uppercase;
}

.desktop-navigation a span {
    font-family: inherit !important;
    font-size: 0.49rem !important;
    letter-spacing: 0.04em !important;
}

.desktop-navigation {
    gap: clamp(0.9rem, 1.35vw, 1.5rem) !important;
}

.site-header .header-inner {
    min-height: 74px !important;
}

.brand {
    min-width: 195px !important;
}

.brand-logo {
    width: min(205px, 17vw) !important;
}

/* Three ways we can work together */
.ways-section {
    background: var(--cream);
    color: var(--charcoal);
}

.ways-heading {
    max-width: 820px;
    margin: 0 auto 2.8rem;
    text-align: center;
}

.ways-eyebrow {
    margin-bottom: 0.55rem;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.ways-heading h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

.ways-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line-dark);
    background: var(--line-dark);
}

.ways-card {
    background: var(--cream);
}

.ways-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ways-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ways-card:hover .ways-image img {
    transform: scale(1.035);
}

.ways-copy {
    position: relative;
    min-height: 230px;
    padding: 1.3rem 1.4rem 1.45rem;
}

.ways-number {
    position: absolute;
    top: 1.25rem;
    right: 1.3rem;
    color: rgba(32, 32, 32, 0.3);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
}

.ways-copy h3 {
    max-width: 88%;
    margin-bottom: 0.8rem;
    font-size: clamp(1.3rem, 1.65vw, 1.7rem);
    line-height: 1.14;
}

.ways-copy p {
    min-height: 4.8em;
    margin-bottom: 1.35rem;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.65;
}

.ways-copy > a {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--charcoal);
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ways-copy > a span {
    color: var(--gold);
    transition: transform 0.2s ease;
}

.ways-copy > a:hover span {
    transform: translateX(4px);
}

.ways-action {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}

/* Clearly visible round badge seal on The Studio page */
.founder-seal {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.65rem;
}

.founder-badge {
    width: 94px !important;
    height: 94px !important;
    margin: 0 !important;
    opacity: 1 !important;
    object-fit: contain;
}

/* The old dark work-together styles are retained only for compatibility. */
.work-together-grid {
    display: none;
}

@media (max-width: 1000px) {
    .ways-grid {
        grid-template-columns: 1fr;
    }

    .ways-copy {
        min-height: auto;
    }

    .ways-copy p {
        min-height: auto;
    }

    .brand-logo {
        width: min(195px, 48vw) !important;
    }
}

@media (max-width: 760px) {
    .ways-heading {
        text-align: left;
    }

    .ways-heading p {
        margin-left: 0;
    }

    .founder-seal {
        justify-content: flex-start;
    }
}



/* =========================================================
   FINAL CANDIDATE — NOTEBOOK & FOUNDER SIGN-OFF
   ========================================================= */

/* Final strategy notebook visual */
.process-editorial-image {
    width: min(760px, 100%);
    margin: 0 auto 3rem 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.process-editorial-image img,
.service-photo img[src*="strategy-notebook-final"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Founder sign-off refinement */
.founder-thank-you {
    margin-bottom: 0.25rem !important;
}

.signature-block {
    margin-top: 0.15rem !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    align-items: flex-start !important;
    justify-items: start !important;
}

.signature-block em {
    margin: 0 0 0.15rem 0 !important;
    color: var(--charcoal) !important;
    font-family: inherit !important;
    font-size: 0.94rem !important;
    font-style: normal !important;
    line-height: 1.4 !important;
}

.signature-image {
    display: block;
    width: min(215px, 58%) !important;
    height: auto;
    margin: 0 !important;
    object-fit: contain;
    object-position: left center;
}

.founder-seal {
    justify-content: flex-start !important;
    margin-top: 1rem !important;
}

.founder-badge {
    width: 74px !important;
    height: 74px !important;
}

@media (max-width: 760px) {
    .signature-image {
        width: min(190px, 66%) !important;
    }

    .process-editorial-image {
        aspect-ratio: 4 / 3;
    }
}


/* =========================================================
   UPDATED BRAND ASSETS — FINAL ENGLISH MASTER
   ========================================================= */

/* The visible ink in the cropped signature begins exactly at the
   left edge of the founder note. */
.signature-block {
    display: grid !important;
    justify-items: start !important;
    align-items: start !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.signature-image {
    display: block !important;
    width: min(205px, 55%) !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    object-position: left center !important;
    justify-self: start !important;
}

.founder-seal {
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

/* =========================================================
   PRODUCTION v1.0 — FINAL SHARED BRAND REFINEMENTS
   ========================================================= */
.brand-logo {
    width: min(232px, 19vw) !important;
}
.footer-logo-gold {
    width: min(285px, 100%) !important;
    height: auto !important;
    object-fit: contain;
    object-position: left center;
}
.founder-seal,
.founder-badge {
    display: none !important;
}
@media (max-width: 1000px) {
    .brand-logo { width: min(218px, 51vw) !important; }
}
