:root {
  --paper: #f3f0e8;
  --paper-2: #faf8f3;
  --ink: #13221d;
  --muted: #5f6863;
  --pine: #17332a;
  --pine-deep: #0d221b;
  --moss: #788a72;
  --accent: #c98755;
  --accent-bright: #e3a66c;
  --line: rgba(19, 34, 29, .16);
  --line-light: rgba(255, 255, 255, .18);
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --wrap: min(1380px, calc(100vw - 96px));
  --header: 86px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --shadow: 0 30px 90px rgba(10, 28, 22, .16);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 16px); overflow-x: clip; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.65 var(--sans); overflow-x: clip; }
body.is-locked { overflow: hidden; touch-action: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 18px; color: #fff; background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 4px; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header); color: #fff; border-bottom: 1px solid rgba(255,255,255,.16); transition: color .3s, background .3s, border-color .3s; }
.site-header.is-scrolled, body.is-inner .site-header { color: var(--ink); background: rgba(243,240,232,.94); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr); gap: 36px; align-items: center; }
.brand { width: fit-content; display: inline-flex; align-items: center; gap: 13px; }
.brand__mark { width: 46px; height: 46px; flex: 0 0 auto; object-fit: contain; }
.site-header.is-scrolled .brand__mark, body.is-inner .site-header .brand__mark, .legal-header .brand__mark { filter: invert(1); }
.brand__text { display: grid; line-height: 1; }
.brand__text b { font: 600 19px/1 var(--serif); letter-spacing: .01em; }
.brand__text small { margin-top: 7px; font-size: 8px; letter-spacing: .25em; text-transform: uppercase; opacity: .68; }
.desktop-nav { display: flex; gap: clamp(20px, 2.3vw, 36px); align-items: center; }
.desktop-nav a, .header-phone { position: relative; white-space: nowrap; font-size: 12px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.site-header__actions .button { min-height: 44px; padding-inline: 18px; }
.site-header:not(.is-scrolled) .site-header__actions .button { color: #fff; border-color: rgba(255,255,255,.58); background: transparent; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 13px; border: 1px solid currentColor; background: transparent; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: var(--header) 0 auto; max-height: calc(100svh - var(--header)); padding: 24px max(24px, calc((100vw - var(--wrap)) / 2)); overflow-y: auto; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font: 500 29px/1.15 var(--serif); }
.mobile-menu nav small { align-self: center; font: 700 8px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.mobile-menu > a { display: block; margin: 20px 0; font-weight: 700; }

/* Controls */
.button { min-height: 52px; display: inline-flex; justify-content: center; align-items: center; padding: 0 24px; border: 1px solid var(--ink); border-radius: var(--radius); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s; }
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button--dark { color: #fff; background: var(--ink); }
.button--light { color: var(--ink); border-color: #fff; background: #fff; }
.button--accent { color: var(--ink); border-color: var(--accent-bright); background: var(--accent-bright); }
.button--wide { width: 100%; }
.button--small { min-height: 44px; padding-inline: 18px; }
.button--text { min-height: 42px; border: 0; text-transform: none; }
.quiet-link { width: fit-content; display: inline-flex; align-items: center; gap: 18px; padding: 0 0 6px; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 12px; font-weight: 700; }
.quiet-link span { transition: transform .25s var(--ease); }
.quiet-link:hover span { transform: translateX(4px); }
.quiet-link--light { color: #fff; }
.round-button { width: 48px; height: 48px; display: grid; place-items: center; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; font-size: 25px; line-height: 1; }
.kicker, .section-label, .eyebrow { margin-bottom: 22px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.kicker--light { color: rgba(255,255,255,.68); }

/* Hero */
.hero { position: relative; min-height: 930px; display: flex; flex-direction: column; color: #fff; background: var(--pine-deep); overflow: hidden; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%; scale: 1.01; }
.hero__overlay { background: linear-gradient(90deg, rgba(7,22,17,.92) 0%, rgba(7,22,17,.70) 45%, rgba(7,22,17,.12) 78%), linear-gradient(0deg, rgba(7,22,17,.72), transparent 46%); }
.hero__layout { position: relative; z-index: 2; min-height: 818px; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 8vw; align-items: center; padding-top: calc(var(--header) + 54px); }
.hero__copy { max-width: 760px; }
.hero h1 { max-width: 820px; margin-bottom: 30px; font: 500 clamp(65px, 7.25vw, 116px)/.86 var(--serif); letter-spacing: -.055em; }
.hero h1 em { color: #e7c59e; font-weight: 400; }
.hero__copy > p:not(.kicker) { max-width: 630px; color: rgba(255,255,255,.72); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.65; }
.hero__actions { display: flex; gap: 32px; align-items: center; margin-top: 38px; }
.hero-booking { align-self: end; margin-bottom: 56px; padding: 30px; color: var(--ink); background: rgba(250,248,243,.96); box-shadow: var(--shadow); }
.hero-booking__status { display: flex; gap: 10px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-booking__status i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #6c8b67; box-shadow: 0 0 0 5px rgba(108,139,103,.14); }
.hero-booking__price { display: grid; margin: 26px 0; }
.hero-booking__price small { color: var(--muted); font-size: 10px; }
.hero-booking__price strong { font: 600 39px/1.1 var(--serif); }
.hero-booking__price span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.hero-booking ul { margin: 0 0 26px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hero-booking li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.hero-booking > p { margin: 13px 0 0; text-align: center; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.hero__rail { position: relative; z-index: 2; min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: auto; border-top: 1px solid var(--line-light); }
.hero__rail div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 26px; border-right: 1px solid var(--line-light); }
.hero__rail div:first-child { padding-left: 0; }
.hero__rail div:last-child { border-right: 0; }
.hero__rail b { color: var(--accent-bright); font-size: 9px; }
.hero__rail span { color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.4; }

/* Global sections */
.section { padding-block: clamp(90px, 10vw, 156px); }
.section--border { border-top: 1px solid var(--line); }
.section--soft { background: var(--paper-2); }
.section--dark { color: #fff; background: var(--pine-deep); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 390px); gap: 64px; align-items: end; margin-bottom: clamp(52px, 7vw, 92px); }
.section-head h2, .intro h2, .steam h2, .tub h2, .reviews h2, .faq h2, .contacts h2, .final-cta h2, .video-story h2 { margin: 0; font: 500 clamp(48px, 5.35vw, 82px)/.98 var(--serif); letter-spacing: -.045em; }
.section-head > p, .section-head > div:last-child > p { margin: 0; color: var(--muted); }
.section-head--light > div:last-child > p { color: rgba(255,255,255,.6); }

/* Intro */
.intro__grid { display: grid; grid-template-columns: 140px minmax(0, 1.35fr) minmax(280px, .65fr); gap: 5vw; }
.intro h2 span { color: var(--moss); }
.intro__text { align-self: end; color: var(--muted); font-size: 16px; }
.intro__text p:last-child { margin-bottom: 0; }

/* Houses */
.house-feature { min-width: 0; display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(400px, .87fr); margin-bottom: 32px; background: var(--paper-2); border: 1px solid var(--line); }
.house-feature--reverse { grid-template-columns: minmax(400px, .87fr) minmax(0, 1.13fr); }
.house-feature__media { position: relative; min-width: 0; min-height: 690px; overflow: hidden; }
.house-feature__media > img { width: 100%; height: 100%; object-fit: cover; transition: scale .8s var(--ease); }
.house-feature:hover .house-feature__media > img { scale: 1.025; }
.house-feature__media > span, .house-feature__concept > i { position: absolute; top: 24px; left: 24px; padding: 8px 11px; color: #fff; background: rgba(13,34,27,.78); font-size: 8px; font-style: normal; letter-spacing: .16em; text-transform: uppercase; }
.house-feature__body { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 5vw, 72px); }
.house-feature__title h3 { margin: 0 0 25px; font: 500 clamp(58px, 6vw, 92px)/.9 var(--serif); letter-spacing: -.05em; }
.house-feature__lead { color: var(--muted); font-size: 16px; }
.feature-table { margin: 32px 0 42px; border-top: 1px solid var(--line); }
.feature-table div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.feature-table span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.feature-table b { font-size: 12px; font-weight: 600; }
.house-feature__actions { display: flex; gap: 28px; align-items: center; }
.house-feature__concept { color: #fff; background: radial-gradient(circle at 70% 25%, rgba(202,137,85,.55), transparent 30%), linear-gradient(135deg, #1e3029, #5e4d3d); }
.house-feature__concept::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.2); }
.house-feature__concept > div { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.house-feature__concept span { font: italic 400 170px/.85 var(--serif); opacity: .88; }
.house-feature__concept b { margin-top: 16px; font: 500 25px var(--serif); }
.house-feature__concept small { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

/* Steam */
.steam__grid { display: grid; grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 8vw, 125px); align-items: center; }
.steam__media { position: relative; padding: 0 0 26px 26px; }
.steam__media::before { content: ""; position: absolute; inset: 26px 0 0 0; border: 1px solid var(--line-light); }
.steam__media img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.steam__media > span { position: absolute; z-index: 2; right: -24px; bottom: 55px; max-width: 220px; padding: 15px 18px; color: var(--ink); background: var(--paper); font-size: 10px; }
.steam__lead { max-width: 670px; margin: 34px 0 42px; color: rgba(255,255,255,.68); font-size: 17px; }
.fact-list { margin: 0 0 42px; border-top: 1px solid var(--line-light); }
.fact-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.fact-list > div > b { color: var(--accent-bright); font-size: 9px; }
.fact-list span { display: grid; }
.fact-list strong { font: 500 18px var(--serif); }
.fact-list small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: 11px; }

/* Care */
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.care-grid article { min-width: 0; min-height: 310px; padding: 30px; border-right: 1px solid var(--line); }
.care-grid article:last-child { border-right: 0; }
.care-grid span { color: var(--accent); font-size: 9px; }
.care-grid h3 { margin: 78px 0 18px; font: 500 31px var(--serif); }
.care-grid p { margin: 0; color: var(--muted); font-size: 12px; }

/* Video */
.video-story__grid { display: grid; grid-template-columns: minmax(300px, .55fr) minmax(0, 1.45fr); gap: 7vw; align-items: center; }
.video-story__copy > p:not(.section-label) { max-width: 430px; margin: 30px 0; color: var(--muted); }
.video { min-width: 0; aspect-ratio: 16/9; background: var(--pine-deep); }
.video__poster { position: relative; width: 100%; height: 100%; display: block; padding: 0; overflow: hidden; color: #fff; border: 0; background: var(--pine); }
.video__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,22,17,.62), transparent 60%); }
.video__poster img { width: 100%; height: 100%; object-fit: cover; transition: scale .7s var(--ease); }
.video__poster:hover img { scale: 1.025; }
.video__play { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 78px; height: 78px; display: grid; place-content: center; padding-left: 4px; border-radius: 50%; color: var(--ink); background: var(--accent-bright); transform: translate(-50%, -50%); font-size: 18px; }
.video__poster small { position: absolute; z-index: 2; bottom: 24px; left: 24px; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.video iframe { width: 100%; height: 100%; border: 0; }

/* Tub */
.tub__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 8vw; align-items: center; }
.tub__media { position: relative; }
.tub__media > img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.tub__media > div { position: absolute; right: 24px; bottom: 24px; width: 132px; height: 132px; display: grid; place-content: center; padding: 16px; border-radius: 50%; text-align: center; background: var(--paper); }
.tub__media strong, .tub__media span { display: block; }
.tub__media strong { font: 500 24px var(--serif); }
.tub__media span { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.tub__copy > p:not(.section-label) { margin: 32px 0; color: var(--muted); }
.price-list { margin: 38px 0; border-top: 1px solid var(--line); }
.price-list div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.price-list b { font: 600 17px var(--serif); }

/* Gallery */
.gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: repeat(2, minmax(240px, 34vh)); gap: 12px; }
.gallery-shot { position: relative; min-width: 0; padding: 0; overflow: hidden; color: #fff; border: 0; background: #1b2f28; }
.gallery-shot--hero { grid-row: 1 / 3; }
.gallery-shot--tall { grid-row: 1 / 3; grid-column: 3; }
.gallery-shot::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(0deg, rgba(7,22,17,.75), transparent); }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: scale .7s var(--ease), opacity .4s; }
.gallery-shot:hover img { scale: 1.035; opacity: 1; }
.gallery-shot > span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; justify-content: space-between; align-items: end; text-align: left; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.gallery-shot--more span { align-items: center; }
.gallery-shot--more b { font: 500 38px var(--serif); letter-spacing: -.03em; }

/* Reviews */
.reviews__head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 60px; }
.reviews__head > p { max-width: 390px; margin: 0; color: var(--muted); }
.reviews-meta { display: flex; justify-content: space-between; gap: 35px; align-items: center; margin-bottom: 28px; }
.reviews-score { display: flex; gap: 18px; align-items: center; }
.reviews-score > strong { font: 500 64px/1 var(--serif); }
.reviews-score > span { display: grid; }
.reviews-score b { color: var(--accent); letter-spacing: .08em; }
.reviews-score small { color: var(--muted); font-size: 9px; }
.reviews-carousel { overflow: hidden; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 24px) / 2); gap: 24px; transition: transform .55s var(--ease); }
.review-card { min-width: 0; min-height: 390px; display: flex; flex-direction: column; padding: 34px; background: var(--paper-2); border: 1px solid var(--line); }
.review-card__top { display: flex; gap: 14px; align-items: center; }
.review-card__avatar { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-content: center; border-radius: 50%; color: var(--pine); background: #e4ddd0; font: 500 20px var(--serif); }
.review-card__name { min-width: 0; display: grid; }
.review-card__name strong { font-size: 12px; }
.review-card__name small { color: var(--muted); font-size: 9px; }
.review-card__rating { margin: 25px 0 16px; color: var(--accent); letter-spacing: .1em; }
.review-card__text { display: -webkit-box; margin-bottom: 24px; overflow: hidden; color: #33413c; font-size: 14px; -webkit-line-clamp: 6; -webkit-box-orient: vertical; }
.review-card__source { width: fit-content; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.reviews-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.reviews-controls div { display: flex; gap: 10px; }
.reviews-controls button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.reviews-controls span { color: var(--muted); font-size: 10px; }
.reviews__empty { padding: 30px; border: 1px solid var(--line); }

/* Journal and inner pages */
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card { min-width: 0; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.story-card__meta { color: var(--accent); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.story-card h3 { margin: 32px 0 18px; font: 500 30px/1.05 var(--serif); }
.story-card > p:not(.story-card__meta) { color: var(--muted); font-size: 12px; }
.story-card .quiet-link, .story-card .text-link { margin-top: auto; }
.page-shell { min-height: 70vh; padding-top: calc(var(--header) + 52px); padding-bottom: 120px; }
.breadcrumbs { margin-bottom: 48px; color: var(--muted); font-size: 10px; }
.journal-archive__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 390px); gap: 50px; align-items: end; margin-bottom: 70px; }
.journal-archive h1 { margin: 0; font: 500 clamp(48px, 6vw, 84px)/.95 var(--serif); letter-spacing: -.04em; }
.journal-archive__lead { margin: 0; color: var(--muted); }
.journal__grid--archive { grid-template-columns: repeat(3, 1fr); }
.article { min-width: 0; max-width: 920px; margin-inline: auto; }
.article > header { margin-bottom: 56px; }
.article h1 { max-width: 100%; margin-bottom: 24px; font: 500 clamp(48px, 6vw, 82px)/.98 var(--serif); letter-spacing: -.04em; overflow-wrap: anywhere; }
.article__meta { color: var(--muted); font-size: 10px; }
.article__body { min-width: 0; max-width: 100%; color: #27352f; font-size: 17px; overflow-wrap: anywhere; }
.article__body h2 { margin: 56px 0 20px; font: 500 42px/1.05 var(--serif); }
.article__body img { width: auto; max-width: 100%; height: auto; margin: 32px auto; }
.article__body iframe,
.article__body video,
.article__body embed,
.article__body object { display: block; width: 100% !important; max-width: 100% !important; margin: 32px auto; border: 0; }
.article__body iframe[src*="rutube.ru"],
.article__body iframe[src*="youtube.com"],
.article__body iframe[src*="youtu.be"] { height: auto !important; aspect-ratio: 16 / 9; }
.article__body table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article__body pre { max-width: 100%; overflow-x: auto; white-space: pre-wrap; }
.article-figure { margin: 48px 0; }
.article-figure img { margin: 0; }
.article-figure figcaption { margin-top: 10px; color: var(--muted); font-size: 10px; }
.article-inline-cta { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin: 38px 0; padding: 28px 30px; color: #fff; background: var(--pine); }
.article-inline-cta div { display: grid; gap: 5px; }
.article-inline-cta strong { font: 500 27px/1.1 var(--serif); }
.article-inline-cta span { color: rgba(255,255,255,.7); font-size: 12px; }
.article-inline-cta .button { flex: 0 0 auto; color: var(--ink); background: var(--accent-bright); border-color: var(--accent-bright); }
.article-faq { margin-top: 64px; }
.article-faq__list { border-top: 1px solid var(--line); }
.article-faq details { border-bottom: 1px solid var(--line); }
.article-faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; font-weight: 700; cursor: pointer; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary span { transition: transform .2s ease; }
.article-faq details[open] summary span { transform: rotate(45deg); }
.article-faq details p { margin: 0 0 24px; color: var(--muted); }
.article-cta { display: flex; justify-content: space-between; gap: 35px; align-items: center; margin-top: 70px; padding: 36px; color: #fff; background: var(--pine); }
.article-cta h2 { margin: 0 0 8px; font: 500 35px var(--serif); }
.article-cta p { margin-bottom: 0; color: rgba(255,255,255,.65); }
.article-cta .button { flex: 0 0 auto; color: var(--ink); background: var(--accent-bright); border-color: var(--accent-bright); }

.legal-header { height: var(--header); border-bottom: 1px solid var(--line); background: var(--paper); }
.legal-header .wrap { height: 100%; display: flex; justify-content: space-between; align-items: center; }
.legal-header__back { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; }
.legal-page { min-height: 70vh; padding: 78px 0 120px; }
.legal-page__grid { display: grid; grid-template-columns: 210px minmax(0, 780px); gap: 7vw; justify-content: center; }
.legal-page__aside { color: var(--muted); font-size: 9px; }
.legal-page__content h1 { margin-bottom: 42px; font: 500 clamp(48px, 6vw, 78px)/.96 var(--serif); letter-spacing: -.04em; }
.legal-page__content h2 { margin: 48px 0 15px; font: 500 31px/1.1 var(--serif); }
.legal-page__content p, .legal-page__content li { color: #34423c; }
.legal-page__content a { text-decoration: underline; }

/* FAQ, contacts, footer */
.faq__grid { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: 8vw; }
.faq__grid > div:first-child > p:last-child { max-width: 330px; margin-top: 28px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 48px 22px 0; list-style: none; font-weight: 650; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 32px; right: 5px; width: 15px; height: 1px; background: currentColor; transition: transform .25s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 720px; padding: 0 45px 22px 0; color: var(--muted); }
.contacts__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: 8vw; }
.contacts address { margin-top: 42px; color: rgba(255,255,255,.64); }
.contacts__links { display: grid; }
.contacts__links a { display: grid; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.contacts__links span { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.contacts__links b { margin-top: 5px; font: 500 24px var(--serif); }
.contacts__links .button { margin-top: 28px; }
.map-shell { height: 460px; margin-top: 60px; }
.map-shell iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9); }
.final-cta { padding-block: 78px; background: var(--accent-bright); }
.final-cta__inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.final-cta h2 { max-width: 820px; font-size: clamp(42px, 5vw, 70px); }
.site-footer { padding: 82px 0 28px; color: #fff; background: #091a15; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 6vw; padding-bottom: 70px; }
.brand--footer .brand__mark { filter: none; }
.site-footer__about { max-width: 340px; margin-top: 28px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-title { margin-bottom: 22px; color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; font-size: 11px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer__bottom button { padding: 0; color: inherit; border: 0; background: transparent; text-transform: uppercase; }

/* Lightbox */
.lightbox { position: fixed; z-index: 500; inset: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; padding: 22px; color: #fff; background: rgba(5,15,12,.98); }
.lightbox__top { display: flex; justify-content: space-between; align-items: center; }
.lightbox__top > div { display: grid; }
.lightbox__top strong { font: 500 19px var(--serif); }
.lightbox__top span { color: rgba(255,255,255,.55); font-size: 9px; }
.lightbox__stage { min-height: 0; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; gap: 18px; align-items: center; }
.lightbox__stage figure { min-width: 0; min-height: 0; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; }
.lightbox__stage img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__stage figcaption { min-height: 38px; padding-top: 12px; text-align: center; color: rgba(255,255,255,.7); font-size: 11px; }
.lightbox__nav { width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: transparent; }
.lightbox__thumbs { display: flex; gap: 8px; justify-content: center; padding-top: 15px; overflow-x: auto; scrollbar-width: none; }
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumbs button { width: 56px; height: 42px; flex: 0 0 auto; padding: 0; border: 1px solid transparent; opacity: .48; background: transparent; }
.lightbox__thumbs button.is-active { border-color: var(--accent-bright); opacity: 1; }
.lightbox__thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* Booking */
.booking { position: fixed; z-index: 400; inset: 0; }
.booking__backdrop { position: absolute; inset: 0; background: rgba(4,15,11,.62); backdrop-filter: blur(6px); }
.booking__panel { position: absolute; inset: 0 0 0 auto; width: min(1180px, 94vw); overflow-y: auto; background: var(--paper); box-shadow: -30px 0 100px rgba(0,0,0,.24); }
.booking__header { position: sticky; z-index: 6; top: 0; min-height: 112px; display: flex; justify-content: space-between; align-items: center; padding: 24px clamp(24px, 4vw, 58px); border-bottom: 1px solid var(--line); background: rgba(243,240,232,.96); backdrop-filter: blur(18px); }
.booking__header .kicker { margin-bottom: 4px; }
.booking__header h2 { margin: 0; font: 500 35px/1 var(--serif); }
.booking-form { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; }
.booking-form__main { min-width: 0; padding: 34px clamp(24px, 4vw, 58px) 80px; }
.booking-step { padding: 20px 0 46px; border-bottom: 1px solid var(--line); }
.booking-step + .booking-step { padding-top: 46px; }
.booking-step__head { display: grid; grid-template-columns: 36px 1fr; gap: 16px; margin-bottom: 28px; }
.booking-step__head > span { color: var(--accent); font-size: 9px; font-weight: 800; }
.booking-step__head h3 { margin: 0 0 4px; font: 500 27px/1 var(--serif); }
.booking-step__head p { margin: 0; color: var(--muted); font-size: 10px; }
.date-summary { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin-bottom: 18px; padding: 18px 20px; background: var(--paper-2); border: 1px solid var(--line); }
.date-summary > div { display: grid; }
.date-summary small { color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.date-summary strong { margin-top: 4px; font: 500 18px var(--serif); }
.date-summary > span { color: var(--muted); }
.calendar { padding: 20px; border: 1px solid var(--line); background: var(--paper-2); }
.calendar__toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.calendar__toolbar p { margin: 0; color: var(--muted); font-size: 9px; }
.calendar__nav { width: 40px; height: 40px; display: grid; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.calendar__nav:disabled { opacity: .25; }
.calendar__months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.calendar-month { min-width: 0; }
.calendar-month h4 { margin: 0 0 13px; text-align: center; font: 500 20px var(--serif); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar-grid > span { display: grid; place-items: center; height: 25px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.calendar-day { position: relative; aspect-ratio: 1; min-width: 0; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; font-size: 11px; }
.calendar-day:hover:not(:disabled) { background: rgba(201,135,85,.18); }
.calendar-day.is-outside { visibility: hidden; }
.calendar-day.is-busy, .calendar-day:disabled { color: #abb0ad; text-decoration: line-through; }
.calendar-day.is-busy::after { content: ""; position: absolute; bottom: 5px; width: 3px; height: 3px; border-radius: 50%; background: #b9b3a8; }
.calendar-day.is-range { border-radius: 0; background: rgba(201,135,85,.18); }
.calendar-day.is-start, .calendar-day.is-end { color: var(--ink); border-radius: 50%; background: var(--accent-bright); font-weight: 800; }
.calendar-day.is-today:not(.is-start):not(.is-end)::before { content: ""; position: absolute; inset: 4px; border: 1px solid var(--accent); border-radius: 50%; }
.calendar__legend { display: flex; gap: 18px; margin-top: 16px; color: var(--muted); font-size: 8px; }
.calendar__legend span { display: flex; gap: 6px; align-items: center; }
.calendar__legend i { width: 7px; height: 7px; border: 1px solid var(--line); border-radius: 50%; }
.calendar__legend span:nth-child(2) i { background: #c5c2b9; }
.calendar__legend span:nth-child(3) i { border-color: var(--accent-bright); background: var(--accent-bright); }
.guest-row, .addon-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 20px; padding: 18px 20px; border: 1px solid var(--line); background: var(--paper-2); }
.guest-row > div:first-child, .addon-row > span { display: grid; }
.guest-row strong, .addon-row strong { font-size: 12px; }
.guest-row small, .addon-row small { color: var(--muted); font-size: 9px; }
.stepper { display: grid; grid-template-columns: 40px 42px 40px; align-items: center; }
.stepper button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 18px; }
.stepper output { text-align: center; font-weight: 800; }
.stepper--small { grid-template-columns: 36px 36px 36px; }
.stepper--small button { width: 36px; height: 36px; }
.addon { margin-bottom: 12px; border: 1px solid var(--line); background: var(--paper-2); }
.addon summary { min-height: 78px; display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; padding: 16px 20px; list-style: none; cursor: pointer; }
.addon summary::-webkit-details-marker { display: none; }
.addon__icon { width: 40px; height: 40px; display: grid; place-content: center; border-radius: 50%; color: var(--accent); background: rgba(201,135,85,.13); }
.addon summary > span:nth-child(2) { display: grid; }
.addon summary strong { font-size: 12px; }
.addon summary small { color: var(--muted); font-size: 9px; }
.addon summary > i { font-style: normal; font-size: 22px; transition: transform .25s; }
.addon[open] summary > i { transform: rotate(45deg); }
.addon__body { padding: 0 20px 20px; }
.addon__body--rows .addon-row { margin-top: 8px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.option { cursor: pointer; }
.option input { position: absolute; opacity: 0; }
.option span { min-height: 62px; display: grid; align-content: center; padding: 12px 14px; border: 1px solid var(--line); }
.option b { font-size: 11px; }
.option small { color: var(--muted); font-size: 9px; }
.option input:checked + span { border-color: var(--accent); background: rgba(201,135,85,.11); box-shadow: inset 0 0 0 1px var(--accent); }
.booking-summary { position: sticky; top: 112px; min-height: calc(100svh - 112px); padding: 32px; border-left: 1px solid var(--line); background: #ebe5d9; }
.booking-summary__house { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.booking-summary__house img { width: 82px; height: 64px; object-fit: cover; }
.booking-summary__house > div { display: grid; align-content: center; }
.booking-summary__house small, .booking-summary__house span { color: var(--muted); font-size: 8px; }
.booking-summary__house strong { font: 500 20px var(--serif); }
.booking-summary__empty { padding: 35px 0; }
.booking-summary__empty span { font: 500 25px var(--serif); }
.booking-summary__empty p { margin-top: 12px; color: var(--muted); font-size: 10px; }
.quote { padding: 28px 0; }
.quote > div { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; color: var(--muted); font-size: 10px; }
.quote > div strong { color: var(--ink); }
.quote > div[data-quote-stay-row] strong, .quote > div[data-quote-early-row] strong { color: #4d765f; }
.quote__total { margin-top: 16px; padding-top: 20px !important; border-top: 1px solid var(--line); align-items: end; }
.quote__total span { color: var(--ink); font-weight: 800; }
.quote__total strong { font: 600 34px/1 var(--serif); }
.quote > p { color: var(--muted); font-size: 8px; }
.booking-summary__rules { margin: 20px 0 0; color: var(--muted); font-size: 8px; line-height: 1.7; text-align: center; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field > span, .contact-methods legend { font-size: 9px; font-weight: 700; }
.field > span small { color: var(--muted); font-weight: 400; }
.field input, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; background: var(--paper-2); outline: 0; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(201,135,85,.14); }
.contact-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }
.contact-methods legend { grid-column: 1 / -1; margin-bottom: 7px; }
.contact-methods label { cursor: pointer; }
.contact-methods input { position: absolute; opacity: 0; }
.contact-methods span { display: grid; place-content: center; min-height: 42px; border: 1px solid var(--line); font-size: 9px; }
.contact-methods input:checked + span { color: #fff; border-color: var(--pine); background: var(--pine); }
.consent { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 9px; }
.consent input { margin-top: 3px; accent-color: var(--pine); }
.consent a { text-decoration: underline; }
.hp { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 34px; margin: 14px 0 0; color: #9b3e2c; font-size: 9px; }
.booking-success { max-width: 560px; margin: 12vh auto; padding: 70px 35px; text-align: center; }
.booking-success > span { width: 70px; height: 70px; display: grid; place-content: center; margin: 0 auto 28px; border-radius: 50%; color: #fff; background: var(--pine); font-size: 28px; }
.booking-success h2 { font: 500 48px/1 var(--serif); }
.booking-success > p:not(.kicker) { color: var(--muted); }

/* Cookie */
.cookie { position: fixed; z-index: 600; right: 20px; bottom: 20px; left: 20px; max-width: 900px; margin-inline: auto; display: flex; justify-content: space-between; gap: 28px; align-items: center; padding: 20px 22px; color: #fff; background: #0b1e18; box-shadow: var(--shadow); }
.cookie strong { font: 500 18px var(--serif); }
.cookie p { margin: 2px 0 0; color: rgba(255,255,255,.58); font-size: 9px; }
.cookie__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie .button--text { color: #fff; }

@media (max-width: 1160px) {
  :root { --wrap: min(100% - 56px, 1180px); }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 5vw; }
  .hero h1 { font-size: clamp(64px, 8vw, 96px); }
  .house-feature, .house-feature--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid article:nth-child(2) { border-right: 0; }
  .care-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-mosaic { grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(3, 260px); }
  .gallery-shot--hero { grid-row: 1 / 3; }
  .gallery-shot--tall { grid-row: 2 / 4; grid-column: 2; }
  .booking-form { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 820px) {
  :root { --wrap: calc(100vw - 40px); --header: 72px; }
  .site-header__inner { gap: 12px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__text b { font-size: 17px; }
  .brand__text small { font-size: 7px; }
  .site-header__actions > .button { display: none; }
  .hero { min-height: auto; }
  .hero__layout { min-height: 790px; grid-template-columns: 1fr; align-content: end; padding-top: calc(var(--header) + 80px); padding-bottom: 45px; }
  .hero__media img { object-position: 62% center; }
  .hero__overlay { background: linear-gradient(0deg, rgba(7,22,17,.96) 0%, rgba(7,22,17,.70) 60%, rgba(7,22,17,.25) 100%); }
  .hero h1 { max-width: 620px; font-size: clamp(54px, 12.5vw, 82px); }
  .hero-booking { display: none; }
  .hero__rail { grid-template-columns: repeat(2, 1fr); }
  .hero__rail div { min-height: 76px; padding: 18px; border-bottom: 1px solid var(--line-light); }
  .hero__rail div:nth-child(2) { border-right: 0; }
  .hero__rail div:first-child { padding-left: 18px; }
  .intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .intro__grid > .section-label { margin: 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2, .intro h2, .steam h2, .tub h2, .reviews h2, .faq h2, .contacts h2, .video-story h2 { font-size: clamp(42px, 9vw, 66px); }
  .house-feature, .house-feature--reverse { display: flex; flex-direction: column; }
  .house-feature--reverse .house-feature__body { order: 2; }
  .house-feature__media { min-height: 520px; }
  .steam__grid, .tub__grid, .video-story__grid, .faq__grid, .contacts__grid { grid-template-columns: 1fr; }
  .steam__media { max-width: 570px; }
  .video-story__copy { max-width: 600px; }
  .tub__media { order: 2; }
  .reviews__head { align-items: flex-start; flex-direction: column; }
	.reviews-meta { align-items: flex-start; flex-direction: column; }
  .reviews-track { grid-auto-columns: 84%; }
  .journal__grid, .journal__grid--archive { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr; row-gap: 50px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .booking__panel { width: 100%; }
  .booking__header { min-height: 86px; }
  .booking__header h2 { font-size: 28px; }
  .booking-form { display: block; }
  .booking-form__main { padding-bottom: 30px; }
  .booking-summary { position: sticky; z-index: 5; bottom: 0; top: auto; min-height: 0; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); border-left: 0; box-shadow: 0 -15px 40px rgba(12,30,24,.12); }
  .booking-summary__house, .booking-summary__rules { display: none; }
  .booking-summary__empty { padding: 5px 0; }
  .booking-summary__empty span { font-size: 18px; }
  .booking-summary__empty p { display: none; }
  .quote { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 0 0 10px; }
  .quote > div:not(.quote__total), .quote > p { display: none !important; }
  .quote__total { grid-column: 1 / -1; margin: 0; padding: 0 0 10px !important; border: 0; }
  .quote__total strong { font-size: 28px; }
  .form-status { min-height: 0; margin: 7px 0 0; }
  .lightbox { padding: 14px; }
  .lightbox__stage { grid-template-columns: 1fr; }
  .lightbox__nav { position: absolute; z-index: 2; top: 50%; width: 48px; height: 48px; background: rgba(5,15,12,.65); }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__thumbs { justify-content: flex-start; }
  .journal-archive__head { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100vw - 32px); }
  body { font-size: 15px; }
  .section { padding-block: 82px; }
  .hero__layout { min-height: 720px; padding-bottom: 34px; }
  .hero h1 { font-size: clamp(49px, 15vw, 68px); }
  .hero__copy > p:not(.kicker) { font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__rail div { grid-template-columns: 26px 1fr; padding: 15px 10px; }
  .hero__rail div:first-child { padding-left: 10px; }
  .hero__rail span { font-size: 9px; }
  .house-feature__media { min-height: 390px; }
  .house-feature__body { padding: 34px 22px 40px; }
  .house-feature__title h3 { font-size: 56px; }
  .feature-table div { grid-template-columns: 76px 1fr; }
  .house-feature__actions { align-items: stretch; flex-direction: column; }
  .house-feature__actions .button { width: 100%; }
  .house-feature__concept > div span { font-size: 120px; }
  .steam__media { padding: 0 0 15px 15px; }
  .steam__media::before { inset: 15px 0 0 0; }
  .steam__media > span { right: 0; bottom: 36px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-grid article { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .care-grid article:last-child { border-bottom: 0; }
  .care-grid h3 { margin-top: 52px; }
  .video__play { width: 62px; height: 62px; }
  .tub__media > div { width: 102px; height: 102px; right: 14px; bottom: 14px; }
  .gallery-mosaic { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 240px 170px 170px; gap: 7px; }
  .gallery-shot--hero { grid-row: 1 / 2; grid-column: 1 / 3; }
  .gallery-shot--tall { grid-row: 2 / 4; grid-column: 1; }
  .gallery-shot:nth-child(3), .gallery-shot:nth-child(5) { display: none; }
  .gallery-shot--more { grid-column: 2; }
  .reviews-score > strong { font-size: 52px; }
  .reviews-track { grid-auto-columns: 94%; gap: 12px; }
  .review-card { min-height: 360px; padding: 25px; }
  .faq__grid { gap: 45px; }
  .contacts__links b { font-size: 21px; }
  .final-cta { padding-block: 65px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid > div:first-child { margin-bottom: 15px; }
  .page-shell { padding-top: calc(var(--header) + 36px); }
  .article h1 { font-size: 45px; }
  .article__body { font-size: 16px; }
  .article__body h2 { font-size: 34px; }
  .article-inline-cta { align-items: flex-start; flex-direction: column; padding: 24px; }
  .article-cta { align-items: flex-start; flex-direction: column; padding: 28px; }
	.legal-page__grid { grid-template-columns: 1fr; gap: 24px; }
	.legal-page__aside { order: 2; }
  .booking__header { padding: 16px; }
  .booking__header .kicker { font-size: 7px; }
  .booking-form__main { padding: 18px 16px 24px; }
  .booking-step { padding-bottom: 34px; }
  .booking-step + .booking-step { padding-top: 34px; }
  .date-summary { gap: 9px; padding: 14px; }
  .date-summary strong { font-size: 15px; }
  .calendar { margin-inline: -1px; padding: 14px 10px; }
  .calendar__months { grid-template-columns: 1fr; }
  .calendar-month:nth-child(2) { display: none; }
  .calendar-day { font-size: 12px; }
  .calendar__legend { gap: 10px; }
  .guest-row { padding: 14px; }
  .addon summary { padding-inline: 14px; }
  .addon__body { padding-inline: 14px; }
  .option-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .booking-success { margin: 8vh auto; padding-inline: 22px; }
  .booking-success h2 { font-size: 40px; }
  .cookie { right: 10px; bottom: 10px; left: 10px; align-items: stretch; flex-direction: column; gap: 14px; padding: 17px; }
  .cookie__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie .button { padding-inline: 12px; font-size: 9px; }
}

@media (max-width: 430px) {
  :root { --wrap: calc(100vw - 28px); }
  .brand__text b { font-size: 15px; }
  .brand__text small { letter-spacing: .18em; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero h1 { font-size: clamp(46px, 14.5vw, 62px); overflow-wrap: anywhere; }
  .section-head h2, .intro h2, .steam h2, .tub h2, .reviews h2, .faq h2, .contacts h2, .video-story h2 { font-size: clamp(39px, 11.5vw, 51px); overflow-wrap: anywhere; }
  .house-feature__lead, .intro__text, .steam__lead, .tub__copy > p:not(.section-label) { overflow-wrap: anywhere; }
  .feature-table b { overflow-wrap: anywhere; }
  .gallery-mosaic { grid-template-rows: 215px 150px 150px; }
  .booking__header h2 { font-size: 25px; }
  .booking__header .round-button { width: 42px; height: 42px; }
  .booking-step__head { grid-template-columns: 28px 1fr; }
  .calendar__toolbar p { max-width: 140px; text-align: center; }
  .calendar__legend { flex-wrap: wrap; }
  .guest-row > div:first-child small { max-width: 150px; }
  .addon-row { padding-inline: 12px; }
  .contact-methods span { font-size: 8px; }
  .lightbox__top strong { font-size: 16px; }
  .lightbox__stage figcaption { font-size: 9px; }
}

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