:root {
    --bg: #fff8ef;
    --bg-soft: #f6efe3;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: #ffffff;
    --surface-dark: #1a2540;
    --text: #17233a;
    --muted: #5f6b82;
    --line: rgba(23, 35, 58, 0.11);
    --brand: #ff7142;
    --brand-deep: #ea4b25;
    --brand-soft: #fff0e8;
    --accent: #15a6a1;
    --accent-deep: #0f7f80;
    --navy: #1d2e52;
    --shadow-lg: 0 24px 56px rgba(19, 30, 53, 0.11);
    --shadow-md: 0 14px 30px rgba(19, 30, 53, 0.085);
    --shadow-sm: 0 8px 18px rgba(19, 30, 53, 0.065);
    --radius-xl: 26px;
    --radius-lg: 21px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1160px;
}

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

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 92px;
}

body {
    margin: 0;
    position: relative;
    overflow-x: hidden;
    font-family: "Commissioner", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 113, 66, 0.16), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(21, 166, 161, 0.12), transparent 22%),
        radial-gradient(circle at 82% 88%, rgba(29, 46, 82, 0.07), transparent 26%),
        linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
    filter: blur(12px);
}

body::before {
    top: -100px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: rgba(255, 179, 78, 0.18);
}

body::after {
    bottom: 6%;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(21, 166, 161, 0.12);
}

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

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

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

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

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

.site-header {
    position: sticky;
    top: 8px;
    z-index: 40;
    padding-top: 8px;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    padding: 4px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(23, 35, 58, 0.08);
    box-shadow:
        0 10px 20px rgba(23, 35, 58, 0.08),
        0 0 0 4px rgba(255, 113, 66, 0.08);
}

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

.brand-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-text strong {
    font-size: 0.95rem;
}

.brand-text span {
    color: var(--muted);
    font-size: 0.85rem;
    max-width: 22ch;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-channel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(23, 35, 58, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: #229ed9;
    box-shadow: 0 10px 18px rgba(19, 30, 53, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-channel-link svg {
    width: 18px;
    height: 18px;
}

.header-channel-link:hover {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 14px 24px rgba(19, 30, 53, 0.12);
}

.main-nav a:not(.button) {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:not(.button):hover,
.footer-nav a:hover,
.breadcrumbs a:hover {
    color: var(--navy);
    background: rgba(29, 46, 82, 0.06);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand) 0%, #ff8b47 52%, #ffbb5c 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 24px rgba(255, 113, 66, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 113, 66, 0.22);
    filter: saturate(1.05);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy);
    border-color: rgba(29, 46, 82, 0.12);
    box-shadow: 0 8px 18px rgba(29, 46, 82, 0.08);
}

.button-sm {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.84rem;
}

.button-block {
    width: 100%;
}

.section {
    padding: 56px 0;
}

.alt-section {
    position: relative;
}

.alt-section::before {
    content: "";
    position: absolute;
    inset: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.26));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    z-index: -1;
}

.hero-section {
    position: relative;
    padding: 24px 0 28px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1160px, calc(100% - 44px));
    height: calc(100% - 22px);
    border-radius: 30px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.54)),
        radial-gradient(circle at top right, rgba(21, 166, 161, 0.1), transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-lg);
    z-index: -1;
}

.hero-grid,
.booking-grid,
.comparison-grid,
.location-grid,
.steps-grid,
.contacts-grid,
.article-layout,
.link-logic-grid {
    display: grid;
    gap: 18px;
}

.hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    min-height: clamp(420px, 62vh, 610px);
    padding: 16px 0;
}

.hero-copy,
.section-heading,
.section-copy {
    max-width: 760px;
}

.hero-copy {
    display: grid;
    justify-items: start;
    align-content: center;
    padding-left: clamp(6px, 1vw, 16px);
    max-width: 100%;
}

.section-heading {
    margin: 0 auto 22px;
    text-align: center;
}

.section-heading.left,
.section-copy {
    margin-left: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 113, 66, 0.1);
    color: var(--brand-deep);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 7px 13px;
    background: linear-gradient(135deg, rgba(255, 113, 66, 0.14), rgba(255, 255, 255, 0.52));
    box-shadow: inset 0 0 0 1px rgba(255, 113, 66, 0.08);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

h1 {
    max-width: 12.5ch;
    font-size: clamp(2.15rem, 4.2vw, 3.6rem);
}

h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    margin-bottom: 10px;
}

h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.42rem);
    margin-bottom: 7px;
}

p,
li,
dd,
dt,
span,
label {
    line-height: 1.56;
}

.lead,
.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.97rem;
}

.lead {
    max-width: 54ch;
    font-size: 1rem;
}

.hero-copy > h1,
.hero-copy > .lead,
.hero-copy > .hero-actions {
    width: 100%;
}

.hero-title {
    max-width: none;
    font-size: clamp(1.95rem, 3.7vw, 3.15rem);
    line-height: 1;
    text-wrap: balance;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.article-tag,
.article-status {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(23, 35, 58, 0.08);
    color: var(--navy);
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(23, 35, 58, 0.04);
}

.article-tag {
    display: inline-flex;
    align-self: start;
    width: fit-content;
    max-width: 100%;
    padding: 5px 9px;
    font-size: 0.71rem;
    line-height: 1.15;
    margin-bottom: 2px;
}

.hero-plus-block {
    width: 100%;
    grid-column: 1 / 2;
    align-self: start;
    margin-top: 0;
    padding: 18px 18px 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at top right, rgba(255, 179, 78, 0.12), transparent 32%);
}

.hero-plus-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    padding: 0 2px;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.34rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-plus-title::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
    box-shadow: 0 4px 12px rgba(21, 166, 161, 0.18);
}

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

.hero-plus-item {
    position: relative;
    min-height: 100%;
    padding: 14px 14px 14px 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 35, 58, 0.08);
    box-shadow: 0 8px 18px rgba(23, 35, 58, 0.04);
}

.hero-plus-item::before {
    content: "+";
    position: absolute;
    top: 14px;
    left: 16px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(21, 166, 161, 0.12);
    color: var(--accent-deep);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.hero-plus-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent);
}

.feature-card,
.amenity-card,
.comparison-item,
.step-card,
.review-card,
.article-card,
.price-card,
.contacts-card,
.hero-panel,
.booking-form,
.prose-card,
.article-content,
.article-sidebar .card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.amenity-card:hover,
.comparison-item:hover,
.step-card:hover,
.review-card:hover,
.article-card:hover,
.price-card:hover,
.contacts-card:hover,
.hero-panel:hover,
.booking-form:hover,
.article-sidebar .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(19, 30, 53, 0.09);
}

.hero-panel {
    display: grid;
    gap: 9px;
    padding: 14px 12px 14px;
    background:
        radial-gradient(circle at top right, rgba(255, 179, 78, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(21, 166, 161, 0.12), transparent 24%),
        linear-gradient(180deg, #26385f 0%, #1a2743 62%, #16213a 100%);
    color: #f6f8fd;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 34px rgba(16, 24, 42, 0.16);
}

.panel-ribbon {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.panel-placeholder,
.panel-placeholder-lg,
.panel-placeholder-map {
    display: grid;
    place-items: center;
    min-height: 204px;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 113, 66, 0.18), rgba(21, 166, 161, 0.18)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.24),
            rgba(255, 255, 255, 0.24) 18px,
            rgba(255, 255, 255, 0.07) 18px,
            rgba(255, 255, 255, 0.07) 36px
        );
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.panel-placeholder-lg {
    min-height: 280px;
}

.panel-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 204px;
    padding: 3px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 113, 66, 0.18), rgba(21, 166, 161, 0.18)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.24),
            rgba(255, 255, 255, 0.24) 18px,
            rgba(255, 255, 255, 0.07) 18px,
            rgba(255, 255, 255, 0.07) 36px
        );
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 14px 26px rgba(7, 13, 26, 0.22);
}

.panel-media-lg {
    min-height: 280px;
}

.panel-media img {
    position: absolute;
    inset: 3px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14),
        0 10px 24px rgba(7, 13, 26, 0.16);
}

.panel-media span {
    position: absolute;
    inset: 3px;
    display: grid;
    place-items: center;
    padding: 16px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    background: linear-gradient(180deg, rgba(13, 21, 40, 0.12), rgba(13, 21, 40, 0.32));
    transition: opacity 0.18s ease;
}

.panel-media:not(.is-fallback) span {
    opacity: 0;
    pointer-events: none;
}

.panel-placeholder-secondary {
    min-height: 138px;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 14px 24px rgba(7, 13, 26, 0.18);
    font-size: 0.92rem;
}

.panel-placeholder-secondary::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.panel-placeholder-map {
    min-height: 100%;
}

.panel-meta {
    display: grid;
    gap: 10px;
}

.panel-meta > div {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel-meta strong {
    display: block;
    line-height: 1.3;
}

.meta-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-note {
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    line-height: 1.55;
}

.panel-note a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.42);
    text-underline-offset: 3px;
}

.panel-note a:hover {
    text-decoration-color: rgba(255, 255, 255, 0.82);
}

.booking-grid,
.contacts-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

.booking-grid-single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.booking-points {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.booking-points li {
    position: relative;
    padding: 11px 13px 11px 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(23, 35, 58, 0.08);
    color: var(--navy);
    box-shadow: 0 8px 18px rgba(23, 35, 58, 0.04);
}

.booking-points li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 8px 16px rgba(21, 166, 161, 0.22);
}

.booking-points li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
}

.booking-form {
    display: grid;
    gap: 12px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
        radial-gradient(circle at top right, rgba(255, 179, 78, 0.1), transparent 28%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 18px 34px rgba(19, 30, 53, 0.08);
}

.booking-form-disabled {
    isolation: isolate;
}

.booking-form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), #ffba58, var(--accent));
}

.booking-form-disabled > *:not(.booking-overlay) {
    pointer-events: none;
    user-select: none;
}

.booking-form-disabled .booking-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    padding: 22px;
    border-radius: inherit;
    background: rgba(248, 242, 233, 0.72);
    backdrop-filter: blur(6px);
}

.booking-form-disabled .booking-overlay__content {
    display: grid;
    gap: 10px;
    width: min(100%, 360px);
    padding: 22px 20px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 35, 58, 0.1);
    box-shadow: 0 18px 34px rgba(19, 30, 53, 0.14);
}

.booking-form-disabled .booking-overlay__content strong {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 0.98;
}

.booking-form-disabled .booking-overlay__content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.booking-form-disabled .booking-overlay__content .button {
    width: 100%;
    min-height: 44px;
}

.booking-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.87rem;
}

.booking-form label > span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(29, 46, 82, 0.72);
}

.field-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.field-badge {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1;
}

.field-badge.is-required {
    background: rgba(255, 113, 66, 0.14);
    color: var(--brand-deep);
}

.field-badge.is-optional {
    background: rgba(21, 166, 161, 0.14);
    color: var(--accent-deep);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(23, 35, 58, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px 14px;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form input,
.booking-form select {
    min-height: 46px;
}

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

.booking-form ::placeholder {
    color: rgba(95, 107, 130, 0.82);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: rgba(21, 166, 161, 0.55);
    box-shadow: 0 0 0 4px rgba(21, 166, 161, 0.12);
    background: #fff;
}

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

.form-grid.form-grid-contacts {
    align-items: end;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.form-status.is-success {
    color: #246849;
}

.booking-form .button {
    margin-top: 4px;
    min-height: 48px;
}

.booking-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.booking-note a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(29, 46, 82, 0.28);
    text-underline-offset: 2px;
}

.booking-note-accent {
    padding: 11px 13px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 113, 66, 0.1), rgba(255, 186, 88, 0.08));
    border: 1px solid rgba(255, 113, 66, 0.12);
    color: var(--brand-deep);
    font-weight: 600;
}

.features-grid,
.amenities-grid,
.reviews-grid,
.articles-grid,
.article-list-grid {
    display: grid;
    gap: 14px;
}

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

.amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.reviews-grid,
.articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.amenity-card,
.comparison-item,
.step-card,
.review-card,
.article-card {
    padding: 17px;
}

.feature-card,
.amenity-card,
.comparison-item {
    display: grid;
    gap: 9px;
    align-content: start;
}

.feature-card p,
.amenity-card p,
.comparison-item p {
    margin: 0;
    color: var(--muted);
}

.amenity-card {
    background:
        radial-gradient(circle at top right, rgba(21, 166, 161, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.84));
}

.amenity-card h3 {
    position: relative;
    padding-left: 18px;
}

.amenity-card h3::before {
    content: "";
    position: absolute;
    top: 0.44em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 6px 14px rgba(21, 166, 161, 0.18);
}

.feature-card::after,
.amenity-card::after,
.comparison-item::after,
.step-card::after,
.review-card::after,
.article-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 0 0 999px 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.comparison-grid > .section-heading,
.steps-grid > .section-heading {
    grid-column: 1 / -1;
}

.comparison-list,
.steps-list {
    display: grid;
    gap: 14px;
}

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

.steps-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-soft), #fff7ef);
    color: var(--brand-deep);
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 113, 66, 0.12);
}

.price-card {
    padding: 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 179, 78, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 255, 0.92));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.gallery-card {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 100%;
    padding: 12px;
}

.gallery-card-button {
    width: 100%;
    border: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

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

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

.gallery-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    border: 1px solid rgba(23, 35, 58, 0.08);
    background: linear-gradient(135deg, rgba(255, 113, 66, 0.12), rgba(21, 166, 161, 0.16));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        0 10px 22px rgba(19, 30, 53, 0.08);
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-card-button:hover .gallery-card-media img {
    transform: scale(1.03);
}

.gallery-card-media.is-focus-right img {
    object-position: 84% center;
}

.gallery-card-copy {
    display: grid;
    gap: 6px;
    padding: 0 2px 2px;
}

.gallery-card-copy strong {
    color: var(--navy);
    font-size: 1.02rem;
}

.gallery-card-copy span,
.gallery-card-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.gallery-card-placeholder .panel-placeholder {
    min-height: 240px;
    border-style: solid;
    border-color: rgba(23, 35, 58, 0.08);
    color: rgba(255, 255, 255, 0.96);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.lightbox:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(11, 18, 34, 0.74);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    padding: 16px;
    border-radius: 24px;
    background: rgba(17, 26, 47, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 56px rgba(5, 10, 22, 0.36);
    color: #f7f9ff;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.lightbox:target .lightbox-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-figure {
    margin: 0;
    display: grid;
    gap: 14px;
}

.lightbox-figure img {
    width: 100%;
    max-height: min(74vh, 860px);
    border-radius: 18px;
    object-fit: contain;
    background: rgba(8, 14, 27, 0.72);
}

.lightbox-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.04rem;
}

.lightbox-copy p {
    margin: 0;
    color: rgba(247, 249, 255, 0.72);
}

body:has(.lightbox:target) {
    overflow: hidden;
}

.location-grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: stretch;
}

.location-list,
.logic-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.location-list li,
.logic-list li {
    position: relative;
    margin-bottom: 10px;
    padding: 11px 13px 11px 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 35, 58, 0.08);
    color: var(--muted);
}

.location-list li::before,
.logic-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 8px 16px rgba(21, 166, 161, 0.16);
}

.map-card {
    padding: 14px;
    background: linear-gradient(180deg, rgba(29, 46, 82, 0.95), rgba(23, 35, 58, 0.96));
    color: #fff;
}

.stars {
    color: var(--brand);
    letter-spacing: 0.16em;
    font-size: 0.9rem;
}

.review-card strong {
    display: inline-block;
    margin-top: 10px;
    color: var(--navy);
}

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

.faq-item {
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.82);
}

.faq-question {
    position: relative;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 18px 58px 18px 20px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.26rem;
    color: var(--text);
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 113, 66, 0.1);
    color: var(--brand-deep);
    font-size: 1.02rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item.is-open .faq-question::after {
    content: "−";
    background: rgba(21, 166, 161, 0.12);
    color: var(--accent-deep);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.26s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    max-height: 420px;
}

.article-card h3,
.article-list-grid h2 {
    color: var(--navy);
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    min-height: 100%;
}

.article-card h2,
.article-card h3,
.article-card p {
    margin: 0;
}

.article-card p {
    color: var(--muted);
}

.article-card-link {
    color: inherit;
    text-decoration: none;
}

.article-card-link:hover {
    color: var(--brand-deep);
}

.article-status {
    display: inline-flex;
    margin-top: auto;
    align-self: flex-start;
}

.section-actions {
    justify-content: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.88rem;
}

.breadcrumbs a,
.breadcrumbs span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 35, 58, 0.08);
}

.page-hero {
    padding-top: 30px;
    padding-bottom: 8px;
}

.page-hero .section-heading {
    margin-bottom: 0;
}

.page-hero .section-heading.left:not(.articles-hero-copy) {
    max-width: none;
    width: 100%;
}

.page-hero h1 {
    max-width: 14ch;
    font-size: clamp(1.95rem, 3.6vw, 3.1rem);
}

.page-hero .section-heading p:not(.eyebrow) {
    max-width: 56ch;
}

.page-hero .section-heading.left:not(.articles-hero-copy) h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.95rem, 3.2vw, 3.05rem);
    text-wrap: balance;
}

.page-hero .section-heading.left:not(.articles-hero-copy) p:not(.eyebrow) {
    max-width: none;
    width: 100%;
}

.articles-hero-copy {
    max-width: 980px;
}

.articles-hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    text-wrap: balance;
}

.articles-hero-copy p:not(.eyebrow) {
    max-width: 72ch;
}

.narrow {
    max-width: 680px;
}

.left {
    margin-left: 0;
}

.contacts-card {
    padding: 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 179, 78, 0.18), transparent 28%),
        linear-gradient(180deg, #1f3057 0%, #16233a 100%);
    color: #f5f8ff;
    border-color: rgba(255, 255, 255, 0.14);
}

.contacts-list {
    display: grid;
    gap: 14px;
    margin: 0 0 18px;
}

.contacts-list div {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contacts-list dt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
}

.contacts-list dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.site-footer {
    margin-top: 12px;
    padding: 24px 0;
    background: linear-gradient(180deg, rgba(23, 35, 58, 0.96), rgba(18, 29, 48, 0.98));
    color: #f4f7ff;
}

.footer-inner {
    min-height: auto;
}

.footer-inner p {
    margin: 6px 0 0;
    color: rgba(244, 247, 255, 0.72);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(244, 247, 255, 0.82);
}

.article-layout {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
}

.article-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.article-content h2 {
    margin-top: 20px;
}

.article-checklist {
    margin-bottom: 18px;
}

.article-sidebar {
    display: grid;
    gap: 16px;
}

.article-sidebar .card {
    padding: 18px;
}

.article-inline-booking {
    margin: 20px 0 6px;
    padding: 14px 16px;
    gap: 12px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
}

.article-inline-booking-copy {
    display: grid;
    gap: 6px;
    align-content: start;
}

.article-inline-booking-copy h2,
.article-inline-booking-copy p {
    margin: 0;
}

.article-inline-booking-copy h2 {
    font-size: clamp(1.38rem, 2vw, 1.9rem);
    line-height: 1;
}

.article-inline-booking-copy p:not(.eyebrow) {
    font-size: 0.88rem;
}

.article-inline-booking form {
    display: grid;
    gap: 10px;
}

.article-inline-booking .eyebrow {
    justify-self: start;
    margin-bottom: 6px;
    padding: 5px 10px;
    font-size: 0.65rem;
}

.article-inline-booking label {
    gap: 5px;
    font-size: 0.82rem;
}

.article-inline-booking label > span {
    font-size: 0.68rem;
}

.article-inline-booking input,
.article-inline-booking select {
    min-height: 42px;
    padding: 10px 12px;
}

.article-inline-booking textarea {
    min-height: 88px;
    padding: 10px 12px;
}

.article-inline-booking .form-grid {
    gap: 10px;
}

.article-inline-booking .booking-note-accent {
    padding: 9px 11px;
    font-size: 0.79rem;
}

.article-inline-booking .booking-note {
    font-size: 0.78rem;
}

.article-inline-booking .button {
    min-height: 44px;
    margin-top: 2px;
    font-size: 0.9rem;
}

.article-facts-list {
    margin-bottom: 0;
}

.article-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.prose-card {
    max-width: 780px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.link-logic-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1140px) {
    .hero-grid,
    .booking-grid,
    .comparison-grid,
    .location-grid,
    .steps-grid,
    .contacts-grid,
    .article-layout,
    .link-logic-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

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

    .amenities-grid,
    .reviews-grid,
    .articles-grid,
    .article-list-grid,
    .comparison-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card-placeholder .panel-placeholder {
        min-height: 220px;
    }
}

@media (max-width: 860px) {
    .site-header {
        top: 6px;
        padding-top: 6px;
    }

    .header-inner {
        min-height: 64px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.94);
        border-radius: 20px;
        background: #fffaf4;
        box-shadow: 0 20px 34px rgba(19, 30, 53, 0.14);
        backdrop-filter: none;
    }

    .header-channel-link {
        order: 2;
    }

    .nav-toggle {
        order: 3;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a:not(.button),
    .main-nav .button {
        width: 100%;
    }

    .features-grid,
    .amenities-grid,
    .reviews-grid,
    .articles-grid,
    .article-list-grid,
    .comparison-list {
        grid-template-columns: 1fr;
    }

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

    .gallery-card--wide {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    body {
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 179, 78, 0.16), transparent 30%),
            linear-gradient(180deg, #fffaf3 0%, #f6efe4 100%);
    }

    body::before,
    body::after {
        display: none;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 36px 0;
    }

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

    .page-hero {
        padding-top: 20px;
        padding-bottom: 4px;
    }

    .hero-section {
        padding: 14px 0 20px;
    }

    .hero-copy {
        padding: 14px 14px 0;
        padding-left: 14px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
            radial-gradient(circle at top right, rgba(255, 179, 78, 0.08), transparent 34%);
        border: 1px solid rgba(255, 255, 255, 0.84);
        box-shadow: 0 14px 28px rgba(19, 30, 53, 0.06);
    }

    .hero-section::before,
    .alt-section::before {
        display: none;
    }

    .hero-grid,
    .booking-grid,
    .comparison-grid,
    .location-grid,
    .contacts-grid,
    .article-layout,
    .link-logic-grid {
        gap: 16px;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        padding: 6px 11px;
    }

    .hero-copy .eyebrow {
        margin-top: 8px;
        margin-bottom: 12px;
    }

    h1 {
        max-width: none;
        font-size: clamp(1.72rem, 7.9vw, 2.18rem);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(1.42rem, 6.8vw, 1.84rem);
    }

    .page-hero h1 {
        max-width: none;
        font-size: clamp(1.66rem, 7.5vw, 2.04rem);
    }

    .hero-title {
        font-size: clamp(1.68rem, 7.5vw, 2rem);
        line-height: 0.97;
        text-wrap: pretty;
    }

    .articles-hero-copy h1 {
        font-size: clamp(1.64rem, 7.4vw, 1.98rem);
        line-height: 0.98;
    }

    .lead,
    .section-heading p:not(.eyebrow),
    .section-copy p:not(.eyebrow) {
        font-size: 0.91rem;
    }

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

    .hero-actions,
    .section-actions,
    .footer-nav,
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-plus-block {
        padding: 15px 15px 14px;
    }

    .hero-plus-title {
        gap: 10px;
        margin-bottom: 12px;
        padding: 0 1px;
        font-size: 1.18rem;
    }

    .hero-plus-grid {
        gap: 8px;
    }

    .hero-plus-item {
        padding: 12px 10px 12px 40px;
        border-radius: 14px;
    }

    .hero-plus-item::before {
        top: 12px;
        left: 12px;
        width: 20px;
        height: 20px;
        font-size: 0.92rem;
    }

    .hero-plus-item p {
        font-size: 0.75rem;
    }

    .header-inner {
        min-height: 60px;
        gap: 10px;
        padding: 10px 12px;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        padding: 4px;
    }

    .header-channel-link {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .brand-text span {
        font-size: 0.8rem;
        max-width: 16ch;
    }

    .button,
    .button-secondary {
        width: 100%;
    }

    .hero-panel,
    .booking-form,
    .price-card,
    .contacts-card,
    .article-content,
    .prose-card {
        padding: 16px;
    }

    .hero-panel {
        margin-top: 2px;
    }

    .hero-panel {
        gap: 9px;
        padding: 13px 11px;
    }

    .panel-placeholder-lg {
        min-height: 232px;
    }

    .panel-media-lg {
        min-height: 232px;
    }

    .panel-placeholder-secondary {
        min-height: 118px;
    }

    .feature-card,
    .amenity-card,
    .comparison-item,
    .review-card,
    .article-card {
        padding: 15px;
    }

    .booking-points li,
    .location-list li,
    .logic-list li {
        padding: 10px 12px 10px 38px;
    }

    .booking-points li::before,
    .location-list li::before,
    .logic-list li::before {
        left: 14px;
    }

    .booking-points li::after {
        left: 19px;
    }

    .booking-form {
        gap: 10px;
    }

    .booking-form input,
    .booking-form select {
        min-height: 44px;
    }

    .booking-form textarea {
        min-height: 104px;
    }

    .gallery-card {
        padding: 10px;
        gap: 10px;
    }

    .gallery-card-media,
    .gallery-card-placeholder .panel-placeholder {
        min-height: 0;
        aspect-ratio: 16 / 11;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-dialog {
        padding: 12px;
        border-radius: 20px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .article-list-grid h2 {
        font-size: clamp(1.32rem, 6.2vw, 1.64rem);
        line-height: 0.99;
    }

    .article-card {
        gap: 8px;
    }

    .article-inline-booking {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding: 16px;
    }

    .faq-question {
        padding: 15px 46px 15px 15px;
        font-size: 1rem;
    }

    .faq-question::after {
        right: 15px;
        width: 26px;
        height: 26px;
    }

    .faq-answer p {
        padding: 0 15px 15px;
    }

    .faq-item.is-open .faq-answer {
        max-height: 760px;
    }

    .booking-note {
        font-size: 0.81rem;
    }

    .article-tag {
        font-size: 0.68rem;
        padding: 5px 8px;
    }

    .breadcrumbs {
        gap: 7px;
        margin-bottom: 16px;
        font-size: 0.84rem;
    }

    .breadcrumbs a,
    .breadcrumbs span {
        padding: 5px 9px;
    }
}

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

    .section {
        padding: 32px 0;
    }

    .page-hero {
        padding-top: 18px;
    }

    .header-inner {
        min-height: 58px;
        gap: 8px;
        padding: 9px 10px;
    }

    .brand {
        gap: 8px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .header-channel-link {
        width: 36px;
        height: 36px;
    }

    .brand-text strong {
        font-size: 0.88rem;
    }

    .brand-text span {
        display: none;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: clamp(1.56rem, 8vw, 1.86rem);
    }

    .page-hero h1,
    .articles-hero-copy h1 {
        font-size: clamp(1.54rem, 7.8vw, 1.88rem);
    }

    .button {
        min-height: 44px;
        font-size: 0.92rem;
    }

    .hero-panel,
    .booking-form,
    .contacts-card,
    .article-content,
    .prose-card {
        padding: 14px;
    }

    .hero-panel {
        padding: 12px 10px;
    }

    .panel-media-lg {
        min-height: 216px;
    }

    .gallery-card-copy strong {
        font-size: 0.96rem;
    }

    .gallery-card-copy span,
    .gallery-card-copy p {
        font-size: 0.84rem;
    }

    .footer-nav {
        gap: 10px;
    }
}
