:root {
  --forest: #17382f;
  --forest-deep: #0f2822;
  --moss: #6f8062;
  --fern: #9faa86;
  --sand: #e8dcc5;
  --paper: #f4f0e7;
  --paper-dark: #ebe4d8;
  --ink: #18221f;
  --rust: #a55534;
  --white: #fffdf8;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --wrap: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
main section[id] { scroll-margin-top: 88px; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h2 { font-size: clamp(3rem, 6vw, 6.4rem); line-height: .92; margin-bottom: 36px; }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { color: #4b5551; }
.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-narrow { width: min(560px, calc(100vw - 64px)); }
.section { padding-block: clamp(88px, 12vw, 168px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--white); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 88px; display: flex; align-items: center; justify-content: space-between; padding-inline: max(32px, calc((100vw - 1240px) / 2)); color: var(--white); transition: color .35s, background .35s, height .35s, box-shadow .35s; }
.site-header.scrolled { height: 70px; background: rgba(244,240,231,.94); color: var(--ink); box-shadow: 0 1px 0 rgba(23,56,47,.1); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: auto; height: 74px; object-fit: contain; filter: invert(1); transition: height .35s, filter .35s; }
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.brand-mark svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.site-header.scrolled .brand-logo { height: 62px; filter: none; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); font-size: .79rem; font-weight: 650; text-transform: uppercase; letter-spacing: .09em; }
.site-nav > a:not(.button) { position: relative; padding-block: 8px; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; background: currentColor; margin: 6px auto; transition: transform .3s; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border: 1px solid transparent; font-size: .75rem; line-height: 1; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .25s, color .25s, transform .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--forest-deep); }
.button-light:hover { background: var(--sand); }
.button-sand { background: var(--sand); color: var(--forest-deep); }
.button-sand:hover { background: var(--white); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .68rem; }
.site-header.scrolled .button-light { background: var(--forest); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 5px; }
.eyebrow, .section-kicker { font-size: .7rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker { color: var(--rust); margin-bottom: 42px; }
.section-kicker-light { color: var(--sand); }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--forest-deep); }
.hero-backdrop { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(7,24,20,.72) 0%, rgba(7,24,20,.28) 60%, rgba(7,24,20,.2) 100%), linear-gradient(0deg, rgba(6,20,17,.48) 0%, transparent 40%), url("assets/hero-cabin-creek-v2.webp"); background-size: cover; background-position: center 30%; transform: scale(1.025); animation: heroIn 1.6s var(--ease) forwards; }
@keyframes heroIn { from { transform: scale(1.08); opacity: .7; } to { transform: scale(1.025); opacity: 1; } }
.hero-content { position: relative; z-index: 2; padding-top: 72px; }
.hero-location-mobile { display: none; }
.hero .eyebrow { margin-bottom: 28px; color: rgba(255,255,255,.78); }
.hero h1 { font-size: clamp(5rem, 11vw, 10.8rem); line-height: .75; margin: 0 0 42px; color: var(--white); }
.hero-copy { max-width: 510px; color: rgba(255,255,255,.82); font-size: 1.1rem; line-height: 1.65; }
.hero-actions, .closing-actions { display: flex; align-items: center; gap: 32px; margin-top: 36px; }
.hero-meta { position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: 30px; display: flex; justify-content: flex-end; gap: 28px; font-size: .71rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero-meta span + span::before { content: "·"; margin-right: 28px; }
.hero-scroll { position: absolute; z-index: 2; right: 26px; bottom: 40px; display: none; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }

.intro { display: grid; grid-template-columns: .7fr 2.1fr .8fr; gap: 72px; align-items: start; }
.intro .section-kicker { padding-top: 20px; }
.intro-copy h2 { max-width: 850px; }
.intro-copy p { max-width: 680px; font-size: 1.06rem; }
.intro-copy p + p { margin-top: 22px; }
.rating-card { margin-top: 86px; border-top: 1px solid rgba(23,56,47,.24); padding-top: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.rating-number { font-family: var(--serif); font-size: 3.8rem; line-height: 1; letter-spacing: -.05em; }
.rating-stars { color: var(--rust); font-size: .7rem; letter-spacing: .18em; margin-block: 8px; }
.rating-card > span:nth-of-type(3) { font-size: .82rem; }
.rating-card small { margin-top: 15px; color: var(--moss); text-transform: uppercase; letter-spacing: .08em; font-size: .62rem; }

.story { display: block; min-height: 0; padding: 0; background: var(--paper-dark); }
.story-images { min-height: 900px; position: relative; background: transparent; }
.story-image { margin: 0; position: absolute; overflow: hidden; }
.story-image img { height: 100%; object-fit: cover; }
.story-image-main { width: 74%; height: 72%; left: 0; top: 0; }
.story-image-detail { width: 39%; height: 54%; right: 0; bottom: 0; border: 12px solid var(--paper-dark); border-right: 0; border-bottom: 0; }
.story-copy { width: min(720px, calc(100vw - 64px)); margin: auto; padding: clamp(90px, 10vw, 130px) 0 0; }
.story-copy p { font-size: 1.04rem; }
.feature-list { list-style: none; margin: 42px 0 0; padding: 0; border-top: 1px solid rgba(23,56,47,.2); }
.feature-list li { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(23,56,47,.16); color: #4b5551; font-size: .88rem; }
.feature-list span { color: var(--ink); font-weight: 700; }

.details-strip { background: var(--forest); color: var(--white); padding-block: 46px; }
.details-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.details-grid > div { min-height: 100px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid rgba(255,255,255,.15); }
.details-grid > div:last-child { border-right: 0; }
.details-grid strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.details-grid span { margin-top: 8px; color: rgba(255,255,255,.65); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }

.experience { padding-bottom: clamp(56px, 5vw, 72px); }
.experience-heading { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: end; margin-bottom: 72px; }
.experience-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -16px; }
.experience-heading h2 { margin-bottom: 0; }
.experience-heading p { max-width: 440px; margin: 0 0 8px; }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.experience-card { position: relative; }
.card-image { aspect-ratio: .78; overflow: hidden; background: var(--paper-dark); }
.card-image img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.experience-card:hover img { transform: scale(1.035); }
.experience-card:nth-child(2) { margin-top: 48px; }
.experience-card:nth-child(3) { margin-top: 96px; }
.experience-card:nth-child(4) { margin-top: 144px; }
.card-number { display: block; color: var(--rust); font-size: .65rem; letter-spacing: .14em; margin: 20px 0 12px; }
.experience-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.85rem; font-weight: 400; }
.experience-card p { max-width: 330px; font-size: .9rem; }

.gallery-section { background: var(--forest-deep); color: var(--white); padding-bottom: 0; }
.gallery-heading { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: 64px; margin-bottom: 64px; }
.gallery-heading h2 { max-width: 820px; margin-bottom: 0; }
.gallery-heading p { color: rgba(255,255,255,.6); max-width: 390px; margin-bottom: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(240px, 28vw, 460px); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; cursor: zoom-in; background: #0a1c18; color: var(--white); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .35s; }
.gallery-item:hover img { transform: scale(1.035); opacity: .8; }
.gallery-item span { display: none; }
.gallery-item:hover span { opacity: 1; transform: none; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-texture img { object-position: 35% center; }

.explore { display: block; padding: 0; min-height: 0; }
.explore-copy { width: min(760px, calc(100vw - 64px)); padding: clamp(72px, 7vw, 104px) 0 clamp(100px, 12vw, 160px); margin: auto; }
.explore-copy > p { font-size: 1.03rem; }
.distance-list { margin-top: 45px; border-top: 1px solid rgba(23,56,47,.2); }
.distance-list > div { display: grid; grid-template-columns: 74px 1fr; column-gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(23,56,47,.15); }
.distance-list span { grid-row: span 2; color: var(--rust); font-size: .66rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; padding-top: 3px; }
.distance-list strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.distance-list small { color: #69736e; }

.stay { display: grid; grid-template-columns: .88fr 1.12fr; padding: 0; background: var(--forest); color: var(--white); }
.stay-image { min-height: 930px; }
.stay-image img { height: 100%; object-fit: cover; object-position: center; }
.stay-content { align-self: center; width: min(660px, calc(100vw - 64px)); padding: 110px 0 110px 9%; }
.stay-content h2 { color: var(--white); }
.stay-content > p { color: rgba(255,255,255,.65); max-width: 560px; }
.stay-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; margin: 46px 0; }
.stay-notes > div { display: grid; grid-template-columns: 34px 1fr; align-items: start; }
.stay-notes > div > span { grid-row: span 2; color: var(--sand); font-size: 1.2rem; }
.stay-notes strong { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.stay-notes small { color: rgba(255,255,255,.55); }
.booking-panel { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.18); }
.booking-panel > div { display: flex; flex-direction: column; }
.booking-label { color: var(--fern); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.booking-panel strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.booking-panel strong small { font-family: var(--sans); font-size: .6rem; letter-spacing: .1em; }
.booking-panel > div > span:last-child { color: rgba(255,255,255,.55); font-size: .72rem; }

.before { display: grid; grid-template-columns: .85fr 1.5fr; gap: 84px; align-items: start; }
.before-heading h2 { font-size: clamp(3.1rem, 5vw, 5.2rem); position: sticky; top: 110px; }
.before-grid { border-top: 1px solid rgba(23,56,47,.2); }
.before-grid article { display: grid; grid-template-columns: 56px 1fr 1.35fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(23,56,47,.18); }
.before-grid article > span { color: var(--rust); font-size: .64rem; letter-spacing: .12em; }
.before-grid h3 { font-family: var(--serif); font-weight: 400; margin: 0; }
.before-grid p { font-size: .88rem; margin: 0; }

.faq { background: var(--paper-dark); }
.faq-layout { display: grid; grid-template-columns: .85fr 1.5fr; gap: 84px; align-items: start; }
.faq-intro h2 { font-size: clamp(3.1rem, 5vw, 5.2rem); }
.faq-intro p { max-width: 420px; }
.faq-list { border-top: 1px solid rgba(23,56,47,.22); }
.faq-list details { border-bottom: 1px solid rgba(23,56,47,.18); }
.faq-list summary { display: grid; grid-template-columns: 38px 1fr auto; gap: 20px; align-items: center; padding: 26px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--rust); font-family: var(--sans); font-size: .64rem; letter-spacing: .12em; }
.faq-list summary::after { content: "+"; display: inline-grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(23,56,47,.28); border-radius: 50%; font-family: var(--sans); font-size: 1rem; font-weight: 400; transition: transform .3s var(--ease), background .3s, color .3s; }
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-answer { max-width: 690px; padding: 0 52px 28px 58px; }
.faq-answer p { margin: 0; font-size: .94rem; }

.closing { min-height: 90svh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--forest-deep); color: var(--white); }
.closing-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,22,18,.72), rgba(5,22,18,.2)), url("assets/veranda-doors.webp") center/cover; }
.closing-content { position: relative; z-index: 2; }
.closing h2 { color: var(--white); font-size: clamp(5rem, 11vw, 10rem); line-height: .78; margin-bottom: 0; }
.closing .eyebrow { color: rgba(255,255,255,.72); margin-bottom: 34px; }

.site-footer { background: #0b211b; color: var(--white); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .6fr 1fr; gap: 70px; padding-bottom: 65px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-logo { height: 100px; filter: invert(1); }
.footer-grid p { color: rgba(255,255,255,.5); max-width: 420px; font-size: .88rem; }
.footer-grid a:not(.brand), .footer-grid span:not(.brand-mark) { color: rgba(255,255,255,.72); font-size: .78rem; }
.footer-grid a:not(.brand):hover { color: var(--white); }
.footer-label { color: var(--fern) !important; text-transform: uppercase; letter-spacing: .13em; font-size: .63rem !important; margin-bottom: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 24px; border: 0; background: rgba(7,20,17,.97); color: var(--white); }
.lightbox::backdrop { background: rgba(7,20,17,.97); }
.lightbox[open] { display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lightbox figure { margin: 0; height: calc(100vh - 80px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 130px); object-fit: contain; }
.lightbox figcaption { margin-top: 14px; color: rgba(255,255,255,.65); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.lightbox button { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { position: absolute; top: 18px; right: 24px; font-size: 2.2rem; line-height: 1; }
.lightbox-nav { font-size: 1.65rem; width: 52px; height: 52px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  :root { --wrap: min(100% - 40px, 900px); }
  .site-header { padding-inline: 20px; }
  .site-header.scrolled { backdrop-filter: none; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] { color: var(--white); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 22px; padding: 90px 32px 48px; background: var(--forest-deep); color: var(--white); transform: translateX(100%); transition: transform .45s var(--ease); }
  .site-nav.open { transform: none; }
  .site-nav > a:not(.button) { font-family: var(--serif); font-size: 2.4rem; text-transform: none; letter-spacing: -.03em; }
  .site-nav .button { margin-top: 18px; background: var(--sand); color: var(--forest); }
  .intro { grid-template-columns: 1fr 2fr; gap: 40px; }
  .rating-card { grid-column: 2; margin-top: 0; }
  .story { grid-template-columns: 1fr; }
  .story-images { min-height: 720px; }
  .story-copy { width: var(--wrap); padding: 100px 0; margin: auto; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 20px; }
  .experience-card:nth-child(2), .experience-card:nth-child(3), .experience-card:nth-child(4) { margin-top: 0; }
  .explore-copy { width: var(--wrap); padding: 100px 0; margin: auto; }
  .stay { grid-template-columns: 1fr; }
  .stay-image { min-height: 600px; }
  .stay-content { width: var(--wrap); padding: 100px 0; margin: auto; }
  .before { grid-template-columns: 1fr; gap: 24px; }
  .before-heading h2 { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  :root { --wrap: calc(100vw - 32px); }
  .wrap-narrow { width: calc(100vw - 32px); }
  .section { padding-block: 72px; }
  .story, .explore, .stay { padding-block: 0; }
  .gallery-section { padding-top: 72px; padding-bottom: 0; }
  section[id] { scroll-margin-top: 76px; }
  h2 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .site-header { height: 70px; }
  .hero { min-height: 820px; align-items: flex-end; padding-bottom: 160px; }
  .hero-content { padding-top: 0; }
  .hero-location-desktop { display: none; }
  .hero-location-mobile { display: block; position: absolute; z-index: 2; top: 96px; left: 50%; transform: translateX(-50%); margin-bottom: 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.5rem); line-height: 1; margin-bottom: 20px; white-space: nowrap; }
  .hero h1 br { display: none; }
  .hero-copy { font-size: .96rem; max-width: 360px; }
  .hero-actions, .closing-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-meta { bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; justify-content: start; gap: 7px 20px; font-size: .61rem; }
  .hero-meta span + span::before { content: none; }
  .intro { grid-template-columns: 1fr; gap: 10px; }
  .intro .section-kicker { padding-top: 0; }
  .rating-card { grid-column: auto; margin-top: 28px; align-items: center; text-align: center; }
  .story-images { display: none; }
  .story-image-main { width: 92%; height: 78%; }
  .story-image-detail { width: 44%; height: 48%; border-width: 8px; }
  .story-copy { padding: 64px 0 0; }
  .details-strip { padding-block: 32px; }
  .details-grid > div { min-height: 88px; }
  .details-grid strong { font-size: 2.55rem; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .details-grid > div { border-bottom: 1px solid rgba(255,255,255,.15); }
  .details-grid > div:nth-child(2) { border-right: 0; }
  .experience-heading, .gallery-heading { grid-template-columns: 1fr; gap: 18px; }
  .experience-heading { margin-bottom: 48px; }
  .experience-heading .section-kicker { margin-bottom: 24px; }
  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-card:nth-child(2), .experience-card:nth-child(3), .experience-card:nth-child(4) { margin-top: 0; }
  .card-image { aspect-ratio: .9; }
  .experience-card p { margin-bottom: 0; }
  .gallery-heading { margin-bottom: 44px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .gallery-item:last-child { grid-column: span 2; grid-row: auto; }
  .gallery-item span { opacity: 1; transform: none; }
  .explore-copy { padding: 72px 0; }
  .distance-list { margin-top: 34px; }
  .stay-image { min-height: 360px; }
  .stay-content { padding: 76px 0; }
  .stay-content h2 { font-size: clamp(3.4rem, 15vw, 4.4rem); }
  .stay-notes { grid-template-columns: 1fr; }
  .stay-notes { margin: 36px 0; }
  .stay-notes .wood-fired-icon,
  .stay-notes .wifi-icon { color: #fff; font-family: "Segoe UI Symbol", Georgia, "Times New Roman", serif; }
  .booking-panel { align-items: flex-start; flex-direction: column; }
  .booking-panel .button { width: 100%; }
  .before { gap: 18px; }
  .before-grid article { grid-template-columns: 36px 1fr; }
  .before-grid article { padding: 24px 0; }
  .before-grid p { grid-column: 2; }
  .faq-layout { gap: 30px; }
  .faq-intro h2 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .faq-list summary { grid-template-columns: 30px 1fr auto; gap: 12px; padding: 22px 0; font-size: 1.2rem; }
  .faq-list summary::after { width: 28px; height: 28px; }
  .faq-answer { padding: 0 0 24px 42px; }
  .closing { min-height: 680px; }
  .closing h2 { font-size: clamp(4.8rem, 21vw, 6.3rem); }
  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .footer-brand .brand-logo { height: 88px; }
  .footer-bottom { gap: 20px; }
  .lightbox { padding: 12px; }
  .lightbox[open] { grid-template-columns: 42px 1fr 42px; }
  .lightbox figure { height: calc(100vh - 52px); }
}

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