:root {
  --ink: #243129;
  --ink-soft: #526057;
  --forest: #365b48;
  --forest-dark: #244536;
  --sage: #dfe7dc;
  --sage-deep: #aebea9;
  --cream: #f7f2e8;
  --paper: #fcfaf5;
  --sand: #d9c6a5;
  --line: #d7ddd6;
  --white: #fff;
  --shadow: 0 22px 55px rgba(35, 49, 41, .10);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-out .22s ease both; }
::view-transition-new(root) { animation: page-in .42s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes page-out { to { filter: blur(3px); opacity: 0; transform: translateY(-8px); } }
@keyframes page-in { from { filter: blur(5px); opacity: 0; transform: translateY(12px); } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; margin: 0; text-rendering: optimizeLegibility; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { height: auto; max-width: 100%; }
.theme-picture { display: block; overflow: hidden; position: relative; }
.theme-picture img { display: block; height: 100%; object-fit: cover; width: 100%; }
a { color: var(--forest-dark); text-underline-offset: .2em; }
a:hover { color: #152b21; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d08542; outline-offset: 4px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 .55em; }
h1 { font-size: clamp(3rem, 7vw, 6.25rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0 0 1.15em; }
.shell { margin-inline: auto; width: var(--shell); }
.shell--narrow { max-width: 820px; }
.section { padding: clamp(70px, 9vw, 128px) 0; }
.section--sage { background: var(--sage); }
.section--paper { background: var(--cream); }
.eyebrow { color: var(--forest); font-size: .75rem; font-weight: 750; letter-spacing: .16em; margin: 0 0 1rem; text-transform: uppercase; }
.section-heading { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-heading > p:last-child:not(.eyebrow) { color: var(--ink-soft); font-size: 1.12rem; max-width: 650px; }
.section-cta { margin: 34px 0 0; text-align: right; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.skip-link { background: var(--white); color: var(--ink); font-weight: 700; left: 12px; padding: 10px 16px; position: fixed; top: -100px; z-index: 9999; }
.skip-link:focus { top: 12px; }

.button, .nl-button { align-items: center; appearance: none; background: var(--forest); border: 2px solid var(--forest); border-radius: 999px; color: var(--white); cursor: pointer; display: inline-flex; font-weight: 750; isolation: isolate; justify-content: center; min-height: 50px; overflow: hidden; padding: 12px 24px; position: relative; text-decoration: none; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease; }
.button::after, .nl-button::after { background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%); content: ''; inset: -30% -45%; pointer-events: none; position: absolute; transform: translateX(-95%) skewX(-18deg); transition: transform .65s cubic-bezier(.2, .7, .2, 1); z-index: -1; }
.button:hover::after, .nl-button:hover::after { transform: translateX(95%) skewX(-18deg); }
.button:hover, .nl-button:hover { background: var(--forest-dark); border-color: var(--forest-dark); color: var(--white); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 8px 18px; }
.button--outline { background: transparent; color: var(--forest-dark); }
.button--outline:hover { color: var(--white); }
.button--cream { background: var(--cream); border-color: var(--cream); color: var(--forest-dark); }
.button--cream:hover { background: var(--white); border-color: var(--white); color: var(--forest-dark); }
.text-link { align-items: center; display: inline-flex; font-weight: 750; gap: 10px; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { backdrop-filter: blur(15px); background: rgba(252, 250, 245, .88); border-bottom: 1px solid rgba(54, 91, 72, .12); left: 0; position: sticky; right: 0; top: 0; transition: background .35s ease, box-shadow .35s ease; z-index: 100; }
.site-header.is-scrolled { background: rgba(252, 250, 245, .96); box-shadow: 0 10px 30px rgba(35,49,41,.09); }
.admin-bar .site-header { top: 32px; }
.site-header__inner { align-items: center; display: grid; gap: 28px; grid-template-columns: auto 1fr auto; min-height: 86px; transition: min-height .35s ease; }
.site-header.is-scrolled .site-header__inner { min-height: 72px; }
.brand { display: flex; }
.brand img { height: 68px; object-fit: contain; transition: height .35s ease, transform .35s ease, width .35s ease; width: 68px; }
.brand:hover img { transform: rotate(-2deg) scale(1.04); }
.site-header.is-scrolled .brand img { height: 56px; width: 56px; }
.site-nav { justify-self: center; }
.site-nav__list { align-items: center; display: flex; gap: clamp(18px, 2.2vw, 34px); list-style: none; margin: 0; padding: 0; }
.site-nav__list a { color: var(--ink); font-size: .92rem; font-weight: 650; position: relative; text-decoration: none; }
.site-nav__list a::after { background: var(--forest); bottom: -8px; content: ''; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; width: 100%; }
.site-nav__list a:hover::after, .site-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { background: transparent; border: 0; display: none; height: 44px; padding: 8px; width: 44px; }
.nav-toggle > span:not(.screen-reader-text) { background: var(--ink); display: block; height: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; width: 26px; }

.hero { background: linear-gradient(115deg, #f7f2e8 0%, #edf1e8 56%, #dfe7dc 100%); min-height: min(820px, calc(100vh - 86px)); overflow: hidden; position: relative; }
.hero::after { animation: hero-light 14s ease-in-out infinite alternate; background: radial-gradient(circle at 65% 35%, rgba(255,255,255,.62), transparent 31%), radial-gradient(circle at 20% 75%, rgba(210,194,158,.22), transparent 28%); content: ''; inset: 0; pointer-events: none; position: absolute; transform: scale(1.08); }
.hero__texture { background-image: url('../images/background-mockup.svg'); background-position: center; background-size: cover; inset: -6%; opacity: .055; pointer-events: none; position: absolute; }
.hero__grid { align-items: center; display: grid; gap: clamp(40px, 6vw, 90px); grid-template-columns: 1.05fr .95fr; min-height: min(820px, calc(100vh - 86px)); padding-block: 70px; position: relative; z-index: 2; }
.hero__content { max-width: 690px; }
.hero h1 { max-width: 760px; }
.hero__lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 620px; }
.hero__actions { align-items: center; display: flex; flex-wrap: wrap; gap: 24px; margin: 32px 0; }
.hero__distance { border-top: 1px solid rgba(54, 91, 72, .25); color: var(--ink-soft); font-size: .88rem; max-width: 510px; padding-top: 18px; }
.hero__visual { min-height: 570px; position: relative; }
.hero__photo { border-radius: 220px 220px 24px 24px; box-shadow: var(--shadow); height: 100%; min-height: 570px; }
.hero__photo::after, .image-placeholder::after { border: 1px solid rgba(255,255,255,.7); border-radius: inherit; content: ''; inset: 14px; pointer-events: none; position: absolute; z-index: 2; }
.hero__photo img { object-position: 66% center; transition: transform 7s cubic-bezier(.2,.65,.2,1); }
.animals__visual img, .story__photo img { inset: 0; position: absolute; }
.hero__slider { isolation: isolate; overflow: hidden; position: relative; }
.hero__slide { inset: 0; opacity: 0; pointer-events: none; position: absolute; transform: scale(1.045); transition: opacity 1.15s ease, transform 7s cubic-bezier(.2,.65,.2,1); z-index: 0; }
.hero__slide.is-active { opacity: 1; pointer-events: auto; transform: scale(1); z-index: 1; }
.hero__slide img { inset: 0; position: absolute; }
.hero__slide--2 img { object-position: 54% center; }
.hero__slide--3 img { object-position: 55% center; }
.hero__slider-controls { align-items: center; backdrop-filter: blur(12px); background: rgba(21,43,33,.72); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; bottom: 22px; color: var(--white); display: none; gap: 8px; padding: 6px; position: absolute; right: 22px; z-index: 5; }
.has-js .hero__slider-controls { display: flex; }
.hero__slider-controls button { align-items: center; background: transparent; border: 0; border-radius: 50%; color: inherit; cursor: pointer; display: inline-flex; height: 38px; justify-content: center; padding: 0; transition: background .2s ease, transform .2s ease; width: 38px; }
.hero__slider-controls button:hover { background: rgba(255,255,255,.16); transform: scale(1.05); }
.hero__slider-controls button:focus-visible { outline-color: var(--white); outline-offset: 2px; }
.hero__slider-dots { display: flex; gap: 3px; }
.hero__slider-dots button { height: 30px; width: 25px; }
.hero__slider-dots span { background: rgba(255,255,255,.45); border-radius: 999px; display: block; height: 3px; transition: background .25s ease, width .25s ease; width: 10px; }
.hero__slider-dots button[aria-current="true"] span { background: var(--white); width: 20px; }
.hero__slider-count { font-size: .7rem; letter-spacing: .08em; min-width: 45px; text-align: center; }
.hero__slider-count b { font-size: .78rem; }
.hero__slider-pause span { font-size: .8rem; font-weight: 800; letter-spacing: -2px; }
.image-placeholder { align-items: center; background-color: #c9d5c4; background-image: linear-gradient(145deg, rgba(255,255,255,.25), rgba(54,91,72,.12)), url('../images/background-mockup.svg'); background-position: center; background-size: cover; border-radius: 220px 220px 24px 24px; box-shadow: var(--shadow); color: rgba(36,49,41,.7); display: flex; height: 100%; justify-content: center; min-height: 480px; overflow: hidden; position: relative; text-align: center; }
.image-placeholder span { background: rgba(252,250,245,.88); border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .1em; padding: 10px 16px; text-transform: uppercase; }
.hero__seal { background: var(--paper); border: 1px solid rgba(54,91,72,.12); border-radius: 50%; bottom: 24px; box-shadow: 0 12px 32px rgba(35,49,41,.18); height: 142px; left: 24px; object-fit: contain; padding: 9px; position: absolute; width: 142px; z-index: 6; }
.hero__scroll { align-items: center; bottom: 18px; color: var(--forest-dark); display: flex; flex-direction: column; font-size: .67rem; font-weight: 750; gap: 8px; left: 50%; letter-spacing: .15em; position: absolute; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); z-index: 3; }
.hero__scroll i { background: rgba(54,91,72,.28); display: block; height: 34px; overflow: hidden; position: relative; width: 1px; }
.hero__scroll i::after { animation: scroll-cue 1.7s ease-in-out infinite; background: var(--forest); content: ''; height: 13px; left: 0; position: absolute; top: -13px; width: 1px; }
.reveal { animation: rise .9s cubic-bezier(.2,.75,.2,1) both; }
.hero__visual.reveal { animation-delay: .14s; }
[data-parallax]:not([data-tilt]) { transform: translate3d(0, var(--parallax-y, 0px), 0); will-change: transform; }
.hero__photo[data-tilt] { transform: translate3d(0, var(--parallax-y, 0px), 0) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(var(--tilt-scale, 1)); transition: box-shadow .35s ease, transform .18s ease-out; transform-style: preserve-3d; will-change: transform; }
.hero__photo[data-tilt]:hover { box-shadow: 0 32px 72px rgba(35,49,41,.18); }
.hero__photo[data-tilt]:hover .hero__slide.is-active { transform: scale(1.018); }
@keyframes rise { from { clip-path: inset(0 0 14% 0); filter: blur(7px); opacity: 0; transform: translateY(30px); } to { clip-path: inset(0); filter: blur(0); opacity: 1; transform: none; } }
@keyframes hero-light { from { opacity: .62; transform: scale(1.04) translate3d(-1%, 0, 0); } to { opacity: 1; transform: scale(1.1) translate3d(2%, -1%, 0); } }
@keyframes scroll-cue { 0% { transform: translateY(0); } 55%, 100% { transform: translateY(47px); } }

.quick-facts { background: var(--paper); border-bottom: 1px solid var(--line); border-top: 1px solid rgba(54,91,72,.12); }
.quick-facts__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quick-facts__grid > div { border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; min-height: 154px; padding: 24px clamp(18px, 2.4vw, 34px); }
.quick-facts__grid > div:last-child { border-right: 1px solid var(--line); }
.quick-facts__grid > div > span:first-child { color: var(--forest); font-size: .69rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 8px; text-transform: uppercase; }
.quick-facts__grid strong { font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.55rem); font-weight: 500; line-height: 1.18; }
.quick-facts__grid strong a { color: inherit; text-decoration: none; }
.quick-facts__grid small { color: var(--ink-soft); font-size: .73rem; margin-top: 6px; }
.quick-facts__grid > div > a { color: var(--forest-dark); font-size: .75rem; font-weight: 750; margin-top: 8px; text-decoration: none; }

.has-js .motion-item { --motion-x: 0px; --motion-y: 32px; filter: blur(7px); opacity: 0; transform: translate3d(var(--motion-x), calc(var(--motion-y) + var(--parallax-y, 0px)), 0) scale(.985); transition: filter .8s ease var(--motion-delay, 0ms), opacity .75s ease var(--motion-delay, 0ms), transform .9s cubic-bezier(.2,.75,.2,1) var(--motion-delay, 0ms); }
.has-js .motion-item.is-visible { --motion-y: 0px; filter: blur(0); opacity: 1; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1); }
.has-js .stay-card.motion-item:nth-child(odd), .has-js .listing-card.motion-item:nth-child(odd), .has-js .simple-card-grid article.motion-item:nth-child(odd) { --motion-x: -18px; }
.has-js .stay-card.motion-item:nth-child(even), .has-js .listing-card.motion-item:nth-child(even), .has-js .simple-card-grid article.motion-item:nth-child(even) { --motion-x: 18px; }

.intro__grid { align-items: start; display: grid; gap: clamp(40px, 8vw, 120px); grid-template-columns: .8fr 1.2fr; }
.intro .section-heading { margin: 0; }
.prose { color: var(--ink-soft); }
.prose > *:first-child { margin-top: 0; }
.prose--large { font-size: 1.14rem; }
.prose h2, .prose h3 { color: var(--ink); margin-top: 1.3em; }
.stay-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.stay-card { background: var(--forest); border-radius: var(--radius); color: var(--white); min-height: 370px; overflow: hidden; padding: clamp(26px, 3.5vw, 46px); position: relative; transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.75,.2,1); }
.stay-card--light { background: #b7c8b1; color: var(--ink); }
.stay-card--sand { background: var(--sand); color: var(--ink); }
.stay-card--photo { isolation: isolate; padding: 0; }
.stay-card > .stay-card__media { inset: 0; position: absolute; z-index: 0; }
.stay-card__media::after { background: linear-gradient(180deg, rgba(25,37,30,.08), rgba(24,38,30,.84) 78%); content: ''; inset: 0; pointer-events: none; position: absolute; }
.stay-card__media img { transition: transform .75s cubic-bezier(.2,.75,.2,1); }
.stay-card__content { display: flex; flex-direction: column; min-height: 370px; padding: clamp(26px, 3.5vw, 42px); position: relative; z-index: 2; }
.stay-card .eyebrow { color: inherit; opacity: .75; }
.stay-card__number { font-family: var(--serif); font-size: 5rem; line-height: 1; margin-bottom: 80px; opacity: .28; transition: opacity .4s ease, transform .5s cubic-bezier(.2,.75,.2,1); }
.stay-card--photo .stay-card__number { margin-bottom: auto; opacity: .72; text-shadow: 0 2px 22px rgba(0,0,0,.28); }
.stay-card p:last-child { opacity: .86; }

.animals__grid, .story-grid { align-items: center; display: grid; gap: clamp(45px, 8vw, 110px); grid-template-columns: .9fr 1.1fr; }
.animals__visual, .story__photo { border-radius: 180px 180px 18px 18px; box-shadow: var(--shadow); min-height: 600px; }
.animals__visual img { object-position: 58% center; }
.story__photo img { object-position: center; }
.image-placeholder--tall { border-radius: 180px 180px 18px 18px; min-height: 600px; }
.feature-list, .check-list { list-style: none; margin: 26px 0 32px; padding: 0; }
.feature-list li, .check-list li { border-bottom: 1px solid var(--line); padding: 12px 0 12px 28px; position: relative; }
.feature-list li::before, .check-list li::before { color: var(--forest); content: '✓'; font-weight: 800; left: 0; position: absolute; }
.comforts { background: var(--forest-dark); color: var(--white); }
.comforts .eyebrow { color: #bfd0ba; }
.comfort-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.comfort-item { border-left: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); min-height: 125px; padding: 22px; transition: background .35s ease, transform .35s ease; }
.comfort-item span { color: #b8c8b2; display: block; font-family: var(--serif); font-size: 1.45rem; margin-bottom: 22px; }
.attraction-strip { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.attraction-strip article { background: var(--paper); border: 1px solid #e5dccb; border-radius: var(--radius); min-height: 240px; overflow: hidden; padding: 28px; position: relative; transition: border-color .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,.75,.2,1); }
.attraction-strip__mark { background: var(--forest); border-radius: 50%; height: 11px; margin-bottom: 56px; transition: border-radius .35s ease, transform .45s cubic-bezier(.2,.75,.2,1); width: 11px; }
.attraction-strip p { color: var(--ink-soft); }
.attraction-strip--photos article { min-height: 360px; padding: 0; }
.attraction-strip__photo { aspect-ratio: 16 / 10; }
.attraction-strip__photo img { transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.attraction-strip__body { padding: 24px 26px 26px; }
.attraction-strip__body p:last-child { margin-bottom: 0; }
.region { background: linear-gradient(120deg, #263c31, #3e604e); color: var(--white); overflow: hidden; }
.region .eyebrow { color: #c7d3c3; }
.region__grid { align-items: center; display: grid; gap: 70px; grid-template-columns: 1fr .9fr; }
.region__grid > div:first-child > p:not(.eyebrow) { color: #dce5dc; }
.distance-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 36px; }
.distance-grid div { border-top: 1px solid rgba(255,255,255,.28); padding-top: 18px; }
.distance-grid strong { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.distance-grid span { color: #dce5dc; }
.distance-grid div:last-child span { font-size: .82rem; line-height: 1.35; }
.region__graphic { animation: region-breathe 9s ease-in-out infinite alternate; aspect-ratio: 1; background: radial-gradient(circle at 60% 20%, #82977d, transparent 22%), repeating-radial-gradient(ellipse at 50% 115%, #658061 0 11%, #4c6b54 12% 23%, #365744 24% 34%); border-radius: 50%; box-shadow: 0 30px 90px rgba(0,0,0,.25); display: grid; overflow: hidden; place-content: center; position: relative; text-align: center; }
.region__photo { inset: 0; position: absolute; }
.region__photo::after { background: linear-gradient(180deg, rgba(19,36,27,.08), rgba(18,40,28,.55)); content: ''; inset: 0; position: absolute; }
.region__photo img { object-position: center 58%; }
.region__graphic-copy { align-content: center; display: grid; inset: 0; position: absolute; text-shadow: 0 2px 20px rgba(0,0,0,.5); z-index: 2; }
.region__graphic-copy span { font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 2rem); font-style: italic; opacity: .9; }
@keyframes region-breathe { from { box-shadow: 0 30px 90px rgba(0,0,0,.25); } to { box-shadow: 0 42px 110px rgba(0,0,0,.38); } }
.gallery-grid { display: grid; gap: 16px; grid-auto-rows: 260px; grid-template-columns: repeat(2, 1fr); }
.gallery-grid .image-placeholder { border-radius: var(--radius); min-height: 0; }
.gallery-grid .image-placeholder--wide { grid-row: span 2; }
.gallery-grid .theme-picture { border-radius: var(--radius); }
.gallery-preview__photo--wide { grid-row: span 2; }
.gallery-preview__photo img { transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.gallery-grid--large { grid-auto-rows: 330px; grid-template-columns: repeat(3, 1fr); }
.gallery-grid--large .image-placeholder:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic { display: grid; gap: 16px; grid-auto-flow: dense; grid-auto-rows: 290px; grid-template-columns: repeat(3, 1fr); }
.gallery-item { border-radius: var(--radius); margin: 0; overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__button { background: transparent; border: 0; cursor: zoom-in; display: block; height: 100%; padding: 0; width: 100%; }
.gallery-item__picture { height: 100%; }
.gallery-item__picture img { transition: filter .5s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.gallery-item > figcaption { background: linear-gradient(transparent, rgba(20,35,27,.76)); bottom: 0; color: var(--white); font-size: .9rem; font-weight: 700; left: 0; padding: 44px 18px 16px; pointer-events: none; position: absolute; right: 0; }
.gallery-lightbox { background: transparent; border: 0; height: 100%; margin: auto; max-height: none; max-width: none; padding: 24px; width: 100%; }
.gallery-lightbox::backdrop { backdrop-filter: blur(10px); background: rgba(15,27,21,.82); }
.gallery-lightbox__inner { align-items: center; display: grid; grid-template-columns: 52px minmax(0, 1fr) 52px; height: 100%; margin: auto; max-width: 1500px; position: relative; }
.gallery-lightbox figure { margin: 0; text-align: center; }
.gallery-lightbox figure img { border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,.45); display: block; margin: auto; max-height: calc(100vh - 130px); max-width: 100%; object-fit: contain; }
.gallery-lightbox figcaption { color: var(--white); margin-top: 12px; }
.gallery-lightbox__close, .gallery-lightbox__nav { align-items: center; background: rgba(252,250,245,.94); border: 0; border-radius: 50%; color: var(--ink); cursor: pointer; display: flex; height: 46px; justify-content: center; width: 46px; }
.gallery-lightbox__close { font-size: 1.8rem; position: absolute; right: 0; top: 0; z-index: 2; }
.gallery-lightbox__nav { font-size: 1.35rem; justify-self: center; }
.reviews { background: #eee4d4; }
.reviews__header { align-items: end; display: grid; gap: 44px; grid-template-columns: minmax(0, 1fr) auto; margin-bottom: 42px; }
.reviews__header h2 { margin-bottom: 0; max-width: 760px; }
.reviews__score { align-items: center; background: var(--forest-dark); border-radius: var(--radius); color: var(--white); display: flex; gap: 18px; min-width: 270px; padding: 22px 28px; }
.reviews__score > strong { font-family: var(--serif); font-size: 4rem; font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.reviews__score div { border-left: 1px solid rgba(255,255,255,.26); display: grid; line-height: 1.3; padding-left: 18px; }
.reviews__score span { font-weight: 800; }
.reviews__score small { color: #dce5dc; font-size: .82rem; }
.reviews__metrics { display: grid; grid-template-columns: repeat(7, minmax(112px, 1fr)); list-style: none; margin: 0 0 54px; overflow-x: auto; overflow-y: hidden; padding: 0 0 8px; scrollbar-width: thin; }
.reviews__metrics li { border-left: 1px solid rgba(36,49,41,.2); display: grid; gap: 7px; min-width: 112px; padding: 12px 15px; }
.reviews__metrics span { color: var(--ink-soft); font-size: .74rem; font-weight: 750; line-height: 1.3; }
.reviews__metrics strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1; }
.reviews-carousel__controls { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
.reviews-carousel__controls > p { font-size: .78rem; font-weight: 800; letter-spacing: .14em; margin: 0; text-transform: uppercase; }
.reviews-carousel__controls > div { display: flex; gap: 9px; }
.reviews-carousel__controls button { align-items: center; background: transparent; border: 1px solid rgba(36,49,41,.38); border-radius: 50%; color: var(--ink); cursor: pointer; display: flex; font-size: 1.25rem; height: 46px; justify-content: center; transition: background .25s ease, color .25s ease, transform .25s ease; width: 46px; }
.reviews-carousel__controls button:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }
.reviews-carousel__controls button:disabled { cursor: default; opacity: .32; transform: none; }
.reviews__track { display: grid; gap: 18px; grid-auto-columns: calc((100% - 36px) / 3); grid-auto-flow: column; overflow-x: auto; overscroll-behavior-inline: contain; padding: 4px 3px 24px; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.reviews__track::-webkit-scrollbar { display: none; }
.review-card { background: var(--paper); border: 1px solid rgba(36,49,41,.12); border-radius: var(--radius); display: flex; flex-direction: column; min-height: 330px; padding: 28px; scroll-snap-align: start; transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.75,.2,1); }
.review-card__score { color: var(--forest); font-family: var(--serif); font-size: 2rem; line-height: 1; margin-bottom: 32px; }
.review-card__score span { color: var(--ink-soft); font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .07em; }
.review-card blockquote { margin: 0 0 30px; }
.review-card blockquote p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; margin: 0; }
.review-card footer { border-top: 1px solid var(--line); display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; }
.review-card footer span { color: var(--ink-soft); font-size: .82rem; }
.reviews__source { color: var(--ink-soft); font-size: .76rem; margin: 8px 0 0; }
.reviews-consent { align-items: center; background: rgba(252,250,245,.78); border: 1px solid rgba(36,49,41,.15); border-radius: var(--radius); display: grid; gap: clamp(24px, 5vw, 70px); grid-template-columns: .7fr 1.3fr; padding: clamp(25px, 4vw, 44px); }
.reviews-consent h3, .reviews-consent p { margin-bottom: 0; }
.reviews-consent > p { color: var(--ink-soft); }
.booking-section { background: var(--sage); }
.booking-section__grid { align-items: start; display: grid; gap: clamp(36px, 7vw, 90px); grid-template-columns: .75fr 1.25fr; }
.booking-section__grid > div:first-child { position: sticky; top: 130px; }
.contact-strip { background: var(--forest); color: var(--white); padding: 70px 0; }
.contact-strip .eyebrow { color: #d4dfd1; }
.contact-strip__inner { align-items: center; display: flex; gap: 40px; justify-content: space-between; }
.contact-strip__links { align-items: end; display: flex; flex-direction: column; gap: 8px; }
.contact-strip__links > a:not(.button) { color: var(--white); font-family: var(--serif); font-size: 1.5rem; }

.nl-inquiry { background: var(--paper); border: 1px solid rgba(54,91,72,.15); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 46px); }
.nl-inquiry__form fieldset { border: 0; margin: 0 0 28px; padding: 0; }
.nl-inquiry__form legend { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 14px; }
.nl-form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.nl-inquiry label { color: var(--ink); display: grid; font-size: .9rem; font-weight: 700; gap: 6px; }
.nl-inquiry input:not([type="checkbox"]), .nl-inquiry select, .nl-inquiry textarea { appearance: none; background: var(--white); border: 1px solid #aeb9b1; border-radius: 9px; color: var(--ink); min-height: 50px; padding: 11px 13px; width: 100%; }
.nl-inquiry textarea { min-height: 110px; resize: vertical; }
.nl-inquiry input:focus, .nl-inquiry select:focus, .nl-inquiry textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(54,91,72,.18); outline: 0; }
.nl-consent { align-items: flex-start !important; display: flex !important; font-weight: 500 !important; gap: 10px !important; margin: 6px 0 24px; }
.nl-consent input { height: 20px; margin-top: 3px; width: 20px; }
.nl-field-note, .nl-form-disclaimer { color: var(--ink-soft); font-size: .82rem; }
.nl-form-disclaimer { margin: 14px 0 0; }
.nl-form-message { border-radius: 10px; margin-bottom: 22px; padding: 16px; }
.nl-form-message p { margin: 4px 0 0; }
.nl-form-message--success { background: #dcebdd; border: 1px solid #82a888; }
.nl-form-message--error { background: #f8e2dd; border: 1px solid #cf8777; }
.nl-honeypot { left: -10000px; position: absolute; }

.page-hero { background: var(--cream); padding: clamp(80px, 10vw, 145px) 0; position: relative; }
.page-hero::after { background-image: url('../images/background-mockup.svg'); background-size: cover; content: ''; inset: 0; opacity: .035; pointer-events: none; position: absolute; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; }
.page-hero p:last-child { color: var(--ink-soft); font-size: 1.2rem; max-width: 680px; }
.page-hero--meadow { background: var(--sage); }
.page-hero--compact { padding: clamp(65px, 8vw, 105px) 0; }
.listing-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.listing-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; transition: border-color .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,.75,.2,1); }
.listing-card__image { display: block; }
.listing-card__image img, .listing-card__image .image-placeholder { aspect-ratio: 16/10; min-height: 0; object-fit: cover; width: 100%; }
.listing-card__body { padding: clamp(24px, 4vw, 42px); }
.listing-card h2 a { color: inherit; text-decoration: none; }
.listing-card__body > p:not(.eyebrow):not(.listing-card__price) { color: var(--ink-soft); }
.listing-card__price { font-weight: 750; }
.content-notice { background: var(--cream); border-left: 4px solid var(--forest); margin-bottom: 34px; max-width: 820px; padding: 22px 26px; }
.content-notice h2 { font-size: 1.7rem; }
.content-notice p:last-child { margin-bottom: 0; }
.offer-detail-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 56px; }
.offer-detail-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); }
.offer-detail-card--wide { grid-column: 1 / -1; }
.offer-detail-card--sage { background: var(--sage); }
.offer-detail-card h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.offer-detail-card ul { color: var(--ink-soft); margin: 20px 0 0; padding-left: 20px; }
.offer-detail-card li + li { margin-top: 7px; }
.offer-detail-columns { display: grid; gap: 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.offer-detail-columns p { color: var(--ink-soft); margin-bottom: 0; }
.verified-amenities { background: var(--forest-dark); color: var(--white); }
.verified-amenities__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.verified-amenities__grid > div { border-left: 1px solid rgba(255,255,255,.18); min-height: 150px; padding: 28px clamp(18px, 2.4vw, 34px); }
.verified-amenities__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.verified-amenities span { color: #b8c8b2; display: block; font-family: var(--serif); font-size: 1.45rem; margin-bottom: 18px; }
.verified-amenities p { font-size: .9rem; line-height: 1.45; margin: 0; }
.centered-cta { border-top: 1px solid var(--line); margin-top: 70px; padding-top: 60px; text-align: center; }
.centered-cta p { color: var(--ink-soft); margin-inline: auto; max-width: 650px; }
.simple-card-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, 1fr); }
.simple-card-grid article { border: 1px solid var(--line); border-radius: 14px; min-height: 220px; overflow: hidden; padding: 26px; position: relative; transition: border-color .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,.75,.2,1); }
.simple-card__line { background: var(--forest); display: block; height: 2px; margin-bottom: 58px; width: 42px; }
.simple-card-grid h2 { font-size: 1.55rem; }
.simple-card-grid p { color: var(--ink-soft); font-size: .88rem; }
.simple-card-grid--photos article { display: flex; flex-direction: column; }
.simple-card-grid--photos .simple-card--photo { padding: 0; }
.simple-card__photo { aspect-ratio: 16 / 10; }
.simple-card__photo img { transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.simple-card__body { padding: 24px 26px 26px; }
.simple-card--text .simple-card__body { padding: 0; }
.single-hero { background: var(--cream); padding: clamp(65px, 8vw, 110px) 0; }
.single-hero__grid { align-items: center; display: grid; gap: 65px; grid-template-columns: 1fr 1fr; }
.single-hero__grid > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.15rem; }
.single-hero__image, .single-hero .image-placeholder { border-radius: 180px 180px 18px 18px; max-height: 620px; min-height: 500px; object-fit: cover; width: 100%; }
.single-price { color: var(--ink) !important; font-weight: 750; }
.detail-grid { align-items: start; display: grid; gap: clamp(40px, 8vw, 100px); grid-template-columns: 1.3fr .7fr; }
.detail-box { background: var(--sage); border-radius: var(--radius); padding: 28px; position: sticky; top: 120px; }
.detail-box h2 { font-size: 1.8rem; }
.detail-box dl { margin: 0 0 20px; }
.detail-box dl div { align-items: baseline; border-bottom: 1px solid rgba(54,91,72,.2); display: flex; gap: 20px; justify-content: space-between; padding: 10px 0; }
.detail-box dt { color: var(--ink-soft); }
.detail-box dd { font-weight: 750; margin: 0; text-align: right; }
.values-grid { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
.values-grid article { border-top: 1px solid rgba(54,91,72,.25); padding-top: 25px; }
.values-grid article > span { color: var(--forest); display: block; font-family: var(--serif); font-size: 2rem; margin-bottom: 50px; }
.contact-page-grid { display: grid; gap: 30px; grid-template-columns: 1fr 1.2fr; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding: clamp(28px, 5vw, 52px); position: relative; transition: border-color .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,.75,.2,1); }
.contact-card address { font-style: normal; margin: 24px 0; }
.contact-card address div { border-bottom: 1px solid var(--line); display: grid; padding: 13px 0; }
.contact-card address span { color: var(--ink-soft); font-size: .8rem; font-weight: 750; text-transform: uppercase; }
.contact-card address a { font-family: var(--serif); font-size: 1.4rem; }
.contact-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 24px; }
.map-placeholder { align-items: center; background: repeating-linear-gradient(30deg, #dce4d8 0 18px, #d4dfd1 18px 36px); border-radius: var(--radius); display: flex; justify-content: center; min-height: 500px; text-align: center; }
.map-placeholder > span, .map-placeholder a { background: rgba(252,250,245,.94); border-radius: 999px; color: var(--ink); font-weight: 700; padding: 12px 18px; text-decoration: none; }
.map-placeholder iframe { border: 0; border-radius: inherit; height: 100%; min-height: 500px; width: 100%; }
.map-placeholder .map-link { bottom: 18px; box-shadow: 0 5px 18px rgba(35,49,41,.18); font-size: .78rem; position: absolute; right: 18px; z-index: 4; }
.map-placeholder { overflow: hidden; position: relative; }
.map-placeholder--photo { background: var(--forest-dark); isolation: isolate; }
.map-placeholder__photo { inset: 0; position: absolute; z-index: -2; }
.map-placeholder__photo::after { background: linear-gradient(135deg, rgba(23,43,33,.25), rgba(20,41,30,.82)); content: ''; inset: 0; position: absolute; }
.map-placeholder__prompt { align-items: center; color: var(--white); display: flex; flex-direction: column; max-width: 390px; padding: 34px; position: relative; text-shadow: 0 2px 20px rgba(0,0,0,.3); z-index: 2; }
.map-placeholder__prompt .eyebrow { color: #d8e2d4; }
.map-placeholder__prompt strong { font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 500; line-height: 1.12; margin-bottom: 25px; }
.map-placeholder__prompt small { color: #e4eae1; font-size: .72rem; margin-top: 13px; }
.map-placeholder.is-loaded .map-placeholder__photo, .map-placeholder.is-loaded .map-placeholder__prompt { display: none; }
.map-placeholder.is-loaded iframe { animation: map-in .5s ease both; }
@keyframes map-in { from { filter: blur(5px); opacity: 0; } }
.steps { list-style: none; margin: 28px 0; padding: 0; }
.steps li { align-items: center; border-bottom: 1px solid var(--line); display: flex; gap: 14px; padding: 14px 0; }
.steps span { align-items: center; background: var(--forest); border-radius: 50%; color: var(--white); display: inline-flex; flex: 0 0 32px; height: 32px; justify-content: center; }
.not-found { min-height: 65vh; text-align: center; }

.interactive-card::before { background: radial-gradient(360px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,.2), transparent 58%); content: ''; inset: 0; opacity: 0; pointer-events: none; position: absolute; transition: opacity .35s ease; z-index: 0; }
.interactive-card > * { position: relative; z-index: 1; }
.scroll-progress { height: 3px; inset: 0 0 auto; pointer-events: none; position: fixed; z-index: 1000; }
.scroll-progress span { background: linear-gradient(90deg, var(--forest), #8ba17f, #d4a765); display: block; height: 100%; transform: scaleX(0); transform-origin: left; will-change: transform; }
.back-to-top { align-items: center; background: var(--forest); border: 1px solid rgba(255,255,255,.4); border-radius: 50%; bottom: 22px; box-shadow: 0 12px 32px rgba(35,49,41,.22); color: var(--white); cursor: pointer; display: flex; font-size: 1.3rem; height: 48px; justify-content: center; opacity: 0; pointer-events: none; position: fixed; right: 22px; transform: translateY(18px) scale(.9); transition: background .25s ease, opacity .3s ease, transform .35s cubic-bezier(.2,.75,.2,1); width: 48px; z-index: 90; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--forest-dark); transform: translateY(-3px); }

@media (hover: hover) and (pointer: fine) {
  .interactive-card:hover::before { opacity: 1; }
  .stay-card.interactive-card:hover, .attraction-strip article.interactive-card:hover, .listing-card.interactive-card:hover, .simple-card-grid article.interactive-card:hover, .contact-card.interactive-card:hover { box-shadow: 0 28px 70px rgba(35,49,41,.16); transform: translateY(-8px); }
  .stay-card:hover .stay-card__number { opacity: .48; transform: translate3d(8px,-6px,0) scale(1.05); }
  .attraction-strip article:hover .attraction-strip__mark { border-radius: 999px; transform: scaleX(3.8); transform-origin: left; }
  .comfort-item:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
  .gallery-grid > * { transition: box-shadow .4s ease, transform .5s cubic-bezier(.2,.75,.2,1); }
  .gallery-grid > *:hover { box-shadow: 0 25px 60px rgba(35,49,41,.16); transform: translateY(-7px) scale(1.008); }
  .stay-card:hover .stay-card__media img,
  .attraction-strip article:hover .attraction-strip__photo img,
  .simple-card--photo:hover .simple-card__photo img,
  .gallery-item:hover .gallery-item__picture img,
  .gallery-preview__photo:hover img { transform: scale(1.045); }
  .gallery-item:hover .gallery-item__picture img { filter: saturate(1.06); }
  .review-card:hover { box-shadow: 0 24px 52px rgba(35,49,41,.12); transform: translateY(-6px); }
}

.site-footer { background: #1e3027; color: #dce4dd; padding: 70px 0 25px; }
.site-footer__grid { display: grid; gap: 60px; grid-template-columns: 1.2fr .8fr 1fr; }
.site-footer__logo { background: var(--paper); border-radius: 50%; height: 92px; object-fit: contain; padding: 5px; width: 92px; }
.site-footer h2 { color: var(--white); font-family: var(--sans); font-size: .8rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.site-footer .site-nav__list { align-items: flex-start; flex-direction: column; gap: 5px; }
.site-footer .site-nav__list a, .site-footer a { color: #dce4dd; }
.site-footer address { display: grid; font-style: normal; gap: 6px; }
.site-footer address a, .site-footer address span { display: block; }
.site-footer__bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.15); display: flex; font-size: .82rem; justify-content: space-between; margin-top: 50px; padding-top: 20px; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 1020px) {
  .site-header__inner { gap: 16px; }
  .site-nav__list { gap: 16px; }
  .comfort-grid { grid-template-columns: repeat(3, 1fr); }
  .simple-card-grid, .gallery-grid--large { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .reviews__track { grid-auto-columns: calc((100% - 18px) / 2); }
  .quick-facts__grid, .verified-amenities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .admin-bar .site-header { top: 46px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__inner > .button { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav { background: var(--paper); box-shadow: 0 24px 50px rgba(35,49,41,.12); display: block; justify-self: stretch; left: 0; min-height: calc(100vh - 86px); opacity: 0; overflow-y: auto; padding: clamp(38px, 9vw, 70px) max(20px, calc((100vw - var(--shell)) / 2)); pointer-events: none; position: absolute; right: 0; top: 100%; transform: translateY(-14px); transition: opacity .28s ease, transform .35s cubic-bezier(.2,.75,.2,1), visibility .28s; visibility: hidden; width: 100%; }
  .site-header.is-scrolled .site-nav { min-height: calc(100vh - 72px); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
  .site-nav__list { align-items: flex-start; flex-direction: column; font-size: 1.45rem; gap: 20px; }
  .site-nav .site-nav__list a { font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 2.55rem); font-weight: 500; line-height: 1.12; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr; padding-bottom: 90px; }
  .hero__visual { min-height: 460px; }
  .hero__photo { min-height: 460px; }
  .hero__seal { bottom: 20px; height: 124px; left: 20px; width: 124px; }
  .hero__scroll { display: none; }
  .intro__grid, .animals__grid, .story-grid, .region__grid, .booking-section__grid, .single-hero__grid, .detail-grid, .contact-page-grid, .reviews-consent { grid-template-columns: 1fr; }
  .booking-section__grid > div:first-child, .detail-box { position: static; }
  .stay-grid, .attraction-strip { grid-template-columns: 1fr; }
  .stay-card { min-height: 320px; }
  .comfort-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__header { align-items: start; grid-template-columns: 1fr; }
  .reviews__score { justify-self: start; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { background: var(--forest-dark); min-height: calc(100svh - 86px); }
  .hero::after, .hero__texture { display: none; }
  .hero .hero__grid { grid-template-columns: 1fr; grid-template-rows: minmax(640px, calc(100svh - 86px)); min-height: calc(100svh - 86px); padding: 0; width: 100%; }
  .hero__content, .hero__visual { grid-column: 1; grid-row: 1; }
  .hero__visual { min-height: 100%; }
  .hero__visual::after { background: linear-gradient(180deg, rgba(16,32,23,.08) 18%, rgba(15,30,22,.9) 88%); content: ''; inset: 0; pointer-events: none; position: absolute; z-index: 2; }
  .hero__photo { border-radius: 0; box-shadow: none; height: 100%; inset: 0; min-height: 0; position: absolute; }
  .hero__photo::after { border: 0; }
  .hero__photo img { object-position: 64% center; }
  .hero__slide--2 img { object-position: 54% center; }
  .hero__slide--3 img { object-position: 50% center; }
  .hero__slider-controls { bottom: auto; right: 14px; top: 18px; }
  .hero__slider-arrow, .hero__slider-count { display: none !important; }
  .hero__content { align-self: end; color: var(--white); max-width: none; padding: 120px 22px 38px; position: relative; text-shadow: 0 2px 24px rgba(0,0,0,.28); z-index: 4; }
  .hero__content .eyebrow { color: #e0e9dd; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 4.2rem); }
  .hero__lead, .hero__distance { color: #f2f4ef; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 15px; margin: 24px 0 20px; }
  .hero__actions .button { background: var(--cream); border-color: var(--cream); color: var(--forest-dark); text-shadow: none; }
  .hero__actions .text-link { color: var(--white); }
  .hero__distance { border-color: rgba(255,255,255,.35); margin: 0; padding-top: 14px; }
  .hero__seal { display: none; }
  .quick-facts { overflow: hidden; }
  .quick-facts__grid { display: flex; overflow-x: auto; padding: 0 14px; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; }
  .quick-facts__grid::-webkit-scrollbar { display: none; }
  .quick-facts__grid > div { border-right: 1px solid var(--line); flex: 0 0 78vw; min-height: 142px; scroll-snap-align: start; }
  .verified-amenities__grid { grid-template-columns: 1fr 1fr; }
  .verified-amenities__grid > div { min-height: 170px; padding: 22px 18px; }
  .comfort-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-grid, .simple-card-grid, .gallery-grid, .gallery-grid--large, .values-grid, .distance-grid, .nl-form-grid, .site-footer__grid, .offer-detail-grid, .offer-detail-columns { grid-template-columns: 1fr; }
  .offer-detail-card--wide { grid-column: auto; }
  .comfort-item { font-size: .88rem; min-height: 118px; padding: 18px 14px; }
  .comfort-item span { font-size: 1.2rem; margin-bottom: 15px; }
  .gallery-grid, .gallery-grid--large { grid-auto-rows: 270px; }
  .gallery-grid .image-placeholder--wide, .gallery-grid--large .image-placeholder:first-child, .gallery-preview__photo--wide { grid-column: auto; grid-row: auto; }
  .gallery-mosaic { grid-auto-rows: 270px; grid-template-columns: 1fr; }
  .gallery-item:first-child, .gallery-item--wide { grid-column: auto; grid-row: auto; }
  .gallery-lightbox { padding: 12px; }
  .gallery-lightbox__inner { grid-template-columns: 42px minmax(0, 1fr) 42px; }
  .gallery-lightbox__close, .gallery-lightbox__nav { height: 40px; width: 40px; }
  .gallery-lightbox__close { right: 2px; top: 2px; }
  .reviews__header { gap: 28px; margin-bottom: 34px; }
  .reviews__score { min-width: 0; padding: 20px 22px; width: 100%; }
  .reviews__score > strong { font-size: 3.5rem; }
  .reviews__metrics { margin-bottom: 42px; }
  .reviews__track { grid-auto-columns: min(88%, 330px); }
  .review-card { min-height: 320px; padding: 24px; }
  .contact-strip__inner, .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .contact-strip__links { align-items: flex-start; }
  .contact-card__actions { align-items: stretch; flex-direction: column; }
  .contact-card__actions .button { width: 100%; }
  .site-footer__bottom { gap: 10px; }
  .single-hero__image, .single-hero .image-placeholder, .image-placeholder--tall, .animals__visual, .story__photo, .map-placeholder { min-height: 400px; }
  .back-to-top { bottom: 14px; height: 44px; right: 14px; width: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .has-js .motion-item, .has-js .motion-item.is-visible, [data-parallax], [data-tilt] { filter: none !important; opacity: 1 !important; transform: none !important; }
  .hero__scroll { display: none; }
  .hero__slide { transition: none !important; }
  .hero__slider-pause { display: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: .01ms !important; }
}
