/* =========================================
   LAURENT HOUSE
   MASTER STYLESHEET
   ========================================= */

/* =========================================
   01 — DESIGN TOKENS
   ========================================= */
:root {
    --bg: #07090e;
    --surface: #080a0f;
    --surface-soft: #090b10;
    --ivory: #eadbc7;
    --text: #f4efe8;
    --muted: #aaa8ad;
    --gold: #b89a69;
    --line: rgba(221, 197, 158, 0.24);
    --ease-luxury:
        cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   02 — BASE
   ========================================= */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wrap {
    width: min(1400px, calc(100% - 9vw));
    margin-inline: auto;
}

/* =========================================
   03 — SHARED TYPOGRAPHY
   ========================================= */
.kicker,
.page-kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.kicker {
    margin-bottom: 20px;
}
.page-kicker {
    margin: 0 0 22px;
    color: var(--gold);
}
.rule,
.intro-rule {
    height: 1px;
    background: var(--gold);
}
.rule {
    width: 32px;
    margin: 22px 0;
}
.intro-rule {
    width: 42px;
    margin: 36px 0;
}

/* =========================================
   04 — NAVIGATION
   ========================================= */
header {
    height: 82px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.site-header {
    position: relative;
    z-index: 20;
    opacity: 0;
    transform: translateY(-14px);
    animation:
        headerEnter
        0.9s
        ease-out
        0.25s
        forwards;
    transition:
        background 300ms ease,
        backdrop-filter 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease;
}
.site-header.scrolled {
    background: rgba(7, 9, 14, 0.88);
    backdrop-filter: blur(14px);
    border-bottom-color:
        rgba(221, 197, 158, 0.18);
    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.16);
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    margin-right: auto;
    font:
        400
        27px
        Georgia,
        serif;
    letter-spacing: 0.18em;
    color: var(--ivory);
    transition:
        color 250ms ease,
        text-shadow 250ms ease;
}
.brand small {
    display: block;
    margin-top: 5px;
    text-align: center;
    font:
        9px
        Arial,
        sans-serif;
    letter-spacing: 0.32em;
}
.brand:hover {
    color: #fff4df;
    text-shadow:
        0 0 18px
        rgba(184, 154, 105, 0.25);
}
.links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.links > a:not(.request) {
    position: relative;
}
.links > a:not(.request)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 220ms ease;
}
.links > a:not(.request):hover::after,
.links > a.active:not(.request)::after {
    width: 100%;
}
.links a.active {
    color: var(--ivory);
}
.request {
    padding: 15px 20px;
    border:
        1px solid
        rgba(234, 219, 199, 0.48);
    transition:
        background 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}
.request:hover {
    background:
        rgba(184, 154, 105, 0.08);
    border-color: var(--gold);
    box-shadow:
        0 0 25px
        rgba(184, 154, 105, 0.12);
    transform: translateY(-2px);
}

/* =========================================
   05 — SHARED BUTTONS
   ========================================= */
.buttons {
    display: flex;
    gap: 22px;
    margin-top: 28px;
}
.btn {
    position: relative;
    overflow: hidden;
    padding: 17px 24px;
    border:
        1px solid
        rgba(234, 219, 199, 0.38);
    background:
        rgba(5, 5, 8, 0.3);
    backdrop-filter: blur(4px);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        transform 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}
.btn:hover {
    transform: translateY(-3px);
    background:
        rgba(234, 219, 199, 0.07);
    border-color:
        rgba(234, 219, 199, 0.72);
}
.btn.primary {
    border-color: var(--gold);
    box-shadow:
        0 0 24px
        rgba(184, 154, 105, 0.13);
}
.btn.primary:hover {
    border-color: #d2b27b;
    box-shadow:
        0 8px 30px
        rgba(184, 154, 105, 0.13);
}

/* =========================================
   06 — HOMEPAGE HERO
   ========================================= */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 760px;
    height: 100vh;
    max-height: 980px;
    background:
        #08090e
        url("laurent-house-mina-hero.png")
        center / cover
        no-repeat;
    animation:
        heroReveal
        1.8s
        ease-out
        both;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 9, 0.88) 0%,
            rgba(4, 5, 9, 0.67) 31%,
            rgba(4, 5, 9, 0.08) 62%,
            rgba(4, 5, 9, 0.13) 100%
        );
}
.hero-copy {
    position: absolute;
    top: 50%;
    transform: translateY(-44%);
    max-width: 560px;
}
.hero h1 {
    margin: 0 0 22px;
    font:
        400
        clamp(64px, 7vw, 106px)
        / 0.86
        Georgia,
        serif;
    letter-spacing: 0.02em;
    color: var(--ivory);
    transition:
        text-shadow 500ms ease;
}
.hero h1:hover {
    text-shadow:
        0 0 30px
        rgba(234, 219, 199, 0.09);
}
.sub {
    max-width: 430px;
    font-size: 24px;
    line-height: 1.35;
    color: #d1cdd0;
}
.micro {
    font-size: 10px;
    letter-spacing: 0.27em;
    color: var(--muted);
    text-transform: uppercase;
}
/* -----------------------------------------
   Homepage Hero Motion
   ----------------------------------------- */
.hero-copy .kicker,
.hero-copy h1,
.hero-copy .sub,
.hero-copy .rule,
.hero-copy .micro,
.hero-copy .buttons {
    opacity: 0;
    transform: translateY(18px);
    animation:
        heroCopyEnter
        0.8s
        ease-out
        forwards;
}
.hero-copy .kicker {
    animation-delay: 0.45s;
}
.hero-copy h1 {
    animation-delay: 0.58s;
}
.hero-copy .sub {
    animation-delay: 0.72s;
}
.hero-copy .rule {
    animation-delay: 0.84s;
}
.hero-copy .micro {
    animation-delay: 0.94s;
}
.hero-copy .buttons {
    animation-delay: 1.06s;
}
.hero-copy .rule {
    width: 0;
    animation:
        ruleEnter
        0.7s
        ease-out
        0.86s
        forwards;
}

/* =========================================
   07 — HOMEPAGE VALUES
   ========================================= */
.values {
    padding: 34px 0 31px;
    text-align: center;
    background: #090c12;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.values h2 {
    margin: 0 0 10px;
    font:
        400
        clamp(28px, 3vw, 42px)
        Georgia,
        serif;
    color: var(--ivory);
}
.values p {
    margin: 0;
    color: #bbb6b8;
    line-height: 1.6;
}
.icons {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    margin-top: 38px;
}
.item {
    min-height: 72px;
    padding: 4px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    transition:
        background 300ms ease,
        transform 300ms ease;
}
.item + .item {
    border-left:
        1px solid
        var(--line);
}
.item:hover {
    transform: translateY(-4px);
    background:
        rgba(255, 255, 255, 0.012);
}
.glyph {
    display: inline-block;
    font:
        28px
        Georgia,
        serif;
    color: #d6cec2;
    transition:
        color 300ms ease,
        transform 300ms ease,
        text-shadow 300ms ease;
}
.item:hover .glyph {
    color: var(--ivory);
    transform:
        translateY(-2px)
        scale(1.06);
    text-shadow:
        0 0 14px
        rgba(184, 154, 105, 0.18);
}
.item span:last-child {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.5;
    color: #c8c4c2;
}

/* =========================================
   08 — HOMEPAGE BRAND STATEMENT
   ========================================= */
.lower {
    min-height: 360px;
    padding: 80px 20px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(
            90deg,
            #0a0b0e,
            #17130f 35%,
            #111115 65%,
            #07090e
        );
}
.lower blockquote {
    max-width: 720px;
    margin: 0;
    font:
        italic
        26px
        / 1.5
        Georgia,
        serif;
    color: #c9c2bb;
    transition:
        color 400ms ease;
}
.lower:hover blockquote {
    color: #ded5cc;
}
.lower .mark {
    margin-top: 38px;
    font:
        18px
        Georgia,
        serif;
    letter-spacing: 0.18em;
    color: #a8885e;
}

/* =========================================
   09 — COMPANIONS PAGE
   ========================================= */
.companions-page {
    background: var(--bg);
}
.companions-header {
    background:
        rgba(7, 9, 14, 0.96);
}
/* -----------------------------------------
   Companions Introduction
   ----------------------------------------- */
.companions-intro {
    padding: 110px 0 90px;
    border-bottom:
        1px solid
        var(--line);
    background:
        linear-gradient(
            180deg,
            #090b11 0%,
            #07090e 100%
        );
}
.companions-intro h1 {
    max-width: 850px;
    margin: 0;
    font:
        400
        clamp(48px, 6vw, 86px)
        / 0.98
        Georgia,
        serif;
    letter-spacing: -0.02em;
    color: var(--ivory);
}
.companions-lead {
    max-width: 660px;
    margin: 0;
    font:
        400
        20px
        / 1.65
        Georgia,
        serif;
    color: #d0c8c0;
}
.companions-secondary {
    max-width: 620px;
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}
/* -----------------------------------------
   Companion Roster
   ----------------------------------------- */
.companion-roster {
    padding: 100px 0 120px;
    background: var(--surface);
}
.roster-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 80px 30px;
}
.companion-card {
    min-width: 0;
}
/* -----------------------------------------
   Companion Images
   ----------------------------------------- */
.companion-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0c0e13;
    border:
        1px solid
        rgba(221, 197, 158, 0.12);
}
.companion-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(4, 5, 8, 0.16) 100%
        );
    transition:
        background 350ms ease;
}
.companion-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        600ms
        var(--ease-luxury),
        filter
        400ms
        ease;
}
.companion-card:hover
.companion-image img {
    transform: scale(1.025);
}
.companion-card:hover
.companion-image::after {
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(4, 5, 8, 0.23) 100%
        );
}
/* -----------------------------------------
   Companion Information
   ----------------------------------------- */
.companion-info {
    padding-top: 24px;
}
.companion-number {
    margin: 0 0 11px;
    font-size: 9px;
    letter-spacing: 0.24em;
    color: var(--gold);
}
.companion-info h2 {
    margin: 0;
    font:
        400
        34px
        / 1
        Georgia,
        serif;
    letter-spacing: 0.01em;
    color: var(--ivory);
}
.companion-type {
    margin: 10px 0 0;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa4a0;
}
.companion-description {
    max-width: 360px;
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.75;
    color: #a9a6a7;
}
.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 5px;
    border-bottom:
        1px solid
        rgba(184, 154, 105, 0.34);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d5c7b3;
    transition:
        color 220ms ease,
        border-color 220ms ease,
        gap 220ms ease;
}
.profile-link span {
    font-size: 15px;
    line-height: 1;
}
.profile-link:hover {
    gap: 14px;
    color: var(--ivory);
    border-color: var(--gold);
}
/* -----------------------------------------
   Matching CTA
   ----------------------------------------- */
.matching-cta {
    padding: 110px 0;
    text-align: center;
    border-top:
        1px solid
        var(--line);
    background:
        linear-gradient(
            135deg,
            #0a0b10,
            #15110e 48%,
            #08090e
        );
}
.matching-cta .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.matching-cta h2 {
    margin: 0;
    font:
        400
        clamp(38px, 4vw, 60px)
        / 1.1
        Georgia,
        serif;
    color: var(--ivory);
}
.matching-cta
> .wrap
> p:not(.page-kicker) {
    max-width: 570px;
    margin: 26px auto 0;
    font-size: 14px;
    line-height: 1.8;
    color: #aaa6a5;
}
.matching-cta .btn {
    margin-top: 34px;
}

/* =========================================
   10 — COMPANION PROFILE SYSTEM
   ========================================= */
.profile-page {
    --profile-accent: var(--gold);
    --profile-glow:
        rgba(184, 154, 105, 0.06);
    min-height: 100vh;
    /*
       Keep the main profile background solid.
       Character glow is reserved for individual
       elements rather than being painted across
       the entire page.
    */
    background: var(--bg);
}
.profile-header {
    background:
        rgba(7, 9, 14, 0.92);
    backdrop-filter: blur(14px);
}
/* -----------------------------------------
   Profile Hero
   ----------------------------------------- */
.profile-hero {
    min-height:
        calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding:
        clamp(70px, 8vw, 120px)
        0;
}
.profile-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(340px, 0.9fr)
        minmax(400px, 1fr);
    gap:
        clamp(60px, 8vw, 130px);
    align-items: center;
}
.profile-portrait {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0c0e13;
    opacity: 0;
    transform:
        translateY(20px);
    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, 0.4),
        0 0 50px
        var(--profile-glow);
    animation:
        profilePortraitEnter
        1s
        var(--ease-luxury)
        0.25s
        forwards;
}
.profile-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border:
        1px solid
        rgba(234, 219, 199, 0.16);
    box-shadow:
        inset 0 0 50px
        rgba(0, 0, 0, 0.18);
}
.profile-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* -----------------------------------------
   Profile Introduction
   ----------------------------------------- */
.profile-intro {
    max-width: 620px;
    opacity: 0;
    transform:
        translateY(22px);
    animation:
        profileCopyEnter
        0.9s
        var(--ease-luxury)
        0.42s
        forwards;
}
.profile-back {
    display: inline-block;
    margin-bottom: 56px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    transition:
        color 220ms ease,
        transform 220ms ease;
}
.profile-back:hover {
    color: var(--ivory);
    transform:
        translateX(-4px);
}
.profile-number {
    margin: 0 0 14px;
    font:
        12px
        Georgia,
        serif;
    letter-spacing: 0.2em;
    color: var(--profile-accent);
}
.profile-intro .kicker {
    margin-bottom: 18px;
    color: var(--profile-accent);
}
.profile-intro h1 {
    margin: 0;
    font:
        400
        clamp(74px, 8vw, 128px)
        / 0.9
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.profile-intro .rule {
    width: 44px;
    margin: 30px 0;
    background:
        var(--profile-accent);
}
.profile-lead {
    max-width: 560px;
    margin: 0 0 24px;
    font:
        400
        clamp(25px, 2.2vw, 34px)
        / 1.35
        Georgia,
        serif;
    color: #ddd5cc;
}
.profile-copy {
    max-width: 540px;
    margin: 0 0 38px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}
/* -----------------------------------------
   Profile Experience
   ----------------------------------------- */
.profile-experience {
    padding:
        clamp(75px, 8vw, 120px)
        0;
    border-top:
        1px solid
        var(--line);
    background:
        linear-gradient(
            135deg,
            #090b10,
            #0c0f14 50%,
            #080a0e
        );
}
.profile-experience-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(400px, 1fr);
    gap:
        clamp(50px, 8vw, 130px);
}
.profile-experience h2 {
    max-width: 500px;
    margin: 16px 0 0;
    font:
        400
        clamp(42px, 5vw, 72px)
        / 1
        Georgia,
        serif;
    color: var(--ivory);
}
.profile-experience-copy {
    max-width: 600px;
}
.profile-experience-copy p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.85;
    color: #b8b3b2;
}
/* -----------------------------------------
   Profile Notes
   ----------------------------------------- */
.profile-notes {
    padding: 85px 0;
    border-top:
        1px solid
        var(--line);
    border-bottom:
        1px solid
        var(--line);
    background: var(--surface);
}
.profile-notes-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
}
.profile-note {
    min-height: 210px;
    padding:
        12px
        clamp(30px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile-note + .profile-note {
    border-left:
        1px solid
        var(--line);
}
.profile-note span {
    margin-bottom: 24px;
    font:
        11px
        Georgia,
        serif;
    letter-spacing: 0.2em;
    color: var(--profile-accent);
}
.profile-note h3 {
    margin: 0 0 15px;
    font:
        400
        28px
        Georgia,
        serif;
    color: var(--ivory);
}
.profile-note p {
    max-width: 310px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #9e9b9e;
}
/* -----------------------------------------
   Profile Closing
   ----------------------------------------- */
.profile-closing {
    padding:
        clamp(110px, 12vw, 180px)
        20px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            var(--profile-glow),
            transparent 42%
        ),
        var(--surface-soft);
}
.profile-closing .kicker {
    color: var(--profile-accent);
}
.profile-closing h2 {
    margin: 12px 0 20px;
    font:
        400
        clamp(42px, 5vw, 70px)
        / 1.05
        Georgia,
        serif;
    color: var(--ivory);
}
.profile-closing
> .wrap
> p:not(.kicker) {
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}
.profile-closing .btn {
    display: inline-block;
}

/* =========================================
   11 — PROFILE THEMES
   ========================================= */
.mina-profile {
    --profile-accent: #73b8aa;
    --profile-glow:
        rgba(115, 184, 170, 0.06);
}
.sienna-profile {
    --profile-accent: #9f5c5c;
    --profile-glow:
        rgba(159, 92, 92, 0.07);
}

/* =========================================
   12 — FOOTER
   ========================================= */
.site-footer {
    padding: 50px 0;
    border-top:
        1px solid
        var(--line);
    background: #06080c;
}
.footer-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer-brand {
    margin-right: auto;
    color: var(--ivory);
}
.footer-brand span {
    display: block;
    font:
        400
        19px
        Georgia,
        serif;
    letter-spacing: 0.16em;
}
.footer-brand small {
    display: block;
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 0.27em;
    color: #8e8a89;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999596;
}
.footer-links a {
    transition:
        color 200ms ease;
}
.footer-links a:hover {
    color: var(--ivory);
}
/* Profile's simplified footer */
.profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #77777d;
}
.profile-footer > div:first-child {
    font:
        16px
        Georgia,
        serif;
    letter-spacing: 0.18em;
    color: var(--ivory);
}

/* =========================================
   13 — SCROLL REVEALS
   ========================================= */
.reveal {
    opacity: 0;
    transform:
        translateY(28px);
    transition:
        opacity
        850ms
        ease,
        transform
        850ms
        var(--ease-luxury);
}
.reveal.visible {
    opacity: 1;
    transform:
        translateY(0);
}
/* Homepage stagger */
.item.reveal:nth-child(1) {
    transition-delay: 0ms;
}
.item.reveal:nth-child(2) {
    transition-delay: 90ms;
}
.item.reveal:nth-child(3) {
    transition-delay: 180ms;
}
.item.reveal:nth-child(4) {
    transition-delay: 270ms;
}

/* =========================================
   14 — ANIMATIONS
   ========================================= */
@keyframes heroReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes headerEnter {
    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}
@keyframes heroCopyEnter {
    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}
@keyframes ruleEnter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 32px;
        opacity: 1;
    }
}
@keyframes profilePortraitEnter {
    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}
@keyframes profileCopyEnter {
    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page {
    min-height: 100vh;
    background: var(--bg);
}
.contact-header {
    background: rgba(7, 9, 14, 0.96);
}
/* -----------------------------------------
   Contact Main
   ----------------------------------------- */
.contact-main {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding:
        clamp(90px, 10vw, 150px)
        0
        clamp(110px, 12vw, 180px);
    background:
        linear-gradient(
            135deg,
            #090b10 0%,
            #07090e 58%,
            #090a0e 100%
        );
}
.contact-content {
    max-width: 760px;
}
.contact-content .page-kicker {
    margin-bottom: 28px;
}
.contact-content h1 {
    margin: 0;
    font:
        400
        clamp(58px, 6vw, 92px)
        / 0.98
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.contact-content .intro-rule {
    margin:
        42px
        0;
}
.contact-lead {
    max-width: 650px;
    margin: 0 0 22px;
    font:
        400
        clamp(21px, 2vw, 27px)
        / 1.55
        Georgia,
        serif;
    color: #d3cbc3;
}
.contact-copy {
    max-width: 590px;
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}
/* -----------------------------------------
   Email
   ----------------------------------------- */
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom:
        1px solid
        rgba(184, 154, 105, 0.45);
    font:
        400
        18px
        Georgia,
        serif;
    letter-spacing: 0.04em;
    color: var(--ivory);
    transition:
        gap 220ms ease,
        color 220ms ease,
        border-color 220ms ease;
}
.contact-email span {
    color: var(--gold);
    transition:
        transform 220ms ease;
}
.contact-email:hover {
    gap: 17px;
    color: #fff4df;
    border-color: var(--gold);
}
.contact-email:hover span {
    transform: translateX(2px);
}
/* -----------------------------------------
   Fiction Notice
   ----------------------------------------- */
.contact-notice {
    padding:
        clamp(80px, 8vw, 120px)
        0;
    border-top:
        1px solid
        var(--line);
    border-bottom:
        1px solid
        var(--line);
    background: var(--surface);
}
.contact-notice-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(400px, 1fr);
    gap:
        clamp(60px, 9vw, 150px);
    align-items: start;
}
.contact-notice h2 {
    max-width: 520px;
    margin: 15px 0 0;
    font:
        400
        clamp(38px, 4vw, 58px)
        / 1.05
        Georgia,
        serif;
    color: var(--ivory);
}
.contact-notice-copy {
    max-width: 610px;
    padding-top: 30px;
}
.contact-notice-copy p {
    margin:
        0
        0
        22px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
}
/* -----------------------------------------
   Contact Responsive
   ----------------------------------------- */
@media (max-width: 900px) {
    .contact-main {
        min-height: 580px;
        padding:
            90px
            0
            110px;
    }
    .contact-notice-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .contact-notice-copy {
        padding-top: 0;
    }
}
@media (max-width: 560px) {
    .contact-main {
        min-height: auto;
        padding:
            80px
            0
            100px;
    }
    .contact-content h1 {
        font-size:
            clamp(
                48px,
                14vw,
                68px
            );
    }
    .contact-content .intro-rule {
        margin:
            34px
            0;
    }
    .contact-lead {
        font-size: 20px;
    }
    .contact-email {
        font-size: 16px;
        overflow-wrap: anywhere;
    }
    .contact-notice {
        padding:
            75px
            0;
    }
    .contact-notice h2 {
        font-size: 40px;
    }
}

/* =========================================
   REQUEST AN INTRODUCTION PAGE
   ========================================= */
.request-page {
    min-height: 100vh;
    background: var(--bg);
}
.request-header {
    background: rgba(7, 9, 14, 0.96);
}
/* -----------------------------------------
   Main Request Area
   ----------------------------------------- */
.request-intro {
    padding:
        clamp(90px, 9vw, 140px)
        0
        clamp(110px, 10vw, 160px);
    background:
        linear-gradient(
            135deg,
            #090b10 0%,
            #07090e 55%,
            #0a0908 100%
        );
}
.request-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(480px, 1fr);
    gap:
        clamp(70px, 9vw, 150px);
    align-items: start;
}
/* -----------------------------------------
   Introduction Copy
   ----------------------------------------- */
.request-copy {
    max-width: 610px;
    position: sticky;
    top: 130px;
}
.request-copy h1 {
    margin: 0;
    font:
        400
        clamp(52px, 5.2vw, 82px)
        / 1
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.request-copy .intro-rule {
    margin:
        40px
        0;
}
.request-lead {
    max-width: 520px;
    margin: 0 0 20px;
    font:
        400
        clamp(21px, 1.8vw, 27px)
        / 1.5
        Georgia,
        serif;
    color: #d8d0c7;
}
.request-secondary {
    max-width: 520px;
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
}
/* -----------------------------------------
   Form Container
   ----------------------------------------- */
.request-form-wrap {
    width: 100%;
    max-width: 650px;
    padding:
        clamp(35px, 4vw, 58px);
    border:
        1px solid
        rgba(221, 197, 158, 0.16);
    background:
        rgba(10, 12, 17, 0.72);
    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, 0.22);
}
.request-form {
    width: 100%;
}
/* -----------------------------------------
   Form Fields
   ----------------------------------------- */
.form-field {
    margin-bottom: 30px;
}
.form-field label {
    display: block;
    margin-bottom: 11px;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8b89e;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding:
        15px
        0;
    border: 0;
    border-bottom:
        1px solid
        rgba(234, 219, 199, 0.22);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    font:
        400
        15px
        Arial,
        Helvetica,
        sans-serif;
    transition:
        border-color 220ms ease,
        background 220ms ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #66666b;
    opacity: 1;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--gold);
}
/* -----------------------------------------
   Select
   ----------------------------------------- */
.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 35px;
    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #a98b60 50%
        ),
        linear-gradient(
            135deg,
            #a98b60 50%,
            transparent 50%
        );
    background-position:
        calc(100% - 15px) 52%,
        calc(100% - 10px) 52%;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}
.form-field select option {
    background: #0b0d12;
    color: var(--text);
}
/* -----------------------------------------
   Text Area
   ----------------------------------------- */
.form-field textarea {
    min-height: 135px;
    resize: vertical;
    line-height: 1.7;
}
/* -----------------------------------------
   Submit
   ----------------------------------------- */
.request-submit {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    color: var(--ivory);
}
button.request-submit {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}
.request-disclaimer {
    max-width: 500px;
    margin:
        22px
        auto
        0;
    text-align: center;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #77777d;
}
/* -----------------------------------------
   Confirmation State
   ----------------------------------------- */
.request-success {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.request-success[hidden] {
    display: none;
}
.request-success h2 {
    margin:
        0
        0
        24px;
    font:
        400
        clamp(48px, 5vw, 72px)
        / 1
        Georgia,
        serif;
    color: var(--ivory);
}
.request-success > p:not(.page-kicker) {
    max-width: 440px;
    margin: 0;
    font:
        400
        19px
        / 1.65
        Georgia,
        serif;
    color: #c9c1ba;
}
.request-success .profile-link {
    margin-top: 36px;
}
/* -----------------------------------------
   Fiction Notice
   ----------------------------------------- */
.request-note {
    padding:
        55px
        0;
    border-top:
        1px solid
        var(--line);
    border-bottom:
        1px solid
        var(--line);
    background: var(--surface);
}
.request-note-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}
.request-note .page-kicker {
    flex: 0 0 auto;
    margin: 0;
}
.request-note-inner > p:last-child {
    max-width: 720px;
    margin: 0;
    font-size: 11px;
    line-height: 1.75;
    color: #858287;
}

/* =========================================
   REQUEST PAGE — TABLET
   ========================================= */
@media (max-width: 900px) {
    .request-intro {
        padding:
            80px
            0
            100px;
    }
    .request-intro-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .request-copy {
        position: static;
        max-width: 680px;
    }
    .request-form-wrap {
        max-width: 680px;
    }
    .request-note-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* =========================================
   REQUEST PAGE — MOBILE
   ========================================= */
@media (max-width: 560px) {
    .request-intro {
        padding:
            70px
            0
            80px;
    }
    .request-intro-grid {
        gap: 50px;
    }
    .request-copy h1 {
        font-size:
            clamp(
                48px,
                14vw,
                66px
            );
    }
    .request-copy .intro-rule {
        margin:
            32px
            0;
    }
    .request-lead {
        font-size: 20px;
    }
    .request-form-wrap {
        padding:
            30px
            22px;
    }
    .form-field {
        margin-bottom: 27px;
    }
    .request-note {
        padding:
            45px
            0;
    }
}

/* =========================================
   JOURNAL PAGE
   ========================================= */
.journal-page {
    min-height: 100vh;
    background: var(--bg);
}
.journal-header {
    background: rgba(7, 9, 14, 0.96);
}
/* -----------------------------------------
   Journal Introduction
   ----------------------------------------- */
.journal-intro {
    padding:
        clamp(100px, 10vw, 155px)
        0
        clamp(90px, 9vw, 135px);
    border-bottom:
        1px solid
        var(--line);
    background:
        linear-gradient(
            135deg,
            #090b10 0%,
            #07090e 58%,
            #0b0908 100%
        );
}
.journal-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(400px, 1fr);
    gap:
        clamp(70px, 10vw, 160px);
    align-items: end;
}
.journal-intro h1 {
    margin: 0;
    font:
        400
        clamp(64px, 7vw, 108px)
        / 0.92
        Georgia,
        serif;
    letter-spacing: -0.035em;
    color: var(--ivory);
}
.journal-intro-copy {
    max-width: 610px;
}
.journal-intro-copy .intro-rule {
    margin:
        0
        0
        38px;
}
.journal-lead {
    margin:
        0
        0
        22px;
    font:
        400
        clamp(22px, 2vw, 29px)
        / 1.5
        Georgia,
        serif;
    color: #d7cfc7;
}
.journal-secondary {
    max-width: 540px;
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}
/* -----------------------------------------
   Featured Entry
   ----------------------------------------- */
.journal-feature {
    padding:
        clamp(100px, 10vw, 155px)
        0;
    background: #080a0f;
}
.journal-feature-card {
    position: relative;
    max-width: 1050px;
    padding:
        clamp(45px, 6vw, 85px);
    border:
        1px solid
        rgba(221, 197, 158, 0.18);
    background:
        linear-gradient(
            135deg,
            rgba(16, 17, 22, 0.98),
            rgba(9, 10, 15, 0.98)
        );
    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, 0.22);
}
.journal-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            transparent,
            var(--gold) 25%,
            var(--gold) 75%,
            transparent
        );
    opacity: 0.55;
}
.journal-feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 55px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #898589;
}
.journal-feature-meta span:first-child {
    color: var(--gold);
}
.journal-entry-number {
    margin:
        0
        0
        18px;
    font:
        11px
        Georgia,
        serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.journal-feature h2 {
    max-width: 900px;
    margin: 0;
    font:
        400
        clamp(48px, 5.5vw, 82px)
        / 1.02
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.journal-feature-subtitle {
    margin:
        20px
        0
        0;
    font:
        italic
        28px
        Georgia,
        serif;
    color: #a7a1a0;
}
.journal-feature-card .rule {
    margin:
        42px
        0;
    background: var(--gold);
}
.journal-feature-excerpt {
    max-width: 690px;
    margin:
        0
        0
        18px;
    font:
        400
        18px
        / 1.75
        Georgia,
        serif;
    color: #c7c0ba;
}
.journal-feature-aside {
    margin:
        0
        0
        38px;
    font:
        italic
        15px
        / 1.7
        Georgia,
        serif;
    color: #918d90;
}
/* -----------------------------------------
   Shared Journal Link
   ----------------------------------------- */
.journal-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom:
        1px solid
        rgba(184, 154, 105, 0.36);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d7c9b5;
    transition:
        gap 220ms ease,
        color 220ms ease,
        border-color 220ms ease;
}
.journal-read span {
    font-size: 15px;
    line-height: 1;
}
.journal-read:hover {
    gap: 15px;
    color: var(--ivory);
    border-color: var(--gold);
}
/* -----------------------------------------
   Recent Entries
   ----------------------------------------- */
.journal-entries {
    padding:
        clamp(90px, 9vw, 140px)
        0
        clamp(110px, 11vw, 165px);
    border-top:
        1px solid
        var(--line);
    background: var(--surface);
}
.journal-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 65px;
    padding-bottom: 30px;
    border-bottom:
        1px solid
        var(--line);
}
.journal-section-heading .page-kicker {
    margin: 0;
}
.journal-section-heading > p:last-child {
    max-width: 300px;
    margin: 0;
    text-align: right;
    font:
        italic
        14px
        / 1.6
        Georgia,
        serif;
    color: #858186;
}
/* -----------------------------------------
   Entry Grid
   ----------------------------------------- */
.journal-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    column-gap:
        clamp(50px, 7vw, 110px);
    row-gap: 0;
}
.journal-card {
    position: relative;
    min-height: 390px;
    padding:
        48px
        0
        55px;
    display: flex;
    flex-direction: column;
    border-bottom:
        1px solid
        var(--line);
}
.journal-card:nth-child(-n + 2) {
    border-top:
        1px solid
        var(--line);
}
.journal-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 38px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #77757a;
}
.journal-card-top span:first-child {
    color: var(--gold);
}
.journal-card h2 {
    max-width: 520px;
    margin:
        0
        0
        24px;
    font:
        400
        clamp(34px, 3.3vw, 50px)
        / 1.08
        Georgia,
        serif;
    letter-spacing: -0.02em;
    color: var(--ivory);
    transition:
        color 250ms ease;
}
.journal-card > p {
    max-width: 490px;
    margin:
        0
        0
        35px;
    font-size: 14px;
    line-height: 1.8;
    color: #9f9b9d;
}
.journal-card .journal-read {
    margin-top: auto;
    align-self: flex-start;
}
.journal-card:hover h2 {
    color: #fff1dc;
}
/* -----------------------------------------
   Management Statement
   ----------------------------------------- */
.journal-statement {
    padding:
        clamp(120px, 13vw, 190px)
        20px;
    text-align: center;
    border-top:
        1px solid
        var(--line);
    border-bottom:
        1px solid
        var(--line);
    background:
        radial-gradient(
            circle at center,
            rgba(184, 154, 105, 0.045),
            transparent 45%
        ),
        #090a0e;
}
.journal-statement .page-kicker {
    margin-bottom: 35px;
}
.journal-statement blockquote {
    max-width: 900px;
    margin:
        0
        auto;
    font:
        italic
        400
        clamp(31px, 3.5vw, 50px)
        / 1.45
        Georgia,
        serif;
    color: #d8d0c7;
}
.journal-statement-note {
    margin:
        38px
        0
        0;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #777479;
}
/* -----------------------------------------
   Archive
   ----------------------------------------- */
.journal-archive {
    padding:
        clamp(90px, 9vw, 135px)
        0;
    background: #080a0f;
}
.journal-archive-inner {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(380px, 1fr);
    gap:
        clamp(70px, 10vw, 160px);
    align-items: end;
}
.journal-archive h2 {
    margin:
        12px
        0
        0;
    font:
        400
        clamp(46px, 5vw, 70px)
        / 1
        Georgia,
        serif;
    color: var(--ivory);
}
.journal-archive-inner
> div:last-child
> p {
    max-width: 560px;
    margin:
        0
        0
        30px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}
/* -----------------------------------------
   Fiction Notice
   ----------------------------------------- */
.journal-fiction {
    padding:
        38px
        0;
    border-top:
        1px solid
        rgba(221, 197, 158, 0.12);
    background: #07090e;
}
.journal-fiction p {
    max-width: 720px;
    margin: 0;
    font-size: 9px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: #66666c;
}

/* =========================================
   JOURNAL — TABLET
   ========================================= */
@media (max-width: 900px) {
    .journal-intro {
        padding:
            90px
            0;
    }
    .journal-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .journal-intro-copy {
        max-width: 650px;
    }
    .journal-intro-copy .intro-rule {
        margin-bottom: 30px;
    }
    .journal-feature {
        padding:
            80px
            0;
    }
    .journal-grid {
        column-gap: 45px;
    }
    .journal-card {
        min-height: 360px;
    }
    .journal-archive-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

/* =========================================
   JOURNAL — MOBILE
   ========================================= */
@media (max-width: 560px) {
    .journal-intro {
        padding:
            70px
            0;
    }
    .journal-intro h1 {
        font-size:
            clamp(
                58px,
                18vw,
                78px
            );
    }
    .journal-intro-grid {
        gap: 45px;
    }
    .journal-lead {
        font-size: 20px;
    }
    /* Featured */
    .journal-feature {
        padding:
            55px
            0;
    }
    .journal-feature-card {
        padding:
            35px
            25px;
    }
    .journal-feature-meta {
        margin-bottom: 38px;
    }
    .journal-feature h2 {
        font-size:
            clamp(
                40px,
                12vw,
                55px
            );
    }
    .journal-feature-subtitle {
        font-size: 23px;
    }
    .journal-feature-excerpt {
        font-size: 16px;
    }
    /* Entries */
    .journal-entries {
        padding:
            70px
            0
            90px;
    }
    .journal-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 35px;
    }
    .journal-section-heading
    > p:last-child {
        text-align: left;
    }
    .journal-grid {
        grid-template-columns: 1fr;
    }
    .journal-card {
        min-height: auto;
        padding:
            42px
            0;
    }
    .journal-card:nth-child(2) {
        border-top: 0;
    }
    .journal-card h2 {
        font-size:
            clamp(
                34px,
                10vw,
                45px
            );
    }
    /* Statement */
    .journal-statement {
        padding:
            100px
            20px;
    }
    .journal-statement blockquote {
        font-size: 28px;
    }
    .journal-statement-note {
        line-height: 1.7;
    }
    /* Archive */
    .journal-archive {
        padding:
            75px
            0;
    }
    .journal-archive h2 {
        font-size: 48px;
    }
}

/* =========================================
   OUR STANDARDS PAGE
   ========================================= */
.standards-page {
    min-height: 100vh;
    background: var(--bg);
}
.standards-header {
    background: rgba(7, 9, 14, 0.96);
}
/* -----------------------------------------
   Introduction
   ----------------------------------------- */
.standards-intro {
    padding:
        clamp(105px, 11vw, 165px) 0
        clamp(100px, 10vw, 150px);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            135deg,
            #090b10 0%,
            #07090e 58%,
            #0a0908 100%
        );
}
.standards-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(400px, 1fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}
.standards-title h1 {
    margin: 0;
    font:
        400 clamp(62px, 6.7vw, 102px) / 0.94
        Georgia,
        serif;
    letter-spacing: -0.035em;
    color: var(--ivory);
}
.standards-intro-copy {
    max-width: 610px;
}
.standards-intro-copy .intro-rule {
    margin: 0 0 38px;
}
.standards-lead {
    margin: 0 0 22px;
    font:
        400 clamp(22px, 2vw, 29px) / 1.5
        Georgia,
        serif;
    color: #d7cfc7;
}
.standards-secondary {
    max-width: 540px;
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}
/* -----------------------------------------
   House Principles
   ----------------------------------------- */
.standards-principles {
    padding:
        clamp(100px, 10vw, 155px) 0
        clamp(120px, 12vw, 180px);
    background: var(--surface);
}
.standards-section-heading {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.5fr)
        minmax(400px, 1fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(65px, 8vw, 105px);
}
.standards-section-heading .page-kicker {
    margin: 0;
}
.standards-section-heading h2 {
    margin: 0;
    font:
        400 clamp(45px, 4.8vw, 70px) / 1
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
/* Standards list */
.standards-list {
    border-top: 1px solid var(--line);
}
.standard-item {
    display: grid;
    grid-template-columns:
        70px
        minmax(130px, 0.35fr)
        minmax(0, 1fr);
    gap: clamp(25px, 4vw, 65px);
    padding: clamp(45px, 5vw, 70px) 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.standard-number {
    padding-top: 7px;
    font:
        400 13px Georgia,
        serif;
    letter-spacing: 0.12em;
    color: #716d70;
}
.standard-name {
    padding-top: 8px;
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.standard-copy {
    max-width: 760px;
}
.standard-copy h3 {
    max-width: 650px;
    margin: 0 0 22px;
    font:
        400 clamp(30px, 3vw, 45px) / 1.12
        Georgia,
        serif;
    letter-spacing: -0.018em;
    color: #ded5cb;
}
.standard-copy p {
    max-width: 650px;
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.85;
    color: #969296;
}
.standard-copy p:last-child {
    margin-bottom: 0;
}
/* -----------------------------------------
   Matching Philosophy
   ----------------------------------------- */
.standards-matching {
    padding:
        clamp(115px, 12vw, 185px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            135deg,
            #0b0c11,
            #08090e 60%,
            #090909
        );
}
.standards-matching-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.85fr)
        minmax(400px, 1fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: start;
}
.standards-matching h2 {
    max-width: 580px;
    margin: 18px 0 0;
    font:
        400 clamp(48px, 5vw, 74px) / 1.02
        Georgia,
        serif;
    letter-spacing: -0.028em;
    color: var(--ivory);
}
.standards-matching-copy {
    max-width: 620px;
    padding-top: 28px;
}
.standards-matching-copy p {
    margin: 0 0 23px;
    font-size: 14px;
    line-height: 1.9;
    color: #9d999b;
}
.standards-matching-copy .standards-matching-lead {
    margin-bottom: 30px;
    font:
        400 21px / 1.65
        Georgia,
        serif;
    color: #d0c8c0;
}
.standards-matching-copy .journal-read {
    margin-top: 18px;
}
/* -----------------------------------------
   House Statement
   ----------------------------------------- */
.standards-statement {
    padding:
        clamp(125px, 14vw, 205px)
        20px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(184, 154, 105, 0.045),
            transparent 45%
        ),
        #090a0e;
}
.standards-statement .page-kicker {
    margin-bottom: 38px;
}
.standards-statement blockquote {
    max-width: 940px;
    margin: 0 auto;
    font:
        italic 400
        clamp(32px, 3.7vw, 52px) / 1.45
        Georgia,
        serif;
    color: #d9d0c7;
}
.standards-statement > .wrap > p:last-child {
    margin: 38px auto 0;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #777479;
}
/* -----------------------------------------
   Before an Introduction
   ----------------------------------------- */
.standards-expectations {
    padding:
        clamp(100px, 10vw, 155px) 0
        clamp(120px, 12vw, 180px);
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.standards-expectations-heading {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.45fr)
        minmax(420px, 1fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(70px, 8vw, 110px);
}
.standards-expectations-heading .page-kicker {
    margin: 0;
}
.standards-expectations-heading h2 {
    max-width: 720px;
    margin: 0;
    font:
        400 clamp(45px, 4.8vw, 70px) / 1.04
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.expectation-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}
.expectation-grid article {
    min-height: 330px;
    padding:
        clamp(40px, 4vw, 58px)
        clamp(28px, 3.5vw, 52px);
    border-right: 1px solid var(--line);
}
.expectation-grid article:first-child {
    padding-left: 0;
}
.expectation-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}
.expectation-grid span {
    display: block;
    margin-bottom: 65px;
    font:
        400 13px Georgia,
        serif;
    color: var(--gold);
}
.expectation-grid h3 {
    margin: 0 0 22px;
    font:
        400 clamp(28px, 2.7vw, 39px) / 1.1
        Georgia,
        serif;
    color: var(--ivory);
}
.expectation-grid p {
    max-width: 330px;
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: #918e92;
}
/* -----------------------------------------
   Closing CTA
   ----------------------------------------- */
.standards-closing {
    padding:
        clamp(110px, 11vw, 170px) 0;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(
            135deg,
            #090a0f,
            #08090d
        );
}
.standards-closing-inner {
    display: grid;
    grid-template-columns:
        minmax(380px, 1fr)
        minmax(340px, 0.75fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}
.standards-closing h2 {
    max-width: 700px;
    margin: 18px 0 0;
    font:
        400 clamp(48px, 5vw, 74px) / 1.03
        Georgia,
        serif;
    letter-spacing: -0.025em;
    color: var(--ivory);
}
.standards-closing-inner > div:last-child {
    max-width: 480px;
}
.standards-closing-inner > div:last-child p {
    margin: 0 0 32px;
    font:
        400 17px / 1.7
        Georgia,
        serif;
    color: #aaa4a0;
}
/* -----------------------------------------
   Fiction Notice
   ----------------------------------------- */
.standards-fiction {
    padding: 38px 0;
    border-top:
        1px solid rgba(221, 197, 158, 0.12);
    background: #07090e;
}
.standards-fiction p {
    max-width: 760px;
    margin: 0;
    font-size: 9px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: #66666c;
}

/* =========================================
   STANDARDS RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .standards-intro {
        padding: 90px 0;
    }
    .standards-intro-grid,
    .standards-matching-grid,
    .standards-closing-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .standards-intro-copy {
        max-width: 650px;
    }
    .standards-section-heading,
    .standards-expectations-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .standard-item {
        grid-template-columns:
            55px
            120px
            minmax(0, 1fr);
        gap: 20px;
    }
    .standards-matching-copy {
        padding-top: 0;
    }
    .expectation-grid {
        grid-template-columns: 1fr;
    }
    .expectation-grid article {
        min-height: auto;
        padding: 45px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .expectation-grid article:last-child {
        border-bottom: 0;
    }
    .expectation-grid span {
        margin-bottom: 35px;
    }
}
@media (max-width: 560px) {
    .standards-intro {
        padding: 70px 0 80px;
    }
    .standards-title h1 {
        font-size:
            clamp(55px, 17vw, 76px);
    }
    .standards-intro-grid {
        gap: 45px;
    }
    .standards-lead {
        font-size: 20px;
    }
    .standards-principles {
        padding: 75px 0 95px;
    }
    .standards-section-heading {
        margin-bottom: 50px;
    }
    .standard-item {
        grid-template-columns:
            48px
            1fr;
        gap: 12px 15px;
        padding: 38px 0;
    }
    .standard-number {
        grid-column: 1;
        grid-row: 1;
    }
    .standard-name {
        grid-column: 2;
        grid-row: 1;
    }
    .standard-copy {
        grid-column: 1 / 3;
        grid-row: 2;
        padding-top: 15px;
    }
    .standard-copy h3 {
        font-size: 31px;
    }
    .standards-matching {
        padding: 85px 0;
    }
    .standards-matching h2 {
        font-size: 48px;
    }
    .standards-matching-copy
    .standards-matching-lead {
        font-size: 19px;
    }
    .standards-statement {
        padding: 100px 20px;
    }
    .standards-statement blockquote {
        font-size: 29px;
    }
    .standards-expectations {
        padding: 80px 0 100px;
    }
    .standards-expectations-heading {
        margin-bottom: 55px;
    }
    .standards-expectations-heading h2 {
        font-size: 44px;
    }
    .standards-closing {
        padding: 85px 0 100px;
    }
    .standards-closing h2 {
        font-size: 47px;
    }
    .standards-closing-inner {
        gap: 45px;
    }
}

/* =========================================
   15 — TABLET
   ========================================= */
@media (max-width: 900px) {
    /* Navigation */
    .links a:not(.request) {
        display: none;
    }
    .brand {
        font-size: 20px;
    }
    /* Homepage */
    .hero {
        background-position:
            60% center;
    }
    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(4, 5, 9, 0.92),
                rgba(4, 5, 9, 0.56) 60%,
                rgba(4, 5, 9, 0.15)
            );
    }
    .hero-copy {
        max-width: 460px;
    }
    .icons {
        grid-template-columns:
            1fr 1fr;
    }
    .item:nth-child(3) {
        border-left: 0;
    }
    .item {
        margin: 12px 0;
    }
    /* Companions */
    .companions-intro {
        padding:
            90px 0 70px;
    }
    .companion-roster {
        padding:
            75px 0 90px;
    }
    .roster-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap:
            65px 24px;
    }
    .companions-lead {
        font-size: 18px;
    }
    /* Profiles */
    .profile-hero {
        padding:
            60px 0 90px;
    }
    .profile-hero-grid {
        grid-template-columns:
            minmax(280px, 0.85fr)
            1fr;
        gap: 45px;
    }
    .profile-back {
        margin-bottom: 35px;
    }
    .profile-experience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .profile-notes-grid {
        grid-template-columns: 1fr;
    }
    .profile-note {
        min-height: 170px;
    }
    .profile-note + .profile-note {
        border-left: 0;
        border-top:
            1px solid
            var(--line);
    }
    /* Footer */
    .footer-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand {
        margin-right: 0;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 18px 24px;
    }
}

/* =========================================
   16 — MOBILE
   ========================================= */
@media (max-width: 560px) {
    .wrap {
        width:
            calc(100% - 34px);
    }
    /* Navigation */
    .request {
        padding: 12px;
    }
    .brand small {
        display: none;
    }
    /* Homepage */
    .hero {
        min-height: 700px;
        background-position:
            63% center;
    }
    .hero-copy {
        top: 53%;
    }
    .sub {
        font-size: 19px;
    }
    .buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .icons {
        grid-template-columns: 1fr;
    }
    .item + .item {
        border-left: 0;
        border-top:
            1px solid
            var(--line);
        padding-top: 22px;
    }
    /* Companions */
    .companions-intro {
        padding:
            70px 0 55px;
    }
    .companions-intro h1 {
        font-size:
            clamp(
                42px,
                13vw,
                58px
            );
    }
    .companions-lead {
        font-size: 17px;
    }
    .companion-roster {
        padding:
            55px 0 70px;
    }
    .roster-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .companion-info h2 {
        font-size: 31px;
    }
    .companion-description {
        max-width: none;
    }
    .matching-cta {
        padding: 80px 0;
    }
    /* Profiles */
    .profile-hero {
        display: block;
        min-height: auto;
        padding:
            30px 0 80px;
    }
    .profile-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
    .profile-portrait {
        max-width: none;
    }
    .profile-intro {
        width: 100%;
    }
    .profile-back {
        margin-bottom: 35px;
    }
    .profile-intro h1 {
        font-size:
            clamp(
                68px,
                22vw,
                100px
            );
    }
    .profile-lead {
        font-size: 25px;
    }
    .profile-experience {
        padding: 80px 0;
    }
    .profile-note {
        padding:
            36px 5px;
    }
    .profile-closing {
        padding:
            100px 20px;
    }
    /* Footer */
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .profile-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   17 — REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;
        animation-delay:
            0ms !important;
        transition-duration:
            0.01ms !important;
        scroll-behavior:
            auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   CAREERS
   ========================================= */

.careers-page {
    min-height: 100vh;
    background: var(--bg);
}

.careers-header {
    background: rgba(7, 9, 14, .96);
}


/* Introduction */

.careers-intro {
    padding: clamp(105px, 11vw, 165px) 0
             clamp(100px, 10vw, 150px);

    border-bottom: 1px solid var(--line);

    background:
        linear-gradient(
            135deg,
            #090b10 0%,
            #07090e 58%,
            #0a0908 100%
        );
}

.careers-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, .9fr)
        minmax(400px, 1fr);

    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}

.careers-title h1 {
    margin: 0;

    font: 400 clamp(62px, 6.7vw, 102px) / .94 Georgia, serif;
    letter-spacing: -.035em;

    color: var(--ivory);
}

.careers-intro-copy {
    max-width: 610px;
}

.careers-intro-copy .intro-rule {
    margin: 0 0 38px;
}

.careers-lead {
    margin: 0 0 22px;

    font: 400 clamp(22px, 2vw, 29px) / 1.5 Georgia, serif;

    color: #d7cfc7;
}

.careers-secondary {
    max-width: 540px;
    margin: 0;

    font-size: 13px;
    line-height: 1.85;

    color: var(--muted);
}


/* Shared Careers Heading */

.careers-section-heading {
    display: grid;
    grid-template-columns:
        minmax(220px, .5fr)
        minmax(400px, 1fr);

    gap: clamp(50px, 8vw, 120px);
    align-items: end;

    margin-bottom: clamp(65px, 8vw, 105px);
}

.careers-section-heading .page-kicker {
    margin: 0;
}

.careers-section-heading h2 {
    margin: 0;

    font: 400 clamp(45px, 4.8vw, 70px) / 1 Georgia, serif;
    letter-spacing: -.025em;

    color: var(--ivory);
}


/* Values */

.careers-values {
    padding: clamp(100px, 10vw, 155px) 0
             clamp(120px, 12vw, 180px);

    background: var(--surface);
}

.careers-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
}

.career-value {
    min-height: 330px;

    padding: clamp(40px, 4vw, 58px)
             clamp(25px, 3vw, 45px);

    border-right: 1px solid var(--line);
}

.career-value:first-child {
    padding-left: 0;
}

.career-value:last-child {
    padding-right: 0;
    border-right: 0;
}

.career-value span {
    display: block;

    margin-bottom: 60px;

    font: 13px Georgia, serif;

    color: var(--gold);
}

.career-value h3 {
    margin: 0 0 20px;

    font: 400 clamp(27px, 2.5vw, 38px) / 1.1 Georgia, serif;

    color: var(--ivory);
}

.career-value p {
    max-width: 280px;
    margin: 0;

    font-size: 13px;
    line-height: 1.85;

    color: #918e92;
}


/* Statement */

.careers-statement {
    padding: clamp(125px, 14vw, 205px) 20px;

    text-align: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background:
        radial-gradient(
            circle at center,
            rgba(184, 154, 105, .045),
            transparent 45%
        ),
        #090a0e;
}

.careers-statement .page-kicker {
    margin-bottom: 38px;
}

.careers-statement blockquote {
    max-width: 940px;

    margin: 0 auto;

    font: italic 400
        clamp(32px, 3.7vw, 52px) / 1.45
        Georgia, serif;

    color: #d9d0c7;
}

.careers-statement-note {
    margin: 38px 0 0;

    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #777479;
}


/* Openings */

.careers-openings {
    padding: clamp(100px, 10vw, 155px) 0
             clamp(120px, 12vw, 180px);

    background: #080a0f;
}

.career-list {
    border-top: 1px solid var(--line);
}

.career-opening {
    display: grid;
    grid-template-columns:
        70px
        minmax(240px, .55fr)
        minmax(0, 1fr);

    gap: clamp(25px, 5vw, 75px);
    align-items: start;

    padding: clamp(48px, 5vw, 72px) 0;

    border-bottom: 1px solid var(--line);
}

.career-opening-number {
    padding-top: 7px;

    font: 13px Georgia, serif;
    letter-spacing: .12em;

    color: #716d70;
}

.career-opening-type {
    margin: 0 0 15px;

    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: var(--gold);
}

.career-opening-role h3 {
    margin: 0;

    font: 400 clamp(30px, 3vw, 45px) / 1.1 Georgia, serif;

    color: var(--ivory);
}

.career-opening-copy {
    max-width: 650px;
}

.career-opening-copy p {
    margin: 0 0 25px;

    font-size: 13px;
    line-height: 1.85;

    color: #969296;
}

.career-status {
    display: inline-block;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(184, 154, 105, .34);

    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #c9b99f;
}


/* Selection */

.careers-process {
    padding: clamp(115px, 12vw, 185px) 0;

    border-bottom: 1px solid var(--line);

    background:
        linear-gradient(
            135deg,
            #0b0c11,
            #08090e 60%,
            #090909
        );
}

.careers-process-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, .85fr)
        minmax(400px, 1fr);

    gap: clamp(70px, 10vw, 160px);
}

.careers-process h2 {
    max-width: 580px;

    margin: 18px 0 0;

    font: 400 clamp(48px, 5vw, 74px) / 1.02 Georgia, serif;
    letter-spacing: -.028em;

    color: var(--ivory);
}

.careers-process-copy {
    max-width: 620px;
    padding-top: 28px;
}

.careers-process-copy p {
    margin: 0 0 23px;

    font-size: 14px;
    line-height: 1.9;

    color: #9d999b;
}

.careers-process-copy .careers-process-lead {
    margin-bottom: 30px;

    font: 400 21px / 1.65 Georgia, serif;

    color: #d0c8c0;
}


/* Closing */

.careers-closing {
    padding: clamp(110px, 11vw, 170px) 0;

    background: #08090d;
}

.careers-closing-inner {
    display: grid;
    grid-template-columns:
        minmax(380px, 1fr)
        minmax(340px, .75fr);

    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}

.careers-closing h2 {
    max-width: 700px;

    margin: 18px 0 0;

    font: 400 clamp(48px, 5vw, 74px) / 1.03 Georgia, serif;
    letter-spacing: -.025em;

    color: var(--ivory);
}

.careers-closing-inner > div:last-child {
    max-width: 480px;
}

.careers-closing-inner > div:last-child p {
    margin: 0 0 32px;

    font: 400 17px / 1.7 Georgia, serif;

    color: #aaa4a0;
}

.careers-closing .btn {
    display: inline-block;
}


/* Fiction Notice */

.careers-fiction {
    padding: 38px 0;

    border-top: 1px solid rgba(221, 197, 158, .12);

    background: var(--bg);
}

.careers-fiction p {
    max-width: 760px;
    margin: 0;

    font-size: 9px;
    line-height: 1.75;
    letter-spacing: .04em;

    color: #66666c;
}


/* Careers Responsive */

@media (max-width: 900px) {

    .careers-intro {
        padding: 90px 0;
    }

    .careers-intro-grid,
    .careers-process-grid,
    .careers-closing-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .careers-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .careers-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-value:nth-child(2) {
        border-right: 0;
    }

    .career-value:nth-child(3),
    .career-value:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .career-opening {
        grid-template-columns:
            55px
            minmax(190px, .5fr)
            1fr;

        gap: 25px;
    }

    .careers-process-copy {
        padding-top: 0;
    }
}


@media (max-width: 560px) {

    .careers-intro {
        padding: 70px 0 80px;
    }

    .careers-title h1 {
        font-size: clamp(55px, 17vw, 76px);
    }

    .careers-intro-grid {
        gap: 45px;
    }

    .careers-lead {
        font-size: 20px;
    }

    .careers-values,
    .careers-openings {
        padding: 75px 0 95px;
    }

    .careers-value-grid {
        grid-template-columns: 1fr;
    }

    .career-value {
        min-height: auto;

        padding: 42px 0;

        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .career-value:first-child {
        border-top: 0;
    }

    .career-value span {
        margin-bottom: 32px;
    }

    .career-opening {
        grid-template-columns: 45px 1fr;
        gap: 18px;

        padding: 40px 0;
    }

    .career-opening-copy {
        grid-column: 1 / 3;

        padding-top: 12px;
    }

    .careers-statement {
        padding: 100px 20px;
    }

    .careers-statement blockquote {
        font-size: 29px;
    }

    .careers-process {
        padding: 85px 0;
    }

    .careers-process h2 {
        font-size: 48px;
    }

    .careers-process-copy .careers-process-lead {
        font-size: 19px;
    }

    .careers-closing {
        padding: 85px 0 100px;
    }

    .careers-closing h2 {
        font-size: 47px;
    }

    .careers-closing-inner {
        gap: 45px;
    }
}