:root {
    --navy: #0D2B45;
    --navy-hover: #153a5c;
    --hero-bg: #F2F2F2;
    --cream: #F2E8DA;
    --off-white: #FAF7F2;
    --grey-light: #E6E6E6;
    --grey: #6B7280;
    --icon-bg: #EEF1F4;
    --bronze: #A68B6B;
    --gold: #C4A574;
    --icon-warm-bg: #F5EDE4;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(13, 43, 69, 0.08);
    --radius: 14px;
    --container-max: 1440px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--navy);
    background: var(--white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: var(--navy);
    text-decoration: none;
}

/* Header — desktop */
.header {
    background: transparent;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.header--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header__wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 0;
    column-gap: 40px;
}

.header .logo {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    gap: 12px;
}

.header__nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    padding: 0;
    border: none;
    align-self: center;
}

.header__cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    padding: 14px 32px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.header__actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__actions .header__cta {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    align-self: unset;
}

.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1.5px solid rgba(13, 43, 69, 0.12);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switcher__toggle:hover {
    border-color: rgba(13, 43, 69, 0.25);
    box-shadow: 0 2px 8px rgba(13, 43, 69, 0.08);
}

.lang-flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(13, 43, 69, 0.08);
    display: block;
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 148px;
    padding: 6px;
    background: var(--white);
    border: 1px solid rgba(13, 43, 69, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(13, 43, 69, 0.12);
    z-index: 300;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.lang-switcher.is-open .lang-switcher__menu {
    display: flex;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--navy);
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: background 0.15s;
}

.lang-switcher__option:hover {
    background: rgba(13, 43, 69, 0.05);
}

.lang-switcher__option.is-active {
    background: rgba(13, 43, 69, 0.07);
}

.header__cta-short {
    display: none;
}

.header__cta-full {
    display: inline;
}

.header .logo .logo__icon {
    width: 22px;
    height: 34px;
    flex-shrink: 0;
}

.header .logo .logo__text {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.06em;
}

.header .nav a {
    flex: none;
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: var(--grey);
    text-align: center;
    white-space: nowrap;
    padding: 0;
    opacity: 1;
    transition: color 0.2s;
}

.header .nav a:hover {
    color: var(--navy);
}

.header .nav a.is-active::after {
    display: none;
}

.feature--mobile-only {
    display: none;
}

.feature--desktop-only {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
}

.logo__icon {
    width: 18px;
    height: 28px;
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--navy);
}

.nav {
    display: flex;
    gap: 48px;
}

.nav a {
    color: var(--grey);
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn--primary:hover {
    background: var(--navy-hover);
    border-color: var(--navy-hover);
    color: var(--white);
    text-decoration: none;
}

.btn--full {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    gap: 10px;
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
}

.btn--outline svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero */
.hero {
    position: relative;
    background: var(--hero-bg);
    padding: 132px 0 260px;
    min-height: 720px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        var(--hero-bg) 0%,
        var(--hero-bg) 30%,
        rgba(242, 242, 242, 0.92) 40%,
        rgba(242, 242, 242, 0.65) 50%,
        rgba(242, 242, 242, 0.3) 62%,
        transparent 75%
    );
}

.hero__visual {
    position: absolute;
    top: 0;
    left: 24%;
    right: 0;
    height: 108%;
    z-index: 0;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    display: block;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 12%,
        black 28%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 12%,
        black 28%
    );
}

.hero__fade {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.hero__fade--left {
    inset: 0;
    background: linear-gradient(
        to right,
        var(--hero-bg) 0%,
        rgba(242, 242, 242, 0.9) 18%,
        rgba(242, 242, 242, 0.55) 35%,
        rgba(242, 242, 242, 0.2) 52%,
        transparent 72%
    );
}

.hero__fade--bottom {
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(
        to top,
        var(--white) 0%,
        rgba(255, 255, 255, 0.85) 22%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 520px;
    padding-top: 40px;
}

.hero__content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 18px;
}

.hero__eyebrow {
    display: none;
}

.hero__subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 32px;
}

.hero__text {
    color: var(--grey);
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 20px;
}

.hero__text:first-of-type {
    color: var(--navy);
    font-weight: 500;
}

.hero__text:last-of-type {
    margin-bottom: 0;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    box-shadow: 0 4px 16px rgba(13, 43, 69, 0.08);
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.hero__badge {
    background: var(--white);
    white-space: nowrap;
}

.hero__badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--navy);
}

/* Features bar */
.features {
    margin-top: -144px;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
    background: transparent;
}

.features__bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 28px 28px var(--radius) var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--grey-light);
    overflow: hidden;
}

.feature {
    padding: 24px 24px 28px;
    border-right: 1px solid var(--grey-light);
}

.feature:last-child {
    border-right: none;
}

.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--icon-bg);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature__icon svg {
    width: 22px;
    height: 22px;
}

.feature h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--navy);
    margin-bottom: 6px;
}

.feature p {
    font-size: 13px;
    line-height: 20px;
    color: var(--grey);
}

.feature__body {
    flex: 1;
    min-width: 0;
}

.feature__chevron {
    display: none;
    flex-shrink: 0;
    color: var(--grey);
    opacity: 0.45;
}

.feature__chevron svg {
    width: 18px;
    height: 18px;
}

/* Specialist */
.specialist {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    padding: 36px 200px 36px 200px;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 220px;
}

.specialist__emblem {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 168px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.92;
}

.specialist__decor {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.95;
}

.specialist__content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.specialist__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}

.specialist__content p {
    font-size: 15px;
    line-height: 24px;
    color: var(--grey);
    margin-bottom: 10px;
}

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

.specialist__note {
    font-size: 14px;
    line-height: 22px;
    color: var(--grey);
    opacity: 0.85;
}

/* When section */
.when {
    padding: 56px 0 72px;
    background: var(--white);
}

.when__grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    align-items: center;
}

.when__text h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--navy);
    margin-bottom: 18px;
}

.when__text p {
    color: var(--grey);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 12px;
}

.when__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.when__badge strong {
    font-weight: 600;
}

.when__badge-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--bronze);
}

.when__icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 16px;
    align-items: start;
}

.when__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.when__icon-img {
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.when__icon-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.when__icon-label {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey);
    max-width: 120px;
}

/* Sections */
.section {
    padding: 72px 0;
    background: var(--white);
}

.section--cream {
    background: var(--off-white);
}

.section--off-white {
    background: var(--off-white);
}

.section__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--navy);
    margin-bottom: 32px;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    border-top: 2px dashed var(--grey-light);
    z-index: 0;
}

.timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline__num {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.timeline__step p {
    font-size: 14px;
    line-height: 20px;
    color: var(--grey);
    max-width: 200px;
    margin: 0 auto;
}

/* Booking */
.section--booking {
    background: var(--cream);
    padding: 72px 0 80px;
}

.booking {
    max-width: 900px;
    margin: 0 auto;
}

.booking__header {
    text-align: center;
    margin-bottom: 36px;
}

.booking__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 12px;
}

.booking__intro {
    color: var(--grey);
    font-size: 16px;
    line-height: 26px;
    max-width: 560px;
    margin: 0 auto;
}

.booking__card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
    padding: 36px 40px 40px;
}

.booking__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
}

.booking__alert svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
}

.booking__alert p {
    margin: 0;
}

.booking__alert--success {
    background: #EDF7F1;
    border: 1px solid #C8E6D4;
    color: #1F5C3A;
}

.booking__alert--success svg {
    color: #2F7A4F;
}

.booking__alert--info {
    background: #F3F7FB;
    border: 1px solid #D5E3EF;
    color: var(--navy);
}

.booking__alert--info svg {
    color: #5E8FB4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--navy);
}

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

.form-label--optional {
    font-weight: 400;
    color: var(--grey);
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.booking__form input,
.booking__form select,
.booking__form textarea {
    padding: 14px 16px;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--off-white);
    color: var(--navy);
    width: 100%;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-textarea {
    resize: vertical;
    min-height: 112px;
    line-height: 1.5;
}

.form-hint {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey);
    text-align: right;
}

.form-hint--limit {
    color: #B45309;
}

.booking__form input::placeholder,
.booking__form textarea::placeholder {
    color: #9CA3AF;
}

.booking__form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.booking__form input:hover,
.booking__form select:hover,
.booking__form textarea:hover {
    border-color: #D1D5DB;
}

.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 43, 69, 0.08);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 28px;
    font-size: 14px;
    line-height: 22px;
    color: var(--grey);
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--navy);
    cursor: pointer;
}

.booking__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    padding-top: 8px;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-badge__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--icon-warm-bg);
    color: var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge__icon svg {
    width: 22px;
    height: 22px;
}

.trust-badge__text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--navy);
    margin-bottom: 4px;
}

.trust-badge__text p {
    font-size: 13px;
    line-height: 20px;
    color: var(--grey);
}

/* Location */
.location {
    background: var(--white);
    padding: 72px 0;
}

.location-card {
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
    padding: 32px;
}

.location-card__main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.location-card__image {
    border-radius: 16px;
    overflow: hidden;
}

.location-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.location-card__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--navy);
    margin-bottom: 16px;
}

.location-card__address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    color: var(--navy);
    margin-bottom: 6px;
}

.location-card__pin {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--navy);
}

.location-card__note {
    font-size: 14px;
    line-height: 22px;
    color: var(--grey);
    margin-bottom: 24px;
}

.location-card__details {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    align-items: stretch;
}

.location-features {
    background: var(--icon-warm-bg);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.location-feature__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-feature__icon svg {
    width: 20px;
    height: 20px;
}

.location-feature__text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--navy);
    margin-bottom: 2px;
}

.location-feature__text p {
    font-size: 13px;
    line-height: 18px;
    color: var(--grey);
}

.location-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--grey-light);
    min-height: 220px;
    background: var(--white);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}

.location-map--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream, #f8f6f2);
}

.location-map__load {
    margin: auto;
}

.hero__visual picture,
.hero__visual picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 43, 69, 0.08);
}

.location-help {
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-help__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--icon-warm-bg);
    color: var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-help__icon svg {
    width: 22px;
    height: 22px;
}

.location-help__text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: var(--navy);
    margin-bottom: 2px;
}

.location-help__text p {
    font-size: 13px;
    line-height: 18px;
    color: var(--grey);
}

/* Disclaimer */
.disclaimer {
    background: var(--off-white);
    padding: 24px 0;
    border-top: 1px solid var(--grey-light);
}

.disclaimer__inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.disclaimer__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--grey);
    margin-top: 2px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 20px;
    color: var(--grey);
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 40px 0 36px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo--footer,
.logo--footer .logo__text,
.logo--footer .logo__icon {
    color: var(--white);
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer__contact,
.footer__email {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.footer__contact:hover,
.footer__email:hover {
    color: var(--white);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 20px;
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: var(--white);
}

.footer__disclaimer {
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 720px;
}

.footer__copy {
    font-size: 13px;
    opacity: 0.6;
}

/* Legal pages */
.header--legal {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
}

.header--legal .header__inner {
    justify-content: space-between;
}

.header__back {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey);
    transition: color 0.2s;
}

.header__back:hover {
    color: var(--navy);
}

.legal {
    padding: 48px 0 72px;
    background: var(--white);
}

.legal__inner {
    max-width: 760px;
}

.legal__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 32px;
}

.legal__content h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--navy);
    margin: 28px 0 12px;
}

.legal__content h2:first-child {
    margin-top: 0;
}

.legal__content p,
.legal__content li {
    font-size: 15px;
    line-height: 26px;
    color: var(--grey);
}

.legal__content p {
    margin-bottom: 14px;
}

.legal__content ul {
    margin: 0 0 14px 20px;
}

.legal__content li {
    margin-bottom: 6px;
}

.legal__content a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal__content a:hover {
    color: var(--navy-hover);
}

.legal__card {
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.legal__dl {
    display: grid;
    gap: 16px;
}

.legal__dl dt {
    font-size: 13px;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 2px;
}

.legal__dl dd {
    font-size: 15px;
    line-height: 24px;
    color: var(--navy);
    margin: 0;
}

.legal__note {
    font-size: 14px;
    font-style: italic;
}

.form-checkbox a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-checkbox a:hover {
    color: var(--navy-hover);
}

/* Responsive */
@media (max-width: 1100px) {
    .when__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .when__icons {
        grid-template-columns: repeat(3, 1fr);
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .features__bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(2) {
        border-right: none;
    }

    .feature:nth-child(1),
    .feature:nth-child(2) {
        border-bottom: 1px solid var(--grey-light);
    }

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

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

    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header — mobile two-row white bar */
    .header {
        background: var(--white);
        border-bottom: 1px solid rgba(13, 43, 69, 0.06);
        box-shadow: none;
    }

    .header__wrap {
        display: grid;
        grid-template-columns: 10px 1fr auto 20px;
        grid-template-areas:
            ". logo actions ."
            "nav nav nav nav";
        padding: 10px 0 0;
        gap: 0;
        column-gap: 16px;
    }

    .header .logo {
        grid-area: logo;
        min-width: 0;
        gap: 7px;
        justify-self: start;
    }

    .header__actions {
        grid-area: actions;
        justify-self: end;
        gap: 8px;
    }

    .header__cta {
        grid-area: unset;
        justify-self: unset;
        padding: 6px 13px;
        font-size: 11px;
        line-height: 15px;
        font-weight: 500;
        border-radius: 999px;
        border-width: 1.5px;
    }

    .lang-switcher__toggle {
        width: 30px;
        height: 30px;
    }

    .lang-flag {
        width: 18px;
        height: 12px;
    }

    .header__cta-full {
        display: none;
    }

    .header__cta-short {
        display: inline;
    }

    .header__nav {
        grid-area: nav;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        margin-top: 8px;
        padding: 0 0 7px;
        border-top: none;
        background: var(--white);
    }

    .header .logo .logo__icon {
        width: 14px;
        height: 22px;
    }

    .header .logo .logo__text {
        font-size: 11px;
        line-height: 15px;
        letter-spacing: 0.07em;
        font-weight: 600;
    }

    .header .nav a {
        position: relative;
        font-size: 10.5px;
        line-height: 14px;
        font-weight: 500;
        color: var(--navy);
        text-align: center;
        white-space: normal;
        padding: 7px 2px 8px;
        opacity: 0.65;
        letter-spacing: 0.01em;
    }

    .header .nav a.is-active {
        opacity: 1;
        font-weight: 600;
    }

    .header .nav a.is-active::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 2px;
        transform: translateX(-50%);
        width: 18px;
        height: 1.5px;
        background: var(--gold);
        border-radius: 1px;
        display: block;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 80px 0 20px;
        background: var(--white);
        overflow: visible;
    }

    .hero::before {
        display: none;
    }

    .hero__visual {
        position: relative;
        left: auto;
        top: auto;
        width: 100vw;
        max-width: 100vw;
        margin: 0 calc(50% - 50vw);
        height: min(52vw, 340px);
        z-index: 0;
    }

    .hero__visual img {
        object-fit: cover;
        object-position: center top;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero__fade--left {
        display: none;
    }

    .hero__fade--bottom {
        display: block;
        height: 45%;
        background: linear-gradient(
            to top,
            var(--white) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            transparent 100%
        );
    }

    .hero .container {
        padding-top: 0;
    }

    .hero__content {
        max-width: none;
        padding: 24px 0 8px;
    }

    .hero__eyebrow {
        display: block;
        font-size: 12px;
        line-height: 18px;
        font-weight: 500;
        color: var(--gold);
        letter-spacing: 0.02em;
        margin-bottom: 10px;
    }

    .hero__content h1 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero__subtitle {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 18px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
    }

    .hero__text {
        font-size: 14px;
        line-height: 24px;
        color: var(--grey);
    }

    .hero__text:first-of-type {
        color: var(--grey);
        font-weight: 400;
    }

    .hero__actions {
        display: none;
    }

    /* Features card */
    .features {
        margin-top: 0;
        padding-bottom: 24px;
        background: var(--white);
    }

    .features .container {
        padding: 0 20px;
    }

    .features__bar {
        grid-template-columns: 1fr;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(13, 43, 69, 0.07);
        border: 1px solid rgba(13, 43, 69, 0.06);
    }

    .feature--mobile-only {
        display: flex;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 16px;
        border-right: none;
        border-bottom: 1px solid var(--grey-light);
    }

    .feature:last-child {
        border-bottom: none;
    }

    .feature.feature--desktop-only {
        display: none;
    }

    .specialist {
        flex-direction: column;
        margin-top: 16px;
        padding: 24px 20px 28px;
        min-height: 0;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(13, 43, 69, 0.07);
        border: 1px solid rgba(13, 43, 69, 0.06);
    }

    .specialist__emblem {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 96px;
        margin: 0 auto 16px;
        opacity: 0.88;
    }

    .specialist__decor {
        display: none;
    }

    .specialist__title {
        font-size: 1.375rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .specialist__content p {
        font-size: 14px;
        line-height: 24px;
    }

    .feature__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
        flex-shrink: 0;
        background: var(--icon-warm-bg);
        color: var(--bronze);
    }

    .feature__icon svg {
        width: 20px;
        height: 20px;
    }

    .feature__body h3,
    .feature h3 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 2px;
        font-weight: 600;
    }

    .feature__body p,
    .feature p {
        font-size: 12px;
        line-height: 17px;
    }

    .when {
        padding: 40px 0 48px;
    }

    .when__text h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .when__text p {
        font-size: 14px;
        line-height: 24px;
    }

    .when__badge {
        width: 100%;
        margin-top: 20px;
        padding: 16px 18px;
        border-radius: 14px;
        background: var(--icon-warm-bg);
        border: none;
        font-size: 14px;
        line-height: 22px;
    }

    .when__icons {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px 4px;
        max-width: none;
        margin-top: 28px;
    }

    .when__icon-img {
        width: 52px;
        height: 52px;
    }

    .when__icon-label {
        font-size: 10px;
        line-height: 14px;
        max-width: none;
    }

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

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

    .booking__card {
        padding: 28px 24px 32px;
    }

    .booking__trust {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .location-card__main {
        grid-template-columns: 1fr;
    }

    .location-card__image img {
        min-height: 260px;
    }

    .location-card__details {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 200px;
    }

    .location-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* SEO & conversion */
.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--color-primary, #1f4b43);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(15, 35, 32, 0.22);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    color: #fff;
}

.sticky-cta__price {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    border-radius: 20px;
    background: rgba(31, 75, 67, 0.06);
    border: 1px solid rgba(31, 75, 67, 0.08);
}

.section-cta__text strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.section-cta__text p {
    margin: 0;
    color: var(--color-muted, #5f6b68);
}

.contact-strip {
    background: #f7f4ef;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.contact-strip__label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted, #5f6b68);
    margin-bottom: 4px;
}

.contact-strip__item a {
    color: inherit;
    text-decoration: none;
}

.faq-block {
    padding: 80px 0;
}

.faq-block__grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
    gap: 56px;
    align-items: start;
}

.faq-block__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
}

.faq-block__subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey);
    max-width: 320px;
}

.faq-block__decor {
    position: relative;
    width: 130px;
    height: 110px;
    margin-top: 48px;
}

.faq-decor__square {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 20px;
}

.faq-decor__square--1 {
    top: 0;
    left: 0;
    background: rgba(196, 165, 116, 0.28);
}

.faq-decor__square--2 {
    top: 28px;
    left: 42px;
    background: rgba(196, 165, 116, 0.48);
}

.faq-decor__dots {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 36px;
    background-image: radial-gradient(circle, rgba(13, 43, 69, 0.18) 2px, transparent 2px);
    background-size: 12px 12px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(13, 43, 69, 0.06);
    box-shadow: 0 2px 12px rgba(13, 43, 69, 0.04);
    overflow: hidden;
}

.faq-item__summary {
    display: grid;
    grid-template-columns: auto 1px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--icon-warm-bg);
    color: var(--navy);
    flex-shrink: 0;
}

.faq-item__icon svg {
    width: 22px;
    height: 22px;
}

.faq-item__divider {
    width: 1px;
    height: 36px;
    background: rgba(13, 43, 69, 0.1);
}

.faq-item__question {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--navy);
    padding-right: 8px;
}

.faq-item__toggle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: var(--navy);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-item__toggle {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 22px 20px calc(22px + 48px + 18px + 1px + 18px);
}

.faq-item__answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey);
}

@media (max-width: 900px) {
    .faq-block__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq-block__decor {
        margin-top: 28px;
    }

    .faq-item__answer {
        padding: 0 22px 20px 22px;
    }
}

.section--booking-compact {
    padding-top: 56px;
    padding-bottom: 56px;
}

.booking__intro {
    margin-top: 8px;
    color: var(--color-muted, #5f6b68);
}

.section--trust {
    padding: 56px 0;
}

.booking__trust--standalone {
    margin-top: 0;
}

.trust-badge--price {
    background: rgba(31, 75, 67, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 16px;
}

.footer__links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
}

.seo-page {
    padding: 40px 0 80px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-muted, #5f6b68);
    margin-bottom: 24px;
}

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

.seo-page__header h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.seo-page__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-muted, #5f6b68);
    max-width: 760px;
}

.seo-page__section {
    margin-top: 40px;
    max-width: 760px;
}

.seo-page__section h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.seo-page__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.seo-page__links a {
    color: var(--color-primary, #1f4b43);
    text-decoration: none;
}

.seo-page__booking {
    margin-top: 56px;
    padding-top: 0;
}

@media (max-width: 768px) {
    .sticky-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
        justify-content: center;
    }

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

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

.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    padding: 0 20px 20px;
    pointer-events: none;
}

.cookie-notice__inner {
    pointer-events: auto;
    max-width: 680px;
    margin: 0 auto;
    padding: 14px 16px 14px 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.cookie-notice__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--grey);
}

.cookie-notice__text a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.cookie-notice__text a:hover {
    color: var(--navy-hover);
}

.cookie-notice__btn {
    flex-shrink: 0;
    min-width: 96px;
}

@media (max-width: 640px) {
    .cookie-notice {
        padding: 0 16px 16px;
    }

    .cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .cookie-notice__btn {
        width: 100%;
        min-width: 0;
    }
}
