:root {
    --bg: #f7f3ec;
    --surface: #fffdf9;
    --surface-soft: #f2ece3;
    --text: #25231f;
    --muted: #6f6a61;
    --line: rgba(37, 35, 31, 0.12);
    --accent: #c96f4f;
    --accent-dark: #a95438;
    --olive: #7a7a58;
    --sand: #d9c9b6;
    --shadow: 0 24px 70px rgba(47, 39, 30, 0.10);
    --shadow-soft: 0 12px 34px rgba(47, 39, 30, 0.08);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --radius-xl: 42px;
    --shell: min(1220px, calc(100% - 40px));
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.shell { width: var(--shell); margin-inline: auto; }
.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;
    left: 16px;
    top: 12px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255, 253, 249, 0.94);
    border-bottom: 1px solid rgba(37, 35, 31, 0.07);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(37, 35, 31, 0.07); }
.site-header__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}
.brand__mark {
    width: 48px;
    height: 48px;
    color: #c99d63;
    flex: 0 0 auto;
}
.brand__mark svg { width: 100%; height: 100%; stroke-width: 1.25; }
.brand__text { display: grid; line-height: 1.05; gap: 4px; }
.brand__text strong {
    font-family: var(--serif);
    font-size: 1.62rem;
    font-weight: 500;
    letter-spacing: -.02em;
}
.brand__text small {
    color: var(--muted);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .11em;
}
.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 26px;
}
.site-nav a {
    position: relative;
    text-decoration: none;
    font-size: .9rem;
    color: #403d37;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 1px;
    background: var(--accent);
    transition: right .22s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 110;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.mobile-nav__inner { display: grid; gap: 6px; padding-block: 18px 24px; }
.mobile-nav__inner > a:not(.button) { padding: 12px 4px; text-decoration: none; border-bottom: 1px solid var(--line); }

/* Buttons */
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 650;
    font-size: .92rem;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; }
.button--header { min-height: 46px; background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(201, 111, 79, .2); }
.button--header:hover { background: var(--accent-dark); }
.button--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px rgba(201, 111, 79, .2); }
.button--primary:hover { background: var(--accent-dark); }
.button--outline { border-color: rgba(37,35,31,.24); background: transparent; }
.button--outline:hover { background: #fff; border-color: rgba(37,35,31,.4); }
.button--wide { width: min(100%, 410px); }
.text-link,
.hero__secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 650;
    text-decoration: none;
}
.text-link svg,
.hero__secondary svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg,
.hero__secondary:hover svg { transform: translateX(3px); }

/* Hero */
.hero {
    position: relative;
    min-height: 700px;
    height: calc(100vh - 82px);
    max-height: 860px;
    overflow: hidden;
    background: #51483e;
}
.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
    transform: scale(1.015);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23,20,17,.72) 0%, rgba(23,20,17,.48) 34%, rgba(23,20,17,.12) 68%, rgba(23,20,17,.04) 100%),
        linear-gradient(0deg, rgba(18,16,14,.18), transparent 48%);
}
.hero__content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 130px;
    color: #fff;
}
.eyebrow,
.kicker {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--olive);
}
.hero .eyebrow { color: rgba(255,255,255,.84); }
.hero h1 {
    margin: 12px 0 12px;
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(4.25rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .94;
    text-wrap: balance;
}
.hero__line { width: 64px; height: 2px; background: #d7a66d; margin: 8px 0 18px; }
.hero__tagline {
    max-width: 540px;
    margin: 0;
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    color: rgba(255,255,255,.91);
    text-shadow: 0 1px 18px rgba(0,0,0,.2);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.hero__secondary { color: #fff; }

/* Facts */
.hero-facts-wrap { position: relative; z-index: 8; margin-top: -72px; }
.hero-facts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    background: rgba(255,253,249,.98);
    border: 1px solid rgba(37,35,31,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.hero-fact {
    min-height: 140px;
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-content: center;
    justify-content: center;
    column-gap: 14px;
    row-gap: 2px;
    padding: 26px 18px;
    text-align: left;
}
.hero-fact:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: var(--line);
}
.hero-fact__icon { grid-row: 1 / span 2; align-self: center; color: #9b8f6e; }
.hero-fact__icon svg { width: 32px; height: 32px; stroke-width: 1.35; }
.hero-fact strong {
    align-self: end;
    font-family: var(--serif);
    font-size: 2.15rem;
    line-height: 1;
    font-weight: 400;
}
.hero-fact span:last-child {
    align-self: start;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--muted);
}

/* Global sections */
.section { padding: 100px 0; }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
    gap: 52px;
    align-items: end;
    margin-bottom: 42px;
}
.section-heading h2,
.intro h2,
.trust-card h2,
.faq h2,
.booking-cta h2 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.03;
    letter-spacing: -.035em;
    font-weight: 400;
}
.section-heading p,
.section-heading__copy p { margin: 0; color: var(--muted); }
.section-heading--center {
    display: block;
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}
.section-heading--center p { max-width: 640px; margin: 14px auto 0; }

/* Intro and teaser */
.intro { padding-top: 118px; }
.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: clamp(64px, 8vw, 130px);
    align-items: center;
}
.intro__lead h2 {
    max-width: 760px;
    margin: 10px 0 0;
    font-family: var(--serif);
    font-size: clamp(3.5rem, 5.1vw, 5.65rem);
    line-height: .98;
    letter-spacing: -.04em;
    font-weight: 400;
    text-wrap: balance;
}
.intro__copy {
    max-width: 520px;
    justify-self: end;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.intro__copy p { margin: 0 0 20px; }
.intro__copy p:last-child { margin-bottom: 0; }
.image-teaser {
    margin-top: 58px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.25fr 1fr 1.1fr;
    gap: 14px;
}
.image-teaser__item {
    border: 0;
    padding: 0;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    cursor: zoom-in;
    background: #ddd;
}
.image-teaser__item:nth-child(3) { aspect-ratio: 1 / 1.08; }
.image-teaser__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.image-teaser__item:hover img { transform: scale(1.035); }

/* Photo tour */
.photo-tour { background: var(--surface); }
.photo-tour__nav-wrap { position: relative; margin-bottom: 54px; }
.photo-tour__nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}
.photo-tour__tab {
    min-width: 148px;
    max-width: 148px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    scroll-snap-align: start;
}
.photo-tour__tab-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
    box-shadow: 0 5px 16px rgba(37,35,31,.06);
}
.photo-tour__tab-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-tour__tab:hover .photo-tour__tab-image img { transform: scale(1.05); }
.photo-tour__tab > span:last-child { display: block; margin-top: 8px; font-size: .78rem; line-height: 1.2; }
.photo-tour__group { scroll-margin-top: 110px; padding: 38px 0; border-top: 1px solid var(--line); }
.photo-tour__group:first-child { border-top: 0; padding-top: 10px; }
.photo-tour__group-heading { display: block; margin-bottom: 18px; padding-left: 0 !important; }
.photo-tour__group-heading::before,
.photo-tour__group h3::before { content: none !important; display: none !important; }
.photo-tour__group h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 1.95rem); font-weight: 500; }
.photo-tour__grid { display: grid; gap: 16px; }
.photo-tour__grid--uniform { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-tour__grid--count-1 { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
.photo-tour__grid--count-3,
.photo-tour__grid--count-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.photo-tour__image { border: 0; padding: 0; height: 205px; overflow: hidden; border-radius: 18px; cursor: zoom-in; background: #ece8e1; }
.photo-tour__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.photo-tour__image:hover img { transform: scale(1.025); }

/* Amenities */
.amenities { padding-top: 110px; }
.amenities__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37,35,31,.07);
    padding: 70px 58px 44px;
    box-shadow: 0 20px 60px rgba(37,35,31,.05);
}
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 54px;
    border-top: 1px solid var(--line);
}
.amenity-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    min-height: 210px;
    padding: 32px 24px 32px 0;
    border-bottom: 1px solid var(--line);
}
.amenity-group:nth-child(5n + 2),
.amenity-group:nth-child(5n + 3),
.amenity-group:nth-child(5n + 4),
.amenity-group:nth-child(5n + 5) { padding-left: 24px; border-left: 1px solid var(--line); }
.amenity-group__icon { color: var(--olive); margin-top: 2px; }
.amenity-group__icon svg { width: 27px; height: 27px; stroke-width: 1.45; }
.amenity-group h3 { margin: 0 0 10px; font-size: .9rem; line-height: 1.3; }
.amenity-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.amenity-group li { color: #4b4842; font-size: .82rem; line-height: 1.35; }
.amenity-group li small { display: block; margin-top: 3px; color: var(--muted); font-size: .74rem; }

/* Map */
.location { padding-top: 30px; }
.map-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #dce7d2;
    border: 1px solid rgba(37,35,31,.08);
    box-shadow: var(--shadow-soft);
}
.map-card__static-link {
    display: block;
    text-decoration: none;
}
.map-card__static-image {
    display: block;
    width: 100%;
    height: auto;
}
.map-card__static-link:hover .map-card__static-image,
.map-card__static-link:focus-visible .map-card__static-image {
    filter: saturate(1.02) contrast(1.01);
}

/* Trust */
.trust { padding-top: 40px; }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.trust-card {
    min-height: 390px;
    border-radius: var(--radius-lg);
    padding: 46px;
    background: var(--surface);
    border: 1px solid rgba(37,35,31,.08);
    box-shadow: 0 14px 45px rgba(37,35,31,.05);
}
.trust-card--review { background: #2e3029; color: #fff; }
.trust-card--review .kicker { color: #d8c79d; }
.trust-card--review .text-link { color: #fff; }
.trust-card__metric { display: flex; align-items: end; gap: 14px; margin: 24px 0 14px; }
.trust-card__metric strong { font-family: var(--serif); font-weight: 400; font-size: 4.7rem; line-height: .8; }
.trust-card__metric span { color: rgba(255,255,255,.68); font-size: .85rem; }
.trust-card__lead { font-family: var(--serif); font-size: 1.45rem; margin: 0 0 20px; }
.trust-card blockquote { margin: 22px 0; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.2); }
.trust-card blockquote footer { margin-top: 10px; color: rgba(255,255,255,.66); }
.host-row { display: flex; align-items: center; gap: 18px; margin: 22px 0; }
.host-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ddd0be;
    font-family: var(--serif);
    font-size: 2rem;
}
.host-row h2 { margin: 0; font-size: 2.35rem; }
.host-row p { margin: 3px 0 0; color: var(--muted); }
.host-details { display: flex; gap: 24px; padding: 18px 0; margin: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.host-details strong { display: block; color: var(--text); }

/* House rules */
.house-rules { padding-top: 26px; }
.house-rules__wrap { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid rgba(37,35,31,.08); box-shadow: 0 14px 45px rgba(37,35,31,.05); padding: 48px; }
.house-rules__sections { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.house-rules__section h3 { margin: 0 0 20px; font-size: 1.25rem; }
.house-rules__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.house-rules__item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); }
.house-rules__item:first-child { border-top: 0; padding-top: 0; }
.house-rules__icon { color: var(--olive); }
.house-rules__icon svg { width: 24px; height: 24px; stroke-width: 1.55; }

/* FAQ */
.faq { padding-top: 30px; }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq__intro { position: sticky; top: 116px; }
.faq__intro p { color: var(--muted); }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--serif);
    font-size: 1.35rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { font-family: var(--sans); font-size: 1.3rem; color: var(--accent); transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); }

/* Booking CTA */
.booking-cta { padding: 40px 0 90px; }
.booking-cta__card {
    display: grid;
    grid-template-columns: .38fr .62fr;
    min-height: 400px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid rgba(37,35,31,.07);
    box-shadow: var(--shadow);
}
.booking-cta__image { min-height: 100%; }
.booking-cta__image img { width: 100%; height: 100%; object-fit: cover; }
.booking-cta__content { padding: 56px 64px; align-self: center; }
.booking-cta__content h2 { font-size: clamp(2.65rem, 4.4vw, 4rem); }
.booking-cta__content > p { color: var(--muted); max-width: 660px; }
.booking-cta__benefits { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 26px 0; color: #57534d; font-size: .84rem; }
.booking-cta__benefits span { display: inline-flex; align-items: center; gap: 8px; }
.booking-cta__benefits svg { width: 20px; height: 20px; color: var(--olive); }

/* Footer */
.site-footer { background: #23231f; color: rgba(255,255,255,.78); padding-top: 68px; }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr .95fr; gap: 54px; padding-bottom: 56px; }
.site-footer__brand p { margin: 22px 0 0; max-width: 320px; color: rgba(250,244,235,.82); line-height: 1.7; }
.brand--footer { color: #fff; }
.brand--footer .brand__text small { color: rgba(255,255,255,.52); }
.site-footer h2 { margin: 0 0 15px; color: #fff; font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.48);
    font-size: .76rem;
}

/* Generic content pages */
.page-content,
.error-page { width: var(--shell); margin-inline: auto; padding: 90px 0; }
.page-content h1,
.error-page h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 40px;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(20,19,17,.9);
    cursor: zoom-out;
}
.lightbox__figure { position: relative; z-index: 2; margin: 0; max-width: min(1200px, 94vw); max-height: 88vh; }
.lightbox__figure img { max-width: 100%; max-height: 88vh; width: auto; height: auto; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox__close {
    position: fixed;
    z-index: 4;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(20,19,17,.45);
    color: #fff;
    cursor: pointer;
}
.lightbox__close svg { width: 22px; height: 22px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Tablet */
@media (max-width: 1060px) {
    :root { --shell: min(100% - 32px, 980px); }
    .site-nav { display: none; }
    .site-header__inner { grid-template-columns: auto 1fr auto; }
    .menu-toggle { display: inline-flex; }
    .button--header { display: none; }
    .hero { min-height: 650px; height: 76vh; }
    .hero h1 { font-size: clamp(4rem, 10vw, 6rem); }
    .hero-facts { grid-template-columns: repeat(5, minmax(0,1fr)); }
    .hero-fact { min-height: 120px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; justify-items: center; text-align: center; gap: 4px; }
    .hero-fact__icon { grid-row: auto; }
    .hero-fact__icon svg { width: 26px; height: 26px; }
    .hero-fact strong { font-size: 1.7rem; }
    .intro__grid { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: 48px; }
    .intro__lead h2 { font-size: clamp(3.2rem, 6.8vw, 4.6rem); }
    .image-teaser { grid-template-columns: repeat(3, 1fr); }
    .image-teaser__item:nth-child(4), .image-teaser__item:nth-child(5) { display: none; }
    .photo-tour__grid--uniform,
    .photo-tour__grid--count-3,
    .photo-tour__grid--count-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .photo-tour__group { padding: 30px 0; }
    .photo-tour__image { height: 185px; }
    .amenities__grid { grid-template-columns: repeat(2, 1fr); }
    .amenity-group,
    .amenity-group:nth-child(n) { padding: 28px 22px; border-left: 0; border-bottom: 1px solid var(--line); }
    .amenity-group:nth-child(even) { border-left: 1px solid var(--line); }
    .trust__grid { grid-template-columns: 1fr; }
    .house-rules__sections { grid-template-columns: 1fr; }
    .faq__grid { gap: 48px; }
    .booking-cta__card { grid-template-columns: .42fr .58fr; }
    .booking-cta__content { padding: 42px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
    .site-footer__brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 760px) {
    :root { --shell: calc(100% - 24px); --radius-lg: 24px; --radius-xl: 28px; }
    .site-header__inner { min-height: 70px; gap: 12px; }
    .brand__mark { width: 38px; height: 38px; }
    .brand__text strong { font-size: 1.25rem; }
    .brand__text small { font-size: .57rem; max-width: 190px; }
    .mobile-nav { inset: 70px 0 auto; }

    .hero { min-height: 660px; height: 82vh; max-height: 780px; }
    .hero__media { object-position: 57% 54%; }
    .hero__overlay {
        background: linear-gradient(0deg, rgba(22,19,16,.68) 0%, rgba(22,19,16,.32) 48%, rgba(22,19,16,.12) 100%);
    }
    .hero__content { justify-content: flex-end; padding: 0 0 118px; }
    .hero h1 { font-size: clamp(3.7rem, 18vw, 5rem); max-width: 100%; }
    .hero__tagline { font-size: 1rem; max-width: 94%; }
    .hero__actions { gap: 12px; }
    .hero__secondary { width: 100%; }

    .hero-facts-wrap { margin-top: -74px; }
    .hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 22px;
    }
    .hero-fact { min-height: 118px; padding: 20px 12px; }
    .hero-fact:not(:last-child)::after { display: none; }
    .hero-fact:nth-child(odd) { border-right: 1px solid var(--line); }
    .hero-fact:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .hero-fact:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 0; }

    .section { padding: 74px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
    .section-heading h2,
    .intro h2,
    .faq h2,
    .booking-cta h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }

    .intro { padding-top: 90px; }
    .intro__grid { grid-template-columns: 1fr; gap: 28px; }
    .intro__lead h2 { font-size: clamp(2.8rem, 13vw, 4rem); max-width: 100%; }
    .intro__copy { max-width: 100%; justify-self: stretch; font-size: 1rem; line-height: 1.7; }
    .image-teaser { margin-top: 36px; grid-template-columns: 1.25fr 1fr; gap: 9px; }
    .image-teaser__item:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 1.55 / 1; }

    .photo-tour__tab { min-width: 112px; max-width: 112px; }
    .photo-tour__group { padding: 24px 0; }
    .photo-tour__group-heading { margin-bottom: 16px; }
    .photo-tour__grid--uniform,
    .photo-tour__grid--count-1,
    .photo-tour__grid--count-3,
    .photo-tour__grid--count-5 { grid-template-columns: 1fr; max-width: none; }
    .photo-tour__image { height: 160px; }

    .amenities { padding-top: 78px; }
    .amenities__card { padding: 48px 18px 20px; border-radius: 24px; }
    .amenities__grid { grid-template-columns: 1fr; margin-top: 34px; }
    .amenity-group,
    .amenity-group:nth-child(n) { min-height: 0; padding: 24px 4px; border-left: 0; border-bottom: 1px solid var(--line); }

    .location { padding-top: 14px; }
    .map-card { border-radius: 22px; }

    .trust__grid { gap: 16px; }
    .house-rules__wrap { padding: 32px 22px; }
    .trust-card { min-height: 0; padding: 30px 24px; border-radius: 24px; }
    .trust-card__metric strong { font-size: 4rem; }
    .host-details { flex-direction: column; gap: 10px; }

    .faq__grid { grid-template-columns: 1fr; gap: 30px; }
    .faq__intro { position: static; }
    .faq-item summary { font-size: 1.17rem; padding: 20px 0; }

    .booking-cta { padding: 18px 0 70px; }
    .booking-cta__card { grid-template-columns: 1fr; min-height: 0; border-radius: 26px; }
    .booking-cta__image { min-height: 230px; }
    .booking-cta__content { padding: 30px 24px 34px; }
    .booking-cta__benefits { display: grid; gap: 10px; }

    .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__brand { grid-column: auto; }
    .site-footer__bottom { flex-direction: column; gap: 4px; }

    .lightbox { padding: 18px; }
    .lightbox__close { top: 12px; right: 12px; }
}
