:root {
  --ink: #172019;
  --paper: #f3f1ea;
  --cream: #e9e4d8;
  --sage: #a8b7a4;
  --green: #263f32;
  --orange: #d95f35;
  --line: rgba(23, 32, 25, 0.16);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-header {
  height: 78px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(243, 241, 234, .94);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(12px);
  animation: slideDown .35s ease;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 14px; letter-spacing: .02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; font-weight: 800; letter-spacing: .03em; }
.brand b { font-weight: 800; }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
nav a { transition: opacity .2s; }
nav a:hover { opacity: .58; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.language-switcher a { padding: 5px 7px; opacity: .65; }
.language-switcher a:hover { opacity: 1; }
.language-switcher a.active { color: var(--ink); background: white; opacity: 1; }
.site-header.scrolled .language-switcher a.active,
.site-header.open .language-switcher a.active { color: white; background: var(--green); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; font-weight: 600; font-size: 14px; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; font-size: 13px; }
.button-dark { color: white; background: var(--ink); }
.site-header:not(.scrolled) .button-dark { color: var(--ink); background: white; }
.button-light { color: var(--ink); background: white; }
.button-light:hover { color: white; background: var(--orange); }
.button svg, .text-link svg, footer svg { width: 17px; }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }

.hero { min-height: 760px; height: 100vh; position: relative; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,25,18,.78) 0%, rgba(13,25,18,.38) 49%, rgba(13,25,18,.06) 75%), linear-gradient(0deg, rgba(13,25,18,.34), transparent 40%); }
.hero-video-control { display: none; position: absolute; z-index: 3; right: 6vw; bottom: 112px; width: 44px; height: 44px; align-items: center; justify-content: center; color: white; background: rgba(14, 23, 17, .48); border: 1px solid rgba(255,255,255,.55); border-radius: 50%; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero-video-control svg { width: 17px; height: 17px; }
.hero-video-control:hover { background: rgba(14, 23, 17, .72); }
.hero-content { position: relative; z-index: 2; width: min(780px, 88vw); margin-left: 8vw; padding-top: 70px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #526056; text-transform: uppercase; font-size: 11px; font-weight: 600; letter-spacing: .18em; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.72); }
h1, h2, h3 { font-family: var(--display); margin: 0; }
h1 { margin: 26px 0 24px; max-width: 780px; font-size: clamp(57px, 7vw, 104px); font-weight: 600; line-height: .94; letter-spacing: -.065em; }
.hero-content > p { max-width: 600px; margin: 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.light-link { color: white; }
.hero-facts { position: absolute; z-index: 2; right: 4vw; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); width: min(660px, 58vw); background: var(--paper); color: var(--ink); }
.hero-facts div { padding: 28px 32px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong { display: block; font-family: var(--display); font-size: 34px; line-height: 1; }
.hero-facts span { display: block; margin-top: 9px; color: #687169; font-size: 11px; }

.section { padding: 120px 8vw; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: end; }
h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.03; letter-spacing: -.055em; font-weight: 600; }
.intro h2, .section-heading h2, .stay h2 { margin-top: 22px; }
.intro-copy { max-width: 620px; }
.intro-copy p { color: #616a62; font-size: 15px; line-height: 1.7; }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-family: var(--display); font-size: 23px; line-height: 1.5; letter-spacing: -.02em; }

.gallery-section { padding-top: 0; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.gallery-heading h2 { max-width: 800px; margin-top: 22px; }
.gallery-open-all { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; min-height: 48px; padding: 0 20px; border: 1px solid var(--ink); color: var(--ink); background: transparent; font-weight: 600; cursor: pointer; }
.gallery-open-all:hover { color: white; background: var(--ink); }
.gallery-open-all svg { width: 18px; }
.gallery { display: grid; grid-template-columns: 1.45fr .75fr; gap: 18px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--cream); }
.gallery-trigger { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-main img { height: 760px; object-fit: cover; }
.gallery-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.gallery-stack img { height: 371px; object-fit: cover; }
.gallery figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 42px 26px 20px; color: white; font-size: 12px; background: linear-gradient(transparent, rgba(0,0,0,.56)); }
.gallery figcaption span { opacity: .65; }
.gallery figure img { transition: transform .7s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery-trigger:focus-visible { outline: 4px solid var(--orange); outline-offset: -4px; }

.photo-lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; color: white; background: rgba(10, 14, 11, .97); }
.photo-lightbox::backdrop { background: rgba(10, 14, 11, .97); }
.photo-lightbox[open] { display: block; }
.lightbox-shell { height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.lightbox-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 16px 3vw; border-bottom: 1px solid rgba(255,255,255,.15); }
.lightbox-header strong, .lightbox-header span { display: block; }
.lightbox-header strong { font-family: var(--display); font-size: 15px; }
.lightbox-header span { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 11px; }
.lightbox-close, .lightbox-nav { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: rgba(255,255,255,.06); cursor: pointer; }
.lightbox-close { width: 44px; height: 44px; }
.lightbox-close svg, .lightbox-nav svg { width: 21px; }
.lightbox-stage { min-height: 0; display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; align-items: center; gap: 20px; padding: 22px 3vw; }
.lightbox-stage figure { min-width: 0; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; justify-items: center; margin: 0; }
.lightbox-stage img { width: auto; max-width: 100%; height: 100%; max-height: calc(100vh - 230px); object-fit: contain; }
.lightbox-stage figcaption { min-height: 28px; padding-top: 10px; color: rgba(255,255,255,.78); font-size: 13px; }
.lightbox-nav { width: 52px; height: 52px; justify-self: center; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.16); }
.lightbox-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 12px 3vw 18px; border-top: 1px solid rgba(255,255,255,.15); scrollbar-color: rgba(255,255,255,.3) transparent; }
.lightbox-thumb { flex: 0 0 74px; width: 74px; height: 52px; padding: 0; border: 2px solid transparent; opacity: .56; background: transparent; cursor: pointer; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb.active { border-color: var(--orange); opacity: 1; }
body.lightbox-open { overflow: hidden; }

.features { background: var(--cream); }
.section-heading { max-width: 760px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 260px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid svg { width: 25px; height: 25px; stroke-width: 1.4; color: var(--orange); }
.feature-grid h3 { margin: 46px 0 10px; font-size: 20px; }
.feature-grid p { max-width: 290px; margin: 0; color: #657067; font-size: 14px; line-height: 1.6; }

.location { padding: 0; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 760px; background: var(--green); color: white; }
.location-visual { position: relative; min-height: 720px; }
.location-visual > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.location-pin { position: absolute; left: 6%; bottom: 6%; display: flex; align-items: center; gap: 14px; padding: 14px 20px 14px 14px; color: var(--ink); background: white; }
.location-pin > span { width: 40px; height: 40px; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 50%; }
.location-pin svg { width: 18px; }
.location-pin b, .location-pin small { display: block; }
.location-pin b { font-family: var(--display); font-size: 13px; }
.location-pin small { margin-top: 3px; color: #7a817c; font-size: 10px; }
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: 100px 7vw; }
.location-copy h2 { margin-top: 22px; }
.location-copy > p { max-width: 550px; margin: 28px 0 46px; color: rgba(255,255,255,.7); line-height: 1.7; }
.route-list { border-top: 1px solid rgba(255,255,255,.18); }
.route-list > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.route-list span { color: var(--sage); font-size: 10px; }
.route-list p { display: flex; justify-content: space-between; gap: 20px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.route-list b { color: white; font-weight: 500; }

.stay { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-top: 1px solid var(--line); }
.stay-grid div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.stay-grid div:nth-child(odd) { padding-right: 24px; }
.stay-grid span, .stay-grid strong { display: block; }
.stay-grid span { margin-bottom: 8px; color: #788078; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.stay-grid strong { font-family: var(--display); font-size: 15px; }
.fine-print { grid-column: 2; margin: -40px 0 0; color: #7a817b; font-size: 11px; }

.faq { background: var(--cream); }
.faq .section-heading > p { max-width: 650px; color: #657067; line-height: 1.7; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.faq-grid article { min-height: 210px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-grid h3 { margin: 0 0 14px; font-size: 19px; }
.faq-grid p { margin: 0; color: #657067; font-size: 14px; line-height: 1.7; }

.booking { background: var(--orange); }
.booking-heading { max-width: 820px; color: white; }
.booking-heading .eyebrow { color: rgba(255,255,255,.72); }
.booking-heading h2 { margin-top: 22px; }
.booking-heading > p { max-width: 670px; color: rgba(255,255,255,.76); line-height: 1.7; }
.booking-heading .booking-contact { margin-top: 18px; color: white; font-size: 14px; }
.booking-contact a { border-bottom: 1px solid rgba(255,255,255,.65); }
.booking-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; margin-top: 60px; align-items: start; }
.calendar-panel, .booking-form { background: var(--paper); }
.calendar-panel { padding: 18px; }
.calendar-panel iframe { display: block; width: 100%; height: 650px; border: 0; background: white; }
.calendar-panel > p { display: flex; gap: 10px; margin: 16px 4px 2px; color: #687169; font-size: 12px; line-height: 1.5; }
.calendar-panel > p svg { flex: 0 0 auto; width: 16px; }
.rate-card { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.rate-card > div { padding: 18px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rate-card span, .rate-card strong { display: block; }
.rate-card span { color: #788078; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.rate-card strong { margin-top: 8px; font-family: var(--display); font-size: 15px; }
.rate-note { margin: 10px 4px 0 !important; font-size: 11px !important; }
.booking-form { display: grid; gap: 18px; padding: 34px; }
.booking-form label { display: grid; gap: 8px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-form label > span { color: #59625b; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.booking-form label small { color: #929892; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 14px;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: 2px solid rgba(38,63,50,.25); border-color: var(--green); }
.booking-form textarea { resize: vertical; }
.stay-summary { padding: 13px 15px; color: #59625b; background: var(--cream); font-size: 13px; line-height: 1.5; }
.stay-summary.valid { color: var(--green); background: #dfe8dd; }
.stay-summary.invalid { color: #87391f; background: #f4ddd5; }
.price-summary { padding: 18px; border: 1px solid var(--line); background: white; }
.price-summary[hidden] { display: none; }
.price-summary.loading { color: #687169; font-size: 13px; }
.price-summary.unavailable { color: #87391f; background: #f4ddd5; border-color: rgba(135,57,31,.2); }
.price-summary.estimate { border-color: rgba(135,57,31,.25); }
.price-warning { margin: 0 0 14px; padding: 11px 12px; color: #87391f; background: #f4ddd5; font-size: 11px; line-height: 1.5; }
.price-breakdown { display: grid; gap: 10px; }
.price-line { display: flex; justify-content: space-between; gap: 20px; color: #626b63; font-size: 13px; }
.price-line strong { color: var(--ink); font-weight: 600; }
.price-line.total { margin-top: 4px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink); font-family: var(--display); font-size: 16px; }
.price-line.deposit { font-size: 11px; }
.price-line.discount { color: var(--green); }
.price-line.discount strong { color: var(--green); }
.price-disclaimer { margin: 3px 0 0; color: #838a84; font-size: 10px; line-height: 1.5; }
.consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; }
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--green); }
.consent span { line-height: 1.5; letter-spacing: 0 !important; text-transform: none !important; }
.booking-submit { min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border: 0; color: white; background: var(--green); font: 600 14px var(--display); cursor: pointer; transition: background .2s, transform .2s; }
.booking-submit:hover { background: var(--ink); transform: translateY(-1px); }
.booking-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.booking-submit svg { width: 20px; }
.booking-submit.sending svg { animation: submitSpin .8s linear infinite; }
.form-status { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 17px; color: #7c3b25; background: #f4ddd5; border: 1px solid rgba(124,59,37,.18); font-size: 12px; line-height: 1.55; }
.form-status[hidden] { display: none; }
.form-status-icon { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: #9b4a2f; border-radius: 50%; }
.form-status-icon svg { width: 19px; }
.form-status strong { display: block; margin-bottom: 3px; color: currentColor; font: 700 14px var(--display); }
.form-status p { margin: 0; }
.form-status.success { color: var(--green); background: #dfe8dd; border-color: rgba(38,63,50,.18); }
.form-status.success .form-status-icon { background: var(--green); }
.form-status.pending { color: #59625b; background: var(--cream); border-color: var(--line); }
.form-status.pending .form-status-icon { background: #798379; }
.booking-result-frame { position: absolute; width: 1px; height: 1px; border: 0; clip: rect(0 0 0 0); overflow: hidden; }

footer { min-height: 140px; padding: 42px 4vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #bbc2bb; background: #101611; font-size: 12px; }
.footer-brand { color: white; }
footer p { margin: 0; }
footer > a:last-child { display: flex; align-items: center; gap: 8px; }
.footer-contact { display: grid; gap: 7px; text-align: center; }
.footer-contact a { color: white; }
.footer-contact a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes submitSpin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .site-header:not(.scrolled):not(.open) {
    background: linear-gradient(rgba(14, 23, 17, .48), rgba(14, 23, 17, .08));
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
  }
  .site-header nav, .site-header > .button { display: none; }
  .language-switcher { margin-left: auto; margin-right: 8px; }
  .menu-button { display: block; }
  .site-header.open { position: fixed; height: auto; min-height: 78px; flex-wrap: wrap; color: var(--ink); background: var(--paper); }
  .site-header.open nav { order: 3; width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 14px 0 22px; }
  .site-header.open nav a { width: 100%; padding: 14px 0; border-top: 1px solid var(--line); }
  .hero { min-height: 760px; }
  .hero-content { margin-left: 6vw; }
  .hero-facts { left: 0; right: 0; width: 100%; }
  .hero-facts div { padding: 22px 5vw; }
  .intro, .stay { grid-template-columns: 1fr; }
  .intro { gap: 46px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .gallery-main img { height: 560px; }
  .gallery-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .gallery-stack img { height: 320px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .location-visual { min-height: 600px; }
  .fine-print { grid-column: 1; margin: -30px 0 0; }
  .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 84px 6vw; }
  .hero-video { object-position: center center; transform: scale(1.01); }
  .hero-shade { background: linear-gradient(90deg, rgba(13,25,18,.76) 0%, rgba(13,25,18,.32) 78%, rgba(13,25,18,.14) 100%), linear-gradient(0deg, rgba(13,25,18,.46), transparent 48%); }
  .hero-video-control { display: inline-flex; }
  .hero-content { margin-left: 6vw; padding-bottom: 130px; }
  h1 { font-size: 52px; }
  .hero-content > p { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-facts strong { font-size: 25px; }
  .hero-facts span { font-size: 9px; }
  .hero-facts div { padding: 18px 4vw; }
  .intro-copy .lead { font-size: 20px; }
  .gallery { padding-top: 0; }
  .gallery-heading { margin-bottom: 30px; }
  .gallery-main img { height: 450px; }
  .gallery-stack { grid-template-columns: 1fr; }
  .gallery-stack img { height: 350px; }
  .lightbox-stage { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 5px; padding: 12px 2vw; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-stage img { max-height: calc(100vh - 225px); }
  .lightbox-thumb { flex-basis: 62px; width: 62px; height: 46px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .feature-grid article { min-height: 220px; }
  .location-copy { padding: 84px 6vw; }
  .location-visual { min-height: 480px; }
  .route-list p { flex-direction: column; gap: 5px; }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-grid div:nth-child(odd) { padding-right: 0; }
  .booking-layout { margin-top: 42px; }
  .calendar-panel { padding: 8px; }
  .calendar-panel iframe { height: 520px; }
  .rate-card { grid-template-columns: 1fr; }
  .booking-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; }
}

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