/* =========================================
   LE COMPTOIR
   Minimalisme éditorial contemporain
========================================= */

:root {
    --black: #0D0D0D;
    --cream: #FAFAF8;
    --sand: #F0EBE3;
    --gold: #C9A96E;
    --text: #1A1A18;
    --muted: #7A746E;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-ui: "Manrope", "Inter", sans-serif;
    --page-padding: 5vw;
    --content-max: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

.section-label {
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-label-light {
    color: rgba(240, 235, 227, 0.52);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 104px;
    padding: 0 var(--page-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    color: var(--cream);
}

.logo {
    display: block;
    width: 56px;
    flex: 0 0 auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(26px, 2.6vw, 42px);
}

.nav-desktop a {
    position: relative;
    padding: 10px 0;
    color: rgba(250, 250, 248, 0.82);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.015em;
    transition: color 180ms ease;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
    color: var(--cream);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: rgba(250, 250, 248, 0.92);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE NAV */
.mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-navigation-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.mobile-navigation a {
    font-family: var(--font-ui);
    font-size: clamp(30px, 8vw, 46px);
    font-weight: 600;
    letter-spacing: -0.045em;
}

/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    min-height: 680px;
    height: 100svh;
    height: 100dvh;
    background: #0A0909;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-inner {
    width: min(1240px, 92vw);
    text-align: center;
    transform: translateY(1vh);
}

.hero-location {
    margin-bottom: clamp(26px, 3vw, 40px);
    color: rgba(250, 250, 248, 0.52);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.hero-wordmark {
    width: min(1120px, 88vw);
    height: auto;
    margin: 0 auto;
}

/* =========================================
   GRANDE IMAGE D'OUVERTURE
========================================= */
.hero-image-section {
    position: relative;
    background: #0A0909;
    padding: 0 var(--page-padding) 120px;
}

.hero-photo {
    width: 100%;
    height: min(78vh, 900px);
    min-height: 520px;
    background-color: #211d19;
    background-image:
        linear-gradient(rgba(13, 13, 13, 0.08), rgba(13, 13, 13, 0.08)),
        url("https://images.unsplash.com/photo-1700478934617-75d2d4f01a04?fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8Y2FybmUlMjBkZSUyMGNhcm5pY2Vyb3xlbnwwfHwwfHx8MA%3D%3D&ixlib=rb-4.1.0&q=60&w=3000");
    background-repeat: no-repeat;
    background-position: center 58%;
    background-size: cover;
}

.image-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    color: rgba(250, 250, 248, 0.46);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.image-caption span:last-child {
    color: rgba(250, 250, 248, 0.76);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* =========================================
   INTRODUCTION
========================================= */
.intro {
    background: var(--cream);
    padding: 180px 8vw 210px;
}

.intro-content {
    max-width: 1200px;
    margin: auto;
}

.intro .section-label {
    margin-bottom: 72px;
}

.intro h2 {
    max-width: 980px;
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 0.93;
}

.intro-copy {
    width: min(610px, 100%);
    margin-top: 82px;
    margin-left: auto;
    display: grid;
    gap: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.74;
}

/* =========================================
   LE PRODUIT
========================================= */
.product-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--page-padding) 190px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(56px, 8vw, 130px);
    align-items: center;
}

.product-media {
    height: min(78vh, 850px);
    min-height: 620px;
    overflow: hidden;
    background: var(--sand);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}

.product-copy .section-label {
    margin-bottom: 42px;
}

.product-copy h2 {
    margin-bottom: 52px;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.product-copy > p:not(.section-label) {
    max-width: 470px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.product-copy > p + p {
    margin-top: 22px;
}

/* =========================================
   SAVOIR-FAIRE
========================================= */
.craft-section {
    background: var(--black);
    color: var(--cream);
    padding: 170px var(--page-padding) 160px;
}

.craft-heading {
    max-width: var(--content-max);
    margin: 0 auto 110px;
}

.craft-heading .section-label {
    margin-bottom: 54px;
}

.craft-heading h2 {
    max-width: 880px;
    font-size: clamp(62px, 8.4vw, 126px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.craft-grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: end;
}

.craft-copy {
    padding-bottom: 12px;
}

.craft-copy p {
    max-width: 470px;
    color: rgba(250, 250, 248, 0.56);
    font-size: 16px;
    line-height: 1.72;
}

.craft-copy .craft-lead {
    margin-bottom: 48px;
    color: rgba(250, 250, 248, 0.92);
    font-size: 21px;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.craft-copy p + p {
    margin-top: 22px;
}

.craft-media {
    height: min(76vh, 820px);
    min-height: 600px;
    overflow: hidden;
    background: #1b1917;
}

.craft-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.03);
}

/* =========================================
   HISTOIRE
========================================= */
.story-section {
    background: var(--sand);
    padding: 180px 8vw 190px;
}

.story-heading,
.story-body {
    max-width: 1200px;
    margin: 0 auto;
}

.story-heading .section-label {
    margin-bottom: 62px;
}

.story-kicker {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.story-heading h2 {
    max-width: 1100px;
    font-size: clamp(56px, 7.2vw, 108px);
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 0.94;
}

.story-body {
    margin-top: 100px;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(56px, 9vw, 150px);
    align-items: start;
}

.story-lead {
    max-width: 430px;
    color: var(--text);
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.42;
    letter-spacing: -0.035em;
}

.story-body > p:not(.story-lead) {
    grid-column: 2;
    max-width: 610px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.74;
}

.story-body > p + p {
    margin-top: -12px;
}

.story-evolution {
    grid-column: 2;
    margin-top: 44px;
    border-top: 1px solid rgba(26, 26, 24, 0.16);
}

.story-evolution > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 34px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(26, 26, 24, 0.16);
}

.story-evolution span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
}

.story-evolution p {
    max-width: 520px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* =========================================
   PLATS DE LA SEMAINE
========================================= */
.weekly-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 180px var(--page-padding) 200px;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: start;
}

.weekly-intro {
    position: sticky;
    top: 56px;
}

.weekly-intro .section-label {
    margin-bottom: 52px;
}

.weekly-intro h2 {
    max-width: 560px;
    margin-bottom: 48px;
    font-size: clamp(58px, 6.8vw, 98px);
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 0.93;
}

.weekly-description {
    max-width: 440px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.weekly-content {
    padding-top: 4px;
}

.weekly-meta {
    margin-bottom: 38px;
}

.weekly-meta p:first-child {
    color: var(--text);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.weekly-meta p:last-child {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.weekly-menu {
    border-top: 1px solid rgba(26, 26, 24, 0.18);
}

.weekly-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 28px;
    align-items: baseline;
    padding: 28px 0 30px;
    border-bottom: 1px solid rgba(26, 26, 24, 0.18);
}

.weekly-day {
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
}

.weekly-dish {
    color: var(--text);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.weekly-price {
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.weekly-loading,
.weekly-error {
    padding: 30px 0;
    color: var(--muted);
    font-size: 15px;
}

.weekly-row.is-today {
    position: relative;
}

.weekly-row.is-today::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 26px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.today-label {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.weekly-edit-note {
    margin-top: 28px;
    color: rgba(122, 116, 110, 0.72);
    font-size: 12px;
    line-height: 1.6;
}

.weekly-edit-note code {
    color: var(--text);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
}

/* =========================================
   GALERIE
========================================= */
.gallery-section {
    background: var(--sand);
    padding: 180px var(--page-padding) 190px;
}

.gallery-heading,
.gallery-grid {
    max-width: var(--content-max);
    margin: 0 auto;
}

.gallery-heading {
    margin-bottom: 100px;
}

.gallery-heading .section-label {
    margin-bottom: 54px;
}

.gallery-heading h2 {
    max-width: 980px;
    font-size: clamp(62px, 8vw, 118px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.91;
}

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
    grid-template-rows: auto auto;
    gap: clamp(20px, 2.4vw, 36px);
    align-items: start;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d9d1c7;
}

.gallery-item-wide {
    grid-row: 1 / span 2;
}

.gallery-item-wide img {
    aspect-ratio: 1 / 1.18;
}

.gallery-item-tall img,
.gallery-item-meal img {
    aspect-ratio: 1.15 / 1;
}

.gallery-item figcaption {
    padding-top: 12px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
}

/* =========================================
   INSTAGRAM
========================================= */
.social-section {
    min-height: 76vh;
    padding: 170px var(--page-padding);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: clamp(64px, 10vw, 170px);
    align-items: end;
    background: var(--black);
    color: var(--cream);
}

.social-copy {
    max-width: 940px;
}

.social-copy .section-label {
    margin-bottom: 54px;
}

.social-copy h2 {
    max-width: 940px;
    font-size: clamp(54px, 6.8vw, 102px);
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 0.94;
}

.social-copy > p:last-child {
    max-width: 560px;
    margin-top: 54px;
    color: rgba(250, 250, 248, 0.56);
    font-size: 16px;
    line-height: 1.72;
}

.social-action {
    align-self: end;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid rgba(250, 250, 248, 0.22);
    border-bottom: 1px solid rgba(250, 250, 248, 0.22);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 600;
    transition: border-color 180ms ease, color 180ms ease;
}

.instagram-link:not(.is-disabled):hover {
    border-color: rgba(250, 250, 248, 0.62);
}

.instagram-link.is-disabled {
    color: rgba(250, 250, 248, 0.44);
    cursor: default;
}

/* =========================================
   CONTACT
========================================= */
.contact-section {
    padding: 180px var(--page-padding) 170px;
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(70px, 11vw, 180px);
    background: #090909;
    color: var(--cream);
    border-top: 1px solid rgba(250, 250, 248, 0.1);
}

.contact-heading {
    align-self: start;
}

.contact-heading .section-label {
    margin-bottom: 54px;
}

.contact-status {
    margin-bottom: 20px;
    color: rgba(250, 250, 248, 0.48);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
}

.contact-heading h2 {
    font-size: clamp(64px, 7.6vw, 116px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.91;
}

.contact-details {
    padding-top: 4px;
}

.contact-block {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 34px;
    padding: 28px 0 30px;
    border-top: 1px solid rgba(250, 250, 248, 0.16);
}

.contact-block:last-child {
    border-bottom: 1px solid rgba(250, 250, 248, 0.16);
}

.contact-title {
    color: rgba(250, 250, 248, 0.42);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
}

.contact-block > p:not(.contact-title),
.contact-block > a {
    color: rgba(250, 250, 248, 0.9);
    font-size: 18px;
    line-height: 1.55;
}

.contact-block > a {
    width: fit-content;
}

.contact-note > p:last-child {
    max-width: 520px;
    color: rgba(250, 250, 248, 0.52);
    font-size: 15px;
    line-height: 1.68;
}

.contact-hours {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    color: rgba(250, 250, 248, 0.86);
    font-size: 15px;
    line-height: 1.55;
}

.hours-row span:first-child {
    color: rgba(250, 250, 248, 0.48);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    padding: 34px var(--page-padding) 38px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 32px;
    align-items: center;
    background: #090909;
    color: rgba(250, 250, 248, 0.42);
    border-top: 1px solid rgba(250, 250, 248, 0.1);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
}

.footer-mark {
    width: 42px;
}

.footer-mark img {
    width: 100%;
}

/* =========================================
   MICRO-ANIMATIONS
========================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* =========================================
   TABLET / MOBILE
========================================= */
@media (max-width: 1050px) {
    .nav-desktop {
        gap: 24px;
    }

    .nav-desktop a {
        font-size: 13px;
    }

    .product-section,
    .craft-grid,
    .weekly-section,
    .social-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .product-media {
        min-height: 520px;
        height: 72vh;
    }

    .product-copy {
        max-width: 680px;
    }

    .craft-grid {
        align-items: start;
    }

    .craft-copy {
        order: 2;
    }

    .craft-media {
        order: 1;
        min-height: 520px;
        height: 70vh;
    }

    .weekly-intro {
        position: static;
        max-width: 760px;
    }
}

@media (max-width: 800px) {
    :root {
        --page-padding: 6vw;
    }

    .navbar {
        height: 82px;
    }

    .logo {
        width: 48px;
    }

    .nav-desktop {
        display: none;
    }

    .menu-button {
        display: block;
        position: relative;
        z-index: 110;
        font-size: 15px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-inner {
        width: 100%;
        transform: translateY(0);
    }

    .hero-location {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .hero-wordmark {
        width: 91vw;
    }

    .hero-image-section {
        padding: 0 0 76px;
    }

    .hero-photo {
        height: 68vh;
        min-height: 500px;
        background-position: center;
    }

    .image-caption {
        padding: 14px var(--page-padding) 0;
    }

    .intro {
        padding: 120px 7vw 145px;
    }

    .intro .section-label {
        margin-bottom: 50px;
    }

    .intro h2 {
        font-size: clamp(48px, 14vw, 64px);
    }

    .intro-copy {
        margin-top: 56px;
        margin-left: 0;
        font-size: 16px;
    }

    .product-section {
        padding: 0 0 130px;
        gap: 56px;
    }

    .product-media {
        min-height: 480px;
        height: 68vh;
    }

    .product-copy {
        padding: 0 7vw;
    }

    .product-copy .section-label {
        margin-bottom: 32px;
    }

    .product-copy h2 {
        margin-bottom: 36px;
        font-size: clamp(44px, 12vw, 60px);
    }

    .craft-section {
        padding: 115px 0 120px;
    }

    .craft-heading {
        padding: 0 7vw;
        margin-bottom: 64px;
    }

    .craft-heading .section-label {
        margin-bottom: 38px;
    }

    .craft-heading h2 {
        font-size: clamp(54px, 15vw, 76px);
    }

    .craft-grid {
        gap: 48px;
    }

    .craft-media {
        min-height: 500px;
        height: 68vh;
    }

    .craft-copy {
        padding: 0 7vw;
    }

    .craft-copy .craft-lead {
        margin-bottom: 36px;
        font-size: 19px;
    }

    .story-section {
        padding: 120px 7vw 135px;
    }

    .story-heading .section-label {
        margin-bottom: 48px;
    }

    .story-kicker {
        font-size: 14px;
    }

    .story-heading h2 {
        font-size: clamp(48px, 13vw, 64px);
    }

    .story-body {
        margin-top: 64px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-lead,
    .story-body > p:not(.story-lead),
    .story-evolution {
        grid-column: 1;
    }

    .story-body > p + p {
        margin-top: 0;
    }

    .story-evolution {
        margin-top: 22px;
    }

    .story-evolution > div {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }

    .weekly-section {
        padding: 120px 7vw 140px;
        gap: 72px;
    }

    .weekly-intro .section-label {
        margin-bottom: 42px;
    }

    .weekly-intro h2 {
        margin-bottom: 38px;
        font-size: clamp(50px, 14vw, 68px);
    }

    .weekly-row {
        grid-template-columns: 82px 1fr;
        gap: 14px 18px;
        padding: 24px 0 26px;
    }

    .weekly-price {
        grid-column: 2;
    }

    .gallery-section {
        padding: 120px 7vw 130px;
    }

    .gallery-heading {
        margin-bottom: 64px;
    }

    .gallery-heading .section-label {
        margin-bottom: 42px;
    }

    .gallery-heading h2 {
        font-size: clamp(52px, 14vw, 70px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .gallery-item-wide {
        grid-row: auto;
    }

    .gallery-item-wide img,
    .gallery-item-tall img,
    .gallery-item-meal img {
        aspect-ratio: 4 / 5;
    }

    .social-section {
        min-height: auto;
        padding: 120px 7vw 125px;
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .social-copy .section-label {
        margin-bottom: 42px;
    }

    .social-copy h2 {
        font-size: clamp(48px, 12.6vw, 64px);
    }

    .social-copy > p:last-child {
        margin-top: 40px;
    }

    .contact-section {
        padding: 120px 7vw 125px;
        grid-template-columns: 1fr;
        gap: 76px;
    }

    .contact-heading .section-label {
        margin-bottom: 42px;
    }

    .contact-heading h2 {
        font-size: clamp(58px, 15vw, 78px);
    }

    .contact-block {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0 26px;
    }

    .hours-row {
        grid-template-columns: 110px 1fr;
    }

    .site-footer {
        grid-template-columns: 52px 1fr;
        gap: 18px 24px;
        padding: 30px 7vw 34px;
    }

    .site-footer > p:last-child {
        grid-column: 2;
    }
}

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

    .mobile-navigation,
    .nav-desktop a,
    .nav-desktop a::after,
    [data-reveal] {
        transition: none;
    }

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