@font-face {
    font-family: 'Bodoni Moda';
    src: url('../fonts/BodoniModa.ttf') format('truetype');
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #181818;
    --color-surface: #181818;
    --color-text: #f7f5f1;
    --color-text-muted: #d8d6d2;
    --color-primary: #d5aa68;
    --color-accent: #d5aa68;
    --color-line: rgba(213, 170, 104, 0.84);
    --color-border: #d0a05b;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --space-8: 96px;
    --text-display: clamp(3.4rem, 5.5vw, 5.85rem);
    --text-h1: clamp(2.25rem, 5vw, 3rem);
    --text-h2: 2rem;
    --text-h3: 1.5rem;
    --text-body: 1rem;
    --text-small: 0.875rem;
    --radius-xl: 30px;
    --radius-lg: 28px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: 90px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
    max-width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 90px;
    background: var(--color-bg);
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 64px;
}

.logo {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.header-spacer {
    grid-column: 1;
}

.header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.phone-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.btn {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.btn--gold {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #171717;
}

.btn--outline {
    border: 1px solid #f8f7f2;
    background: transparent;
    color: #f8f7f2;
}

.btn--outline:hover {
    background: #f8f7f2;
    color: #171717;
}

.hero {
    position: relative;
    min-height: 652px;
    margin: 0 31px;
    overflow: hidden;
    border-radius: 30px;
    background: #070707;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.69) 100%),
        url('../images/1.webp') center center / cover no-repeat;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding-top: 84px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-size: var(--text-display);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero__subtitle {
    margin: 35px 0 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.hero__notes {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 60px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(870px, calc(100% - 90px));
    margin: 0 auto;
}

.hero-note {
    display: flex;
    min-height: 166px;
    align-items: center;
    justify-content: center;
    padding: 10px 34px;
    text-align: center;
}

.hero-note + .hero-note {
    border-left: 1px solid var(--color-line);
}

.hero-note p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.03em;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(430px, 1fr) minmax(300px, 390px);
    gap: 80px;
    align-items: center;
    min-height: 524px;
    padding: 72px 30px 64px;
    background: var(--color-bg);
}

.about-side {
    display: grid;
    gap: 32px;
}

.about-card {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    text-align: center;
}

.about-card h2,
.about-center h2,
.process-hero h2,
.team-title,
.booking-copy h2,
.footer-brand h2,
.footer-col h3 {
    font-family: 'Bodoni Moda', serif;
}

.about-card h2 {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.about-card p {
    max-width: 310px;
    margin: 0;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.06em;
}

.about-center {
    width: min(100%, 520px);
    margin: 0 auto;
    text-align: center;
}

.about-center h2 {
    margin: 0 0 32px;
    color: var(--color-primary);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.about-center p {
    margin: 0 auto 28px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.03em;
}

.process {
    padding: 0 0 20px;
    background: var(--color-bg);
}

.process-hero {
    position: relative;
    min-height: 308px;
    margin: 0 34px;
    overflow: hidden;
    border: 1px solid #070707;
    border-radius: 30px;
}

.process-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(83, 83, 83, 0.78) 0%, rgba(55, 55, 55, 0.62) 34%, rgba(57, 49, 41, 0.42) 52%, rgba(81, 81, 81, 0.72) 73%, rgba(83, 83, 83, 0.78) 100%),
        url('../images/2.webp') center 54% / cover no-repeat;
}

.process-hero__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(90%, 720px);
    transform: translate(-50%, -50%);
    text-align: center;
}

.eyebrow {
    margin: 0 0 23px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.process-hero h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(2.4rem, 3vw, 3.5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.process-intro {
    margin: 24px 0 0;
    color: var(--color-primary);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 520px;
    padding: 54px 64px 70px;
}

.process-step {
    position: relative;
    max-width: 320px;
    min-height: 160px;
    padding: 10px 24px 10px 16px;
    border-left: 1px dotted var(--color-primary);
}

.process-step--top {
    align-self: start;
}

.process-step--bottom {
    align-self: end;
}

.process-step h3 {
    margin: 0 0 15px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.process-step p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 0.025em;
}

.team {
    min-height: 623px;
    padding: 96px 0 78px;
    background: var(--color-bg);
}

.team-title {
    margin: 0 0 72px;
    color: var(--color-primary);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 236px);
    gap: 42px;
    justify-content: center;
}

.team-card img {
    width: 236px;
    height: 238px;
    object-fit: cover;
}

.team-card h3 {
    margin: 40px 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.team-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

.booking {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.65fr minmax(0, 1fr);
    gap: 50px;
    align-items: center;
    min-height: 540px;
    padding: 70px 32px;
    background: var(--color-bg);
}

.booking-image {
    height: 376px;
    overflow: hidden;
    border-radius: 30px;
}

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

.booking-copy {
    text-align: center;
}

.booking-copy h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.booking-copy p {
    margin: 36px 0 34px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.site-footer {
    min-height: 418px;
    padding: 90px 80px 50px;
    background: var(--color-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.75fr;
    gap: 80px;
    align-items: start;
}

.footer-brand img {
    width: auto;
    height: 52px;
    margin-bottom: 18px;
    object-fit: contain;
}

.footer-brand h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
}

.footer-col h3 {
    margin: 0 0 24px;
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
}

.footer-col a,
.footer-col p {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.footer-col a + a,
.footer-contact p + p {
    margin-top: 8px;
}


.copyright {
    margin: 90px 0 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.legal-hero {
    padding: 150px 54px 70px;
    background: #f1efea;
    color: #0a0a0a;
}

.legal-hero .container,
.legal-main .container,
.thanks .container {
    width: min(100%, 1520px);
    margin: 0 auto;
}

.legal-hero h1,
.thanks__head h1 {
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.legal-hero p,
.thanks__head p {
    font-size: 13px;
}

.legal-main {
    padding: 70px 54px 100px;
    background: #f1efea;
    color: #0a0a0a;
}

.legal-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 860px);
    gap: 70px;
    align-items: start;
}

.legal-aside {
    position: sticky;
    top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.legal-aside strong,
.legal-aside p,
.legal-content p,
.legal-data p {
    font-size: 13px;
    line-height: 1.7;
}

.legal-aside strong {
    display: block;
    margin-bottom: 10px;
}

.legal-aside p {
    margin: 0;
    color: #55514c;
}

.legal-content section {
    margin-bottom: 48px;
}

.legal-content h2 {
    margin: 0 0 18px;
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.legal-content h3 {
    margin: 30px 0 10px;
    font-size: 1rem;
}

.legal-content p {
    margin: 0 0 16px;
    color: #3f3b37;
}

.legal-content {
    word-break: break-word;
}

.legal-data {
    padding: 24px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    border-radius: 14px;
    background: #e6e0d7;
}

.thanks {
    min-height: 100vh;
    padding: 150px 54px 100px;
    background: #f1efea;
    color: #0a0a0a;
}

.thanks__head {
    max-width: 930px;
    margin-bottom: 60px;
}

.next-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.next-card {
    min-height: 290px;
    padding: 26px;
    border-radius: 16px;
    background: #e5ded5;
}

.next-card span,
.next-card p,
.thanks__contact p {
    font-size: 13px;
    line-height: 1.7;
}

.next-card span {
    display: block;
    margin-bottom: 70px;
}

.next-card h2,
.thanks__contact h2 {
    margin: 0 0 14px;
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.next-card p,
.thanks__contact p {
    margin: 0;
    color: #4e4943;
}

.thanks__contact {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.cookie-banner {
    position: fixed;
    z-index: 120;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: none;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(247, 246, 242, 0.18);
    border-radius: 18px;
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(14px);
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cookie-banner h2 {
    margin: 0 0 8px;
    font-family: 'Bodoni Moda', serif;
    font-size: 24px;
}

.cookie-banner p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-actions button {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #d5aa68;
    border-radius: 999px;
    background: transparent;
    color: #f7f5f1;
    cursor: pointer;
}

.cookie-actions button:last-child {
    background: #d5aa68;
    color: #181818;
}

.cookie-settings {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(247, 246, 242, 0.18);
}

.cookie-settings.is-open {
    display: grid;
}

.cookie-option label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr 1.25fr 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: calc(100% - 64px);
        margin: 0 auto;
    }

    .team-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 30px;
    }

    .hero {
        min-height: 720px;
        margin: 0 18px;
    }

    .hero__notes {
        width: calc(100% - 44px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 70px 28px;
    }

    .about-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-center {
        order: -1;
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        min-height: auto;
    }

    .process-step {
        align-self: start;
        max-width: none;
    }

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

    .booking-copy {
        grid-column: 1 / -1;
        grid-row: 1;
        padding: 20px 0;
    }

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

    .legal-shell {
        grid-template-columns: 1fr;
    }

    .legal-aside {
        position: static;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 78px;
    }

    .site-header {
        height: 78px;
    }

    .header-inner {
        grid-template-columns: auto 1fr;
        padding: 0 18px;
    }

    .header-spacer,
    .phone-icon {
        display: none;
    }

    .logo {
        grid-column: 1;
        justify-content: flex-start;
    }

    .logo img {
        height: 42px;
    }

    .header-actions {
        grid-column: 2;
    }

    .hero {
        min-height: 880px;
        margin: 0 10px;
    }

    .hero__content {
        padding: 62px 18px 0;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.6rem);
    }

    .hero__notes {
        bottom: 32px;
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
    }

    .hero-note {
        min-height: 120px;
        padding: 16px 12px;
    }

    .hero-note + .hero-note {
        border-top: 1px solid var(--color-line);
        border-left: 0;
    }

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

    .process-hero {
        min-height: 320px;
        margin: 0 10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        padding: 44px 28px 60px;
    }

    .team {
        padding-top: 70px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 36px);
        gap: 34px 18px;
    }

    .team-card h3 {
        margin-top: 18px;
    }

    .booking {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 18px;
    }

    .booking-copy {
        grid-column: auto;
        grid-row: auto;
        order: -1;
    }

    .booking-image {
        height: 320px;
    }

    .site-footer {
        padding: 70px 28px 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .copyright {
        margin-top: 70px;
    }

    .cookie-banner__grid,
    .cookie-settings,
    .thanks__contact,
    .next-grid {
        grid-template-columns: 1fr;
    }

    .legal-hero,
    .legal-main,
    .thanks {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 375px) {
    .btn {
        padding-right: 14px;
        padding-left: 14px;
        font-size: 12px;
    }

    .hero {
        min-height: 920px;
    }

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


.container {
    width: 100%;
    margin: 0 auto;
}

.menu-toggle {
    grid-column: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    content: '';
}

.menu-toggle__lines {
    position: relative;
}

.menu-toggle__lines::before {
    position: absolute;
    top: -6px;
}

.menu-toggle__lines::after {
    position: absolute;
    top: 6px;
}

.button,
.header-action {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: #181818;
    font-size: 13px;
    font-weight: 500;
}

.header-action {
    grid-column: 3;
    justify-self: end;
}

.nav-overlay {
    display: none;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    font-size: 13px;
}


.email-link,
.inline-email {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-company p + p {
    margin-top: 8px;
}

.contact-page {
    min-height: calc(100vh - 90px);
    padding: 110px 54px 120px;
    background: #f1efea;
    color: #0a0a0a;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: 80px;
    width: min(100%, 1520px);
    margin: 0 auto;
    align-items: start;
}

.contact-intro {
    max-width: 680px;
}

.contact-intro h1 {
    margin: 0 0 34px;
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.4rem, 6vw, 6.9rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 600px;
    margin: 0;
    color: #4a4540;
    font-size: 14px;
    line-height: 1.75;
}

.contact-facts {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.contact-facts p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    padding: 40px;
    border: 1px solid rgba(10, 10, 10, 0.14);
    border-radius: 24px;
    background: #e6e0d7;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 24px;
}

.form-field {
    display: grid;
    gap: 10px;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.form-field span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.32);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #0a0a0a;
}

@media (max-width: 480px) {
    .header-inner {
        padding-right: 14px;
        padding-left: 14px;
    }

    .hero__content,
    .about-grid,
    .process-steps,
    .booking,
    .site-footer,
    .legal-hero,
    .legal-main,
    .thanks,
    .contact-page {
        padding-right: 16px;
        padding-left: 16px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .footer-col,
    .inline-email,
    .email-link {
        word-break: break-all;
    }

    .legal-hero h1 {
        overflow-wrap: anywhere;
        word-break: break-all;
    }
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: #0a0a0a;
    box-shadow: 0 1px 0 #0a0a0a;
}

.privacy-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 30px 0 12px;
    font-size: 12px;
    line-height: 1.6;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--color-primary);
    flex: 0 0 auto;
}

.privacy-check a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-note {
    margin: 0 0 26px;
    color: #5d5750;
    font-size: 11px;
    line-height: 1.6;
}

.form-submit {
    min-height: 44px;
    border: 1px solid var(--color-primary);
    cursor: pointer;
}

.legal-content .inline-email,
.thanks .inline-email,
.contact-page .inline-email {
    color: inherit;
}

@media (max-width: 1024px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-brand img {
        height: 42px;
    }

    .contact-page {
        padding: 76px 24px 80px;
    }

    .contact-shell {
        gap: 48px;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .form-field--wide {
        grid-column: auto;
    }
}
