/* ==========================================================================
   Birchmont Group Inc.
   ========================================================================== */

:root {
    --navy: #0F1B2D;
    --navy-deep: #0A1322;
    --navy-light: #1B2A40;
    --navy-accent: #2A3B54;
    --cream: #F6F3EC;
    --cream-dark: #EFEADD;
    --gold: #C9A44A;
    --gold-light: #E0BB6F;
    --body: #3B4A60;
    --muted: #6B7A92;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --max-width: 1200px;
    --max-width-narrow: 780px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --transition: 0.5s var(--ease);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--cream);
    font-size: clamp(15px, 0.9vw + 0.5rem, 17px);
    line-height: 1.75;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
blockquote { margin: 0; padding: 0; border: none; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}
.container--narrow { max-width: var(--max-width-narrow); }

/* --- Section --- */
.section {
    padding: clamp(96px, 14vw, 180px) 0;
    position: relative;
}
.section--dark {
    background: var(--navy);
    color: var(--cream);
}

/* --- Typography --- */
.label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
}
.label--gold { color: var(--gold); }

.heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--navy);
}
.heading--light { color: var(--cream); }

/* ==========================================================================
   LOGO
   ========================================================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    color: currentColor;
    white-space: nowrap;
}
.logo__primary {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}
.logo__divider {
    width: 1px;
    height: 18px;
    background: var(--gold);
    margin: 0 14px;
    opacity: 0.7;
}
.logo__secondary {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1;
}
.logo--sm .logo__primary,
.logo--sm .logo__secondary { font-size: 13px; }
.logo--sm .logo__divider { height: 14px; margin: 0 10px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 0;
    transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(15, 27, 45, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom-color: rgba(201, 164, 74, 0.1);
}
.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cream);
}
.nav__logo { color: var(--cream); }
.nav__links {
    display: flex;
    gap: clamp(28px, 4vw, 52px);
}
.nav__links a {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.7);
    position: relative;
    padding: 6px 0;
    transition: color 0.4s var(--ease);
}
.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a:focus-visible::after { width: 100%; }

.nav__links a.is-active,
.nav__dropdown-trigger.is-active { color: var(--cream); }

/* --- Nav Dropdown --- */
.nav__dropdown {
    position: relative;
}
.nav__dropdown-trigger {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.7);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.4s var(--ease);
    position: relative;
}
.nav__dropdown-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}
.nav__dropdown-trigger:hover,
.nav__dropdown-trigger:focus-visible { color: var(--cream); }
.nav__dropdown-trigger:hover::after,
.nav__dropdown-trigger:focus-visible::after { width: 100%; }

.nav__chevron {
    transition: transform 0.3s var(--ease);
    width: 10px;
    height: 6px;
}
.nav__dropdown-trigger[aria-expanded="true"] .nav__chevron {
    transform: rotate(180deg);
}
.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 27, 45, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 164, 74, 0.12);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav__dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.65);
    padding: 10px 24px;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__dropdown-menu a:hover {
    color: var(--cream);
    background: rgba(201, 164, 74, 0.08);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 8px;
    width: 40px;
}
.nav__toggle span {
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: var(--navy-deep);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 48px;
}
.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
    pointer-events: none;
}
.hero__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 25% 35%, rgba(201, 164, 74, 0.07), transparent),
        radial-gradient(ellipse 50% 60% at 75% 65%, rgba(42, 59, 84, 0.6), transparent);
    animation: ambient 20s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes ambient {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.06) translate(-2%, 2%); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 clamp(24px, 5vw, 80px);
}
.hero__eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: clamp(24px, 3vw, 32px);
}
.hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.4vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--cream);
}
.hero__h1 strong { font-weight: 600; }
.hero__lead {
    font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
    line-height: 1.75;
    color: rgba(246, 243, 236, 0.6);
    max-width: 56ch;
    margin: clamp(24px, 3vw, 32px) auto 0;
}
.hero__pill {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.5);
    border: 1px solid rgba(201, 164, 74, 0.3);
    border-radius: 999px;
    padding: 9px 20px;
    margin-top: clamp(28px, 4vw, 40px);
}

.hero__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: clamp(36px, 5vw, 56px);
}
.hero__logo-primary {
    font-family: var(--font-display);
    font-size: clamp(44px, 8.5vw, 110px);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    display: block;
}
.hero__logo-rule {
    width: clamp(60px, 12vw, 140px);
    height: 1px;
    background: var(--gold);
    margin: clamp(14px, 2vw, 22px) 0;
}
.hero__logo-secondary {
    font-family: var(--font-display);
    font-size: clamp(14px, 2.5vw, 28px);
    font-weight: 200;
    letter-spacing: 0.45em;
    line-height: 1;
    display: block;
    padding-left: 0.45em;
}

.hero__rule-long {
    width: clamp(40px, 6vw, 64px);
    height: 1px;
    background: rgba(201, 164, 74, 0.4);
    margin: 0 auto clamp(24px, 3vw, 36px);
}
.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.55);
}

.hero__bottom {
    position: absolute;
    bottom: 40px;
    left: clamp(24px, 5vw, 80px);
    right: clamp(24px, 5vw, 80px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 1;
}
.hero__location,
.hero__est {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.35);
}
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 56px;
}
.hero__scroll-line {
    width: 1px;
    height: 100%;
    background: rgba(201, 164, 74, 0.25);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2.8s var(--ease-out) infinite;
}
@keyframes scrollPulse {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--cream); }

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}
.about__intro .heading {
    margin-top: 4px;
}
.about__text {
    font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
    line-height: 1.8;
    color: var(--body);
}
.about__text + .about__text {
    margin-top: 24px;
}

.about__divider {
    width: 100%;
    height: 1px;
    background: var(--cream-dark);
    margin: clamp(64px, 8vw, 100px) 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
}
.stat {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}
.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.stat__label {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
}

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.philosophy { background: var(--navy); }
.philosophy__head {
    margin-bottom: clamp(56px, 8vw, 96px);
}

.philosophy__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.philosophy__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    padding: clamp(36px, 5vw, 56px) 0;
    border-top: 1px solid rgba(246, 243, 236, 0.08);
}
.philosophy__item:last-child {
    border-bottom: 1px solid rgba(246, 243, 236, 0.08);
}
.philosophy__number {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 200;
    line-height: 1;
    color: var(--gold);
    opacity: 0.6;
    min-width: 80px;
    letter-spacing: -0.02em;
}
.philosophy__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.philosophy__desc {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    line-height: 1.8;
    color: rgba(246, 243, 236, 0.6);
    max-width: 56ch;
}

/* ==========================================================================
   INTERLUDE
   ========================================================================== */
.interlude {
    background: var(--cream);
    padding: clamp(80px, 12vw, 160px) 0;
}
.interlude__quote p {
    font-family: var(--font-body);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: var(--navy);
    text-align: center;
    position: relative;
}
.interlude__quote::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto clamp(32px, 4vw, 48px);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--navy); }
.contact__head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}
.contact__sub {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    color: rgba(246, 243, 236, 0.6);
    max-width: 44ch;
    margin: 20px auto 0;
    line-height: 1.7;
}
.contact__email {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin: 20px 0 14px;
    transition: color var(--transition);
    word-break: break-all;
}
.contact__email:hover,
.contact__email:focus-visible { color: var(--gold-light); }
.contact__location {
    text-align: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.35);
    margin-bottom: clamp(48px, 6vw, 80px);
}

.contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    max-width: 640px;
    margin: 0 auto;
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.4);
    margin-bottom: 10px;
}
.field input,
.field textarea {
    font: inherit;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cream);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(246, 243, 236, 0.12);
    padding: 12px 0 14px;
    transition: border-color 0.5s var(--ease);
    resize: vertical;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}
.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 20px 44px;
    border: 1px solid var(--gold);
    transition: background var(--transition), color var(--transition);
}
.btn:hover {
    background: transparent;
    color: var(--gold);
}
.form-status {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--gold);
    min-height: 1em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: 56px 0;
    border-top: 1px solid rgba(246, 243, 236, 0.05);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__logo { color: var(--cream); }
.footer__links {
    display: flex;
    gap: 36px;
}
.footer__links a {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.35);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
    font-size: 11px;
    color: rgba(246, 243, 236, 0.25);
    font-family: var(--font-display);
    letter-spacing: 0.06em;
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   SKIP LINK
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 200;
    padding: 12px 20px;
    background: var(--navy-deep);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: top 0.3s var(--ease);
}
.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ==========================================================================
   BUTTONS (variants)
   ========================================================================== */
.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(246, 243, 236, 0.3);
}
.btn--ghost:hover {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--cream);
}
.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}
.btn-row--start { justify-content: flex-start; }

/* ==========================================================================
   OUTCOMES (small bullets under cards/sections)
   ========================================================================== */
.outcomes {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.outcomes li {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
}
.outcomes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 1px;
    background: var(--gold);
}
.section--dark .outcomes li {
    color: rgba(246, 243, 236, 0.6);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.crumbs {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.crumbs li {
    color: rgba(246, 243, 236, 0.4);
}
.crumbs li + li::before {
    content: '/';
    margin-right: 12px;
    color: rgba(246, 243, 236, 0.25);
}
.crumbs a {
    color: rgba(246, 243, 236, 0.6);
    transition: color 0.3s var(--ease);
}
.crumbs a:hover { color: var(--gold); }
.crumbs li[aria-current="page"] { color: var(--gold); }

/* ==========================================================================
   FOCUS STATES
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ==========================================================================
   TEXT LINK
   ========================================================================== */
.text-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-top: 32px;
    transition: color var(--transition);
}
.text-link:hover { color: var(--gold-light); }
.text-link--gold { color: var(--gold); }

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */
.section-head {
    margin-bottom: clamp(48px, 7vw, 80px);
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(64px, 8vw, 100px);
}
.heading--page {
    font-size: clamp(36px, 5vw, 64px);
}
.page-hero__sub {
    font-size: clamp(15px, 1vw + 0.4rem, 18px);
    color: rgba(246, 243, 236, 0.55);
    max-width: 48ch;
    margin-top: 24px;
    line-height: 1.7;
}

/* ==========================================================================
   DIVISION CARDS
   ========================================================================== */
.division-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 32px);
}
.division-cards--grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.division-card {
    display: block;
    border: 1px solid rgba(246, 243, 236, 0.1);
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
    position: relative;
}
.section--dark .division-card {
    background: rgba(255, 255, 255, 0.02);
}
.section:not(.section--dark) .division-card {
    border-color: var(--cream-dark);
}
.division-card:hover {
    border-color: rgba(201, 164, 74, 0.3);
    transform: translateY(-3px);
}
.section--dark .division-card:hover {
    background: rgba(255, 255, 255, 0.04);
}
.division-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}
.division-card:hover::before { width: 100%; }

.division-card__inner {
    padding: clamp(32px, 4vw, 52px);
}
.division-card__label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}
.division-card__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.section--dark .division-card__title { color: var(--cream); }
.division-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 28px;
}
.section--dark .division-card__desc { color: rgba(246, 243, 236, 0.55); }
.division-card__link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.division-card--featured {
    border-color: rgba(201, 164, 74, 0.4);
    background: rgba(201, 164, 74, 0.04);
    margin-bottom: clamp(24px, 3vw, 32px);
}
.section--dark .division-card--featured { background: rgba(201, 164, 74, 0.06); }
.division-card--featured::before { width: 100%; height: 3px; }
.division-card--featured .division-card__inner { padding: clamp(40px, 5vw, 64px); }
.division-card--featured .division-card__title {
    font-size: clamp(26px, 3vw, 38px);
}
.division-card--featured .division-card__desc {
    font-size: clamp(15px, 1vw + 0.3rem, 17px);
    max-width: 62ch;
}
.divisions-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 32px);
}
@media (max-width: 760px) {
    .divisions-stack { grid-template-columns: 1fr; }
}

.divisions-cta {
    margin-top: clamp(40px, 5vw, 64px);
    text-align: center;
}

/* ==========================================================================
   DESIGN SERVICES PAGE
   ========================================================================== */
.design-hero {
    padding: clamp(160px, 20vw, 240px) 0 clamp(80px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}
.design-hero__sub {
    font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
    color: rgba(246, 243, 236, 0.6);
    max-width: 48ch;
    margin-top: 24px;
    line-height: 1.7;
}
.design-hero__pricing {
    font-family: var(--font-display);
    font-size: clamp(13px, 1vw, 15px);
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-bottom: 36px;
    max-width: 52ch;
}
.design-prose p {
    font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
    line-height: 1.8;
    color: var(--body);
    max-width: 56ch;
}
.design-prose p + p { margin-top: 24px; }

/* --- Process (cream bg variant of philosophy__item) --- */
.process {
    display: flex;
    flex-direction: column;
}
.process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    padding: clamp(32px, 4vw, 48px) 0;
    border-top: 1px solid var(--cream-dark);
}
.process__item:last-child {
    border-bottom: 1px solid var(--cream-dark);
}
.process__number {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 200;
    line-height: 1;
    color: var(--gold);
    opacity: 0.85;
    min-width: 80px;
    letter-spacing: -0.02em;
}
.process__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.process__desc {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    line-height: 1.8;
    color: var(--body);
    max-width: 56ch;
}

/* --- Trust Points --- */
.trust-points {
    margin-top: clamp(40px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(246, 243, 236, 0.08);
}
.trust-point:first-child { border-top: 1px solid rgba(246, 243, 236, 0.08); }
.trust-point__icon {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.trust-point p {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    line-height: 1.7;
    color: rgba(246, 243, 236, 0.7);
}
.section:not(.section--dark) .trust-point {
    border-bottom-color: var(--cream-dark);
}
.section:not(.section--dark) .trust-point:first-child {
    border-top-color: var(--cream-dark);
}
.section:not(.section--dark) .trust-point p { color: var(--body); }

/* --- FAQ --- */
.faq {
    margin-top: clamp(40px, 5vw, 64px);
}
.faq__item {
    border-top: 1px solid rgba(246, 243, 236, 0.1);
}
.faq__item:last-child {
    border-bottom: 1px solid rgba(246, 243, 236, 0.1);
}
.faq__question {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 500;
    color: var(--cream);
    padding: clamp(20px, 3vw, 28px) 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s var(--ease);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}
.faq__question:hover { color: var(--gold-light); }
.faq__answer {
    padding: 0 0 clamp(20px, 3vw, 28px);
}
.faq__answer p {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    line-height: 1.8;
    color: rgba(246, 243, 236, 0.6);
    max-width: 56ch;
}

/* --- Lead Form --- */
.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    max-width: 680px;
    margin: 0 auto;
}
.lead-form .field label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.lead-form .field input,
.lead-form .field textarea {
    font: inherit;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    padding: 12px 0 14px;
    transition: border-color 0.5s var(--ease);
    resize: vertical;
    width: 100%;
}
.lead-form .field input:focus,
.lead-form .field textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

/* --- Interest Tags --- */
.interest-tags {
    border: none;
}
.interest-tags legend {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.interest-tags__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.tag-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tag-option span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border: 1px solid var(--cream-dark);
    color: var(--muted);
    transition: all 0.3s var(--ease);
}
.tag-option:hover span {
    border-color: var(--gold);
    color: var(--navy);
}
.tag-option input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}
.tag-option input:focus-visible + span {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-success {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}
.form-status--error {
    color: #e07c5a;
}

/* ==========================================================================
   STUDIO SPOTLIGHT (home — flagship division band)
   ========================================================================== */
.spotlight {
    position: relative;
    background: var(--navy-deep);
    color: var(--cream);
    overflow: hidden;
    padding: clamp(96px, 14vw, 180px) 0;
}
.spotlight__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
}
.spotlight__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201, 164, 74, 0.12), transparent),
        radial-gradient(ellipse 60% 60% at 15% 75%, rgba(42, 59, 84, 0.55), transparent);
    pointer-events: none;
}
.spotlight__inner { position: relative; z-index: 1; }
.spotlight__heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--cream);
    max-width: 18ch;
    margin: 8px 0 28px;
}
.spotlight__lead {
    font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
    line-height: 1.8;
    color: rgba(246, 243, 236, 0.62);
    max-width: 60ch;
}
.spotlight__rule {
    width: clamp(48px, 7vw, 80px);
    height: 2px;
    background: var(--gold);
    margin: 36px 0;
}
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    margin: clamp(40px, 6vw, 64px) 0 clamp(40px, 5vw, 56px);
}
.value-prop {
    border-top: 1px solid rgba(201, 164, 74, 0.25);
    padding-top: 24px;
}
.value-prop__icon {
    color: var(--gold);
    margin-bottom: 18px;
}
.value-prop__icon svg { width: 26px; height: 26px; }
.value-prop__title {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.value-prop__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(246, 243, 236, 0.55);
}

/* ==========================================================================
   VERTICALS GRID
   ========================================================================== */
.verticals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(48px, 6vw, 72px);
}
.vertical {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(246, 243, 236, 0.1);
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.section:not(.section--dark) .vertical { border-color: var(--cream-dark); }
.vertical:hover {
    border-color: rgba(201, 164, 74, 0.35);
    transform: translateY(-3px);
}
.section--dark .vertical:hover { background: rgba(255, 255, 255, 0.03); }
.vertical__icon {
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
}
.vertical__icon svg { width: 30px; height: 30px; }
.vertical__label {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
}
.section--dark .vertical__label { color: var(--cream); }
.section:not(.section--dark) .vertical__label { color: var(--navy); }

/* Vertical cards with copy (Studio page) */
.vertical-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
    margin-top: clamp(48px, 6vw, 72px);
}
.vertical-card {
    border: 1px solid var(--cream-dark);
    padding: clamp(28px, 3.5vw, 40px);
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}
.section--dark .vertical-card { border-color: rgba(246, 243, 236, 0.1); }
.vertical-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}
.vertical-card:hover::before { width: 100%; }
.vertical-card:hover { transform: translateY(-3px); border-color: rgba(201, 164, 74, 0.35); }
.vertical-card__icon { color: var(--gold); margin-bottom: 20px; }
.vertical-card__icon svg { width: 32px; height: 32px; }
.vertical-card__title {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
}
.section--dark .vertical-card__title { color: var(--cream); }
.vertical-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
}
.section--dark .vertical-card__desc { color: rgba(246, 243, 236, 0.55); }

/* ==========================================================================
   SUPPORTING DIVISIONS (home — secondary, two-column)
   ========================================================================== */
.supporting {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
}
.supporting__col {
    border: 1px solid rgba(246, 243, 236, 0.1);
    padding: clamp(32px, 4vw, 52px);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.section--dark .supporting__col { background: rgba(255, 255, 255, 0.02); }
.supporting__col:hover {
    border-color: rgba(201, 164, 74, 0.3);
    transform: translateY(-3px);
}
.section--dark .supporting__col:hover { background: rgba(255, 255, 255, 0.04); }
.supporting__label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.supporting__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 14px;
}
.supporting__desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(246, 243, 236, 0.55);
    margin-bottom: 28px;
    flex-grow: 1;
}
.supporting__link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ==========================================================================
   SERVICE PILLARS (Studio — 5 disciplines)
   ========================================================================== */
.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
    margin-top: clamp(48px, 6vw, 72px);
}
.pillar {
    border: 1px solid var(--cream-dark);
    padding: clamp(32px, 4vw, 48px);
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.section--dark .pillar { border-color: rgba(246, 243, 236, 0.1); background: rgba(255, 255, 255, 0.02); }
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}
.pillar:hover::before { width: 100%; }
.pillar:hover { transform: translateY(-3px); border-color: rgba(201, 164, 74, 0.35); }
.pillar--wide { grid-column: 1 / -1; }
.pillar__icon { color: var(--gold); margin-bottom: 22px; }
.pillar__icon svg { width: 34px; height: 34px; }
.pillar__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.9vw, 26px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 16px;
}
.section--dark .pillar__title { color: var(--cream); }
.pillar__desc {
    font-size: clamp(15px, 1vw + 0.3rem, 16px);
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 24px;
    flex-grow: 1;
}
.section--dark .pillar__desc { color: rgba(246, 243, 236, 0.6); }

/* ==========================================================================
   SERVICE LIST (Systems / Advisory — numbered services)
   ========================================================================== */
.service-list { display: flex; flex-direction: column; }
.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding: clamp(32px, 4.5vw, 52px) 0;
    border-top: 1px solid rgba(246, 243, 236, 0.08);
}
.service-item:last-child { border-bottom: 1px solid rgba(246, 243, 236, 0.08); }
.section:not(.section--dark) .service-item { border-top-color: var(--cream-dark); }
.section:not(.section--dark) .service-item:last-child { border-bottom-color: var(--cream-dark); }
.service-item__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 200;
    line-height: 1;
    color: var(--gold);
    opacity: 0.55;
    min-width: 72px;
    letter-spacing: -0.02em;
}
.service-item__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--cream);
}
.section:not(.section--dark) .service-item__title { color: var(--navy); }
.service-item__desc {
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    line-height: 1.8;
    color: rgba(246, 243, 236, 0.62);
    max-width: 64ch;
}
.section:not(.section--dark) .service-item__desc { color: var(--body); }

/* ==========================================================================
   PRICING CARDS (Studio — tiers, no prices)
   ========================================================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
    margin-top: clamp(40px, 5vw, 56px);
}
.pricing-card {
    border: 1px solid var(--cream-dark);
    padding: clamp(32px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); border-color: rgba(201, 164, 74, 0.35); }
.pricing-card--featured {
    border-color: var(--gold);
    background: rgba(201, 164, 74, 0.04);
}
.pricing-card__tier {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.pricing-card__badge {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 4px 10px;
    align-self: flex-start;
    margin-bottom: 18px;
}
.pricing-card__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    margin-top: 8px;
}
.pricing-footer {
    text-align: center;
    margin-top: clamp(36px, 5vw, 56px);
    font-family: var(--font-display);
    font-size: clamp(13px, 1vw, 15px);
    letter-spacing: 0.04em;
    color: var(--muted);
}

/* ==========================================================================
   LEAD FORM  (custom-built, submits to HubSpot)
   ========================================================================== */
.hubspot-embed {
    max-width: 620px;
    margin: 0 auto;
    min-height: 120px;
}

.lead-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: clamp(32px, 4.5vw, 52px);
    background: linear-gradient(180deg, rgba(246, 243, 236, 0.05), rgba(246, 243, 236, 0.015));
    border: 1px solid rgba(246, 243, 236, 0.12);
    border-radius: 4px;
    box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}
/* gold hairline accent across the top of the card */
.lead-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.75;
}
.lead-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.lead-form__field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lead-form__field label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(246, 243, 236, 0.65);
}
.lead-form__req { color: var(--gold); }
.lead-form__opt {
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: rgba(246, 243, 236, 0.3);
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cream);
    background: rgba(10, 19, 34, 0.6);
    border: 1px solid rgba(246, 243, 236, 0.16);
    border-radius: 3px;
    padding: 15px 17px;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(246, 243, 236, 0.3); }
.lead-form input:hover,
.lead-form textarea:hover { border-color: rgba(246, 243, 236, 0.34); }
.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 19, 34, 0.85);
    box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.14);
}
.lead-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.lead-form__field--error input,
.lead-form__field--error textarea {
    border-color: #C9695A;
}
.lead-form__error {
    font-size: 12.5px;
    color: #E59A8B;
}

/* honeypot — visually hidden, kept in the layout flow for screen readers off-screen */
.lead-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    margin-top: 6px;
    cursor: pointer;
}
.lead-form__submit::after {
    content: "\2192";
    font-size: 15px;
    transition: transform 0.4s var(--ease);
}
.lead-form__submit:hover::after { transform: translateX(5px); }
.lead-form__submit:disabled,
.lead-form.is-submitting .lead-form__submit {
    opacity: 0.55;
    cursor: default;
}
.lead-form__submit:disabled::after,
.lead-form.is-submitting .lead-form__submit::after { display: none; }
.lead-form__fineprint {
    text-align: center;
    font-size: 12px;
    color: rgba(246, 243, 236, 0.35);
}

.form-status--error { color: #E59A8B; }

/* success state — replaces the form after submit */
.lead-form__success {
    text-align: center;
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 40px);
    background: rgba(246, 243, 236, 0.03);
    border: 1px solid rgba(201, 164, 74, 0.28);
    border-radius: 3px;
}
.lead-form__success-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
}
.lead-form__success h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(20px, 2.6vw, 26px);
    color: var(--cream);
    margin-bottom: 12px;
}
.lead-form__success p {
    max-width: 42ch;
    margin: 0 auto;
    color: rgba(246, 243, 236, 0.6);
}
.lead-form__success a { color: var(--gold); }

@media (max-width: 560px) {
    .lead-form__row { grid-template-columns: 1fr; }
}

.hubspot-fallback {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
}
.section--dark .hubspot-fallback { color: rgba(246, 243, 236, 0.5); }
.hubspot-fallback a { color: var(--gold); }

/* ==========================================================================
   STUDIO HERO (flagship — parallax-ready)
   ========================================================================== */
.studio-hero {
    padding: clamp(170px, 22vw, 260px) 0 clamp(80px, 10vw, 130px);
    position: relative;
    overflow: hidden;
}
.studio-hero__layer {
    position: absolute;
    inset: -10% 0 0 0;
    will-change: transform;
    pointer-events: none;
}
.studio-hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 6.4vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--cream);
    max-width: 16ch;
}
.studio-hero__h1 strong { font-weight: 600; }
.studio-hero__sub {
    font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
    color: rgba(246, 243, 236, 0.62);
    max-width: 52ch;
    margin-top: 28px;
    line-height: 1.75;
}
.studio-hero__pricing {
    font-family: var(--font-display);
    font-size: clamp(13px, 1vw, 15px);
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-top: 22px;
    margin-bottom: 40px;
    max-width: 56ch;
}

/* shared inner-page section label spacing helper */
.center-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.center-head .heading { margin-top: 4px; }
.center-head__sub {
    font-size: clamp(15px, 1vw + 0.4rem, 18px);
    line-height: 1.75;
    color: var(--body);
    max-width: 56ch;
    margin: 22px auto 0;
}
.section--dark .center-head__sub { color: rgba(246, 243, 236, 0.6); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .value-props { grid-template-columns: 1fr; gap: 28px; }
    .verticals { grid-template-columns: 1fr 1fr; }
    .vertical-cards { grid-template-columns: 1fr 1fr; }
    .supporting { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .service-item { grid-template-columns: 1fr; gap: 14px; }
    .service-item__num { min-width: 0; }
}

@media (max-width: 900px) {
    .about__layout { grid-template-columns: 1fr; gap: 40px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .philosophy__number { min-width: 56px; }
}

@media (max-width: 640px) {
    .nav__links { display: none; }
    .nav__links.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 27, 45, 0.97);
        backdrop-filter: blur(20px);
        padding: 36px clamp(24px, 5vw, 80px);
        gap: 28px;
        border-top: 1px solid rgba(201, 164, 74, 0.1);
    }
    .nav__toggle { display: flex; }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .nav__dropdown-menu.is-open {
        display: block;
        transform: none;
        left: auto;
    }
    .nav__dropdown-menu a {
        padding: 8px 0;
    }

    .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat { padding: 24px 12px; }
    .contact__form { grid-template-columns: 1fr; }
    .lead-form { grid-template-columns: 1fr; }

    .hero { padding: 140px 20px 80px; }
    .hero__bottom { bottom: 24px; }
    .hero__scroll { display: none; }

    .philosophy__item { grid-template-columns: 1fr; gap: 16px; }
    .philosophy__number { min-width: 0; }

    .process__item { grid-template-columns: 1fr; gap: 12px; }

    .division-cards--grid { grid-template-columns: 1fr; }

    .verticals { grid-template-columns: 1fr; }
    .vertical-cards { grid-template-columns: 1fr; }
    .service-item { grid-template-columns: 1fr; gap: 12px; }
    .service-item__num { min-width: 0; }
    .studio-hero { padding: 150px 0 72px; }

    .footer__inner { flex-direction: column; text-align: center; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
