:root {
    --bg: #2f2019;
    --bg-soft: #3a2921;
    --bg-warm: #4a352b;
    --surface: rgba(77, 53, 43, 0.72);
    --surface-strong: rgba(88, 60, 49, 0.92);
    --ink: #f7f0e7;
    --ink-soft: #e7d8ca;
    --ink-faint: #c5b19f;
    --line: rgba(247, 240, 231, 0.12);
    --line-strong: rgba(247, 240, 231, 0.22);
    --hero: #20120d;
    --hero-soft: #3c281f;
    --accent: #ddc3ae;
    --accent-deep: #f1dfd0;
    --white: #fffaf5;
    --shadow: 0 24px 60px rgba(9, 5, 4, 0.34);
    --shadow-soft: 0 12px 30px rgba(9, 5, 4, 0.22);
    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
    --header-height: 76px;
    --max-width: 1240px;
    --radius: 1.75rem;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top, rgba(120, 84, 68, 0.18), transparent 36%),
        linear-gradient(180deg, #2b1c16 0%, #36241d 48%, #241610 100%);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    opacity: 1;
    transition: opacity 0.32s ease;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

body.is-leaving {
    opacity: 0;
}

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

a,
button {
    touch-action: manipulation;
}

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

button {
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-deep);
    outline-offset: 4px;
}

main,
section,
[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 90;
    transform: translateY(-180%);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease;
}

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

.shell {
    width: min(var(--max-width), calc(100% - 1.25rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    background: transparent;
    transition: background-color 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease, box-shadow 0.24s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: transparent;
    transition: background 0.24s ease;
}

.site-header.is-scrolled,
body[data-page]:not([data-page="home"]) .site-header {
    background: rgba(246, 239, 232, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(26, 18, 14, 0.06);
}

.site-header.is-scrolled::after,
body[data-page]:not([data-page="home"]) .site-header::after {
    background: var(--line);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
}

.brand-mark {
    position: relative;
    z-index: 2;
    font-family: var(--serif);
    font-size: clamp(1.95rem, 5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
    transition: color 0.24s ease;
}

.site-header.is-scrolled .brand-mark {
    color: var(--ink);
}

body[data-page]:not([data-page="home"]) .brand-mark,
body[data-page]:not([data-page="home"]) .site-nav a,
body[data-page]:not([data-page="home"]) .menu-toggle-copy {
    color: var(--hero);
    text-shadow: none;
}

body[data-page]:not([data-page="home"]) .menu-toggle-icon span {
    background-color: var(--hero);
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav a {
    opacity: 0.92;
    transition: opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    opacity: 1;
}

.site-header.site-header-home .site-nav a {
    color: rgba(255, 250, 245, 0.96);
    text-shadow: 0 6px 18px rgba(12, 8, 6, 0.32);
}

.nav-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.6rem;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.94);
    color: var(--hero) !important;
    opacity: 1 !important;
    box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled .nav-book {
    background: var(--hero-soft);
    color: var(--white) !important;
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 42px;
    cursor: pointer;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
}

.menu-toggle-copy {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.88);
    transition: color 0.24s ease, opacity 0.24s ease;
}

.menu-toggle-icon {
    position: relative;
    width: 1.55rem;
    height: 0.8rem;
}

.menu-toggle-icon span {
    position: absolute;
    left: 0;
    display: block;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.94);
    transform-origin: center;
    transition: width 0.28s ease, transform 0.28s ease, background-color 0.24s ease;
}

.menu-toggle-icon span:first-child {
    top: 0;
    width: 100%;
}

.menu-toggle-icon span:last-child {
    bottom: 0;
    width: 62%;
}

.site-header.is-scrolled .menu-toggle-copy {
    color: var(--ink);
}

.site-header.is-scrolled .menu-toggle-icon span {
    background-color: var(--ink);
}

body.menu-open .menu-toggle-copy {
    color: var(--ink);
}

body.menu-open .menu-toggle-icon span {
    background-color: var(--ink);
}

body.menu-open .menu-toggle-icon span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

body.menu-open .menu-toggle-icon span:last-child {
    bottom: 50%;
    width: 100%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(27, 19, 15, 0.58);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.menu-backdrop.is-visible {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 49;
    overflow-y: auto;
    padding: calc(var(--header-height) + 0.1rem) 1.35rem max(1.5rem, env(safe-area-inset-bottom));
    background:
        linear-gradient(180deg, rgba(227, 215, 202, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(248, 242, 235, 0.94), rgba(241, 232, 223, 0.98));
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--header-height) - 1.95rem);
    padding: 0;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 0.85rem;
    border-bottom: 1px solid rgba(38, 29, 24, 0.12);
}

.menu-eyebrow {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.mobile-menu-home {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 0.76rem;
    letter-spacing: 0.22rem;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-home:hover,
.mobile-menu-home:focus-visible {
    transform: translateY(-1px);
    color: var(--white);
    opacity: 0.96;
}

.menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: var(--ink-soft);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-close:hover,
.menu-close:focus-visible {
    transform: translateY(-1px);
    color: var(--ink);
}

.mobile-menu-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 50px;
    margin-top: 0.95rem;
    padding: 0 1.15rem;
    border: 1px solid rgba(38, 29, 24, 0.16);
    border-radius: 0.4rem;
    background: rgba(255, 250, 245, 0.48);
    color: var(--hero);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-book:hover,
.mobile-menu-book:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 250, 245, 0.74);
    border-color: rgba(38, 29, 24, 0.24);
}

.mobile-menu-links {
    display: grid;
    gap: 0;
    margin-top: 1.3rem;
}

.mobile-menu-links a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
    padding-left: 0.35rem;
    color: var(--accent-deep);
}

.mobile-menu-links a[aria-current="page"] {
    color: var(--accent-deep);
}

.hero-poster {
    position: relative;
    min-height: 100svh;
    overflow: clip;
    background: var(--hero);
    isolation: isolate;
}

.hero-poster-image,
.hero-poster-overlay,
.hero-poster-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-poster-image {
    object-fit: cover;
    object-position: 76% 42%;
}

.hero-poster-overlay {
    background:
        linear-gradient(180deg, rgba(19, 14, 11, 0.1), rgba(19, 14, 11, 0.48) 64%, rgba(19, 14, 11, 0.82)),
        linear-gradient(90deg, rgba(19, 14, 11, 0.62) 0%, rgba(19, 14, 11, 0.14) 56%, rgba(19, 14, 11, 0.54) 100%);
}

.hero-poster-glow {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 1.8rem);
    padding-bottom: 2rem;
    color: var(--white);
}

.hero-stage {
    position: relative;
    display: grid;
    gap: 1.15rem;
}

.hero-copy-wrap {
    position: relative;
    max-width: 24rem;
    padding: 1.1rem 0 0;
}

.hero-copy-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(5rem, 26vw, 8rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.85), rgba(255, 250, 245, 0));
}

@keyframes gentleFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes gentleDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -8px, 0) scale(1.01);
    }
}

@keyframes gentleFloatMobile {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes gentleDriftMobile {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -3px, 0) scale(1.005);
    }
}

.eyebrow,
.section-label,
.cookie-banner-title {
    margin: 0 0 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow-light {
    color: rgba(255, 250, 245, 0.74);
}

.hero-content h1,
.section-title,
.page-hero-copy h1,
.service-list-head h3,
.proof-item h3,
.legal-section h2,
.service-row h4 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-content h1 {
    max-width: 7ch;
    font-size: clamp(3.55rem, 13vw, 6.2rem);
    line-height: 0.88;
    text-shadow: 0 14px 34px rgba(12, 8, 6, 0.16);
}

.hero-summary,
.page-intro,
.stacked-notes,
.proof-item p,
.service-row p,
.footer-brand p,
.cookie-banner-text,
.cta-band-actions p,
.image-copy-text p,
.legal-section p,
.detail-list,
.studio-copy p {
    font-size: clamp(0.98rem, 2.8vw, 1.06rem);
    color: var(--ink-soft);
}

.hero-summary {
    max-width: 20rem;
    margin: 1rem 0 0;
    color: rgba(255, 250, 245, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.55rem;
}

.hero-actions-compact {
    align-items: center;
}

.hero-meta {
    display: grid;
    justify-self: start;
    gap: 0.7rem;
    max-width: 24rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 250, 245, 0.22);
}

.hero-meta-kicker {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.58);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.74);
}

.hero-points li {
    position: relative;
    padding-left: 0.9rem;
}

.hero-points li::before {
    content: "";
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.6);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    min-height: 52px;
    padding: 0 1.45rem;
    border-radius: 0.5rem;
    background: rgba(255, 250, 245, 0.94);
    color: var(--hero);
    box-shadow: 0 16px 34px rgba(10, 7, 5, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--white);
}

.button-ghost {
    border-color: rgba(38, 29, 24, 0.14);
    background: rgba(255, 250, 245, 0.45);
    color: var(--ink);
}

.button-small {
    min-height: 46px;
    padding-inline: 1.15rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    transition: transform 0.22s ease, color 0.22s ease;
}

.text-link-light {
    color: rgba(255, 250, 245, 0.92);
    text-shadow: 0 8px 24px rgba(12, 8, 6, 0.16);
}

.section {
    padding: 4rem 0;
}

.section-intro,
.info-split,
.image-copy-split,
.studio-layout,
.page-hero-shell,
.cta-band,
.footer-inner {
    display: grid;
    gap: 1.5rem;
}

.section-title,
.page-hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 4.4rem);
    line-height: 0.94;
}

.section-intro {
    max-width: 48rem;
    margin-bottom: 1rem;
}

.proof-grid {
    display: grid;
    gap: 1.2rem;
}

.proof-item {
    padding: 1.2rem 0;
    border-top: 1px solid var(--line);
}

.proof-item:last-child {
    border-bottom: 1px solid var(--line);
}

.proof-item h3 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    line-height: 1;
}

.proof-item p {
    margin: 0.5rem 0 0;
}

.section-link-row {
    margin-top: 1.25rem;
}

body[data-page="home"] .home-section-intro {
    margin-bottom: 1.6rem;
}

body[data-page="home"] .home-section-link-row {
    margin-top: 1.6rem;
}

body[data-page="home"] .home-proof-section {
    position: relative;
}

body[data-page="home"] .home-proof-grid {
    gap: 1.4rem;
}

body[data-page="home"] .home-proof-grid .proof-item {
    padding: 1.4rem 0 0;
}

body[data-page="home"] .home-proof-grid .proof-item h3 {
    margin-bottom: 0.75rem;
}

.gallery-band {
    overflow: clip;
}

.image-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(14rem, 74vw);
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0.625rem 0.35rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.image-rail::-webkit-scrollbar {
    display: none;
}

.rail-item,
.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 28px rgba(26, 18, 14, 0.08);
    cursor: pointer;
}

.rail-item {
    scroll-snap-align: start;
}

.rail-item::after,
.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 13, 10, 0), rgba(18, 13, 10, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rail-item img,
.gallery-tile img,
.page-hero-media img,
.image-copy-media img,
.studio-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rail-item:hover img,
.rail-item:focus-visible img,
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
    transform: scale(1.05);
}

.rail-item:hover::after,
.rail-item:focus-visible::after,
.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
    opacity: 1;
}

.rail-item-portrait {
    aspect-ratio: 3 / 4;
}

.rail-item-landscape {
    aspect-ratio: 4 / 3;
}

.page-main {
    padding-top: calc(var(--header-height) + 0.75rem);
}

.page-hero {
    padding: 1.2rem 0 1.4rem;
}

.page-hero-shell {
    align-items: center;
}

.page-hero-copy {
    order: 2;
    max-width: 34rem;
}

.page-hero-copy .page-intro {
    margin: 0.85rem 0 0;
}

.page-hero-media {
    order: 1;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: calc(var(--radius) + 0.1rem);
    box-shadow: var(--shadow-soft);
}

.service-columns,
.legal-grid,
.gallery-showcase {
    display: grid;
    gap: 1.2rem;
}

.service-list,
.legal-section {
    padding: 1.3rem;
    border-radius: 1.3rem;
    background: rgba(255, 251, 247, 0.82);
    border: 1px solid rgba(38, 29, 24, 0.08);
    box-shadow: none;
}

.service-list-head h3,
.legal-section h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.96;
}

.service-rows {
    margin-top: 1rem;
}

.service-row {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.service-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.service-row h4 {
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1;
}

.service-row p {
    margin: 0.45rem 0 0;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--accent);
}

.info-split,
.image-copy-split,
.studio-layout {
    align-items: start;
}

.stacked-notes {
    display: grid;
    gap: 0.85rem;
}

.stacked-notes p,
.detail-list li,
.footer-brand p,
.cta-band-actions p,
.image-copy-text p,
.studio-copy p,
.legal-section p {
    margin: 0;
}

.image-copy-media,
.studio-images figure {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.15rem);
    box-shadow: var(--shadow-soft);
}

.image-copy-media {
    aspect-ratio: 4 / 5;
}

.studio-images {
    display: grid;
    gap: 0.9rem;
}

.studio-images figure {
    aspect-ratio: 4 / 3;
}

.detail-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    padding-left: 1.25rem;
    position: relative;
}

.detail-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
}

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

.gallery-tile {
    aspect-ratio: 4 / 3;
}

.gallery-tile-portrait {
    aspect-ratio: 3 / 4;
}

.cta-band {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(235, 222, 211, 0.96));
    border: 1px solid rgba(38, 29, 24, 0.08);
    box-shadow: none;
}

.cta-band-actions {
    display: grid;
    gap: 1rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.site-footer {
    padding: 1.25rem 0 2rem;
}

.footer-inner {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: var(--accent);
}

body[data-page="home"] .home-gallery-band .home-gallery-intro {
    max-width: 34rem;
    margin-bottom: 1.85rem;
}

body[data-page="home"] .home-gallery-band .section-title {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
}

body[data-page="home"] .home-image-rail {
    align-items: start;
}

body[data-page="home"] .home-image-rail .rail-item {
    transform: translateY(0);
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-page="home"] .home-image-rail .rail-item:hover,
body[data-page="home"] .home-image-rail .rail-item:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(26, 18, 14, 0.12);
}

body[data-page="home"] .home-image-rail .rail-item:nth-child(2),
body[data-page="home"] .home-proof-grid .proof-item:nth-child(2) {
    transition-delay: 0.05s;
}

body[data-page="home"] .home-image-rail .rail-item:nth-child(3),
body[data-page="home"] .home-proof-grid .proof-item:nth-child(3) {
    transition-delay: 0.1s;
}

body[data-page="home"] .home-image-rail .rail-item:nth-child(4) {
    transition-delay: 0.15s;
}

body[data-page="home"] .home-image-rail .rail-item:nth-child(5) {
    transition-delay: 0.2s;
}

body[data-page="home"] .cookie-banner {
    left: 50%;
    right: auto;
    width: min(100% - 1rem, 48rem);
    transform: translateX(-50%);
    border: 1px solid rgba(38, 29, 24, 0.08);
    border-bottom: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

body[data-page="home"] .cookie-banner-actions {
    justify-content: flex-start;
}

body[data-page="home"] .cookie-banner-actions .button {
    flex: 0 0 auto;
}

.cookie-banner {
    position: fixed;
    inset: auto 0 0;
    z-index: 42;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: rgba(247, 239, 232, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 30px rgba(26, 18, 14, 0.08);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-text {
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-banner-actions .button {
    flex: 1 1 12rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(20, 14, 11, 0.84);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-dialog {
    position: relative;
    width: min(100%, 980px);
    max-height: 100%;
    padding: 3.2rem 0 0;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.12);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.lightbox-image-wrap {
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.lightbox-image-wrap img {
    width: 100%;
    max-height: calc(100dvh - 6rem);
    object-fit: contain;
    background: #160f0b;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 760px) {
    :root {
        --header-height: 86px;
    }

    .shell {
        width: min(var(--max-width), calc(100% - 2.5rem));
    }

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

    .hero-content {
        padding-bottom: 3rem;
    }

    .hero-stage {
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
        gap: 1.25rem;
    }

    .hero-summary {
        max-width: 30rem;
    }

    .hero-meta {
        justify-self: start;
        margin-bottom: 0;
        max-width: 18rem;
    }

    .proof-grid,
    .service-columns,
    .legal-grid,
    .gallery-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid {
        gap: 1.5rem;
    }

    body[data-page="home"] .home-proof-grid {
        gap: 1.8rem;
    }

    body[data-page="home"] .home-image-rail {
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        padding-inline: 0;
    }

    body[data-page="home"] .home-image-rail .rail-item:last-child {
        grid-column: 1 / -1;
        max-width: min(21rem, 100%);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .page-hero-shell,
    .info-split,
    .image-copy-split,
    .cta-band,
    .footer-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }

    .studio-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    }

    .page-hero-copy {
        order: 1;
    }

    .page-hero-media {
        order: 2;
    }

    .image-copy-split {
        gap: 2rem;
    }

    .gallery-showcase {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .gallery-tile-landscape {
        grid-column: span 6;
    }

    .gallery-tile-portrait {
        grid-column: span 3;
    }
}

@media (min-width: 1040px) and (max-width: 1399px) {
    .site-header.site-header-home {
        background: linear-gradient(180deg, rgba(19, 14, 11, 0.5), rgba(19, 14, 11, 0.18) 72%, transparent);
    }

    .header-inner {
        gap: 1.4rem;
    }

    .brand-mark {
        font-size: clamp(1.8rem, 3.6vw, 2.45rem);
    }

    .site-nav {
        gap: 1rem;
        font-size: 0.69rem;
        letter-spacing: 0.1rem;
    }

    .nav-book {
        min-height: 46px;
        padding-inline: 1.35rem;
    }

    .hero-content {
        justify-content: flex-end;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 2.75rem;
    }

    .hero-stage {
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
        gap: 0;
    }

    .hero-copy-wrap {
        width: min(62vw, 56rem);
        max-width: none;
        margin-inline: 0;
        padding-top: 1.1rem;
    }

    .hero-content h1 {
        max-width: none;
        width: min(60vw, 54rem);
        font-size: clamp(3.7rem, 5.4vw, 4.85rem);
        text-wrap: initial;
    }

    .hero-summary {
        max-width: 28rem;
    }

    .hero-meta {
        display: none;
    }
}

@media (min-width: 1040px) {
    .section {
        padding: 5.75rem 0;
    }

    .site-nav {
        display: flex;
    }

    .menu-toggle,
    .mobile-menu,
    .menu-backdrop {
        display: none !important;
    }

    .hero-poster-overlay {
        background:
            linear-gradient(180deg, rgba(19, 14, 11, 0.08), rgba(19, 14, 11, 0.4) 68%, rgba(19, 14, 11, 0.72)),
            linear-gradient(90deg, rgba(19, 14, 11, 0.5) 0%, rgba(19, 14, 11, 0.04) 58%, rgba(19, 14, 11, 0.42) 100%);
    }

    .hero-copy-wrap {
        max-width: 34rem;
        padding-top: 1.35rem;
    }

    .page-main {
        padding-top: calc(var(--header-height) + 1.4rem);
    }

    .page-hero {
        padding: 1.6rem 0 2.4rem;
    }

    .page-hero-shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.72fr);
        gap: 3.5rem;
        min-height: min(42rem, calc(100vh - var(--header-height) - 7rem));
    }

    .page-hero-copy {
        align-self: center;
        max-width: 36rem;
    }

    .page-hero-copy .page-intro {
        max-width: 30rem;
    }

    .page-hero-media {
        aspect-ratio: 4 / 4.8;
        min-height: 32rem;
    }

    .proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        align-items: start;
    }

    .proof-item {
        min-height: 100%;
        padding: 1.35rem 0.5rem 0;
    }

    body[data-page="home"] .home-proof-section {
        padding-top: 5rem;
    }

    body[data-page="home"] .home-section-intro {
        max-width: 60rem;
        margin-bottom: 2rem;
    }

    body[data-page="home"] .home-proof-grid {
        gap: 2.25rem;
    }

    body[data-page="home"] .home-proof-grid .proof-item {
        padding-inline: 0;
        padding-top: 1.6rem;
    }

    body[data-page="home"] .home-gallery-band {
        padding-top: 4.75rem;
    }

    body[data-page="home"] .home-gallery-band .home-gallery-intro {
        margin-bottom: 2.2rem;
    }

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

    .service-list,
    .legal-section,
    .cta-band {
        padding: 2rem;
    }

    .info-split,
    .image-copy-split,
    .studio-layout,
    .footer-inner {
        gap: 3rem;
    }

    .image-rail {
        gap: 1.25rem;
    }

    .gallery-band .image-rail {
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: visible;
        padding-inline: 0;
    }

    .gallery-band .rail-item {
        aspect-ratio: 3 / 4;
    }

    body[data-page="home"] .home-image-rail {
        gap: 1.4rem;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    body[data-page="home"] .home-image-rail .rail-item:last-child {
        grid-column: auto;
        max-width: none;
    }

    .gallery-showcase-results .gallery-tile-portrait {
        grid-column: span 4;
    }

    .gallery-showcase-studio .gallery-tile-landscape {
        grid-column: span 6;
    }

    .gallery-showcase-studio .gallery-tile-portrait {
        grid-column: span 4;
    }

    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(2),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(3),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(4),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(6),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(7),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(8),
    .gallery-showcase:not(.gallery-showcase-results):not(.gallery-showcase-studio) .gallery-tile:nth-child(9) {
        grid-column: span 3;
    }

    .gallery-showcase-studio .gallery-tile:nth-child(1),
    .gallery-showcase-studio .gallery-tile:nth-child(2) {
        grid-column: span 6;
    }

    .gallery-showcase-studio .gallery-tile:nth-child(3) {
        grid-column: 5 / span 4;
    }
}

@media (max-width: 759px) {
    body[data-page="home"] .home-gallery-band .home-gallery-intro {
        margin-bottom: 1.35rem;
    }
}

@media (min-width: 1400px) {
    .site-nav {
        gap: 1.5rem;
        font-size: 0.74rem;
        letter-spacing: 0.12rem;
    }

    .hero-stage {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1.6rem;
    }

    .hero-copy-wrap {
        max-width: 34rem;
        margin-inline: 0;
    }

    .hero-content h1 {
        max-width: 8ch;
    }

    .hero-meta {
        display: grid;
        max-width: 16rem;
    }
}

@media (min-width: 1040px) and (max-width: 1399px) {
    .hero-stage {
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
        gap: 0;
    }

    .hero-copy-wrap {
        width: min(62vw, 56rem);
        max-width: none;
        margin-inline: 0;
        padding-top: 1.1rem;
    }

    .hero-content h1 {
        width: min(60vw, 54rem);
        max-width: none;
        font-size: clamp(3.7rem, 5.4vw, 4.85rem);
        text-wrap: initial;
    }

    .hero-summary {
        max-width: 28rem;
    }

    .hero-meta {
        display: none;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    body {
        transition: none;
    }
}

/* Theme + homepage flow overrides */

.site-header.is-scrolled,
body[data-page]:not([data-page="home"]) .site-header {
    background: rgba(31, 19, 15, 0.84);
    box-shadow: 0 10px 28px rgba(7, 4, 3, 0.28);
}

.mobile-menu {
    background:
        linear-gradient(180deg, rgba(221, 195, 174, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(42, 28, 22, 0.96), rgba(33, 22, 17, 0.98));
}

.mobile-menu-top {
    border-bottom-color: var(--line);
}

.mobile-menu-book {
    border-color: rgba(247, 240, 231, 0.16);
    background: rgba(255, 250, 245, 0.08);
    color: var(--white);
}

.mobile-menu-book:hover,
.mobile-menu-book:focus-visible {
    background: rgba(255, 250, 245, 0.14);
    border-color: rgba(247, 240, 231, 0.28);
}

.button-primary {
    box-shadow: 0 16px 34px rgba(10, 7, 5, 0.24);
}

.button-ghost {
    border-color: rgba(247, 240, 231, 0.16);
    background: rgba(255, 250, 245, 0.06);
    color: var(--ink);
}

.service-list,
.legal-section {
    background: rgba(74, 53, 43, 0.64);
    border-color: rgba(247, 240, 231, 0.08);
}

.rail-item,
.gallery-tile,
.page-hero-media,
.image-copy-media,
.studio-images figure {
    background: rgba(255, 250, 245, 0.06);
    box-shadow: var(--shadow-soft);
}

.cta-band {
    background: linear-gradient(180deg, rgba(83, 59, 48, 0.92), rgba(57, 38, 31, 0.98));
    border-color: rgba(247, 240, 231, 0.08);
}

body[data-page="home"] .cookie-banner {
    border-color: rgba(247, 240, 231, 0.08);
}

.cookie-banner {
    background: rgba(38, 25, 20, 0.96);
    box-shadow: 0 -12px 30px rgba(9, 5, 4, 0.2);
}

.home-story-section {
    position: relative;
}

.home-story-layout {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.home-story-media {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: calc(var(--radius) - 0.1rem);
    box-shadow: var(--shadow);
}

.home-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-story-copy {
    display: grid;
    gap: 1rem;
}

.home-story-copy .page-intro,
.home-reviews-intro .page-intro {
    margin: 0;
}

.home-story-copy .text-link {
    margin-top: 0.4rem;
}

body[data-page="home"] .hero-copy-wrap,
body[data-page="home"] .hero-meta,
body[data-page="home"] .home-story-media,
body[data-page="home"] .home-story-copy {
    animation: gentleFloat 8s ease-in-out infinite;
    will-change: transform;
}

body[data-page="home"] .hero-meta,
body[data-page="home"] .home-story-copy {
    animation-duration: 9.5s;
    animation-delay: 0.6s;
}

body[data-page="home"] .hero-poster-image,
body[data-page="home"] .home-story-media img {
    animation: gentleDrift 14s ease-in-out infinite;
    will-change: transform;
}

.home-reviews-section,
.home-results-section {
    overflow: clip;
}

.home-reviews-intro,
.home-results-intro {
    margin-bottom: 1.6rem;
}

.home-reviews-lanes {
    display: grid;
    gap: 1.45rem;
    max-width: 74rem;
    margin-inline: auto;
}

.review-slider-viewport,
.results-carousel {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.review-slider-viewport {
    cursor: grab;
    user-select: none;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
}

.review-slider-viewport:focus-visible {
    outline: 2px solid var(--accent-deep);
    outline-offset: 6px;
}

.results-carousel {
    overflow-x: auto;
    cursor: grab;
    user-select: none;
}

.review-slider-viewport::-webkit-scrollbar,
.results-carousel::-webkit-scrollbar {
    display: none;
}

.results-carousel.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.review-slider-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.review-slider {
    display: grid;
    gap: 1.35rem;
    position: relative;
}

.review-track {
    display: flex;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 820ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.review-track.is-dragging,
.review-track.is-instant {
    transition: none;
}

.results-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.review-page {
    flex: 0 0 100%;
    display: grid;
    gap: 1.35rem;
    align-items: start;
    justify-items: center;
}

.review-card {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 1rem;
    padding: clamp(1.65rem, 3vw, 2.2rem) 0 0.75rem;
    background: transparent;
    border-top: 1px solid rgba(239, 220, 202, 0.12);
    min-height: 13rem;
    opacity: 0.96;
    width: min(100%, 24rem);
}

.review-stars,
.review-meta,
.review-quote {
    margin: 0;
    width: min(100%, 16rem);
}

.review-stars {
    font-size: 0.82rem;
    letter-spacing: 0.2rem;
    color: #f3d3af;
}

.review-quote {
    font-family: var(--serif);
    font-size: clamp(1.95rem, 5vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: rgba(248, 239, 231, 0.96);
    max-width: 13.5ch;
    text-wrap: balance;
}

.review-meta {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: rgba(214, 188, 166, 0.28);
}

.review-slider-controls {
    display: flex;
    justify-content: center;
}

.review-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.review-slider-dot {
    width: 0.48rem;
    height: 0.58rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(236, 215, 197, 0.12);
    cursor: pointer;
    transition: width 260ms ease, transform 180ms ease, background-color 180ms ease;
}

.review-slider-dot.is-active {
    width: 1.5rem;
    background: rgba(242, 230, 220, 0.85);
    transform: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.result-card {
    position: relative;
    flex: 0 0 min(15.5rem, 72vw);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 1.35rem;
    background: rgba(255, 250, 245, 0.05);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.result-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 13, 10, 0), rgba(18, 13, 10, 0.18));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.result-card:hover::after,
.result-card:focus-visible::after {
    opacity: 1;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.result-card:hover img,
.result-card:focus-visible img {
    transform: scale(1.05);
}

[data-clone="true"] {
    pointer-events: none;
}

@media (min-width: 760px) {
    .home-story-layout {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
        gap: 2rem;
    }

    .home-reviews-lanes {
        gap: 1.7rem;
    }

    .review-stars,
    .review-meta,
    .review-quote {
        width: min(100%, 17rem);
    }

    .review-quote {
        max-width: 14ch;
    }

    .result-card {
        flex-basis: 17rem;
    }
}

@media (min-width: 1040px) {
    .home-story-section {
        padding-top: 5rem;
    }

    .home-story-layout {
        grid-template-columns: minmax(23rem, 0.78fr) minmax(0, 1fr);
        gap: 3.5rem;
    }

    .home-story-copy {
        max-width: 38rem;
    }

    .home-reviews-intro {
        max-width: 42rem;
    }

    .home-results-section {
        padding-top: 4.75rem;
    }

    .result-card {
        flex-basis: 18rem;
    }
}

@media (min-width: 1180px) {
    .review-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(3rem, 6vw, 5rem);
    }

    .review-card {
        min-height: 14rem;
        width: min(100%, 25rem);
    }

    .review-stars,
    .review-meta,
    .review-quote {
        width: min(100%, 17.5rem);
    }

    .review-quote {
        max-width: 14.25ch;
    }
}

@media (max-width: 759px) {
    .hero-poster-image {
        object-position: 60% 42%;
    }

    body[data-page="home"] .hero-copy-wrap,
    body[data-page="home"] .hero-meta,
    body[data-page="home"] .home-story-media,
    body[data-page="home"] .home-story-copy {
        animation-name: gentleFloatMobile;
        animation-duration: 11s;
    }

    body[data-page="home"] .hero-poster-image,
    body[data-page="home"] .home-story-media img {
        animation-name: gentleDriftMobile;
        animation-duration: 16s;
    }

    .home-story-media {
        max-width: min(26rem, 100%);
    }

    .results-track {
        padding-right: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body[data-page="home"] .hero-copy-wrap,
    body[data-page="home"] .hero-meta,
    body[data-page="home"] .home-story-media,
    body[data-page="home"] .home-story-copy,
    body[data-page="home"] .hero-poster-image,
    body[data-page="home"] .home-story-media img {
        animation: none !important;
    }

    .results-track {
        width: auto;
    }
}

body[data-page]:not([data-page="home"]) .site-header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

body[data-page]:not([data-page="home"]) .site-header::after {
    background: transparent;
}

body[data-page]:not([data-page="home"]) .nav-book {
    background: rgba(255, 250, 245, 0.08);
    color: var(--white) !important;
    border: 1px solid rgba(255, 250, 245, 0.14);
    box-shadow: none;
}

body[data-page]:not([data-page="home"]) .site-header.is-scrolled {
    background: rgba(31, 19, 15, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(7, 4, 3, 0.28);
}

body[data-page]:not([data-page="home"]) .site-header.is-scrolled::after {
    background: var(--line);
}

body[data-page]:not([data-page="home"]) .site-header.is-scrolled .brand-mark,
body[data-page]:not([data-page="home"]) .site-header.is-scrolled .site-nav a,
body[data-page]:not([data-page="home"]) .site-header.is-scrolled .menu-toggle-copy {
    color: var(--ink);
    text-shadow: none;
}

body[data-page]:not([data-page="home"]) .site-header.is-scrolled .menu-toggle-icon span {
    background-color: var(--ink);
}

body[data-page]:not([data-page="home"]) .site-header.is-scrolled .nav-book {
    background: var(--hero-soft);
    color: var(--white) !important;
    border-color: transparent;
}

/* Bottom-of-page polish */

.cta-band {
    position: relative;
    overflow: hidden;
    gap: 1.6rem;
    padding: 1.6rem;
    border-radius: 1.9rem;
    background:
        radial-gradient(circle at top right, rgba(221, 195, 174, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(86, 61, 50, 0.96), rgba(52, 35, 28, 0.98));
    border: 1px solid rgba(247, 240, 231, 0.08);
    box-shadow: 0 22px 50px rgba(9, 5, 4, 0.24);
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 250, 245, 0.05);
    pointer-events: none;
}

.cta-band > div:first-child {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
    max-width: 100%;
}

.cta-band-actions {
    position: relative;
    z-index: 1;
    align-content: start;
    justify-items: start;
    gap: 1.15rem;
    max-width: 100%;
}

.cta-band-actions p {
    max-width: 32rem;
}

.cta-band .button-primary {
    width: auto;
    min-width: min(100%, 18rem);
    justify-self: start;
    padding-inline: 1.6rem;
    border-radius: 0.7rem;
    box-shadow: none;
}

.site-footer {
    padding: 2rem 0 2.8rem;
}

.footer-inner {
    align-items: start;
    gap: 1.5rem;
    padding: 1.7rem;
    border: 0;
    border-top: 1px solid rgba(247, 240, 231, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-brand {
    display: grid;
    gap: 0.75rem;
    max-width: 28rem;
}

.footer-brand .section-label {
    margin-bottom: 0;
    color: var(--accent-deep);
}

.footer-brand p:last-child {
    max-width: 28rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.5rem;
    align-items: center;
}

.footer-links a {
    position: relative;
    padding-bottom: 0.22rem;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.26s ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
}

.footer-links a:last-child,
.footer-book-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0 0 0.22rem;
    border-radius: 0;
    background: none;
    border: 0;
    color: var(--accent-deep);
    letter-spacing: 0.16rem;
}

.footer-links a:last-child::after,
.footer-book-link::after {
    display: block;
}

@media (min-width: 760px) {
    .cta-band {
        padding: 1.9rem;
    }

    .footer-inner {
        padding: 2rem;
    }
}

@media (min-width: 1040px) {
    .footer-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
    }
}

@media (max-width: 759px) {
    .cta-band {
        padding: 1.4rem;
        border-radius: 1.2rem;
    }

    .cta-band .section-title {
        max-width: 10.5ch;
        font-size: clamp(3rem, 12vw, 4rem);
        text-wrap: balance;
    }

    body[data-page="behind-the-brand"] .cta-band .section-title {
        max-width: 14ch;
    }

    .cta-band .button-primary {
        min-width: min(100%, 18.75rem);
    }

    .cta-band-actions {
        gap: 1rem;
    }

    .cta-band-actions p {
        max-width: none;
    }

    .button-row {
        width: 100%;
    }

    .button-row .button {
        flex: 1 1 100%;
    }

    .site-footer {
        padding-top: 1.5rem;
    }

    .footer-inner {
        padding: 1.45rem;
        border-radius: 0;
    }

    .footer-links {
        gap: 1rem 1.3rem;
    }

}
