:root {
    --navy: #071426;
    --navy-soft: #0c1d33;
    --navy-muted: #142941;
    --ink: #101820;
    --ink-soft: #4e5860;
    --gold: #c6a15b;
    --gold-light: #dcc38d;
    --ivory: #f5f3ee;
    --paper: #fbfaf7;
    --white: #ffffff;
    --line: rgba(7, 20, 38, 0.14);
    --line-light: rgba(245, 243, 238, 0.16);
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Manrope", Arial, sans-serif;
    --container: 1240px;
    --header-height: 92px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
blockquote,
dl,
dd {
    margin: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

::selection {
    color: var(--navy);
    background: var(--gold-light);
}

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(108px, 10vw, 168px);
}

main section[id] {
    scroll-margin-top: var(--header-height);
}

.section--ivory {
    background: var(--ivory);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.eyebrow--dark {
    color: #8a6c34;
}

.section-index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 46px;
    color: #7b817f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-index::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold);
}

.section-index--light {
    color: rgba(245, 243, 238, 0.55);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: color 280ms var(--ease), background-color 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
}

.button span {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    transition: transform 280ms var(--ease);
}

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

.button:hover span {
    transform: translate(2px, -2px);
}

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

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

.button--outline-light {
    color: var(--ivory);
    background: rgba(7, 20, 38, 0.16);
    border-color: rgba(245, 243, 238, 0.52);
    backdrop-filter: blur(8px);
}

.button--outline-light:hover {
    color: var(--navy);
    background: var(--ivory);
    border-color: var(--ivory);
}

.button:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold);
    font-size: 16px;
    font-weight: 400;
    transition: transform 260ms var(--ease);
}

.text-link:hover span {
    transform: translate(3px, 3px);
}

.text-link--light {
    color: var(--ivory);
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.js .reveal[data-reveal="left"] {
    transform: translateX(-38px);
}

.js .reveal[data-reveal="right"] {
    transform: translateX(38px);
}

.js .reveal[data-reveal="scale"] {
    transform: translateY(22px) scale(0.975);
}

.js .reveal[data-reveal].is-visible {
    transform: none;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--ivory);
    border-bottom: 1px solid rgba(245, 243, 238, 0.12);
    transition: height 320ms var(--ease), background-color 320ms var(--ease), box-shadow 320ms var(--ease), backdrop-filter 320ms var(--ease);
}

.site-header.is-scrolled {
    height: 74px;
    background: rgba(7, 20, 38, 0.94);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    position: relative;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand__logo {
    width: clamp(220px, 18vw, 270px);
    height: auto;
    object-fit: contain;
    transition: width 320ms var(--ease), opacity 220ms ease;
}

.site-header .brand__logo {
    width: clamp(214px, 16vw, 246px);
}

.site-header.is-scrolled .brand__logo {
    width: clamp(204px, 15vw, 226px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.15vw, 34px);
}

.site-nav > a {
    position: relative;
    color: rgba(245, 243, 238, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 220ms ease;
}

.site-nav > a:not(.site-nav__cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a.is-active {
    color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 42px;
    padding: 0 17px;
    color: var(--ivory) !important;
    border: 1px solid rgba(198, 161, 91, 0.7);
}

.site-nav__cta:hover {
    color: var(--navy) !important;
    background: var(--gold);
}

.site-nav__cta span {
    color: var(--gold-light);
    font-size: 15px;
}

.site-nav__cta:hover span {
    color: var(--navy);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
    color: var(--ivory);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-toggle__icon {
    position: relative;
    display: block;
    width: 28px;
    height: 16px;
}

.menu-toggle__icon i {
    position: absolute;
    right: 0;
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease, width 250ms ease, top 250ms ease;
}

.menu-toggle__icon i:first-child {
    top: 3px;
    width: 28px;
}

.menu-toggle__icon i:last-child {
    top: 12px;
    width: 20px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 8px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 8px;
    width: 28px;
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 760px;
    height: max(760px, 100svh);
    max-height: 1040px;
    overflow: hidden;
    color: var(--ivory);
    background: var(--navy);
}

.hero__background,
.hero__background img,
.hero__overlay,
.hero__texture {
    position: absolute;
    inset: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.78) contrast(1.05) brightness(0.85);
}

.js .hero__background img {
    animation: hero-settle 1600ms var(--ease) both;
}

.hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 13, 25, 0.98) 0%, rgba(7, 20, 38, 0.92) 32%, rgba(7, 20, 38, 0.48) 58%, rgba(7, 20, 38, 0.1) 100%),
        linear-gradient(0deg, rgba(4, 13, 25, 0.72) 0%, transparent 44%, rgba(4, 13, 25, 0.24) 100%);
    pointer-events: none;
}

.hero__texture {
    z-index: 2;
    opacity: 0.12;
    background-image: linear-gradient(rgba(245, 243, 238, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 243, 238, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, #000, transparent 52%);
    pointer-events: none;
}

.hero__layout {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: var(--header-height);
}

.hero__content {
    position: relative;
    width: min(100%, 760px);
    padding: 34px 0 52px;
}

.js .hero__eyebrow,
.js .hero h1 .title-line,
.js .hero__lead,
.js .hero__actions,
.js .hero__signature {
    opacity: 0;
    animation: hero-intro 780ms var(--ease) forwards;
}

.js .hero__eyebrow { animation-delay: 120ms; }
.js .hero h1 .title-line:first-child { animation-delay: 220ms; }
.js .hero h1 .title-line:last-child { animation-delay: 310ms; }
.js .hero__lead { animation-delay: 430ms; }
.js .hero__actions { animation-delay: 540ms; }
.js .hero__signature { animation-delay: 650ms; }

.hero__eyebrow {
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 6vw, 88px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.hero h1 em {
    color: var(--gold-light);
    font-weight: 500;
}

.title-line {
    display: block;
    white-space: nowrap;
}

.hero__lead {
    max-width: 630px;
    margin-top: 30px;
    color: rgba(245, 243, 238, 0.7);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-top: 42px;
}

.hero__signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 58px;
    color: rgba(245, 243, 238, 0.46);
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.06em;
}

.hero__signature i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.hero__caption {
    position: absolute;
    z-index: 4;
    right: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 34px;
    max-width: 230px;
    color: rgba(245, 243, 238, 0.62);
    font-size: 9px;
    letter-spacing: 0.14em;
    line-height: 1.6;
    text-align: right;
    text-transform: uppercase;
}

.hero__caption span {
    display: block;
    margin-bottom: 2px;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
}

.hero__scroll {
    position: absolute;
    z-index: 4;
    bottom: 34px;
    left: max(32px, calc((100vw - var(--container)) / 2));
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(245, 243, 238, 0.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll i {
    position: relative;
    display: block;
    width: 42px;
    height: 1px;
    overflow: hidden;
    background: rgba(245, 243, 238, 0.24);
}

.hero__scroll i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: scroll-line 2.5s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

@keyframes hero-intro {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

@keyframes hero-settle {
    from { opacity: 0.72; transform: scale(1.035); }
    to { opacity: 1; transform: scale(1); }
}

/* Manifesto */
.manifesto {
    background: var(--paper);
}

.manifesto__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.7fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}

.manifesto__heading .eyebrow {
    margin-bottom: 27px;
}

.manifesto h2,
.profile h2,
.practice h2,
.difference h2,
.method h2,
.contact h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.manifesto h2 em,
.profile h2 em,
.practice h2 em,
.difference h2 em,
.method h2 em,
.contact h2 em {
    color: #8a6c34;
    font-weight: 500;
}

.manifesto__copy {
    padding-top: 42px;
}

.manifesto__copy p {
    color: var(--ink-soft);
}

.manifesto__copy .lead-copy {
    margin-bottom: 22px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.45;
}

.manifesto__copy .text-link {
    margin-top: 38px;
}

.manifesto__quote {
    position: relative;
    display: grid;
    grid-template-columns: 0.46fr 1fr;
    margin-top: clamp(90px, 10vw, 148px);
    padding-top: 52px;
    border-top: 1px solid var(--line);
}

.manifesto__quote > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 114px;
    line-height: 0.5;
}

.manifesto__quote p {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(36px, 4.4vw, 62px);
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

/* Profile */
.profile__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
    gap: clamp(64px, 10vw, 145px);
    align-items: center;
}

.profile__visual {
    position: relative;
    padding: 0 0 66px 44px;
}

.profile__visual::before {
    content: "";
    position: absolute;
    top: 54px;
    right: 42px;
    bottom: 12px;
    left: 0;
    border: 1px solid rgba(198, 161, 91, 0.54);
}

.profile__image-wrap {
    position: relative;
    z-index: 1;
    height: 680px;
    overflow: hidden;
    background: var(--navy);
}

.profile__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 38, 0.55), transparent 50%);
}

.profile__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 49% center;
    filter: saturate(0.34) contrast(1.05);
}

.profile__seal {
    position: absolute;
    z-index: 2;
    top: 32px;
    left: 16px;
    width: 78px;
    height: 78px;
    padding: 9px;
    background: var(--navy);
    box-shadow: 0 18px 45px rgba(7, 20, 38, 0.12);
}

.profile__seal img {
    width: 100%;
    height: 100%;
}

.profile__photo-note {
    position: absolute;
    z-index: 2;
    right: -23px;
    bottom: 0;
    padding: 18px 24px;
    color: var(--ivory);
    background: var(--navy);
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.35;
}

.profile__content .section-index {
    margin-bottom: 54px;
}

.profile__content > .eyebrow {
    margin-bottom: 26px;
}

.profile__content h2 {
    font-size: clamp(44px, 4vw, 60px);
}

.profile__body {
    display: grid;
    gap: 18px;
    margin-top: 36px;
    color: var(--ink-soft);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--line);
}

.principles > div {
    padding: 22px 16px 0 0;
}

.principles > div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.principles dt {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 17px;
}

.principles dd {
    margin-top: 4px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

/* Practice areas */
.practice {
    background: var(--paper);
}

.practice__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: end;
}

.practice__intro .section-index {
    margin-bottom: 46px;
}

.practice__intro .eyebrow {
    margin-bottom: 24px;
}

.practice__intro h2 {
    max-width: 790px;
}

.practice__lead {
    padding-bottom: 7px;
    color: var(--ink-soft);
}

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

.practice-card {
    position: relative;
    min-height: 330px;
    padding: 31px 32px 36px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: transparent;
    transition:
        color 400ms var(--ease),
        background-color 400ms var(--ease),
        transform 760ms var(--ease) var(--reveal-delay, 0ms),
        opacity 760ms var(--ease) var(--reveal-delay, 0ms),
        box-shadow 400ms var(--ease);
}

.practice-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms var(--ease);
}

.practice-card:hover {
    z-index: 1;
    color: var(--ivory);
    background: var(--navy);
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(7, 20, 38, 0.14);
}

.practice-card:hover::before {
    transform: scaleX(1);
}

.practice-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.practice-card__number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 17px;
}

.practice-card__icon {
    display: block;
    width: 76px;
    height: 76px;
    background-color: transparent;
    background-image: url("/assets/images/practice-icons-atlas-generated.png");
    background-repeat: no-repeat;
    background-size: 300% 200%;
    filter: saturate(1.12) contrast(1.16);
    transition: filter 300ms ease, transform 350ms var(--ease);
}

.practice-card__icon--1 { background-position: 0 0; }
.practice-card__icon--2 { background-position: 50% 0; }
.practice-card__icon--3 { background-position: 100% 0; }
.practice-card__icon--4 { background-position: 0 100%; }
.practice-card__icon--5 { background-position: 50% 100%; }
.practice-card__icon--6 { background-position: 100% 100%; }

.practice-card:hover .practice-card__icon {
    filter: saturate(1.18) contrast(1.22) brightness(1.12);
    transform: translateY(-4px);
}

.practice-card h3 {
    margin-top: 42px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
    transition: color 300ms ease;
}

.practice-card p {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
    transition: color 300ms ease;
}

.practice-card:hover h3 {
    color: var(--ivory);
}

.practice-card:hover p {
    color: rgba(245, 243, 238, 0.64);
}

.practice__note {
    margin-top: 22px;
    color: #7b817f;
    font-size: 11px;
    letter-spacing: 0.02em;
}

/* Difference */
.difference {
    position: relative;
    overflow: hidden;
    color: var(--ivory);
    background:
        radial-gradient(circle at 88% 12%, rgba(198, 161, 91, 0.1), transparent 27%),
        linear-gradient(135deg, #071426 0%, #09182a 52%, #071426 100%);
    isolation: isolate;
}

.difference::before {
    content: "WM";
    position: absolute;
    z-index: -1;
    top: -54px;
    right: -20px;
    color: rgba(245, 243, 238, 0.018);
    font-family: var(--serif);
    font-size: min(27vw, 400px);
    font-weight: 600;
    letter-spacing: -0.12em;
    line-height: 1;
    pointer-events: none;
}

.difference::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 7%;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(220, 195, 141, 0.055);
    border-radius: 50%;
    box-shadow: 0 0 0 74px rgba(220, 195, 141, 0.018), 0 0 0 148px rgba(220, 195, 141, 0.012);
    pointer-events: none;
}

.difference .container {
    position: relative;
    z-index: 1;
}

.difference__header {
    display: grid;
    grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
    gap: clamp(68px, 9vw, 132px);
    align-items: end;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--line-light);
}

.difference__header-copy {
    max-width: 330px;
}

.difference__header .section-index {
    margin-bottom: 34px;
}

.difference__intro {
    padding-left: 18px;
    border-left: 1px solid var(--gold);
    color: rgba(245, 243, 238, 0.66);
    font-size: 14px;
    line-height: 1.75;
}

.difference h2 {
    max-width: 820px;
    font-size: clamp(50px, 5.3vw, 76px);
}

.difference h2 em {
    color: var(--gold-light);
}

.difference__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
}

.difference-item {
    position: relative;
    display: flex;
    min-height: 370px;
    padding: 30px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(245, 243, 238, 0.13);
    background: linear-gradient(145deg, rgba(245, 243, 238, 0.055), rgba(245, 243, 238, 0.018));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: border-color 360ms var(--ease), background-color 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}

.difference-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 3px;
    background: var(--gold);
    transition: width 480ms var(--ease);
}

.difference-item:hover {
    border-color: rgba(220, 195, 141, 0.34);
    background: linear-gradient(145deg, rgba(245, 243, 238, 0.075), rgba(245, 243, 238, 0.025));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
    transform: translateY(-7px);
}

.difference-item:hover::before {
    width: calc(100% + 2px);
}

.difference-item__top {
    display: flex;
    min-height: 84px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.difference-item__icon {
    display: block;
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    background-image: url("../images/difference-icons-generated.png");
    background-repeat: no-repeat;
    background-size: 300% 100%;
    filter: drop-shadow(0 8px 16px rgba(198, 161, 91, 0.1));
}

.difference-item__icon--proximity {
    background-position: 0 50%;
}

.difference-item__icon--strategy {
    background-position: 50% 50%;
}

.difference-item__icon--excellence {
    background-position: 100% 50%;
}

.difference-item__number {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 195, 141, 0.32);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1;
}

.difference-item h3 {
    margin-top: 32px;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.difference-item p {
    max-width: 320px;
    margin-top: 14px;
    color: rgba(245, 243, 238, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.difference-item__outcome {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 23px;
    color: rgba(245, 243, 238, 0.88);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.45;
    text-transform: uppercase;
}

.difference-item__outcome::before {
    content: "";
    width: 18px;
    height: 1px;
    flex: 0 0 18px;
    background: var(--gold);
}

/* Method */
.method__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(440px, 1fr);
    gap: clamp(70px, 11vw, 160px);
}

.method__intro {
    position: sticky;
    top: 124px;
    align-self: start;
}

.method__intro .section-index {
    margin-bottom: 46px;
}

.method__intro .eyebrow {
    margin-bottom: 24px;
}

.method__intro h2 {
    font-size: clamp(44px, 4vw, 60px);
}

.method__intro > p:last-child {
    margin-top: 30px;
    color: var(--ink-soft);
}

.method__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.method-step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 30px;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}

.method-step > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 19px;
}

.method-step h3 {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 600;
    line-height: 1.1;
}

.method-step p {
    max-width: 520px;
    margin-top: 9px;
    color: var(--ink-soft);
    font-size: 14px;
}

/* Editorial quote */
.editorial-quote {
    position: relative;
    display: grid;
    min-height: 720px;
    overflow: hidden;
    color: var(--ivory);
    background: var(--navy);
}

.editorial-quote > img,
.editorial-quote__overlay,
.editorial-quote__content {
    grid-area: 1 / 1;
}

.editorial-quote > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72) contrast(1.04) brightness(0.66);
}

.editorial-quote__overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(7, 20, 38, 0.96) 0%, rgba(7, 20, 38, 0.8) 42%, rgba(7, 20, 38, 0.25) 100%), linear-gradient(0deg, rgba(7, 20, 38, 0.5), transparent 55%);
}

.editorial-quote__content {
    position: relative;
    z-index: 2;
    align-self: center;
}

.editorial-quote__content > img {
    width: 62px;
    margin-bottom: 42px;
}

.editorial-quote blockquote {
    max-width: 890px;
    font-family: var(--serif);
    font-size: clamp(50px, 6.2vw, 88px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.editorial-quote blockquote em {
    color: var(--gold-light);
    font-weight: 500;
}

.editorial-quote__content > p {
    margin-top: 36px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* Contact */
.contact {
    color: var(--ivory);
    background: var(--navy-soft);
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.76fr) minmax(500px, 1fr);
    gap: clamp(70px, 10vw, 140px);
    align-items: start;
}

.contact__intro .section-index {
    margin-bottom: 48px;
}

.contact__intro .eyebrow {
    margin-bottom: 26px;
}

.contact h2 {
    font-size: clamp(44px, 4vw, 60px);
}

.contact h2 em {
    color: var(--gold-light);
}

.contact__lead {
    margin-top: 30px;
    color: rgba(245, 243, 238, 0.6);
}

.contact__direct {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
}

.contact__direct p {
    margin-bottom: 13px;
    color: rgba(245, 243, 238, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact__direct a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(18px, 1.65vw, 23px);
    overflow-wrap: anywhere;
}

.contact__direct a + a {
    border-top: 1px solid var(--line-light);
}

.contact__direct a span {
    color: var(--gold);
}

.contact-form {
    position: relative;
    padding: clamp(34px, 4vw, 58px);
    color: var(--ink);
    background: var(--ivory);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 74px;
    height: 1px;
    background: var(--gold);
}

.contact-form__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-form__heading > span {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.contact-form__heading p {
    color: #7b817f;
    font-size: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-field {
    margin-bottom: 26px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.form-field label span {
    color: #828783;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(7, 20, 38, 0.25);
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 220ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8b8e8b;
    opacity: 1;
}

.form-field select {
    min-height: 49px;
    cursor: pointer;
}

.form-field textarea {
    min-height: 124px;
    resize: vertical;
}

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

.consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    color: #686e70;
    cursor: pointer;
    font-size: 11px;
    line-height: 1.55;
}

.consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--navy);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 32px;
}

.contact-form__footer .button {
    flex: 0 0 auto;
}

.contact-form__footer > p {
    color: #7b817f;
    font-size: 9px;
    line-height: 1.55;
}

/* Footer */
.site-footer {
    color: var(--ivory);
    background: #040d19;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 66px 0 42px;
    border-bottom: 1px solid var(--line-light);
}

.brand--footer {
    width: auto;
}

.back-to-top {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    color: rgba(245, 243, 238, 0.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.back-to-top span {
    color: var(--gold);
    font-size: 17px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 0.62fr 0.9fr;
    gap: 70px;
    padding: 58px 0;
}

.site-footer__grid > p {
    max-width: 370px;
    color: rgba(245, 243, 238, 0.52);
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.55;
}

.site-footer__grid nav,
.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__grid nav a,
.site-footer__contact a,
.site-footer__contact span {
    color: rgba(245, 243, 238, 0.57);
    font-size: 11px;
    line-height: 1.6;
    transition: color 200ms ease;
}

.site-footer__grid nav a:hover,
.site-footer__contact a:hover {
    color: var(--gold-light);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0 28px;
    color: rgba(245, 243, 238, 0.34);
    border-top: 1px solid var(--line-light);
    font-size: 9px;
    letter-spacing: 0.03em;
}

.floating-contact {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(7, 20, 38, 0.25);
    transition: transform 250ms var(--ease), background-color 250ms ease;
}

.floating-contact:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

.floating-contact svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

@media (max-width: 1160px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav > a {
        font-size: 9px;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(54px, 6.3vw, 72px);
    }

    .profile__grid {
        gap: 72px;
    }

    .profile__image-wrap {
        height: 620px;
    }

    .contact__grid {
        gap: 70px;
    }

    .contact-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 78px;
    }

    .container {
        width: min(calc(100% - 44px), var(--container));
    }

    .site-header,
    .site-header.is-scrolled {
        height: var(--header-height);
    }

    .brand {
        gap: 11px;
    }

    .brand__mark {
        width: 50px;
        height: 50px;
    }

    .brand__wordmark strong {
        font-size: 17px;
    }

    .brand__wordmark small {
        font-size: 6px;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        display: flex;
    }

    .site-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 11px;
        padding: 110px max(22px, calc((100vw - var(--container)) / 2));
        visibility: hidden;
        background: var(--navy);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 300ms ease, transform 300ms var(--ease), visibility 300ms;
    }

    .site-nav::before {
        content: "WM";
        position: absolute;
        right: -18px;
        bottom: -50px;
        color: rgba(245, 243, 238, 0.04);
        font-family: var(--serif);
        font-size: 230px;
        line-height: 1;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .site-nav > a {
        color: var(--ivory);
        font-family: var(--serif);
        font-size: clamp(28px, 6vw, 44px);
        font-weight: 500;
        letter-spacing: -0.02em;
        text-transform: none;
    }

    .site-nav > a:not(.site-nav__cta)::after {
        display: none;
    }

    .site-nav__cta {
        min-height: 52px;
        margin-top: 20px;
        padding-inline: 22px;
        font-family: var(--sans) !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
    }

    .hero {
        min-height: 820px;
        height: auto;
        max-height: none;
        padding-top: var(--header-height);
    }

    .hero__layout {
        grid-template-columns: 1fr;
        gap: 56px;
        height: auto;
        padding-top: 90px;
    }

    .hero__content {
        max-width: 760px;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(56px, 9.5vw, 82px);
    }

    .hero__visual {
        width: min(100%, 680px);
        height: 680px;
        min-height: 0;
        margin: 0 0 0 auto;
    }

    .hero__visual::before {
        background: linear-gradient(90deg, var(--navy), transparent 23%), linear-gradient(0deg, rgba(7, 20, 38, 0.75), transparent 34%);
    }

    .hero__scroll {
        display: none;
    }

    .manifesto__grid,
    .practice__intro,
    .difference__header,
    .method__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .manifesto__copy {
        max-width: 650px;
        padding-top: 0;
    }

    .manifesto__quote {
        grid-template-columns: 120px 1fr;
    }

    .profile__grid {
        grid-template-columns: minmax(300px, 0.8fr) 1fr;
        gap: 46px;
    }

    .profile__image-wrap {
        height: 540px;
    }

    .profile__photo-note {
        right: -10px;
    }

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

    .principles > div {
        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: baseline;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .principles > div + div {
        padding-left: 0;
        border-left: 0;
    }

    .practice__lead {
        max-width: 620px;
    }

    .practice__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 54px;
    }

    .difference__header {
        gap: 26px;
    }

    .difference__header-copy {
        max-width: 560px;
    }

    .difference__list {
        margin-top: 60px;
    }

    .method__grid {
        gap: 70px;
    }

    .method__intro {
        position: static;
        max-width: 710px;
    }

    .method__steps {
        max-width: 760px;
    }

    .contact__intro {
        max-width: 700px;
    }

    .contact__direct {
        max-width: 560px;
        margin-top: 44px;
    }

    .contact-form {
        max-width: 760px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 0.7fr;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
        padding-top: 26px;
        border-top: 1px solid var(--line-light);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding-block: 94px;
    }

    .brand {
        gap: 9px;
    }

    .brand__mark {
        width: 46px;
        height: 46px;
    }

    .brand__wordmark strong {
        font-size: 15px;
        letter-spacing: 0.09em;
    }

    .brand__wordmark small {
        letter-spacing: 0.34em;
    }

    .menu-toggle__label {
        display: none;
    }

    .hero__layout {
        gap: 46px;
        padding-top: 68px;
    }

    .hero h1 {
        font-size: clamp(49px, 14.4vw, 68px);
        line-height: 0.98;
    }

    .hero__lead {
        margin-top: 24px;
        font-size: 15px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
        margin-top: 34px;
    }

    .hero__signature {
        margin-top: 38px;
    }

    .hero__visual {
        width: calc(100% + 18px);
        height: 590px;
        margin-right: -18px;
    }

    .hero__frame {
        right: 0;
        left: 16px;
    }

    .hero__monogram {
        display: none;
    }

    .hero__caption {
        right: 16px;
        bottom: 30px;
    }

    .section-index {
        margin-bottom: 34px;
    }

    .manifesto h2,
    .profile h2,
    .practice h2,
    .difference h2,
    .method h2,
    .contact h2 {
        font-size: clamp(43px, 12.5vw, 58px);
    }

    .manifesto__grid {
        gap: 42px;
    }

    .manifesto__copy .lead-copy {
        font-size: 22px;
    }

    .manifesto__quote {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 76px;
        padding-top: 42px;
    }

    .manifesto__quote > span {
        font-size: 76px;
    }

    .manifesto__quote p {
        font-size: 37px;
    }

    .profile__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .profile__visual {
        padding: 0 0 45px 20px;
    }

    .profile__visual::before {
        right: 24px;
    }

    .profile__image-wrap {
        height: min(650px, 135vw);
    }

    .profile__content .section-index {
        margin-bottom: 38px;
    }

    .principles {
        margin-top: 38px;
    }

    .practice__grid {
        grid-template-columns: 1fr;
        margin-top: 46px;
    }

    .practice-card {
        min-height: 285px;
    }

    .practice-card h3 {
        margin-top: 52px;
    }

    .difference__list {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .difference-item {
        min-height: 0;
        padding: 30px 0 40px;
        border-bottom: 1px solid var(--line-light);
    }

    .difference-item + .difference-item {
        padding-left: 0;
        border-left: 0;
    }

    .difference-item h3 {
        margin-top: 30px;
    }

    .method__grid {
        gap: 58px;
    }

    .method-step {
        grid-template-columns: 55px 1fr;
        gap: 18px;
        padding: 32px 0;
    }

    .method-step h3 {
        font-size: 28px;
    }

    .editorial-quote {
        min-height: 650px;
    }

    .editorial-quote > img {
        object-position: 61% center;
    }

    .editorial-quote__overlay {
        background: linear-gradient(90deg, rgba(7, 20, 38, 0.92), rgba(7, 20, 38, 0.35)), linear-gradient(0deg, rgba(7, 20, 38, 0.72), transparent 65%);
    }

    .editorial-quote blockquote {
        font-size: clamp(45px, 13.5vw, 63px);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact__grid {
        gap: 58px;
    }

    .contact-form {
        margin-inline: -5px;
        padding: 32px 25px;
    }

    .contact-form__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contact-form__footer {
        gap: 18px;
    }

    .contact-form__footer .button {
        width: 100%;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
        padding-top: 52px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 44px 0;
    }

    .site-footer__contact {
        grid-column: auto;
        padding-top: 26px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .hero__signature {
        gap: 9px;
        font-size: 12px;
    }

    .button {
        width: 100%;
    }

    .profile__photo-note {
        right: -3px;
    }

    .brand--footer {
        width: auto;
    }
}

/* Full-bleed hero and two-line title safeguards */
@media (max-width: 960px) {
    .site-header .brand__logo {
        width: 214px;
    }

    .site-header.is-scrolled .brand__logo {
        width: 200px;
    }

    .hero {
        min-height: 760px;
        height: max(760px, 100svh);
        padding-top: 0;
    }

    .hero__background img {
        object-position: 64% center;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(4, 13, 25, 0.98) 0%, rgba(7, 20, 38, 0.91) 48%, rgba(7, 20, 38, 0.36) 100%),
            linear-gradient(0deg, rgba(4, 13, 25, 0.8) 0%, transparent 52%, rgba(4, 13, 25, 0.28) 100%);
    }

    .hero__layout {
        display: flex;
        height: 100%;
        padding-top: var(--header-height);
    }

    .hero__content {
        width: min(100%, 690px);
        padding: 64px 0 92px;
    }

    .hero__caption {
        right: 22px;
        bottom: 28px;
    }
}

@media (max-width: 700px) {
    .site-header .brand__logo,
    .site-header.is-scrolled .brand__logo {
        width: 190px;
    }

    .hero {
        min-height: 720px;
        height: max(720px, 100svh);
    }

    .hero__background img {
        object-position: 69% center;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(4, 13, 25, 0.98) 0%, rgba(7, 20, 38, 0.89) 64%, rgba(7, 20, 38, 0.48) 100%),
            linear-gradient(0deg, rgba(4, 13, 25, 0.86) 0%, transparent 56%, rgba(4, 13, 25, 0.34) 100%);
    }

    .hero__layout {
        gap: 0;
        padding-top: var(--header-height);
    }

    .hero__content {
        align-self: flex-end;
        padding: 84px 0 118px;
    }

    .hero h1 {
        font-size: clamp(32px, 9.4vw, 48px);
        line-height: 1;
    }

    .hero__lead {
        max-width: 540px;
        margin-top: 22px;
        color: rgba(245, 243, 238, 0.76);
        font-size: 14px;
        line-height: 1.65;
    }

    .hero__actions {
        margin-top: 30px;
    }

    .hero__signature {
        margin-top: 32px;
    }

    .hero__caption {
        display: none;
    }

    .manifesto h2,
    .profile h2,
    .practice h2,
    .difference h2,
    .method h2,
    .contact h2 {
        font-size: clamp(31px, 8.8vw, 44px);
        line-height: 1.02;
    }

    .editorial-quote blockquote {
        font-size: clamp(31px, 8.8vw, 44px);
        line-height: 1.04;
    }

    .brand--footer .brand__logo {
        width: min(100%, 244px);
    }
}

@media (max-width: 380px) {
    .site-header .brand__logo,
    .site-header.is-scrolled .brand__logo {
        width: 174px;
    }

    .hero h1,
    .manifesto h2,
    .profile h2,
    .practice h2,
    .difference h2,
    .method h2,
    .contact h2,
    .editorial-quote blockquote {
        font-size: 30px;
    }
}

/* Mobile composition and section rhythm */
@media (max-width: 960px) {
    .site-header.is-over-hero,
    .site-header.is-over-hero.is-scrolled {
        height: var(--header-height);
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        border-bottom-color: rgba(245, 243, 238, 0.12);
    }

    .hero {
        min-height: 760px;
        height: max(760px, 100svh);
    }

    .hero__background img {
        object-position: center top;
        filter: saturate(0.76) contrast(1.04) brightness(0.82);
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(4, 13, 25, 0.2) 0%, rgba(7, 20, 38, 0.08) 35%, rgba(7, 20, 38, 0.38) 56%, rgba(4, 13, 25, 0.98) 86%, #040d19 100%),
            linear-gradient(90deg, rgba(7, 20, 38, 0.18), transparent 52%, rgba(7, 20, 38, 0.18));
    }

    .hero__texture {
        opacity: 0.05;
        mask-image: linear-gradient(180deg, transparent, #000 64%, #000);
    }

    .hero__layout {
        align-items: flex-end;
        height: 100%;
        padding-top: var(--header-height);
    }

    .hero__content {
        align-self: flex-end;
        width: min(100%, 690px);
        padding: 0 0 clamp(48px, 7vh, 78px);
    }

    .hero__eyebrow,
    .hero__signature,
    .hero__caption {
        display: none;
    }

    .hero h1 {
        font-size: clamp(44px, 7.6vw, 62px);
    }

    .hero__lead {
        max-width: 600px;
        margin-top: 22px;
        color: rgba(245, 243, 238, 0.78);
    }

    .hero__actions {
        margin-top: 28px;
    }

    .hero__scroll {
        display: none;
    }

    .practice-card__icon {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 820px) {
    .profile__grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .profile__visual {
        width: min(100%, 560px);
    }
}

@media (max-width: 700px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding-block: 78px;
    }

    .site-header .brand__logo,
    .site-header.is-scrolled .brand__logo {
        width: 182px;
    }

    .site-header.is-scrolled:not(.is-over-hero) {
        background: rgba(4, 13, 25, 0.96);
        backdrop-filter: blur(14px);
    }

    .menu-toggle {
        min-width: 38px;
        min-height: 38px;
        justify-content: flex-end;
    }

    .hero {
        min-height: 560px;
        height: 100svh;
        max-height: 940px;
    }

    .hero__layout {
        padding-top: var(--header-height);
    }

    .hero__content {
        padding: 0 0 max(22px, env(safe-area-inset-bottom));
    }

    .hero h1 {
        font-size: clamp(32px, 9.4vw, 43px);
        line-height: 0.98;
    }

    .hero__lead {
        max-width: 350px;
        margin-top: 17px;
        font-size: 13px;
        line-height: 1.55;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        margin-top: 19px;
    }

    .hero__actions .button {
        width: 100%;
        min-height: 50px;
        padding: 0 10px;
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    .section-index {
        gap: 10px;
        margin-bottom: 23px;
        font-size: 9px;
        letter-spacing: 0.17em;
    }

    .section-index::before {
        width: 28px;
    }

    .section .eyebrow {
        display: none;
    }

    .manifesto h2,
    .profile h2,
    .practice h2,
    .difference h2,
    .method h2,
    .contact h2 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1;
    }

    .manifesto__grid {
        gap: 28px;
    }

    .manifesto__copy .lead-copy {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: 1.38;
    }

    .manifesto__copy p:not(.lead-copy) {
        font-size: 14px;
        line-height: 1.7;
    }

    .manifesto__copy .text-link {
        margin-top: 26px;
    }

    .manifesto__quote {
        display: block;
        margin-top: 56px;
        padding: 30px 0 0 18px;
        border-top-color: var(--line);
        border-left: 2px solid var(--gold);
    }

    .manifesto__quote > span {
        display: none;
    }

    .manifesto__quote p {
        font-size: clamp(27px, 8vw, 36px);
        line-height: 1.08;
    }

    .profile__grid {
        gap: 52px;
    }

    .profile__visual {
        padding: 0 0 36px 14px;
    }

    .profile__visual::before {
        top: 28px;
        right: 18px;
        bottom: 5px;
    }

    .profile__image-wrap {
        height: min(440px, 116vw);
    }

    .profile__image-wrap img {
        object-position: center 42%;
    }

    .profile__seal {
        top: 18px;
        left: 0;
        width: 62px;
        height: 62px;
    }

    .profile__photo-note {
        right: 0;
        padding: 13px 16px;
        font-size: 13px;
    }

    .profile__content .section-index {
        margin-bottom: 23px;
    }

    .profile__body {
        gap: 14px;
        margin-top: 26px;
        font-size: 14px;
        line-height: 1.7;
    }

    .principles {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 32px;
    }

    .principles > div,
    .principles > div + div {
        display: block;
        padding: 17px 8px 0;
        border-bottom: 0;
        border-left: 1px solid var(--line);
        text-align: center;
    }

    .principles > div:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .principles dt {
        font-size: 14px;
    }

    .principles dd {
        margin-top: 4px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .practice__intro {
        gap: 24px;
    }

    .practice__lead {
        padding: 0 0 0 16px;
        border-left: 2px solid var(--gold);
        font-size: 14px;
        line-height: 1.7;
    }

    .practice__grid {
        gap: 12px;
        margin-top: 38px;
        border: 0;
    }

    .practice-card {
        min-height: 0;
        padding: 22px 22px 24px;
        border: 1px solid var(--line);
        background: var(--ivory);
        box-shadow: 0 14px 34px rgba(7, 20, 38, 0.055);
    }

    .practice-card__icon {
        width: 64px;
        height: 64px;
    }

    .practice-card h3 {
        margin-top: 24px;
        font-size: 28px;
    }

    .practice-card p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.6;
    }

    .practice-card:hover {
        transform: none;
    }

    .practice__note {
        margin-top: 18px;
        line-height: 1.55;
    }

    .difference::before {
        top: 76px;
        right: -18px;
        font-size: 160px;
    }

    .difference::after {
        right: -180px;
        bottom: -100px;
        width: 340px;
        height: 340px;
    }

    .difference__header {
        gap: 27px;
        padding-bottom: 34px;
    }

    .difference__header .section-index {
        margin-bottom: 21px;
    }

    .difference__intro {
        max-width: 310px;
        padding-left: 15px;
        font-size: 13px;
        line-height: 1.65;
    }

    .difference h2 {
        font-size: clamp(28px, 8.6vw, 36px);
        line-height: 1.06;
    }

    .difference h2 .title-line {
        white-space: nowrap;
    }

    .difference__list {
        gap: 14px;
        margin-top: 36px;
        border: 0;
    }

    .difference-item,
    .difference-item + .difference-item {
        min-height: 286px;
        padding: 22px;
        border: 1px solid rgba(245, 243, 238, 0.12);
        background: linear-gradient(145deg, rgba(245, 243, 238, 0.055), rgba(245, 243, 238, 0.018));
    }

    .difference-item:hover {
        transform: none;
    }

    .difference-item__top {
        min-height: 64px;
    }

    .difference-item__icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .difference-item__number {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .difference-item h3 {
        margin-top: 20px;
        font-size: 29px;
    }

    .difference-item p {
        max-width: 330px;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.62;
    }

    .difference-item__outcome {
        padding-top: 18px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .method__grid {
        gap: 38px;
    }

    .method__intro > p:last-child {
        margin-top: 24px;
        padding-left: 16px;
        border-left: 2px solid var(--gold);
        font-size: 14px;
        line-height: 1.7;
    }

    .method__steps {
        display: grid;
        gap: 12px;
        border: 0;
    }

    .method-step {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 21px 20px;
        border: 1px solid var(--line);
        border-left: 2px solid var(--gold);
        background: var(--paper);
        box-shadow: 0 12px 30px rgba(7, 20, 38, 0.04);
    }

    .method-step > span {
        font-size: 16px;
    }

    .method-step h3 {
        font-size: 25px;
    }

    .method-step p {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.55;
    }

    .editorial-quote {
        min-height: 540px;
    }

    .editorial-quote > img {
        object-position: 62% center;
    }

    .editorial-quote__content {
        align-self: end;
        padding-bottom: 62px;
    }

    .editorial-quote__content > img {
        width: 48px;
        margin-bottom: 28px;
    }

    .editorial-quote blockquote {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1;
    }

    .editorial-quote__content > p {
        margin-top: 24px;
    }

    .contact__grid {
        gap: 38px;
    }

    .contact__intro .section-index {
        margin-bottom: 23px;
    }

    .contact__lead {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.7;
    }

    .contact__direct {
        margin-top: 31px;
        padding-top: 18px;
    }

    .contact__direct a {
        padding: 9px 0;
        font-size: 17px;
    }

    .contact-form {
        margin-inline: 0;
        padding: 27px 22px 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    }

    .contact-form__heading {
        gap: 5px;
        margin-bottom: 26px;
        padding-bottom: 18px;
    }

    .contact-form__heading > span {
        font-size: 26px;
    }

    .form-field {
        margin-bottom: 22px;
    }

    .form-field input {
        padding: 11px 0;
    }

    .consent {
        font-size: 10px;
    }

    .contact-form__footer {
        margin-top: 26px;
    }

    .contact-form__footer > p {
        font-size: 8px;
    }

    .site-footer__top {
        gap: 26px;
        padding-top: 46px;
    }

    .site-footer__grid {
        gap: 30px;
        padding: 38px 0;
    }
}

@media (max-width: 380px) {
    .site-header .brand__logo,
    .site-header.is-scrolled .brand__logo {
        width: 166px;
    }

    .hero h1,
    .manifesto h2,
    .profile h2,
    .practice h2,
    .difference h2,
    .method h2,
    .contact h2,
    .editorial-quote blockquote {
        font-size: 30px;
    }

    .hero__lead {
        max-width: 286px;
        font-size: 12px;
    }

    .hero__actions .button {
        font-size: 8px;
    }
}

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

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

@media print {
    .site-header,
    .hero__scroll,
    .floating-contact,
    .contact-form,
    .back-to-top {
        display: none !important;
    }

    .hero,
    .difference,
    .contact,
    .site-footer {
        color: #000;
        background: #fff;
    }

    .section {
        padding-block: 50px;
    }

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