:root {
    --ink: #173c38;
    --ink-deep: #0d2926;
    --sand: #f2eadf;
    --sand-light: #faf7f1;
    --paper: #fffdf9;
    --pool: #5ab9c6;
    --pool-dark: #185f6d;
    --coral: #b94f39;
    --coral-dark: #a23d2b;
    --line: rgba(23, 60, 56, 0.16);
    --muted: #5d6b67;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(13, 41, 38, 0.13);
    --display: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --label: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --shell: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 3px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink-deep);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 6vw, 78px);
}

h3 {
    font-size: clamp(27px, 3vw, 38px);
}

::selection {
    color: var(--white);
    background: var(--coral);
}

:focus-visible {
    outline: 3px solid var(--pool);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink-deep);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.site-shell {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    margin-inline: auto;
}

.section-space {
    padding-block: clamp(88px, 11vw, 156px);
}

@supports (content-visibility: auto) {
    .home-page main > section:not(.hero),
    .cottage-page main > section:not(.cottage-hero) {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}

.eyebrow,
.hero__kicker {
    margin-bottom: 24px;
    font-family: var(--label);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 34px;
    height: 1px;
    margin: 0 12px 4px 0;
    background: currentColor;
    content: "";
}

.display-title {
    margin-bottom: 0;
    font-size: clamp(45px, 6.2vw, 82px);
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--label);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 11px;
}

.button--accent {
    color: var(--white);
    background: var(--coral);
}

.button--accent:hover {
    background: var(--coral-dark);
}

.button--ink {
    color: var(--white);
    background: var(--ink);
}

.button--ink:hover {
    background: var(--ink-deep);
}

.button--outline {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
}

.button--outline:hover {
    color: var(--white);
    background: var(--ink);
}

.button--wide {
    width: 100%;
}

.text-link,
.select-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: gap 180ms ease, opacity 180ms ease;
}

.text-link:hover,
.select-link:hover {
    gap: 19px;
    opacity: 0.72;
}

.text-link--light {
    color: var(--white);
}

.section-heading {
    margin-bottom: clamp(48px, 7vw, 86px);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: end;
    gap: 8vw;
}

.section-heading--split > p,
.section-heading--split > .text-link {
    margin-bottom: 8px;
}

.section-heading--split > p {
    color: var(--muted);
    font-size: 16px;
}

.section-heading--center {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--light,
.section-heading--light > p {
    color: rgba(255, 255, 255, 0.83);
}

.section-heading--light h2 {
    color: var(--white);
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink-deep);
    border-color: var(--line);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 8px 34px rgba(13, 41, 38, 0.08);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
}

.brand {
    position: relative;
    display: block;
    width: 106px;
    height: 66px;
    flex: 0 0 auto;
}

.brand__logo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 180ms ease;
}

.brand__logo--color {
    opacity: 0;
}

.site-header.is-scrolled .brand__logo--light,
.site-header.is-open .brand__logo--light {
    opacity: 0;
}

.site-header.is-scrolled .brand__logo--color,
.site-header.is-open .brand__logo--color {
    opacity: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
}

.site-nav a,
.header-phone {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding-block: 8px;
}

.site-nav__request {
    display: none;
}

.site-nav a::after {
    position: absolute;
    right: 100%;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transition: right 180ms ease;
}

.site-nav a:hover::after {
    right: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle svg {
    display: block;
    width: 22px;
    height: 22px;
    margin: auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.menu-toggle__close {
    display: none;
}

.site-header.is-open .menu-toggle__open {
    display: none;
}

.site-header.is-open .menu-toggle__close {
    display: block;
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    min-height: min(880px, 94vh);
    align-items: center;
    color: var(--white);
    background: var(--ink-deep);
}

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 53%;
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(4, 21, 20, 0.68) 0%, rgba(4, 21, 20, 0.38) 47%, rgba(4, 21, 20, 0.06) 78%),
        linear-gradient(0deg, rgba(4, 21, 20, 0.52) 0%, transparent 48%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-block: 150px 130px;
}

.hero__kicker {
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    max-width: 1020px;
    margin-bottom: 28px;
    font-size: clamp(56px, 7.6vw, 105px);
    color: var(--white);
}

.hero h1 em {
    display: inline-block;
    color: #d3e6dc;
    font-size: 0.88em;
    font-weight: 400;
}

.hero__lead {
    max-width: 600px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 21px);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero__facts {
    display: flex;
    gap: clamp(28px, 5vw, 70px);
    padding: 0;
    margin: 54px 0 0;
    list-style: none;
}

.hero__facts li {
    display: grid;
}

.hero__facts strong {
    font-family: var(--display);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
}

.hero__facts span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-search {
    position: absolute;
    right: var(--gutter);
    bottom: 0;
    left: var(--gutter);
    z-index: 3;
    display: grid;
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    min-height: 112px;
    grid-template-columns: 1fr 1fr 0.75fr auto;
    align-items: stretch;
    margin-inline: auto;
    color: var(--ink-deep);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(50%);
}

.quick-search__field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.quick-search label {
    margin-bottom: 6px;
    color: var(--muted);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quick-search input,
.quick-search select {
    width: 100%;
    min-height: 32px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
}

.quick-search .button {
    min-width: 210px;
    border-radius: 0;
}

/* Introduction and cottages */

.intro-section {
    padding-top: clamp(148px, 15vw, 210px);
    background: var(--sand-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1.65fr);
    gap: 5vw;
}

.intro-grid > .eyebrow {
    margin-top: 15px;
}

.intro-copy {
    display: grid;
    max-width: 870px;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 54px;
    margin-top: 45px;
    margin-left: auto;
}

.intro-copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.cottages-section {
    background: var(--paper);
}

.cottage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 7vw, 88px) clamp(26px, 4vw, 56px);
}

.cottage-card:nth-child(even) {
    margin-top: 86px;
}

.cottage-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}

.cottage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cottage-card__image:hover img {
    transform: scale(1.035);
}

.cottage-card__number {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--ink-deep);
    background: rgba(255, 253, 249, 0.92);
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.09em;
}

.cottage-card__body {
    padding: 28px 5px 0;
}

.cottage-card__title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
}

.cottage-card__title h3 {
    margin-bottom: 12px;
    font-size: clamp(36px, 4vw, 50px);
}

.cottage-card__title > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cottage-card__body > p {
    max-width: 480px;
    margin-bottom: 19px;
    color: var(--muted);
}

.inline-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.inline-facts li {
    color: var(--ink);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inline-facts li::before {
    margin-right: 8px;
    color: var(--coral);
    content: "•";
}

.cottage-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.select-link {
    color: var(--coral-dark);
}

/* Territory */

.place-section {
    color: var(--white);
    background: var(--ink);
}

.story-grid {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.story-card {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: var(--ink-deep);
}

.story-card--pool {
    grid-row: 1 / span 2;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card--playground img {
    object-position: center 56%;
}

.story-card:hover img {
    transform: scale(1.025);
}

.story-card::after {
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(0deg, rgba(6, 27, 25, 0.72), transparent);
    content: "";
}

.story-card figcaption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 1;
    display: grid;
}

.story-card figcaption span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.73);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.story-card figcaption strong {
    max-width: 470px;
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 37px);
    font-weight: 400;
    line-height: 1.1;
}

.amenities-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin-top: 74px;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
}

.amenities-row > li {
    display: grid;
    padding: 30px clamp(18px, 3vw, 35px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.amenities-row > li:last-child {
    border-right: 0;
}

.amenity-mark {
    margin-bottom: 31px;
    color: var(--pool);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.amenities-row strong {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
}

.amenities-row small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

/* Clarity */

.clarity-section {
    background: var(--sand-light);
}

.clarity-grid,
.context-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.clarity-grid article,
.context-grid article {
    min-height: 300px;
    padding: clamp(28px, 3.2vw, 43px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.clarity-grid article > span,
.context-grid article > span {
    display: block;
    min-height: 52px;
    color: var(--coral-dark);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.clarity-grid h3,
.context-grid h3 {
    margin-bottom: 22px;
    font-size: clamp(25px, 2.4vw, 34px);
}

.clarity-grid p,
.context-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Booking request */

.request-section {
    padding-block: clamp(86px, 10vw, 138px);
    color: var(--white);
    background: var(--pool-dark);
}

.request-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
    align-items: start;
    gap: clamp(50px, 9vw, 130px);
}

.request-copy {
    position: sticky;
    top: 125px;
}

.request-copy h2 {
    max-width: 600px;
    margin-bottom: 27px;
    color: var(--white);
    font-size: clamp(48px, 6vw, 76px);
}

.request-copy__lead {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
}

.request-points {
    padding: 0;
    margin: 45px 0 32px;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.request-points li {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-block: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 14px;
}

.request-points span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.13em;
}

.request-assurance {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.request-card {
    scroll-margin-top: 104px;
    padding: clamp(28px, 5vw, 60px);
    color: var(--ink-deep);
    background: var(--paper);
    box-shadow: 0 28px 70px rgba(13, 41, 38, 0.22);
}

.booking-form {
    display: grid;
    gap: 23px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field > span {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.field small {
    color: var(--muted);
    font-size: 9px;
}

.field input,
.field select {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: var(--white);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus {
    border-color: var(--pool-dark);
    box-shadow: 0 0 0 3px rgba(39, 135, 151, 0.12);
}

.field input.is-invalid,
.field select.is-invalid {
    border-color: var(--coral-dark);
}

.form-divider {
    height: 1px;
    margin-block: 5px;
    background: var(--line);
}

.consent-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--pool-dark);
}

.consent-field a {
    color: var(--ink-deep);
    border-bottom: 1px solid var(--line);
}

.consent-field a:hover {
    border-color: currentColor;
}

.booking-form__privacy {
    margin: -4px 0 0 32px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.booking-form__privacy a {
    color: var(--ink-deep);
    border-bottom: 1px solid var(--line);
}

.booking-form__privacy a:hover {
    border-color: currentColor;
}

.booking-form__status {
    min-height: 0;
    font-size: 14px;
}

.booking-form__status:not(:empty) {
    padding: 13px 15px;
    color: #7d2d1d;
    border-left: 3px solid var(--coral-dark);
    background: #fff1ed;
}

.booking-form__status.is-success:not(:empty) {
    color: var(--ink);
    border-color: var(--pool-dark);
    background: #e7f5f3;
}

.booking-availability {
    min-height: 0;
    margin-top: -5px;
    font-size: 13px;
    line-height: 1.45;
}

.booking-availability:not(:empty) {
    padding: 10px 12px;
    color: #526763;
    border-radius: 7px;
    background: #f1f4f2;
}

.booking-availability.is-free:not(:empty) {
    color: var(--ink);
    background: #e7f5f3;
}

.booking-availability.is-busy:not(:empty) {
    color: #7d2d1d;
    background: #fff1ed;
}

.booking-form.is-submitting {
    opacity: 0.7;
    pointer-events: none;
}

.booking-form__alternative {
    margin: -5px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.booking-form__alternative a {
    color: var(--ink);
    border-bottom: 1px solid currentColor;
}

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

.form-notice {
    display: grid;
    gap: 4px;
    margin-bottom: 25px;
    padding: 17px 19px;
    border-left: 3px solid var(--pool-dark);
    background: #e7f5f3;
    font-size: 14px;
}

.form-notice--error {
    border-color: var(--coral-dark);
    background: #fff1ed;
}

/* Reviews, FAQ and contact */

.reviews-section {
    background: var(--paper);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.review-card {
    min-height: 310px;
    padding: clamp(30px, 4vw, 52px);
    margin: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.review-card__rating {
    margin-bottom: 42px;
    color: var(--coral);
    font-size: 14px;
    letter-spacing: 0.22em;
}

.review-card p {
    margin-bottom: 30px;
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 31px);
    line-height: 1.28;
}

.review-card footer {
    color: var(--muted);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.empty-state {
    padding: 30px;
}

.faq-section {
    background: var(--sand-light);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(48px, 10vw, 140px);
}

.faq-layout > div:first-child {
    position: sticky;
    top: 125px;
    align-self: start;
}

.faq-layout > div:first-child > p:last-child {
    max-width: 390px;
    margin-top: 29px;
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

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

.faq-list summary {
    display: grid;
    min-height: 86px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding-block: 22px;
    font-family: var(--display);
    font-size: clamp(21px, 2.3vw, 29px);
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary span {
    font-family: var(--sans);
    font-size: 25px;
    font-weight: 300;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 680px;
    padding: 0 40px 28px 0;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.contact-section {
    display: grid;
    min-height: 680px;
    grid-template-columns: 1.28fr 0.72fr;
    background: var(--sand);
}

.contact-section__image {
    min-height: 520px;
}

.contact-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section__panel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(45px, 7vw, 100px);
}

.contact-section__panel h2 {
    margin-bottom: 34px;
    font-size: clamp(44px, 5vw, 70px);
}

.contact-section address {
    display: grid;
    gap: 6px;
    margin-bottom: 37px;
    font-style: normal;
}

.contact-section address span {
    max-width: 450px;
    margin-bottom: 12px;
    color: var(--muted);
}

.contact-section address a {
    width: max-content;
    border-bottom: 1px solid var(--line);
}

/* Footer */

.site-footer {
    padding: 76px 0 28px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink-deep);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.72fr 1fr 1fr;
    gap: clamp(34px, 4.5vw, 70px);
}

.brand--footer {
    width: 158px;
    height: auto;
    color: var(--white);
}

.brand--footer .brand__logo {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
}

.site-footer__summary {
    max-width: 330px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.site-footer__nav,
.site-footer__legal,
.site-footer__contacts {
    display: grid;
    align-content: start;
    gap: 10px;
    font-size: 14px;
    font-style: normal;
}

.site-footer__nav a,
.site-footer__legal a,
.site-footer__contacts a {
    width: max-content;
}

.site-footer__nav a:hover,
.site-footer__legal a:hover,
.site-footer__contacts a:hover {
    color: var(--white);
}

.site-footer__contacts span {
    max-width: 340px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__label {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mobile-stay-bar {
    display: none;
}

/* Legal pages */

.legal-page .site-header {
    color: var(--ink-deep);
    border-color: var(--line);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 8px 34px rgba(13, 41, 38, 0.08);
    backdrop-filter: blur(16px);
}

.legal-page .site-header .brand__logo--light {
    opacity: 0;
}

.legal-page .site-header .brand__logo--color {
    opacity: 1;
}

.legal-main {
    padding-top: 82px;
    background: var(--sand-light);
}

.legal-hero {
    padding-block: clamp(74px, 9vw, 124px) clamp(65px, 8vw, 106px);
    color: var(--white);
    background: var(--ink);
}

.legal-hero .eyebrow {
    color: rgba(255, 255, 255, 0.64);
}

.legal-hero .breadcrumbs {
    margin-bottom: 38px;
}

.legal-hero h1 {
    max-width: 970px;
    margin-bottom: 28px;
    font-size: clamp(52px, 7.7vw, 104px);
}

.legal-hero .site-shell > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 2vw, 21px);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: clamp(60px, 8vw, 122px);
    align-items: start;
    padding-block: clamp(76px, 10vw, 140px);
}

.legal-document {
    min-width: 0;
}

.legal-document > section + section {
    padding-top: 54px;
    margin-top: 54px;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin-bottom: 25px;
    font-size: clamp(34px, 4vw, 51px);
}

.legal-document p,
.legal-document li {
    max-width: 790px;
    color: #41514d;
}

.legal-document p:last-child,
.legal-document ul:last-child {
    margin-bottom: 0;
}

.legal-document ul {
    padding-left: 23px;
    margin-block: 0 24px;
}

.legal-document li + li {
    margin-top: 10px;
}

.legal-document a {
    color: var(--pool-dark);
    border-bottom: 1px solid rgba(39, 135, 151, 0.35);
}

.legal-document a:hover {
    border-color: currentColor;
}

.legal-revision {
    margin-bottom: 45px;
    color: var(--muted);
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-details {
    margin: 0;
    border-top: 1px solid var(--line);
}

.legal-details > div {
    display: grid;
    grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.35fr);
    gap: 28px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.legal-details dt {
    color: var(--muted);
    font-size: 13px;
}

.legal-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.legal-note {
    max-width: 790px;
    padding: 23px 25px;
    margin-top: 30px;
    color: var(--ink-deep);
    border-left: 3px solid var(--coral);
    background: var(--sand);
    font-size: 14px;
}

/* Test payment */

.payment-test-main {
    padding-top: 82px;
    background: var(--sand-light);
}

.payment-test-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    gap: clamp(54px, 8vw, 112px);
    align-items: start;
    padding-block: clamp(70px, 9vw, 126px);
}

.payment-test-intro {
    position: sticky;
    top: 124px;
}

.payment-test-intro .breadcrumbs {
    margin-bottom: 52px;
    color: var(--muted);
}

.payment-test-intro h1 {
    max-width: 580px;
    margin-bottom: 27px;
    font-size: clamp(52px, 6vw, 86px);
}

.payment-test-intro > p:last-child {
    max-width: 530px;
    margin-bottom: 0;
    color: var(--muted);
}

.payment-test-card {
    padding: clamp(27px, 4vw, 52px);
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.payment-test-badge {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 36px;
    color: #713d12;
    background: #f9e4be;
    font-family: var(--label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.payment-test-message {
    padding: 17px 19px;
    margin-bottom: 28px;
    border-left: 3px solid;
    font-size: 14px;
}

.payment-test-message--success {
    color: #124b39;
    border-color: #2c8b6a;
    background: #e6f4ee;
}

.payment-test-message--error {
    color: #792f27;
    border-color: var(--coral);
    background: #f9e8e4;
}

.payment-test-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 31px;
    border-bottom: 1px solid var(--line);
}

.payment-test-card__heading .eyebrow {
    margin-bottom: 12px;
}

.payment-test-card__heading h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4vw, 52px);
}

.payment-test-status {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 999px;
    font-family: var(--label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.payment-test-status--pending {
    color: #6c460b;
    background: #f8e8c9;
}

.payment-test-status--paid {
    color: #12513e;
    background: #e2f2eb;
}

.payment-test-status--expired,
.payment-test-status--cancelled,
.payment-test-status--failed {
    color: #6b3d37;
    background: #f4e5e2;
}

.payment-test-details {
    margin: 0;
}

.payment-test-details > div {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.payment-test-details dt {
    color: var(--muted);
    font-size: 12px;
}

.payment-test-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.payment-test-details__amount dd {
    color: var(--ink);
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
}

.payment-test-form {
    padding-top: 31px;
}

.payment-test-form .button {
    width: 100%;
    min-height: 58px;
    border: 0;
}

.payment-test-expiry,
.payment-test-closed {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.payment-test-safety {
    padding: 25px;
    margin-top: 34px;
    border: 1px solid var(--line);
    background: var(--sand-light);
}

.payment-test-safety h3 {
    margin-bottom: 12px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
}

.payment-test-safety p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.payment-test-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    padding-top: 25px;
    font-size: 12px;
}

.payment-test-legal a {
    color: var(--pool-dark);
    border-bottom: 1px solid rgba(24, 95, 109, 0.3);
}

.legal-aside {
    position: sticky;
    top: 116px;
    padding: 30px;
    color: var(--white);
    background: var(--ink-deep);
}

.legal-aside .eyebrow {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

.legal-nav {
    display: grid;
}

.legal-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
    color: var(--white);
}

.legal-nav a[aria-current="page"] span {
    color: #ee9a83;
}

.legal-aside__contact {
    display: grid;
    gap: 4px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
}

.legal-aside__contact span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.legal-aside__contact a {
    overflow-wrap: anywhere;
}

/* Not found */

.error-main {
    padding-top: 82px;
    background: var(--sand-light);
}

.error-hero {
    display: flex;
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
    align-items: center;
    padding-block: clamp(84px, 11vw, 150px);
}

.error-hero__inner {
    display: grid;
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr);
    gap: clamp(55px, 9vw, 140px);
    align-items: center;
}

.error-code {
    margin-bottom: 0;
    color: rgba(23, 60, 56, 0.72);
    font-family: var(--display);
    font-size: clamp(130px, 21vw, 290px);
    line-height: 0.72;
    letter-spacing: -0.08em;
}

.error-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(58px, 7.5vw, 102px);
}

.error-hero__inner > div > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 19px;
}

.error-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 37px;
}

.error-cottages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    max-width: 620px;
    margin-top: 48px;
    background: rgba(23, 60, 56, 0.16);
    border: 1px solid rgba(23, 60, 56, 0.16);
}

.error-cottages a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 17px 19px;
    color: var(--ink-deep);
    background: var(--sand-light);
    transition: color 180ms ease, background 180ms ease;
}

.error-cottages a:hover {
    color: var(--white);
    background: var(--ink-deep);
}

.error-cottages strong {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
}

.error-cottages span {
    color: var(--muted);
    font-size: 12px;
}

.error-cottages a:hover span {
    color: rgba(255, 255, 255, 0.7);
}

/* Cottage detail */

.cottage-hero {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: flex-end;
    color: var(--white);
    background: var(--ink-deep);
}

.cottage-hero__media,
.cottage-hero__veil {
    position: absolute;
    inset: 0;
}

.cottage-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cottage-hero__veil {
    background:
        linear-gradient(90deg, rgba(6, 27, 25, 0.78), rgba(6, 27, 25, 0.12) 70%),
        linear-gradient(0deg, rgba(6, 27, 25, 0.7), transparent 60%);
}

.cottage-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 150px 74px;
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.cottage-hero h1 {
    max-width: 1080px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(58px, 7.4vw, 104px);
}

.cottage-hero__content > p:not(.hero__kicker) {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
}

.cottage-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-block: 31px 34px;
}

.cottage-hero__facts span {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cottage-hero__facts span::before {
    margin-right: 10px;
    color: var(--pool);
    content: "•";
}

.cottage-overview {
    background: var(--sand-light);
}

.cottage-overview__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(50px, 10vw, 140px);
}

.cottage-overview__copy > p {
    margin-bottom: 45px;
    color: var(--muted);
    font-size: 19px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.feature-list > div {
    padding: 16px 10px 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.feature-list span {
    margin-right: 14px;
    color: var(--coral-dark);
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.cottage-gallery {
    padding-block: clamp(90px, 11vw, 150px);
    background: var(--paper);
}

.gallery-mosaic {
    display: grid;
    min-height: 800px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.gallery-mosaic__item {
    min-height: 0;
    overflow: hidden;
    background: var(--sand);
}

.gallery-mosaic__item--1 {
    grid-row: 1 / span 2;
}

.gallery-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.gallery-mosaic__item:hover img,
.gallery-strip a:hover img {
    transform: scale(1.03);
}

.gallery-strip {
    display: grid;
    grid-auto-columns: minmax(240px, 28%);
    grid-auto-flow: column;
    gap: 14px;
    padding-bottom: 12px;
    margin-top: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
}

.gallery-strip a {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    scroll-snap-align: start;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.cottage-context {
    background: var(--sand-light);
}

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

.context-grid article {
    min-height: 270px;
}

.more-cottages {
    background: var(--paper);
}

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

.mini-cottage-card > a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}

.mini-cottage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.mini-cottage-card > a:hover img {
    transform: scale(1.035);
}

.mini-cottage-card > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
}

.mini-cottage-card h3,
.mini-cottage-card p {
    margin-bottom: 0;
}

.mini-cottage-card h3 {
    font-size: 31px;
}

.mini-cottage-card p {
    color: var(--muted);
    font-family: var(--label);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1120px) {
    .site-nav {
        gap: 22px;
    }

    .header-phone {
        display: none;
    }

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

    .request-layout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 55px;
    }

    .gallery-mosaic {
        min-height: 650px;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        position: absolute;
        top: 14px;
        right: var(--gutter);
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        border: 1px solid currentColor;
        border-radius: 50%;
    }

    .site-header__actions {
        display: none;
    }

    .site-header.is-open {
        backdrop-filter: none;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 10;
        display: flex;
        width: 100%;
        height: calc(100vh - 82px);
        height: calc(100dvh - 82px);
        visibility: hidden;
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 42px var(--gutter);
        color: var(--ink-deep);
        background: var(--paper);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-header.is-open .site-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
        padding-block: 18px;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 34px;
        letter-spacing: -0.02em;
        text-transform: none;
    }

    .site-nav .site-nav__request {
        display: block;
        color: var(--coral-dark);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 830px;
    }

    .hero__content {
        padding-bottom: 180px;
    }

    .quick-search {
        grid-template-columns: 1fr 1fr;
    }

    .quick-search__field:nth-child(2) {
        border-right: 0;
    }

    .quick-search__field:nth-child(3) {
        border-top: 1px solid var(--line);
    }

    .quick-search .button {
        border-top: 1px solid var(--line);
    }

    .intro-grid,
    .cottage-overview__grid {
        grid-template-columns: 1fr;
    }

    .intro-grid > .eyebrow {
        margin-bottom: 0;
    }

    .intro-copy {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-left: 0;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading--split > p {
        max-width: 600px;
    }

    .story-grid {
        min-height: 930px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.35fr 0.65fr;
    }

    .story-card--pool {
        grid-row: auto;
        grid-column: 1 / span 2;
    }

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

    .amenities-row > li:nth-child(2) {
        border-right: 0;
    }

    .amenities-row > li:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .request-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .request-copy,
    .faq-layout > div:first-child {
        position: static;
    }

    .request-copy__lead {
        max-width: 620px;
    }

    .request-points {
        max-width: 620px;
    }

    .contact-section {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .contact-section__image {
        min-height: 480px;
    }

    .contact-section__panel {
        padding-block: 80px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__contacts {
        grid-column: auto;
    }

    .site-footer__nav a,
    .site-footer__legal a,
    .site-footer__contacts a {
        display: flex;
        min-height: 44px;
        align-items: center;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .legal-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 45px;
    }

    .legal-aside .eyebrow {
        grid-column: 1 / span 2;
    }

    .legal-aside__contact {
        align-content: end;
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
    }

    .cottage-hero {
        min-height: 700px;
    }

    .gallery-mosaic {
        min-height: 760px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1.2fr 0.8fr 0.8fr;
    }

    .gallery-mosaic__item--1 {
        grid-row: auto;
        grid-column: 1 / span 2;
    }

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

@media (max-width: 700px) {
    :root {
        --gutter: 20px;
    }

    html {
        scroll-padding-top: 75px;
    }

    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    h2,
    .display-title {
        font-size: clamp(40px, 13vw, 58px);
    }

    .section-space {
        padding-block: 82px;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-nav {
        top: 72px;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
    }

    .brand {
        width: 91px;
        height: 57px;
    }

    .hero {
        min-height: 720px;
        align-items: flex-end;
    }

    .hero__media img {
        object-position: 53% center;
    }

    .hero__veil {
        background:
            linear-gradient(0deg, rgba(6, 27, 25, 0.88) 0%, rgba(6, 27, 25, 0.35) 72%, rgba(6, 27, 25, 0.36) 100%);
    }

    .hero__content {
        padding-block: 130px 68px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(34px, 8.7vw, 40px);
    }

    .hero__lead {
        max-width: calc(100% - 18px);
        font-size: 16px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

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

    .hero__facts li {
        min-width: 0;
    }

    .hero__facts strong {
        font-size: 26px;
    }

    .hero__facts span {
        min-width: 0;
        font-size: 7.5px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .quick-search {
        display: none;
    }

    .intro-section {
        padding-top: 82px;
    }

    .intro-copy {
        margin-top: 31px;
    }

    .cottage-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .cottage-card:nth-child(even) {
        margin-top: 0;
    }

    .cottage-card__body {
        padding-top: 22px;
    }

    .cottage-card__title h3 {
        font-size: 39px;
    }

    .story-grid {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .story-card,
    .story-card--pool {
        min-height: 390px;
        grid-column: auto;
    }

    .story-card--barbecue,
    .story-card--playground {
        min-height: 320px;
    }

    .amenities-row {
        grid-template-columns: 1fr;
        margin-top: 54px;
    }

    .amenities-row > li {
        min-height: 145px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .amenities-row > li:last-child {
        border-bottom: 0;
    }

    .amenity-mark {
        margin-bottom: 16px;
    }

    .clarity-grid,
    .context-grid {
        grid-template-columns: 1fr;
    }

    .clarity-grid article,
    .context-grid article {
        min-height: 0;
    }

    .request-section {
        padding-block: 80px;
    }

    .request-layout {
        gap: 40px;
    }

    .request-copy h2 {
        font-size: 51px;
    }

    .request-card {
        scroll-margin-top: 86px;
        padding: 27px 20px;
        margin-inline: -4px;
    }

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

    .reviews-list {
        display: flex;
        margin-right: calc(var(--gutter) * -1);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .review-card {
        min-width: min(86vw, 390px);
        min-height: 330px;
        scroll-snap-align: start;
    }

    .faq-layout {
        gap: 35px;
    }

    .faq-list summary {
        min-height: 78px;
        font-size: 22px;
    }

    .contact-section__image {
        min-height: 390px;
    }

    .contact-section__panel {
        padding: 64px var(--gutter);
    }

    .site-footer {
        padding-top: 62px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer__contacts {
        grid-column: auto;
    }

    .legal-hero {
        padding-block: 64px 66px;
    }

    .legal-hero h1 {
        font-size: clamp(43px, 13vw, 64px);
        overflow-wrap: anywhere;
    }

    .error-hero {
        min-height: calc(100dvh - 72px);
        padding-block: 74px 92px;
    }

    .error-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .error-code {
        font-size: clamp(118px, 46vw, 180px);
    }

    .error-hero h1 {
        font-size: clamp(52px, 16vw, 72px);
    }

    .error-hero__inner > div > p:not(.eyebrow) {
        font-size: 16px;
    }

    .error-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .error-cottages {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .legal-layout {
        gap: 45px;
        padding-block: 66px 84px;
    }

    .legal-document > section + section {
        padding-top: 39px;
        margin-top: 39px;
    }

    .legal-details > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-block: 15px;
    }

    .legal-aside {
        display: block;
        padding: 25px 22px;
    }

    .legal-aside__contact {
        padding-top: 23px;
        margin-top: 23px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-stay-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 95;
        display: grid;
        min-height: 68px;
        grid-template-columns: 92px 1fr;
        padding-bottom: env(safe-area-inset-bottom);
        color: var(--white);
        background: var(--ink-deep);
        box-shadow: 0 -8px 28px rgba(13, 41, 38, 0.2);
    }

    .mobile-stay-bar__phone {
        display: grid;
        place-items: center;
        gap: 1px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        font-size: 9px;
    }

    .mobile-stay-bar__phone svg {
        width: 21px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.6;
    }

    .mobile-stay-bar__request {
        display: grid;
        place-items: center;
        background: var(--coral);
        font-family: var(--label);
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .cottage-hero {
        min-height: 690px;
    }

    .cottage-hero__media img {
        object-position: center;
    }

    .cottage-hero__veil {
        background: linear-gradient(0deg, rgba(6, 27, 25, 0.87), rgba(6, 27, 25, 0.15) 78%);
    }

    .cottage-hero__content {
        padding-block: 120px 62px;
    }

    .breadcrumbs {
        margin-bottom: 37px;
    }

    .cottage-hero h1 {
        font-size: clamp(46px, 12vw, 62px);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 230px 230px;
    }

    .gallery-strip {
        grid-auto-columns: 76%;
    }

    .more-cottages__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 430px) {
    .hero__facts span {
        max-width: 95px;
    }

    .cottage-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .gallery-mosaic {
        grid-template-rows: 330px 190px 190px;
        gap: 8px;
    }
}

@media (max-width: 800px) {
    .payment-test-layout {
        grid-template-columns: 1fr;
        gap: 46px;
        padding-block: 62px 78px;
    }

    .payment-test-intro {
        position: static;
    }

    .payment-test-intro .breadcrumbs {
        margin-bottom: 36px;
    }
}

@media (max-width: 540px) {
    .payment-test-card__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-test-details > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
