:root {
    --ink: #211e1b;
    --ink-soft: #5f5852;
    --paper: #f5efe9;
    --paper-deep: #e9ddd2;
    --cream: #fffaf5;
    --clay: #a4664f;
    --clay-dark: #7f4d3b;
    --line: rgba(33, 30, 27, 0.16);
    --white: #ffffff;
    --heading: 'Italiana', Georgia, serif;
    --body: 'DM Sans', Arial, sans-serif;
    --container: 1240px;
    --header-height: 86px;
    --scroll-gap: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--clay);
    outline-offset: 4px;
}

[tabindex='-1']:focus {
    outline: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading);
    font-weight: 400;
    line-height: 1.05;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(4rem, 8.4vw, 8.75rem);
    letter-spacing: -0.055em;
}

h1 em {
    color: var(--clay);
    font-weight: inherit;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 2.6vw, 3rem);
}

.section {
    padding: clamp(92px, 12vw, 168px) max(6vw, 24px);
}

.eyebrow {
    margin-bottom: 22px;
    color: var(--clay-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--clay);
    color: var(--white);
}

.button-primary:hover {
    background: var(--clay-dark);
}

.button-dark {
    width: fit-content;
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    background: var(--clay-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0 5px;
    border-bottom: 1px solid currentColor;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.text-link span {
    display: inline-block;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translate(3px, 3px);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    padding: 0 max(5vw, 24px);
    border-bottom: 1px solid transparent;
    transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
    height: 72px;
    border-color: var(--line);
    background: rgba(245, 239, 233, 0.92);
    box-shadow: 0 10px 40px rgba(53, 38, 30, 0.05);
    backdrop-filter: blur(16px);
}

.wordmark {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    line-height: 0.75;
    text-decoration: none;
}

.wordmark-main {
    font-family: var(--heading);
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.wordmark-sub {
    align-self: flex-end;
    color: var(--clay);
    font-family: var(--heading);
    font-size: 1rem;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.nav-links a {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

.nav-links a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    background: currentColor;
    content: '';
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 10px 18px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover {
    background: var(--ink);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 27px;
    height: 1px;
    background: var(--ink);
    transition: transform 200ms ease, opacity 160ms ease;
}

.menu-toggle span:first-child {
    transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    min-height: max(720px, 100svh);
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: clamp(30px, 5vw, 90px);
    padding: calc(var(--header-height) + 70px) max(7vw, 28px) 92px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 18%;
    left: -7vw;
    width: 20vw;
    min-width: 190px;
    aspect-ratio: 1;
    border: 1px solid rgba(164, 102, 79, 0.28);
    border-radius: 50%;
    content: '';
}

.hero-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 800px;
}

.hero-intro {
    max-width: 590px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 530px);
}

.hero-arch {
    position: relative;
    aspect-ratio: 0.69;
    overflow: hidden;
    border-radius: 300px 300px 18px 18px;
    background: var(--paper-deep);
    box-shadow: 22px 25px 0 rgba(164, 102, 79, 0.12);
}

.hero-arch img {
    width: 100%;
    height: 100%;
    transform: scale(1.12);
    object-fit: cover;
    object-position: 50% 52%;
}

.hero-stamp {
    position: absolute;
    bottom: 10%;
    left: -64px;
    display: flex;
    width: 130px;
    height: 130px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    transform: rotate(-8deg);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(33, 30, 27, 0.86);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-stamp span {
    font-family: var(--heading);
    font-size: 1.5rem;
    letter-spacing: 0;
    text-transform: none;
}

.scroll-cue {
    position: absolute;
    bottom: 33px;
    left: max(7vw, 28px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue span {
    display: block;
    width: 45px;
    height: 1px;
    background: var(--ink);
}

.about {
    background: var(--cream);
}

.section-heading {
    width: min(100%, var(--container));
    margin: 0 auto 60px;
}

.section-heading h2 {
    max-width: 820px;
}

.about-grid {
    display: grid;
    width: min(100%, var(--container));
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(55px, 10vw, 150px);
    margin: 0 auto;
}

.about-photo {
    position: relative;
}

.about-photo-frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-photo::before {
    position: absolute;
    z-index: 0;
    top: -22px;
    right: -22px;
    width: 70%;
    height: 58%;
    border: 1px solid var(--clay);
    content: '';
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.photo-caption {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    padding: 7px 12px;
    background: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-copy {
    max-width: 600px;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.about-copy .lead {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.18;
}

.signature {
    margin-top: 38px;
    color: var(--clay);
    font-family: var(--heading);
    font-size: 2.25rem;
    font-style: italic;
}

.services {
    background: var(--paper-deep);
}

.section-heading-centered {
    max-width: 780px;
    text-align: center;
}

.section-heading-centered h2 {
    margin-inline: auto;
}

.section-heading-centered > p:last-child {
    max-width: 560px;
    margin: 0 auto;
    color: var(--ink-soft);
}

.service-grid {
    display: grid;
    width: min(100%, var(--container));
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 320px;
    padding: clamp(28px, 3vw, 44px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-card:hover {
    position: relative;
    transform: translateY(-7px);
    background: var(--ink);
    color: var(--white);
}

.service-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: color 220ms ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.service-number {
    display: block;
    margin-bottom: 72px;
    color: var(--clay-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.service-card:hover .service-number {
    color: #d8aa94;
}

.gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.8fr;
    grid-template-rows: repeat(2, minmax(260px, 40vw));
    gap: 12px;
    padding: 12px;
    background: var(--ink);
}

.gallery figure,
.gallery-quote {
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery figure:hover img {
    transform: scale(1.035);
}

.gallery-tall {
    grid-row: 1 / 3;
}

.gallery-wide {
    grid-column: 2 / 4;
}

.gallery-wide img {
    object-position: center 55%;
}

.gallery-detail img {
    object-position: center 78%;
}

.gallery-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 5vw, 72px);
    background: var(--clay);
    color: var(--white);
}

.gallery-quote p {
    margin: 0;
    font-family: var(--heading);
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1.12;
}

.pricing {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(460px, 1.3fr);
    gap: clamp(60px, 9vw, 145px);
    background: var(--cream);
}

.pricing-intro {
    justify-self: end;
    max-width: 430px;
}

.pricing-intro > p:not(.eyebrow) {
    margin-bottom: 32px;
    color: var(--ink-soft);
}

.price-list {
    width: 100%;
    max-width: 720px;
}

.price-item {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.price-item:first-child {
    border-top: 1px solid var(--line);
}

.price-item div {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.price-number {
    color: var(--clay-dark);
    font-size: 0.7rem;
    font-weight: 600;
}

.price-item strong {
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.booking {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(60px, 10vw, 150px);
    background: var(--paper-deep);
}

.booking-copy {
    align-self: start;
    justify-self: end;
    width: 100%;
    max-width: 500px;
    padding-top: 72px;
}

.booking-copy > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.booking-image {
    width: 70%;
    max-width: 330px;
    margin-top: 54px;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    border-radius: 180px 180px 0 0;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form {
    align-self: start;
    width: 100%;
    max-width: 700px;
    margin-top: 72px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.form-field label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(33, 30, 27, 0.35);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    transition: border-color 180ms ease;
}

.form-field input {
    min-height: 52px;
}

.custom-select {
    position: relative;
}

.custom-select-trigger {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    border: 1px solid rgba(33, 30, 27, 0.22);
    border-radius: 12px;
    background: rgba(255, 250, 245, 0.58);
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.custom-select-trigger:hover {
    border-color: rgba(127, 77, 59, 0.58);
    background: rgba(255, 250, 245, 0.84);
}

.custom-select-trigger:focus-visible,
.custom-select.open .custom-select-trigger {
    border-color: var(--clay-dark);
    outline: 0;
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(164, 102, 79, 0.12);
}

.custom-select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select.has-value .custom-select-value {
    font-weight: 500;
}

.custom-select-chevron {
    position: relative;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    transform: translateY(-2px) rotate(45deg);
    border-right: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.custom-select.open .custom-select-chevron {
    transform: translateY(2px) rotate(225deg);
    border-color: var(--clay-dark);
}

.custom-select-options {
    position: absolute;
    z-index: 30;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 3px;
    max-height: 310px;
    padding: 8px;
    overflow-y: auto;
    border: 1px solid rgba(33, 30, 27, 0.22);
    border-radius: 14px;
    visibility: hidden;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top;
    background: var(--cream);
    box-shadow: 0 22px 55px rgba(45, 33, 27, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 260ms;
}

.custom-select.open .custom-select-options {
    visibility: visible;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}

.custom-select-options button {
    width: 100%;
    padding: 12px 14px;
    transform: translateY(-4px);
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    opacity: 0;
    text-align: left;
    transition: color 160ms ease, background-color 160ms ease, opacity 180ms ease, transform 220ms ease;
}

.custom-select.open .custom-select-options button {
    transform: translateY(0);
    opacity: 1;
}

.custom-select.open .custom-select-options button:nth-child(2) { transition-delay: 25ms; }
.custom-select.open .custom-select-options button:nth-child(3) { transition-delay: 50ms; }
.custom-select.open .custom-select-options button:nth-child(4) { transition-delay: 75ms; }
.custom-select.open .custom-select-options button:nth-child(5) { transition-delay: 100ms; }
.custom-select.open .custom-select-options button:nth-child(6) { transition-delay: 125ms; }
.custom-select.open .custom-select-options button:nth-child(7) { transition-delay: 150ms; }

.custom-select-options button:hover,
.custom-select-options button:focus-visible {
    outline: 0;
    background: var(--paper-deep);
}

.custom-select-options button[aria-selected="true"] {
    background: var(--clay);
    color: var(--white);
}

.custom-select.invalid .custom-select-trigger {
    border-color: #9b3f36;
    box-shadow: 0 0 0 4px rgba(155, 63, 54, 0.1);
}

.field-error {
    margin: 7px 0 0;
    color: #8a3029;
    font-size: 0.76rem;
}

.form-field textarea {
    min-height: 130px;
    padding: 13px 0;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--clay-dark);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(33, 30, 27, 0.48);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-secondary {
    width: fit-content;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
}

.button-secondary:hover {
    border-color: var(--clay-dark);
    background: var(--clay-dark);
    color: var(--white);
}

.form-note,
.form-status {
    max-width: 490px;
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}

.form-status {
    min-height: 24px;
    color: var(--clay-dark);
    font-weight: 600;
}

.footer {
    padding: clamp(72px, 8vw, 112px) max(6vw, 24px) 28px;
    background: var(--ink);
    color: var(--white);
}

.footer-cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: clamp(48px, 6vw, 82px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta > p {
    max-width: 180px;
    margin: 0 0 10px;
    color: #d8aa94;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.6;
    text-transform: uppercase;
}

.footer-cta-link {
    display: flex;
    align-items: center;
    gap: clamp(22px, 4vw, 64px);
    font-family: var(--heading);
    font-size: clamp(3.2rem, 7.1vw, 7.2rem);
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-cta-link span {
    color: #d8aa94;
    font-family: var(--body);
    font-size: 0.35em;
    transition: transform 200ms ease;
}

.footer-cta-link:hover {
    color: #ead2c6;
}

.footer-cta-link:hover span {
    transform: translateY(-7px);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.55fr) minmax(190px, 0.65fr);
    gap: clamp(48px, 8vw, 130px);
    padding: clamp(52px, 6vw, 82px) 0;
}

.footer-brand .wordmark {
    width: fit-content;
    margin-bottom: 28px;
}

.wordmark-light .wordmark-sub {
    color: #d8aa94;
}

.footer-brand p {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-nav,
.footer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-label {
    margin-bottom: 13px;
    color: #d8aa94;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
    transform: translateX(4px);
    color: var(--white);
}

.footer-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-note {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.back-to-top {
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        position: relative;
        z-index: 2;
        display: flex;
    }

    .nav-links {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        display: flex;
        width: 100vw;
        height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 18px;
        padding: 100px max(8vw, 32px);
        transform: translateY(-105%);
        visibility: hidden;
        background: var(--paper);
        pointer-events: none;
        transition: transform 400ms cubic-bezier(0.7, 0, 0.2, 1), visibility 0s linear 400ms;
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-links a {
        font-family: var(--heading);
        font-size: clamp(2.4rem, 8vw, 4rem);
        line-height: 1.15;
    }

    .nav-cta {
        margin-top: 14px;
        padding: 12px 22px;
        font-family: var(--body) !important;
        font-size: 0.88rem !important;
    }

    .hero {
        grid-template-columns: 1fr 0.72fr;
    }

    .hero-stamp {
        left: -38px;
        width: 108px;
        height: 108px;
    }

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

    .pricing,
    .booking {
        grid-template-columns: 1fr;
    }

    .pricing-intro,
    .booking-copy {
        justify-self: start;
        max-width: 700px;
    }

    .pricing-intro .text-link span {
        font-size: 0;
    }

    .pricing-intro .text-link span::after {
        content: '↓';
        font-size: 0.9rem;
    }

    .pricing-intro .text-link:hover span {
        transform: translateY(3px);
    }

    .booking-copy {
        padding-top: 0;
    }

    .booking-image {
        display: none;
    }

    .price-list,
    .booking-form {
        max-width: none;
    }

    .booking-form {
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 72px;
        --scroll-gap: 16px;
    }

    .site-header {
        background: rgba(245, 239, 233, 0.78);
        backdrop-filter: blur(12px);
    }

    .wordmark-main {
        font-size: 1.72rem;
    }

    .wordmark-sub {
        font-size: 0.88rem;
    }

    .hero {
        min-height: 100svh;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 42px;
        padding-top: calc(var(--header-height) + 45px);
        padding-bottom: 72px;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 4.6rem);
        line-height: 0.98;
    }

    .hero .eyebrow {
        max-width: 300px;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .text-link span {
        font-size: 0;
    }

    .hero-actions .text-link span::after {
        content: '↓';
        font-size: 0.9rem;
    }

    .hero-actions .text-link:hover span {
        transform: translateY(3px);
    }

    .hero-visual {
        width: 74%;
        margin-right: 2%;
    }

    .hero-stamp {
        left: -58px;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading {
        margin-bottom: 44px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-photo {
        width: calc(100% - 22px);
    }

    .about-photo img {
        max-height: 560px;
    }

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

    .service-card {
        min-height: auto;
    }

    .service-number {
        margin-bottom: 46px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 500px 270px 300px;
    }

    .gallery-tall {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-wide {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .gallery-detail,
    .gallery-quote {
        grid-row: 2;
    }

    .gallery-quote p {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-link {
        font-size: clamp(3rem, 12vw, 5.2rem);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 32px;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .hero-visual {
        width: 84%;
    }

    .hero-stamp {
        left: -42px;
        width: 92px;
        height: 92px;
        font-size: 0.55rem;
    }

    .hero-stamp span {
        font-size: 1.18rem;
    }

    .gallery {
        display: flex;
        flex-direction: column;
    }

    .gallery figure,
    .gallery-quote {
        min-height: 330px;
    }

    .price-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 20px 0;
    }

    .price-item strong {
        padding-left: 40px;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
