@font-face {
    font-family: "Mulish";
    src: url("../fonts/mulish.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 900;
    font-display: swap;
}

@font-face {
    font-family: "Mulish";
    src: url("../fonts/mulish-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 200 900;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/playfair-display.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/playfair-display-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400 900;
    font-display: swap;
}

:root {
    --color-ink: #111111;
    --color-text: #323232;
    --color-muted: #707070;
    --color-paper: #ffffff;
    --color-soft: #f7f5f0;
    --color-gold: #c8b380;
    --color-gold-dark: #a88f55;
    --color-line: #e6e0d4;
    --shadow: 0 18px 55px rgb(23 21 16 / 12%);
    --radius: 4px;
    --container: 1160px;
    --header-height: 104px;
}

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

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

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-paper);
    font-family: "Mulish", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

iframe {
    border: 0;
}

a {
    color: inherit;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--color-gold-dark);
}

button,
input {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 0.55em;
    color: var(--color-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

p {
    margin: 0 0 1.25em;
}

ul,
ol {
    margin: 0 0 1.5em;
    padding-left: 1.35em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

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

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

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

.gtm-frame {
    position: absolute;
    visibility: hidden;
}

.button,
button.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 27px;
    border: 1px solid var(--color-gold);
    border-radius: 0;
    color: var(--color-ink);
    background: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
    color: var(--color-paper);
    background: var(--color-ink);
    border-color: var(--color-ink);
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgb(255 255 255 / 96%);
    border-bottom: 1px solid rgb(17 17 17 / 7%);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
}

.site-logo {
    display: inline-flex;
    width: 118px;
    align-items: center;
}

.site-logo img {
    width: 100%;
}

.site-navigation {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
    list-style: none;
}

.nav-list .nav-list {
    display: none;
}

.nav-list a {
    position: relative;
    display: block;
    padding: 11px 0;
    color: var(--color-ink);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-list a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: var(--color-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-list a:hover::after,
.nav-list .is-active > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-search {
    display: grid;
    grid-template-columns: minmax(90px, 130px) 38px;
}

.site-search input {
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--color-line);
    border-right: 0;
    color: var(--color-ink);
    background: var(--color-paper);
}

.site-search button {
    padding: 0 9px;
    border: 1px solid var(--color-gold);
    color: var(--color-ink);
    background: var(--color-gold);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
}

.menu-toggle {
    display: none;
}

.header-booking {
    white-space: nowrap;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: clamp(270px, 36vw, 440px);
    place-items: center;
    overflow: hidden;
    color: var(--color-paper);
    background:
        linear-gradient(90deg, rgb(10 10 10 / 84%), rgb(10 10 10 / 54%)),
        url("../img/procedures-hero.jpg") center 43% / cover no-repeat;
    text-align: center;
}

.page-hero::after {
    position: absolute;
    right: -2%;
    bottom: -2px;
    left: -2%;
    height: clamp(36px, 7vw, 95px);
    background: var(--color-paper);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    content: "";
}

.page-hero .container {
    position: relative;
    z-index: 1;
    padding: 70px 0 100px;
}

.page-hero h1,
.page-hero h2 {
    margin-bottom: 0;
    color: var(--color-paper);
}

.page-hero p:last-child {
    margin-bottom: 0;
}

.about-section {
    padding: clamp(70px, 10vw, 140px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: center;
}

.about-grid figure {
    position: relative;
    margin: 0;
}

.about-grid figure::before {
    position: absolute;
    inset: 24px -24px -24px 24px;
    z-index: -1;
    border: 1px solid var(--color-gold);
    content: "";
}

.about-grid figure img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-copy > p:first-of-type {
    color: var(--color-gold-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-style: italic;
}

.procedure-overview {
    position: relative;
    padding: clamp(90px, 12vw, 165px) 0;
    overflow: hidden;
    color: var(--color-paper);
    background:
        linear-gradient(rgb(15 15 15 / 91%), rgb(15 15 15 / 91%)),
        url("../img/procedures-hero.jpg") center / cover fixed;
}

.procedure-overview::before,
.procedure-overview::after {
    position: absolute;
    right: -2%;
    left: -2%;
    height: clamp(35px, 6vw, 80px);
    background: var(--color-paper);
    content: "";
}

.procedure-overview::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.procedure-overview::after {
    bottom: -1px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.procedure-overview h2 {
    margin-bottom: 50px;
    color: var(--color-paper);
    text-align: center;
}

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

.service-card {
    display: flex;
    min-height: 270px;
    padding: clamp(30px, 5vw, 58px);
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgb(200 179 128 / 48%);
    background: rgb(0 0 0 / 24%);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover {
    border-color: var(--color-gold);
    background: rgb(0 0 0 / 42%);
    transform: translateY(-3px);
}

.service-card h2,
.service-card h3 {
    color: var(--color-paper);
}

.service-card p {
    max-width: 54ch;
}

.service-card .button {
    margin-top: auto;
}

.services {
    overflow: hidden;
}

.service {
    position: relative;
    padding: clamp(65px, 9vw, 125px) 0;
}

.service:nth-child(even) {
    background: var(--color-soft);
}

.service-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(45px, 8vw, 105px);
    align-items: center;
}

.service:nth-child(even) .service-copy {
    order: 2;
}

.service:nth-child(even) figure {
    order: 1;
}

.service figure {
    margin: 0;
}

.service figure img {
    width: 100%;
    max-height: 610px;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-meta {
    display: grid;
    margin: 28px 0;
    padding: 18px 22px;
    gap: 5px;
    border-left: 3px solid var(--color-gold);
    background: var(--color-soft);
}

.service:nth-child(even) .service-meta {
    background: var(--color-paper);
}

.service-meta div {
    display: flex;
    gap: 0.4em;
}

.service-meta dt {
    font-weight: 800;
}

.service-meta dd {
    margin: 0;
}

.service-links,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-links a {
    font-weight: 750;
}

.content-section,
.pricing-section,
.gallery-section,
.contact-section,
.team-section,
.team-detail-section {
    padding: clamp(65px, 9vw, 120px) 0;
}

.content-stack,
.pricing-stack {
    display: grid;
    gap: 30px;
}

.content-card {
    padding: clamp(28px, 5vw, 58px);
    background: var(--color-paper);
    box-shadow: var(--shadow);
}

.prose {
    overflow-wrap: anywhere;
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose h2 {
    margin-top: 1.15em;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.prose h3,
.prose h4,
.prose h5 {
    margin-top: 1.4em;
}

.prose li + li {
    margin-top: 0.45em;
}

.booking-content {
    background: var(--color-soft);
}

.booking-content .content-card:first-child {
    text-align: center;
}

.booking-content .content-card:first-child p {
    max-width: 780px;
    margin-inline: auto;
}

.pricing-section {
    background: var(--color-soft);
}

.price-list {
    padding: clamp(30px, 5vw, 60px);
    background: var(--color-paper);
    box-shadow: var(--shadow);
}

.price-list > h2 {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-line);
}

.price-list h3 {
    margin-top: 38px;
    font-family: "Mulish", Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.price-list dl {
    margin: 0;
}

.price-list dl > div {
    display: grid;
    padding: 10px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    border-bottom: 1px solid var(--color-line);
}

.price-list dt {
    min-width: 0;
}

.price-list dd {
    margin: 0;
    color: var(--color-ink);
    font-weight: 850;
    white-space: nowrap;
}

.price-note {
    margin: 0;
    padding: 20px 24px;
    border: 1px solid var(--color-gold);
    background: #fffaf0;
    text-align: center;
}

.faq-group {
    padding: clamp(28px, 5vw, 55px);
    background: var(--color-paper);
    box-shadow: var(--shadow);
}

.faq-group > h2 {
    font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.faq-group details {
    border-bottom: 1px solid var(--color-line);
}

.faq-group summary {
    position: relative;
    padding: 20px 42px 20px 0;
    color: var(--color-ink);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-group summary::-webkit-details-marker {
    display: none;
}

.faq-group summary::after {
    position: absolute;
    top: 17px;
    right: 5px;
    color: var(--color-gold-dark);
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-group details[open] summary::after {
    content: "−";
}

.faq-group details > div {
    padding: 0 0 22px;
}

.faq-group details p:last-child {
    margin-bottom: 0;
}

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

.gallery-item {
    display: block;
    overflow: hidden;
    background: var(--color-soft);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.gallery-dialog {
    width: min(94vw, 1120px);
    max-width: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.gallery-dialog::backdrop {
    background: rgb(0 0 0 / 88%);
}

.gallery-dialog img {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
}

.gallery-close,
.gallery-prev,
.gallery-next {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-paper);
    background: rgb(0 0 0 / 72%);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.gallery-close {
    top: 10px;
    right: 10px;
}

.gallery-prev,
.gallery-next {
    top: 50%;
    transform: translateY(-50%);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-card {
    min-width: 0;
    background: var(--color-ink);
    box-shadow: var(--shadow);
}

.team-card a {
    position: relative;
    display: block;
    height: 100%;
    color: var(--color-paper);
    text-decoration: none;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 0.88;
    transition: opacity 180ms ease, transform 250ms ease;
}

.team-card-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 70px 22px 22px;
    background: linear-gradient(transparent, rgb(0 0 0 / 86%));
}

.team-card h2 {
    margin-bottom: 2px;
    color: var(--color-paper);
    font-size: 1.4rem;
}

.team-card p {
    margin: 2px 0;
    font-size: 0.88rem;
}

.team-card:hover img {
    opacity: 1;
    transform: scale(1.015);
}

.team-detail {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.team-detail figure {
    margin: 0;
}

.team-detail figure img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.team-position {
    color: var(--color-gold-dark);
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-section {
    background: var(--color-soft);
}

.contact-card {
    padding: clamp(30px, 5vw, 60px);
    background: var(--color-paper);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-grid {
    display: grid;
    margin: 36px 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--color-line);
}

.contact-grid > * {
    display: flex;
    min-height: 130px;
    padding: 24px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid var(--color-line);
    text-decoration: none;
}

.contact-grid > *:last-child {
    border-right: 0;
}

.contact-grid strong {
    color: var(--color-gold-dark);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.map {
    min-height: 460px;
}

.map iframe {
    width: 100%;
    height: 460px;
}

.company-details {
    margin: 26px 0 0;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.booking-cta {
    position: relative;
    padding: clamp(80px, 11vw, 145px) 0;
    color: var(--color-paper);
    background:
        linear-gradient(90deg, rgb(0 0 0 / 76%), rgb(0 0 0 / 50%)),
        url("../img/booking-background.jpg") center / cover no-repeat;
}

.booking-cta h2 {
    color: var(--color-paper);
}

.booking-cta a:not(.button) {
    color: var(--color-paper);
}

.booking-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.booking-cta-inner p {
    margin: 0;
}

.site-footer {
    color: #303030;
    background: var(--color-paper);
}

.footer-inner {
    display: grid;
    padding-top: 65px;
    padding-bottom: 60px;
    gap: 40px;
    justify-items: center;
}

.footer-logo {
    width: 165px;
}

.footer-contact-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    text-align: center;
}

.footer-contact-grid > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-contact-grid strong {
    color: var(--color-gold-dark);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 18px 0;
    color: var(--color-paper);
    background: var(--color-ink);
    font-size: 0.82rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom a {
    color: var(--color-paper);
}

.search-results {
    min-height: 180px;
}

.search-result-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 18px;
    list-style: none;
}

.search-result-list a {
    display: block;
    padding: 24px 28px;
    background: var(--color-paper);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.search-result-list h2 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.search-result-list p {
    margin: 0;
    color: var(--color-muted);
}

.error-page {
    min-height: 58vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.error-page .content-card {
    max-width: 780px;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

@media (max-width: 1050px) {
    :root {
        --header-height: 82px;
    }

    .header-inner {
        min-height: var(--header-height);
        grid-template-columns: 100px 1fr auto;
        gap: 18px;
    }

    .site-logo {
        width: 92px;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0;
        place-items: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle-lines,
    .menu-toggle-lines::before,
    .menu-toggle-lines::after {
        display: block;
        width: 27px;
        height: 2px;
        background: var(--color-ink);
        content: "";
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle-lines::before {
        transform: translateY(-8px);
    }

    .menu-toggle-lines::after {
        transform: translateY(6px);
    }

    .menu-open .menu-toggle-lines {
        background: transparent;
    }

    .menu-open .menu-toggle-lines::before {
        transform: translateY(2px) rotate(45deg);
    }

    .menu-open .menu-toggle-lines::after {
        transform: rotate(-45deg);
    }

    .site-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 38px 24px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 25px;
        overflow-y: auto;
        color: var(--color-paper);
        background: rgb(17 17 17 / 98%);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .menu-open .site-navigation {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list a {
        padding: 15px 0;
        color: var(--color-paper);
        border-bottom: 1px solid rgb(255 255 255 / 13%);
        font-size: 1rem;
    }

    .site-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-search input {
        min-width: 0;
        padding: 11px 13px;
        border: 1px solid rgb(255 255 255 / 28%);
        color: var(--color-paper);
        background: transparent;
    }

    .site-search button {
        padding: 10px 16px;
        border: 1px solid var(--color-gold);
        background: var(--color-gold);
        cursor: pointer;
        font-weight: 800;
    }

    .header-booking {
        grid-column: 3;
        grid-row: 1;
        margin-right: 58px;
    }

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

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

    .contact-grid > *:nth-child(2) {
        border-right: 0;
    }

    .contact-grid > *:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-line);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .header-inner {
        grid-template-columns: 84px 1fr 46px;
        gap: 10px;
    }

    .site-logo {
        width: 80px;
    }

    .header-booking {
        min-height: 40px;
        margin-right: 0;
        padding: 9px 12px;
        font-size: 0.65rem;
    }

    .about-grid,
    .service-inner,
    .team-detail {
        grid-template-columns: 1fr;
    }

    .about-grid figure {
        max-width: 520px;
        margin-inline: auto;
    }

    .about-grid figure::before {
        inset: 14px -14px -14px 14px;
    }

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

    .service:nth-child(even) .service-copy,
    .service:nth-child(even) figure {
        order: initial;
    }

    .service figure {
        max-width: 520px;
        margin-inline: auto;
    }

    .price-list dl > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

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

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

    .team-card {
        max-width: 460px;
        margin-inline: auto;
    }

    .contact-grid,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid > * {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .contact-grid > *:last-child {
        border-bottom: 0;
    }

    .map,
    .map iframe {
        min-height: 360px;
        height: 360px;
    }

    .booking-cta-inner,
    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-grid {
        gap: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .booking-cta,
    .site-footer,
    .button {
        display: none !important;
    }

    body {
        color: #000;
    }

    .content-section,
    .pricing-section {
        padding: 0;
    }

    .content-card,
    .price-list {
        box-shadow: none;
    }
}
