:root {
    --background: #101010;
    --surface: #191919;
    --text: #f7f3ed;
    --muted: #c9c0b6;
    --accent: #ff7a32;
    --border: #363636;
    --divider: #2c2c2c;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    width: min(calc(100% - 3rem), var(--max-width));
    min-height: 94px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;

    border-bottom: 1px solid var(--divider);
    background: var(--background);
}

.site-logo {
    display: inline-flex;
    flex-direction: column;

    color: var(--text);
    line-height: 1;
    text-decoration: none;
}

.site-logo span {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.site-logo small {
    margin-top: 0.45rem;

    color: var(--accent);

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
    flex-wrap: wrap;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;

    padding: 0.45rem 0;

    color: var(--muted);
    text-decoration: none;

    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;
    content: "";

    background: var(--accent);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.current {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.current::after {
    transform: scaleX(1);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 76vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    padding: 6rem 1.5rem 3rem;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/hero.jpg") center / cover no-repeat;
}

.hero::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.12) 45%,
            rgba(0, 0, 0, 0.12)
        );

    z-index: 1;

    pointer-events: none;
}

.hero-figure {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    pointer-events: none;

    animation: heroFigurePop 1.1s ease-out 0.35s both;
}

.hero-flash {
    position: absolute;
    inset: 0;
    z-index: 3;

    background: #ffffff;

    opacity: 0;

    pointer-events: none;

    mix-blend-mode: screen;

    animation: heroFlash 1.1s ease-out 0.35s 1 both;
}

.hero-content,
.section,
footer {
    width: min(100%, var(--max-width));
    margin-inline: auto;
}

.hero-content {
    position: relative;
    z-index: 4;

    max-width: 760px;
}

.eyebrow {
    margin: 0 0 0.8rem;

    color: var(--accent);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.05;
}

h1 {
    margin-bottom: 1rem;

    font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
    max-width: 850px;
    margin-bottom: 1.2rem;

    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.6rem;
}

.hero-text {
    max-width: 650px;

    color: var(--muted);

    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;

    margin-top: 2rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-block;

    padding: 0.9rem 1.25rem;

    border: 1px solid var(--text);

    text-decoration: none;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

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

.button.primary {
    border-color: var(--accent);
    background: var(--accent);

    color: #111;
}

.button.primary:hover {
    border-color: #ff9154;
    background: #ff9154;
}

.button.secondary {
    background: rgba(0, 0, 0, 0.28);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   LAYOUT
   ========================================================= */

.section {
    padding: 6rem 1.5rem;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-intro {
    max-width: 720px;
    margin-bottom: 0;

    color: var(--muted);

    font-size: 1.1rem;
}


/* =========================================================
   GALLERIES
   ========================================================= */

.color-gallery,
.film-gallery {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;

    width: 100%;

    margin-bottom: 4rem;
}

.gallery-image {
    position: relative;

    width: 100%;
    height: 320px;

    margin: 0;

    overflow: hidden;

    background: var(--surface);

    cursor: pointer;
}

.gallery-image-large {
    grid-column: span 2;
    grid-row: span 2;

    height: 652px;
}

.gallery-image-wide {
    grid-column: span 2;
}

.film-image-tall {
    grid-row: span 2;

    height: 652px;
}

.gallery-image::after {
    position: absolute;
    inset: 0;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0);

    pointer-events: none;

    transition: border-color 0.25s ease;
}

.gallery-image:hover::after,
.gallery-image:focus-visible::after {
    border-color: rgba(255, 255, 255, 0.42);
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.gallery-image:hover img,
.gallery-image:focus-visible img {
    transform: scale(1.03);

    filter: brightness(1.04);
}

.gallery-image:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}


/* =========================================================
   EXPERIENCE DETAILS
   ========================================================= */

.experience-details {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.8fr);

    gap: 4rem;

    align-items: start;
}

.experience-details h3 {
    margin-bottom: 1.2rem;

    font-size: clamp(2rem, 4vw, 3.6rem);
}

.experience-details p {
    color: var(--muted);
}

.experience-facts {
    padding: 2rem;

    border: 1px solid var(--border);

    background: var(--surface);
}

.experience-facts p:first-child {
    margin-top: 0;
}

.experience-facts p:last-of-type {
    margin-bottom: 0;
}

.experience-facts strong {
    color: var(--text);
}

.experience-facts .button {
    margin-top: 1.5rem;
}

.film-section,
.about {
    border-top: 1px solid var(--divider);
}

.about-copy {
    max-width: 760px;
}

.about-copy p {
    color: var(--muted);

    font-size: 1.1rem;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.booking-section {
    padding: 6rem 1.5rem;

    border-top: 1px solid var(--divider);

    background: var(--surface);
}

.booking-content {
    width: min(100%, var(--max-width));
    max-width: 900px;

    margin-inline: auto;
}

.booking-content p {
    max-width: 650px;

    color: var(--muted);

    font-size: 1.1rem;
}

.booking-content .button {
    margin-top: 1rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 2rem 1.5rem 4rem;

    border-top: 1px solid var(--divider);

    color: var(--muted);
}

footer p {
    margin: 0.5rem 0;
}

footer a:hover {
    color: var(--text);
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal-item {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-item.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 3rem 5rem;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.lightbox.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(6px);
}

.lightbox-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: min(92vw, 1500px);
    max-height: 88vh;
}

.lightbox-image {
    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 80vh;

    object-fit: contain;

    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
    max-width: 720px;

    margin: 1rem auto 0;

    color: var(--muted);

    text-align: center;
}

.lightbox-close,
.lightbox-arrow {
    position: fixed;
    z-index: 3;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;
    opacity: 0.85;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    opacity: 1;
}

.lightbox-close {
    top: 1rem;
    right: 1.25rem;

    width: 54px;
    height: 54px;

    font-size: 3rem;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.08);
}

.lightbox-arrow {
    top: 50%;

    width: 68px;
    height: 90px;

    font-size: 4rem;
    line-height: 1;

    transform: translateY(-50%);
}

.lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-previous {
    left: 0.75rem;
}

.lightbox-next {
    right: 0.75rem;
}


/* =========================================================
   HERO ANIMATION
   ========================================================= */

@keyframes heroFigurePop {
    0% {
        transform: scale(1);
    }

    28% {
        transform: scale(1.028);
    }

    38% {
        transform: translateX(-1px) scale(1.022);
    }

    48% {
        transform: translateX(1px) scale(1.02);
    }

    58% {
        transform: translateX(-1px) scale(1.015);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes heroFlash {
    0%,
    26%,
    100% {
        opacity: 0;
    }

    30% {
        opacity: 0.58;
    }

    38% {
        opacity: 0;
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        align-items: flex-start;

        padding: 1.35rem 0;
    }

    .site-nav {
        max-width: 620px;

        row-gap: 0.35rem;
    }

    .experience-details {
        gap: 2.5rem;
    }

    .lightbox {
        padding: 3rem 4rem;
    }
}


@media (max-width: 720px) {

    .site-header {
        display: block;

        width: calc(100% - 2rem);

        padding: 1.35rem 0;
    }

    .site-nav {
        justify-content: flex-start;

        margin-top: 1.25rem;

        gap: 0.7rem 1rem;
    }

    .hero {
        min-height: 72vh;

        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .color-gallery,
    .film-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-bottom: 3rem;
    }

    .gallery-image {
        height: 220px;
    }

    .gallery-image-large,
    .gallery-image-wide {
        grid-column: span 2;
    }

    .gallery-image-large {
        grid-row: auto;

        height: 440px;
    }

    .film-image-tall {
        grid-row: auto;

        height: 440px;
    }

    .experience-details {
        grid-template-columns: 1fr;

        gap: 2rem;
    }

    .experience-facts {
        padding: 1.5rem;
    }

    .booking-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .lightbox {
        padding: 4rem 1rem 5rem;
    }

    .lightbox-image {
        max-height: 74vh;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 0.6rem;

        width: 72px;
        height: 60px;

        transform: none;
    }

    .lightbox-arrow:hover {
        transform: scale(1.08);
    }

    .lightbox-previous {
        left: calc(50% - 82px);
    }

    .lightbox-next {
        right: calc(50% - 82px);
    }
}


@media (max-width: 480px) {

    .hero {
        min-height: 68vh;

        padding-inline: 1rem;
    }

    .section,
    .booking-section {
        padding-inline: 1rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;

        text-align: center;
    }

    .color-gallery,
    .film-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-image,
    .gallery-image-large,
    .gallery-image-wide,
    .film-image-tall {
        grid-column: span 1;
        grid-row: auto;

        height: 340px;
    }

    .gallery-image-large,
    .film-image-tall {
        height: 480px;
    }

    .lightbox-caption {
        font-size: 0.92rem;
    }
}



/* =========================================================
   PHOTOGRAPHY ABOUT PAGE
   ========================================================= */

.about-page-hero {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;

    padding: clamp(2.5rem, 5vw, 5rem) 0 0;
}

.about-hero-image {
    position: relative;

    width: 100%;
    min-height: 640px;

    overflow: hidden;

    background: #050505;
}

.about-hero-image::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.38) 34%,
            rgba(0, 0, 0, 0.08) 62%,
            rgba(0, 0, 0, 0.02) 100%
        );

    pointer-events: none;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 640px;

    object-fit: cover;
    object-position: center 46%;

    filter:
        contrast(1.03)
        brightness(0.92);
}

.about-hero-overlay {
    position: absolute;

    right: clamp(1.5rem, 4vw, 4rem);
    bottom: clamp(1.75rem, 4vw, 4rem);

    left: auto;

    width: min(46%, 560px);

    z-index: 2;

    text-align: right;
}

.about-hero-overlay .eyebrow {
    text-align: right;
}

.about-page-title {
    margin: 0;

    color: var(--text);

    font-size: clamp(4.5rem, 10vw, 9.5rem);
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;

    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.about-page-title span {
    display: block;

    color: var(--accent);
}


/* ABOUT HERO INTRO */

.about-page-intro {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: start;

    padding: clamp(4rem, 7vw, 7rem) 0;

    border-bottom: 1px solid var(--divider);
}

.about-page-intro .lead {
    max-width: 800px;
    margin: 0;

    color: var(--text);

    font-size: clamp(1.8rem, 3.4vw, 3.6rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.about-page-intro > p:not(.lead) {
    max-width: 510px;
    margin: 0;

    color: var(--muted);

    font-size: 1.05rem;
    line-height: 1.85;
}


/* ABOUT IMAGE STRIP */

.about-image-strip {
    width: min(calc(100% - 3rem), var(--max-width));
    margin: clamp(4rem, 7vw, 7rem) auto 0;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 12px;
}

.about-image-strip figure {
    position: relative;

    min-height: 340px;
    margin: 0;

    overflow: hidden;

    background: var(--surface);
}

.about-image-strip figure:nth-child(2) {
    margin-top: 5rem;
}

.about-image-strip img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-strip figure:first-child {
    min-height: 520px;
}

.about-image-strip figure:last-child {
    min-height: 430px;
}


/* ABOUT STORY */

.about-story {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(3rem, 8vw, 9rem);

    padding: clamp(6rem, 10vw, 11rem) 0;

    border-bottom: 1px solid var(--divider);
}

.about-story-label {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.about-story-copy {
    max-width: 820px;
}

.about-story-copy .statement {
    margin: 0 0 3rem;

    color: var(--text);

    font-size: clamp(2rem, 4.2vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.about-story-copy p:not(.statement) {
    max-width: 690px;
    margin: 0 0 1.65rem;

    color: var(--muted);

    font-size: 1.08rem;
    line-height: 1.85;
}

.about-story-copy strong {
    color: var(--text);
}


/* ABOUT VALUES / APPROACH */

.about-approach {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;

    padding: clamp(6rem, 10vw, 10rem) 0;
}

.about-approach-heading {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 3rem;

    margin-bottom: clamp(4rem, 7vw, 7rem);
}

.about-approach-heading h2 {
    margin: 0;

    max-width: 900px;

    font-size: clamp(3rem, 6vw, 6.7rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.approach-card {
    min-height: 320px;
    padding: 2rem;

    border-right: 1px solid var(--divider);
}

.approach-card:last-child {
    border-right: 0;
}

.approach-number {
    display: block;
    margin-bottom: 5rem;

    color: var(--accent);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.approach-card h3 {
    margin-bottom: 1rem;

    font-size: 1.8rem;
}

.approach-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.75;
}


/* ABOUT CTA */

.about-cta {
    border-top: 1px solid var(--divider);
    background: var(--surface);
}

.about-cta-inner {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
    gap: 4rem;
    align-items: end;

    padding: clamp(6rem, 10vw, 10rem) 0;
}

.about-cta h2 {
    margin: 0;

    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.about-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}


/* ABOUT PAGE RESPONSIVE */

@media (max-width: 900px) {

    .about-page-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-image,
    .about-hero-image img {
        min-height: 560px;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-label {
        position: static;
    }

    .about-approach-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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


@media (max-width: 720px) {

    .about-page-hero,
    .about-page-intro,
    .about-image-strip,
    .about-story,
    .about-approach,
    .about-cta-inner {
        width: calc(100% - 2rem);
    }

    .about-page-hero {
        padding-top: 2rem;
    }

    .about-hero-image,
    .about-hero-image img {
        min-height: 500px;
    }

    .about-page-title {
        font-size: clamp(4rem, 18vw, 7rem);
    }

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

    .about-image-strip figure,
    .about-image-strip figure:first-child,
    .about-image-strip figure:last-child {
        min-height: 360px;
    }

    .about-image-strip figure:nth-child(2) {
        margin-top: 3rem;
    }

    .about-image-strip figure:last-child {
        grid-column: 1 / -1;
        min-height: 430px;
    }

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

    .approach-card {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--divider);
    }

    .approach-card:last-child {
        border-bottom: 0;
    }

    .approach-number {
        margin-bottom: 3rem;
    }
}


@media (max-width: 480px) {

    .about-hero-image,
    .about-hero-image img {
        min-height: 440px;
    }

    .about-hero-image img {
        object-position: 47% center;
    }

    .about-page-intro .lead {
        font-size: clamp(1.75rem, 9vw, 2.7rem);
    }

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

    .about-image-strip figure:nth-child(2) {
        margin-top: 0;
    }

    .about-image-strip figure:last-child {
        grid-column: auto;
    }

    .about-image-strip figure,
    .about-image-strip figure:first-child,
    .about-image-strip figure:last-child {
        min-height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero-figure,
    .hero-flash,
    .reveal-item,
    .gallery-image img,
    .button,
    .lightbox,
    .lightbox-arrow,
    .lightbox-close {
        animation: none !important;
        transition: none !important;
    }

    .reveal-item {
        opacity: 1;

        transform: none;
    }
}

/* =========================================================
   FINAL PHOTOGRAPHY NAV + CONTACT PAGE
   ========================================================= */

.site-nav .fine-art-nav-link {
    color: var(--text);
}

.site-nav .fine-art-nav-link::after {
    background: var(--text);
}

.contact-page-hero,
.contact-options,
.contact-notes,
.contact-final {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;
}

.contact-page-hero {
    min-height: 62vh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.75fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: end;
    padding: clamp(5rem, 9vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
    border-bottom: 1px solid var(--divider);
}

.contact-heading h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(4rem, 8vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.contact-intro {
    max-width: 530px;
    padding-bottom: 0.6rem;
}

.contact-lead {
    margin: 0 0 1.5rem;
    color: var(--text);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.contact-intro p:not(.contact-lead) {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-options {
    border-bottom: 1px solid var(--divider);
}

.contact-option {
    min-height: 210px;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 45px;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--divider);
    text-decoration: none;
    transition: padding 220ms ease, background 220ms ease;
}

.contact-option:last-child {
    border-bottom: 0;
}

.contact-option:hover,
.contact-option:focus-visible {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background: var(--surface);
}

.contact-option-primary {
    color: #111;
    background: var(--accent);
}

.contact-option-primary:hover,
.contact-option-primary:focus-visible {
    background: #ff9154;
}

.contact-option-primary .contact-number,
.contact-option-primary .contact-label,
.contact-option-primary p {
    color: rgba(17, 17, 17, 0.72);
}

.contact-number,
.contact-label,
.contact-arrow {
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-number,
.contact-label {
    color: var(--accent);
}

.contact-option h2 {
    margin: 0.3rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: -0.045em;
}

.contact-option p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-arrow {
    justify-self: end;
    font-size: 1.5rem;
}

.contact-notes {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(3rem, 8vw, 9rem);
    padding: clamp(6rem, 10vw, 10rem) 0;
    border-bottom: 1px solid var(--divider);
}

.contact-notes h2 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.contact-notes-copy p {
    margin: 0 0 2.2rem;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.contact-notes-copy strong {
    color: var(--text);
}

.contact-final {
    padding: clamp(7rem, 12vw, 12rem) 0;
    text-align: center;
}

.contact-final h2 {
    max-width: none;
    margin: 0;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.contact-final .button {
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .contact-page-hero,
    .contact-notes {
        grid-template-columns: 1fr;
    }

    .contact-page-hero {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .contact-page-hero,
    .contact-options,
    .contact-notes,
    .contact-final {
        width: calc(100% - 2rem);
    }

    .contact-option {
        grid-template-columns: 40px minmax(0, 1fr) 30px;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-option {
        grid-template-columns: 1fr 28px;
    }

    .contact-number {
        display: none;
    }

    .contact-arrow {
        grid-column: 2;
        grid-row: 1;
    }
}


/* ORGANIZED HEADER MOBILE */
@media (max-width: 720px) {
  .site-header { gap: .8rem; }
  .site-nav { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .5rem; }
  .site-nav a { text-align: center; }
  .site-nav .fine-art-nav-link { grid-column: 1 / -1; }
}
