:root {
    --site-bg: #f9f9f9;
    --site-surface: #ffffff;
    --site-surface-muted: #f2f4f4;
    --site-text: #2d3435;
    --site-text-muted: #5a6061;
    --site-accent: #745c00;
    --site-primary: #5f5e5e;
    --site-primary-dim: #535252;
    --site-border: rgba(173, 179, 180, 0.22);
    --site-border-strong: rgba(173, 179, 180, 0.42);
    --site-header-height: 6rem;
    --site-max-width: 84rem;
    --site-copy-width: 38rem;
    --site-transition: 220ms ease;
    --site-font-display: "EB Garamond", serif;
    --site-font-body: "Source Sans 3", sans-serif;
}

/* ── Utility classes (replaces Tailwind CDN) ── */

.font-body {
    font-family: "Source Sans 3", sans-serif;
}

.selection\:bg-secondary-fixed::selection,
.selection\:bg-secondary-fixed ::selection {
    background: #ffe088;
}

.selection\:text-on-secondary-fixed::selection,
.selection\:text-on-secondary-fixed ::selection {
    color: #4e3d00;
}

.mt-24 {
    margin-top: 6rem;
}

.not-italic {
    font-style: normal;
}

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

@media (min-width: 768px) {
    .md\:mt-32 {
        margin-top: 8rem;
    }
}

/* ── Base reset ── */

* {
    box-sizing: border-box;
}

html {
    background: var(--site-bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--site-bg);
    color: var(--site-text);
    font-family: var(--site-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.component-body {
    margin: 0;
    background: transparent;
}

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

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

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

figure {
    margin: 0;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
    line-height: 1;
}

.site-page {
    min-height: 100vh;
    overflow-x: clip;
}

.site-main {
    padding-top: calc(var(--site-header-height) + clamp(2.5rem, 5vw, 4.5rem));
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.home-main {
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.site-width {
    width: min(100%, var(--site-max-width));
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 4vw, 2.75rem);
}

.site-band {
    background: var(--site-surface-muted);
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.section-label {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--site-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.editorial-heading {
    max-width: 10ch;
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(3.4rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.006em;
    text-wrap: balance;
}

.editorial-body {
    max-width: var(--site-copy-width);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--site-text-muted);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--site-border);
}

.detail-card-title {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--site-font-display);
    font-size: 1.45rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--site-text);
}

.detail-copy,
.contact-detail-copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--site-text);
}

.portrait-frame {
    position: relative;
    overflow: hidden;
    background: #ebeeef;
    box-shadow: 0 28px 70px rgba(45, 52, 53, 0.08);
}

.portrait-frame::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
}

.portrait-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 700ms ease;
}

.portrait-frame:hover .portrait-image {
    transform: scale(1.02);
}

.quote-panel {
    margin-top: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(45, 52, 53, 0.08);
}

.quote-panel p {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.25;
    font-style: italic;
    color: var(--site-text);
}

.contact-stack {
    display: grid;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    margin-top: 0.1rem;
    color: var(--site-accent);
    font-size: 1.35rem;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.contact-detail-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-text);
}

.contact-link {
    transition: color var(--site-transition);
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--site-accent);
    outline: none;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.88);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(45, 52, 53, 0.06);
}

.about-hero {
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-hero__title {
    margin: 0;
    max-width: 15ch;
    font-family: var(--site-font-display);
    font-size: clamp(2.2rem, 6.1vw, 5rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.008em;
    text-wrap: balance;
}

.about-hero__body {
    margin-top: 2rem;
}

.about-hero__media {
    position: relative;
    min-height: 42rem;
}

.about-hero__feature,
.about-hero__secondary,
.about-proof__image {
    overflow: hidden;
    background: #ecefed;
}

.about-hero__feature {
    width: min(100%, 29rem);
    margin-left: auto;
    aspect-ratio: 4 / 5;
}

.about-hero__secondary {
    position: absolute;
    left: 0;
    bottom: -2.25rem;
    width: 13rem;
    border: 0.75rem solid var(--site-bg);
}

.about-hero__feature img,
.about-proof__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}

.about-hero__secondary img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 650ms ease;
}

.about-hero__feature:hover img,
.about-hero__secondary:hover img,
.about-proof__image:hover img {
    transform: scale(1.03);
}

.about-quote-band {
    padding-block: clamp(3.5rem, 6vw, 5rem);
    background: #171b1b;
    color: #f4f4ef;
}

.about-quote-band--light {
    background: #f4f4ef;
    color: var(--site-text);
}

.about-quote-band__quote {
    max-width: 38rem;
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
}

.about-quote-band__credit {
    margin: 1.25rem 0 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249, 249, 244, 0.64);
}

.about-quote-band--light .about-quote-band__credit {
    color: rgba(45, 52, 53, 0.54);
}

.about-section {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
}

.about-section__title {
    margin: 0;
    margin-bottom: 0.5rem;
    font-family: var(--site-font-display);
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.004em;
    text-wrap: balance;
}

.about-section__copy {
    display: grid;
    gap: 1.5rem;
    max-width: 42rem;
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--site-text-muted);
}

.about-section__copy p {
    margin: 0;
}

.about-proof {
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.about-proof__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.about-proof__image {
    aspect-ratio: 4 / 5;
}

.about-testimonials {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.about-testimonials__header {
    display: grid;
    gap: 0.75rem;
    max-width: 46rem;
    margin-bottom: 2.5rem;
}

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

.testimonial {
    display: grid;
    align-content: space-between;
    gap: 1.25rem;
    min-height: 16rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(173, 179, 180, 0.28);
    color: var(--site-text);
}

.testimonial p {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.32;
}

.testimonial footer {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.54);
}

.testimonial--wide {
    grid-column: span 2;
}

.about-contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.about-contact__details {
    display: grid;
    gap: 1.5rem;
    padding-top: 0.45rem;
}

.inquiry-main {
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.inquiry-hero {
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.inquiry-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
}

.inquiry-hero__copy {
    max-width: 34rem;
}

.inquiry-hero__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.008em;
    text-wrap: balance;
}

.inquiry-hero__body {
    margin-top: 1.5rem;
}

.inquiry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.inquiry-action {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3.4rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(173, 179, 180, 0.34);
    background: rgba(255, 255, 255, 0.76);
    color: var(--site-text);
    transition:
        border-color var(--site-transition),
        background-color var(--site-transition),
        transform var(--site-transition);
}

.inquiry-action:hover,
.inquiry-action:focus-visible {
    border-color: rgba(116, 92, 0, 0.42);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
    outline: none;
}

.inquiry-action__icon {
    color: var(--site-accent);
    font-size: 1.2rem;
}

.inquiry-action__eyebrow {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.5);
}

.inquiry-action__value {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
}

.inquiry-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--site-border);
}

.inquiry-note {
    display: grid;
    gap: 0.35rem;
}

.inquiry-note__label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.inquiry-note__copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--site-text-muted);
}

.inquiry-hero__media {
    position: relative;
    min-height: clamp(34rem, 68vw, 48rem);
}

.inquiry-hero__feature,
.inquiry-hero__secondary {
    position: absolute;
    overflow: hidden;
    background: #ecefed;
    box-shadow: 0 28px 80px rgba(45, 52, 53, 0.12);
}

.inquiry-hero__feature {
    top: 0;
    right: 0;
    width: 88%;
    aspect-ratio: 1.08 / 1;
}

.inquiry-hero__secondary {
    inset: auto auto 0 2%;
    width: min(19rem, 38%);
    aspect-ratio: 4 / 5;
    border: 0.8rem solid rgba(249, 249, 249, 0.92);
}

.inquiry-hero__feature img,
.inquiry-hero__secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-hero__feature img {
    object-position: center 30%;
}

.inquiry-hero__secondary img {
    object-position: center 20%;
}

.inquiry-process {
    padding-block: clamp(4rem, 8vw, 6.5rem);
}

.inquiry-process__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.inquiry-process__intro {
    max-width: 28rem;
}

.inquiry-process__list {
    display: grid;
    gap: 1.5rem;
}

.inquiry-process__item {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--site-border);
}

.inquiry-process__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.inquiry-process__number {
    font-family: var(--site-font-display);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.006em;
    color: rgba(45, 52, 53, 0.34);
}

.inquiry-process__content h2 {
    margin: 0 0 0.55rem;
    font-family: var(--site-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.004em;
}

.inquiry-process__content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--site-text-muted);
}

.book-main {
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.book-hero {
    position: relative;
    min-height: 100svh;
    background: #0f1313;
    color: #f4f4ef;
}

.book-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.book-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 19, 19, 0.82) 0%,
            rgba(15, 19, 19, 0.35) 45%,
            rgba(15, 19, 19, 0.35) 55%,
            rgba(15, 19, 19, 0.82) 100%);
}

.book-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    align-items: end;
    min-height: 100svh;
    padding-top: calc(var(--site-header-height) + clamp(2rem, 5vw, 4rem));
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    gap: clamp(3rem, 10vw, 10rem);
}

.book-hero>.site-width {
    width: 100%;
    max-width: none;
    padding-inline: clamp(1rem, 8vw, 2rem);
}

.book-hero__copy {
    max-width: 36rem;
}

.book-hero__order {
    display: grid;
    gap: 0.9rem;
    width: min(24rem, 100%);
    justify-self: end;
    padding: 1.3rem 1.35rem;
    background: rgba(15, 19, 19, 0.48);
    border: 1px solid rgba(244, 244, 239, 0.16);
    backdrop-filter: blur(10px);
}

.book-hero__order-note {
    max-width: 26rem;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(244, 244, 239, 0.82);
}

.book-hero__label {
    color: rgba(255, 224, 136, 0.9);
}

.book-hero__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(3rem, 11vw, 6.5rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.008em;
}

.book-hero__subtitle {
    margin: 1rem 0 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: 0;
    color: rgba(244, 244, 239, 0.92);
}

.book-hero__subtitle em {
    font-style: italic;
}

.book-hero__note {
    max-width: 16rem;
    margin: 1.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(244, 244, 239, 0.8);
}

.book-summary,
.book-showcase,
.book-gallery {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.book-summary__grid,
.book-showcase__grid,
.book-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.book-showcase__cover,
.book-cta__image,
.book-frame {
    overflow: hidden;
    background: #ebeeef;
}

.book-showcase__cover {
    max-width: 28rem;
}

.book-showcase__cover img,
.book-cta__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 650ms ease;
}

.book-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}

.book-frame:hover img {
    transform: scale(1.03);
}

.book-showcase__details {
    display: grid;
    gap: 1.75rem;
}

.book-showcase__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--site-border);
}

.book-gallery__header {
    display: grid;
    gap: 0.75rem;
    max-width: 44rem;
    margin-bottom: 2rem;
}

.book-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 0.9rem;
}

.book-frame {
    grid-column: span 4;
    aspect-ratio: auto;
}

.book-frame--large {
    grid-column: span 8;
    aspect-ratio: auto;
}

.book-frame--wide {
    grid-column: span 8;
    aspect-ratio: auto;
}

.book-frame--tall {
    grid-column: span 4;
    aspect-ratio: auto;
}

.book-gallery .book-frame,
.book-gallery .book-frame--large,
.book-gallery .book-frame--wide,
.book-gallery .book-frame--tall {
    background: transparent;
}

.book-gallery .book-frame img,
.book-gallery .book-frame--large img,
.book-gallery .book-frame--wide img,
.book-gallery .book-frame--tall img {
    height: auto;
    object-fit: contain;
    transform: none;
}

.book-quote {
    padding-block: clamp(3.5rem, 6vw, 5rem);
    background: #171b1b;
    color: #f4f4ef;
}

.book-cta {
    align-items: center;
}

.book-cta__copy {
    display: grid;
    gap: 1.25rem;
}

.book-cta__actions {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.book-cta__button {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.3rem;
    background: var(--site-primary);
    color: #faf7f6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background-color var(--site-transition), transform var(--site-transition);
}

.book-cta__button:hover,
.book-cta__button:focus-visible {
    background: var(--site-primary-dim);
    outline: none;
}

.book-cta__fallback {
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.72);
    transition: color var(--site-transition);
}

.book-cta__fallback:hover,
.book-cta__fallback:focus-visible {
    color: var(--site-accent);
    outline: none;
}

.book-cta__fallback--light {
    color: rgba(244, 244, 239, 0.78);
}

.book-cta__fallback--light:hover,
.book-cta__fallback--light:focus-visible {
    color: rgba(255, 224, 136, 0.92);
}

.book-cta__image {
    max-width: 28rem;
    justify-self: end;
}

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

.field-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #757c7d;
}

.field-control {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--site-border-strong);
    padding: 0 0 0.8rem;
    background: transparent;
    transition: border-color var(--site-transition);
}

.field-control:focus {
    outline: none;
    border-color: var(--site-primary);
}

.field-control::placeholder {
    color: rgba(90, 96, 97, 0.45);
}

textarea.field-control {
    min-height: 7rem;
    resize: vertical;
}

.site-button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 1.2rem 1.5rem;
    background: var(--site-primary);
    color: #faf7f6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: background-color var(--site-transition), transform var(--site-transition);
}

.site-button:hover,
.site-button:focus-visible {
    background: var(--site-primary-dim);
    outline: none;
}

.site-button:active {
    transform: translateY(1px);
}

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(249, 249, 249, 0.56);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(173, 179, 180, 0.18);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: var(--site-header-height);
}

.site-brand {
    font-family: var(--site-font-display);
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0;
    color: var(--site-text);
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__link {
    padding-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.6);
    border-bottom: 1px solid transparent;
    transition: color var(--site-transition), border-color var(--site-transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--site-accent);
    border-color: rgba(116, 92, 0, 0.35);
    outline: none;
}

.site-nav__link--active {
    color: var(--site-text);
    border-color: rgba(116, 92, 0, 0.45);
}

.site-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(173, 179, 180, 0.28);
    background: rgba(255, 255, 255, 0.7);
    color: var(--site-text);
}

.site-nav__mobile {
    padding-bottom: 1.5rem;
}

.site-nav__mobile[hidden] {
    display: none;
}

.site-nav__mobile.is-open {
    display: grid;
    gap: 0.75rem;
}

.site-nav__mobile .site-nav__link {
    display: inline-block;
    padding: 0.7rem 0;
}

.site-footer {
    border-top: 1px solid rgba(173, 179, 180, 0.18);
    background: rgba(255, 255, 255, 0.68);
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 2.75rem;
}

.site-footer__brand {
    margin: 0 0 0.55rem;
    font-family: var(--site-font-display);
    font-size: 1.25rem;
    letter-spacing: 0;
    color: var(--site-text);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.55);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.5rem;
}

.site-footer__link {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.55);
    transition: color var(--site-transition);
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: var(--site-accent);
    outline: none;
}

.site-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

.site-footer__socials {
    display: flex;
    gap: 1rem;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(45, 52, 53, 0.45);
    transition: color var(--site-transition);
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
    color: var(--site-accent);
    outline: none;
}

.text-balance {
    text-wrap: balance;
}

.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;
}

.home-hero {
    position: relative;
    min-height: 100svh;
    color: #f9f9f4;
    background: #111516;
    --hero-focus-x: 50%;
    --hero-focus-y: 50%;
    --hero-render-width: 100%;
    --hero-render-height: 100%;
}

.home-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--hero-render-width);
    height: var(--hero-render-height);
    object-fit: cover;
    object-position: var(--hero-focus-x) var(--hero-focus-y);
    transition:
        object-position 320ms ease,
        width 320ms ease,
        height 320ms ease,
        transform 320ms ease;
}

.home-hero[data-hero-fit-mode="cover"] .home-hero__image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
}

.home-hero[data-hero-fit-mode="matted"] .home-hero__image {
    top: 50%;
    left: 50%;
    width: var(--hero-render-width);
    height: var(--hero-render-height);
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: var(--hero-focus-x) var(--hero-focus-y);
}

.home-hero__veil {
    position: absolute;
    inset: 0;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    gap: clamp(2rem, 5vw, 4rem);
    min-height: 100svh;
    padding:
        calc(var(--site-header-height) + clamp(2rem, 5vw, 4rem)) clamp(1.5rem, 4vw, 2.75rem) clamp(2rem, 5vw, 3.5rem);
    align-items: end;
}

.home-hero__copy {
    max-width: 42rem;
}

.home-hero__label {
    color: rgba(255, 224, 136, 0.92);
}

.home-hero__title {
    margin: 0;
    max-width: 9ch;
    font-family: var(--site-font-display);
    font-size: clamp(4.5rem, 11vw, 8.75rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.008em;
    text-wrap: balance;
}

.home-hero__note {
    max-width: 28rem;
    margin: 1.25rem 0 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(249, 249, 244, 0.8);
}

.home-hero__meta {
    display: grid;
    gap: 1.5rem;
    justify-self: end;
    width: min(100%, 24rem);
}

.home-hero__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-hero__thumb {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.home-hero__thumb.is-primary {
    transform: translateY(-1.25rem);
}

.home-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--tile-focus-x, 50%) var(--tile-focus-y, 50%);
}

.gallery-rail-wrap {
    position: sticky;
    top: var(--site-header-height);
    z-index: 20;
    margin-top: -1px;
    border-bottom: 1px solid rgba(173, 179, 180, 0.2);
    background: rgba(249, 249, 249, 0.76);
    backdrop-filter: blur(18px);
}

.gallery-rail {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding-block: 1rem;
}

.gallery-rail__eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.45);
}

.gallery-rail__intro {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--site-text);
}

.gallery-rail__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}

.gallery-rail__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(173, 179, 180, 0.35);
    border-radius: 0.35rem;
    padding: 0.7rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(45, 52, 53, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition:
        color var(--site-transition),
        border-color var(--site-transition),
        background-color var(--site-transition),
        box-shadow var(--site-transition),
        transform var(--site-transition);
}

.gallery-rail__button small {
    display: inline-block;
    min-width: 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(45, 52, 53, 0.46);
}

.gallery-rail__button:hover,
.gallery-rail__button:focus-visible {
    color: var(--site-text);
    border-color: rgba(116, 92, 0, 0.36);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: none;
}

.gallery-rail__button.is-active {
    color: var(--site-text);
    border-color: rgba(116, 92, 0, 0.5);
    background: rgba(255, 248, 239, 0.96);
    box-shadow: 0 1px 4px rgba(116, 92, 0, 0.1);
}

.gallery-panel {
    padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
}

.gallery-panel__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-panel__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(2.6rem, 5vw, 4.75rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.006em;
}

.gallery-panel__count {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 52, 53, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 0.65rem;
    align-items: start;
    gap: 0.9rem;
}

.home-main::before {
    content: "";
    display: block;
    height: var(--site-header-height);
    background: rgba(45, 52, 53, 0.06);
}

.gallery-tile {
    position: relative;
    grid-column: span 3;
    overflow: hidden;
    background: #ecefed;
    aspect-ratio: 4 / 5;
}

.gallery-tile--portrait {
    grid-column: span 3;
    aspect-ratio: 4 / 5;
}

.gallery-tile--square {
    grid-column: span 3;
    aspect-ratio: 1 / 1;
}

.gallery-tile--landscape {
    grid-column: span 6;
    aspect-ratio: 16 / 10.5;
}

.gallery-tile--feature-portrait {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
}

.gallery-tile--feature-landscape {
    grid-column: span 8;
    aspect-ratio: 16 / 9;
}

.gallery-tile--stack {
    grid-column: span 3;
    aspect-ratio: 3 / 4;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--tile-focus-x, 50%) var(--tile-focus-y, 50%);
    transform: scale(1.005);
    transition: transform 650ms ease, opacity 650ms ease;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

.gallery-tile[data-crop-mode="safe-cover"] img {
    transform: none;
}

.gallery-tile[data-crop-mode="safe-cover"]:hover img {
    transform: scale(1.015);
}

.gallery-tile[data-crop-mode="contain"] {
    background: #111516;
}

.gallery-tile[data-crop-mode="contain"] img {
    object-fit: contain;
    transform: none;
}

.gallery-tile[data-crop-mode="contain"]:hover img {
    transform: scale(1.01);
}

@media (min-width: 1024px) {
    .quote-panel {
        position: absolute;
        bottom: -2rem;
        left: -2rem;
        max-width: 21rem;
        margin-top: 0;
    }
}

/* Temporary artwork-preservation overrides */
.home-hero__veil {
    background: transparent;
}

.portrait-image,
.about-hero__feature img,
.about-hero__secondary img,
.about-proof__image img,
.book-showcase__cover img,
.book-cta__image img,
.book-frame img,
.home-hero__image,
.home-hero__thumb img,
.gallery-tile img {
    transition: none;
}

.portrait-frame:hover .portrait-image,
.about-hero__feature:hover img,
.about-hero__secondary:hover img,
.about-proof__image:hover img,
.book-showcase__cover:hover img,
.book-cta__image:hover img,
.book-frame:hover img,
.gallery-tile:hover img,
.gallery-tile[data-crop-mode="safe-cover"]:hover img,
.gallery-tile[data-crop-mode="contain"]:hover img {
    transform: none;
}

@media (max-width: 1023px) {

    .detail-grid,
    .field-grid,
    .inquiry-notes {
        grid-template-columns: 1fr;
    }

    .book-summary__grid,
    .book-showcase__grid,
    .book-cta,
    .inquiry-hero__grid,
    .inquiry-process__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__grid,
    .about-story,
    .about-proof__grid,
    .about-contact {
        grid-template-columns: 1fr;
    }

    .about-hero__media {
        min-height: auto;
        padding-bottom: 5rem;
    }

    .inquiry-hero__media {
        min-height: 35rem;
    }

    .inquiry-hero__feature {
        top: 0;
        right: 0;
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .inquiry-hero__secondary {
        inset: auto auto 0 0;
        width: min(15rem, 42%);
    }

    .about-hero__feature {
        margin-left: 0;
    }

    .home-hero__content,
    .gallery-rail {
        grid-template-columns: 1fr;
    }

    .home-hero__meta {
        justify-self: start;
    }

    .book-hero__content {
        grid-template-columns: 1fr;
    }

    .book-hero__order {
        justify-self: start;
    }

    .gallery-rail__buttons {
        justify-content: flex-start;
    }

    .gallery-tile--portrait,
    .gallery-tile--square,
    .gallery-tile--stack {
        grid-column: span 4;
    }

    .gallery-tile--landscape,
    .gallery-tile--feature-portrait {
        grid-column: span 8;
    }

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

    .about-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial--wide {
        grid-column: span 1;
    }

    .book-frame {
        grid-column: span 6;
    }

    .book-frame--large,
    .book-frame--wide {
        grid-column: span 12;
    }

    .book-frame--tall {
        grid-column: span 6;
    }

    .book-cta__image {
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .site-nav__links {
        display: none;
    }

    .site-nav__toggle {
        display: inline-flex;
    }

    .site-footer__inner,
    .site-footer__links {
        justify-content: flex-start;
    }

    .site-footer__right {
        align-items: flex-start;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .home-hero {
        min-height: 75svh;
    }

    .home-hero__content {
        min-height: 75svh;
        padding-top: calc(var(--site-header-height) + 2rem);
        padding-bottom: 2rem;
    }

    .home-hero__thumbs {
        display: none;
    }

    .gallery-rail-wrap {
        position: relative;
        top: auto;
        z-index: 1;
        background: rgba(249, 249, 249, 0.94);
        backdrop-filter: none;
    }

    .book-hero__copy {
        display: none;
    }

    .book-hero__order {
        position: absolute;
        bottom: 2.5rem;
        left: 0;
        right: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        width: auto;
    }

    .book-hero__order .section-label {
        display: none;
    }

    .book-hero__order-note {
        display: none;
    }

    .book-cta__fallback {
        display: none;
    }

    .book-hero .site-width {
        position: absolute;
        inset: 0;
    }

    .book-hero__content {
        height: 100%;
    }

    .inquiry-actions {
        flex-direction: column;
    }

    .inquiry-action {
        width: 100%;
    }

    .inquiry-hero__media {
        min-height: 24rem;
    }

    .inquiry-hero__feature {
        width: 100%;
        aspect-ratio: 1.06 / 1;
    }

    .inquiry-hero__feature img {
        object-position: center 26%;
    }

    .inquiry-hero__secondary {
        width: min(10rem, 42%);
        border-width: 0.6rem;
    }

    .gallery-rail {
        gap: 1rem;
        padding-block: 0.9rem;
    }

    .gallery-rail__buttons {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        margin-inline: calc(clamp(1.5rem, 4vw, 2.75rem) * -1);
        padding-inline: clamp(1.5rem, 4vw, 2.75rem);
        padding-bottom: 0.35rem;
        scrollbar-width: thin;
    }

    .gallery-rail__button {
        flex: 0 0 auto;
        width: auto;
        min-width: max-content;
        justify-content: space-between;
        padding: 0.8rem 0.95rem;
        white-space: nowrap;
    }

    .gallery-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 0.55rem;
        gap: 0.65rem;
    }

    .gallery-tile--portrait,
    .gallery-tile--square,
    .gallery-tile--stack {
        grid-column: span 1;
    }

    .gallery-tile--landscape,
    .gallery-tile--feature-landscape,
    .gallery-tile--feature-portrait {
        grid-column: span 2;
    }

    .gallery-tile--landscape {
        aspect-ratio: 16 / 10.8;
    }

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

    .gallery-tile--feature-landscape {
        aspect-ratio: 16 / 10;
    }

    .about-hero__title {
        max-width: 9.5ch;
    }

    .about-hero__secondary {
        width: 9rem;
        bottom: 0;
    }

    .book-hero__content {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .book-hero__order {
        width: 100%;
        max-width: 28rem;
    }

    .book-showcase__meta {
        grid-template-columns: 1fr;
    }

    .book-gallery__grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .book-frame,
    .book-frame--large,
    .book-frame--wide,
    .book-frame--tall {
        grid-column: span 1;
        min-height: auto;
        aspect-ratio: auto;
    }

    .testimonial {
        min-height: auto;
        padding-left: 0;
    }

    .testimonial p {
        font-size: 1.28rem;
    }

    .gallery-tile--portrait,
    .gallery-tile--square,
    .gallery-tile--stack {
        grid-column: span 1;
    }

    .gallery-tile--landscape,
    .gallery-tile--feature-landscape,
    .gallery-tile--feature-portrait {
        grid-column: span 2;
    }

    .gallery-tile--portrait,
    .gallery-tile--feature-portrait,
    .gallery-tile--stack {
        aspect-ratio: 4 / 5;
    }

    .gallery-tile--square {
        aspect-ratio: 1 / 1;
    }

    .gallery-tile--landscape,
    .gallery-tile--feature-landscape {
        aspect-ratio: 16 / 10.5;
    }
}

@media print {
    :root {
        --site-header-height: 0rem;
    }

    html,
    body {
        background: #ffffff;
    }

    .site-nav,
    .gallery-rail-wrap {
        position: static;
        top: auto;
        background: #ffffff;
        backdrop-filter: none;
    }

    .site-nav {
        border-bottom: 1px solid rgba(173, 179, 180, 0.28);
    }

    .site-nav__toggle,
    .site-nav__mobile {
        display: none !important;
    }

    .site-main,
    .home-main {
        padding-top: 0;
    }

    .site-footer {
        background: #ffffff;
    }

    .home-hero,
    .book-hero {
        min-height: auto;
    }

    .home-hero__content,
    .book-hero__content {
        min-height: auto;
    }
}