@charset "UTF-8";

:root {
  --paper: #f4efe5;
  --paper-deep: #e8decf;
  --ink: #20241f;
  --forest: #263c32;
  --terracotta: #b8563f;
  --sun: #d7a84b;
  --white: #fffdf8;
  --serif: "Bodoni MT", Didot, "Times New Roman", serif;
  --sans: Candara, "Trebuchet MS", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.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;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background-color .35s ease, color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(244, 239, 229, .96);
  box-shadow: 0 1px 0 rgba(32, 36, 31, .14);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  width: 76px;
  height: 54px;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(18, 22, 18, .14);
}
.navigation { display: flex; align-items: center; gap: 34px; }
.navigation a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.navigation a:hover::after, .navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 10px 18px; border: 1px solid currentColor; border-radius: 2px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
  overflow: hidden;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 55%; animation: hero-in 1.4s cubic-bezier(.2,.65,.3,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(15, 20, 16, .72) 0%, rgba(15, 20, 16, .3) 52%, rgba(15, 20, 16, .06) 100%); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 48px));
  padding-top: clamp(160px, 23vh, 230px);
  margin-left: max(24px, calc((100vw - 1400px) / 2));
  animation: content-in .9s .25s ease both;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow.accent { color: var(--terracotta); }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .96; }
h1 { font-size: clamp(74px, 10vw, 150px); }
h2 { font-size: clamp(48px, 6vw, 84px); }
.hero-intro { max-width: 580px; margin: 28px 0 32px; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--terracotta); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.68); }
.button-outline:hover, .button-outline:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.hero-facts {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(640px, 52vw);
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  list-style: none;
}
.hero-facts li { min-width: 0; padding: 22px 16px; text-align: center; border-right: 1px solid rgba(32,36,31,.14); }
.hero-facts strong { display: block; font-family: var(--serif); font-size: 34px; line-height: 1; }
.hero-facts span { font-size: 12px; font-weight: 700; text-transform: uppercase; }

.section-shell { width: var(--shell); margin-inline: auto; }
.intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(50px, 10vw, 150px);
  padding-block: clamp(100px, 14vw, 180px);
}
.intro h2 { max-width: 770px; }
.intro-copy { align-self: end; font-size: 18px; }
.intro-copy p { margin: 0 0 20px; }

.feature-band { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 680px; background: var(--forest); color: var(--white); }
.feature-image-wrap { min-height: 620px; overflow: hidden; }
.feature-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 100px); }
.feature-copy h2 { margin-bottom: 32px; font-size: clamp(45px, 5vw, 72px); }
.feature-copy p { max-width: 480px; }
.season-note { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.28); font-size: 14px; }

.gallery-section, .amenities { padding-block: clamp(100px, 13vw, 170px); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: start; margin-bottom: 62px; }
.section-heading h2 { max-width: 800px; }
.gallery-grid { display: grid; grid-auto-rows: 330px; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 2px;
  cursor: zoom-in;
}
.gallery-item-wide { grid-column: span 1; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: opacity .45s ease, transform .7s cubic-bezier(.2,.65,.3,1); }
.gallery-item::after { position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(12,17,13,.72)); content: ""; }
.gallery-item span { position: absolute; z-index: 1; right: 24px; bottom: 18px; left: 24px; font-family: var(--serif); font-size: 27px; text-align: left; }
.gallery-item:hover img, .gallery-item:focus-visible img { opacity: .82; transform: scale(1.035); }
.gallery-item:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.amenities { border-top: 1px solid rgba(32,36,31,.18); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(32,36,31,.18); }
.amenities-grid li { display: flex; min-height: 190px; flex-direction: column; padding: 30px 22px; border-right: 1px solid rgba(32,36,31,.18); border-bottom: 1px solid rgba(32,36,31,.18); }
.amenities-grid li:nth-child(4n) { border-right: 0; }
.amenities-grid span { color: var(--terracotta); font-family: var(--serif); font-size: 34px; line-height: 1; }
.amenities-grid strong { margin-top: auto; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.amenities-grid small { color: #5c625c; font-size: 14px; }

.rooms { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--terracotta); color: var(--white); }
.rooms-image { margin: clamp(28px, 5vw, 72px) 0 clamp(28px, 5vw, 72px) clamp(28px, 5vw, 72px); overflow: hidden; }
.rooms-image img { width: 100%; height: 100%; object-fit: cover; }
.rooms-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 8vw, 120px); }
.rooms-copy h2 { margin-bottom: 36px; }
.rooms-copy p { max-width: 510px; }

.booking { position: relative; display: grid; min-height: 760px; place-items: center; color: var(--white); text-align: center; overflow: hidden; }
.booking-bg, .booking-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.booking-bg { object-fit: cover; }
.booking-overlay { background: rgba(20,35,27,.7); }
.booking-content { position: relative; z-index: 1; width: min(760px, calc(100% - 48px)); }
.booking-content h2 { font-size: clamp(64px, 9vw, 120px); }
.booking-content > p:not(.eyebrow) { max-width: 540px; margin: 28px auto 34px; font-size: 19px; }
.booking-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.site-footer { display: flex; min-height: 170px; align-items: center; justify-content: space-between; gap: 30px; padding: 32px max(24px, calc((100vw - 1400px) / 2)); background: var(--ink); color: var(--white); }
.footer-logo { width: 102px; height: 102px; object-fit: contain; border-radius: 2px; }
.site-footer p { color: #c8ccc6; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-links a { font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { text-decoration: underline; }

.legal-page { background: var(--paper); }
.legal-header {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(32,36,31,.16);
}
.legal-back { font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.legal-main { width: var(--shell); margin-inline: auto; }
.legal-title { padding-block: clamp(80px, 11vw, 140px); border-bottom: 1px solid rgba(32,36,31,.18); }
.legal-title h1 { color: var(--forest); font-size: clamp(68px, 10vw, 130px); }
.legal-title > p:last-child { margin: 30px 0 0; color: #5c625c; font-size: 14px; }
.legal-content { width: min(820px, 100%); padding-block: clamp(70px, 10vw, 120px); margin-left: auto; }
.legal-content section { display: grid; grid-template-columns: minmax(180px, .7fr) 1.3fr; gap: 28px 60px; padding: 44px 0; border-bottom: 1px solid rgba(32,36,31,.18); }
.legal-content h2 { grid-row: 1 / span 8; font-family: var(--sans); font-size: 14px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }
.legal-content p, .legal-content address, .legal-content dl { grid-column: 2; margin: 0; }
.legal-content address { font-style: normal; }
.legal-content a { text-decoration-color: var(--terracotta); text-underline-offset: 3px; }
.legal-content dl div { padding: 12px 0; border-bottom: 1px solid rgba(32,36,31,.1); }
.legal-content dt { color: #5c625c; font-size: 13px; }
.legal-content dd { margin: 2px 0 0; }
.legal-footer { display: flex; justify-content: space-between; gap: 24px; padding: 36px max(24px, calc((100vw - 1180px) / 2)); color: var(--white); background: var(--ink); }
.legal-footer p { margin: 0; }
.legal-footer a { color: inherit; font-weight: 700; }

.lightbox { width: min(1100px, calc(100% - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 0; overflow: visible; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(16,20,17,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 40px); object-fit: contain; }
.lightbox-close { position: fixed; z-index: 2; top: 18px; right: 24px; width: 44px; height: 44px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 30px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.gallery-item:nth-child(2) { transition-delay: .08s; }
.gallery-item:nth-child(3) { transition-delay: .16s; }
.gallery-item:nth-child(4) { transition-delay: .24s; }

@keyframes hero-in { from { opacity: .35; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes content-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  :root { --header-height: 72px; --shell: min(100% - 32px, 680px); }
  .site-header { padding-inline: 18px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; color: inherit; background: transparent; border: 0; }
  .menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 25px; height: 1px; background: currentColor; content: ""; transition: transform .25s ease; }
  .menu-lines::before { transform: translateY(-7px); }
  .menu-lines::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { transform: translateY(0) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::after { transform: translateY(-1px) rotate(-45deg); }
  .navigation { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 80px 34px; color: var(--white); background: var(--forest); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .navigation.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .navigation a { font-family: var(--serif); font-size: clamp(34px, 10vw, 54px); font-weight: 400; text-transform: none; }
  .navigation .nav-cta { padding: 0; border: 0; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,20,16,.72), rgba(15,20,16,.08) 75%); }
  .hero-content { padding-top: 24vh; margin-left: 24px; }
  h1 { font-size: clamp(66px, 22vw, 110px); }
  h2 { font-size: clamp(43px, 13vw, 67px); }
  .hero-facts { right: 16px; bottom: 16px; left: 16px; width: auto; }
  .hero-facts li { padding: 15px 5px; }
  .hero-facts strong { font-size: 27px; }
  .hero-facts span { font-size: 9px; }
  .intro, .section-heading { grid-template-columns: 1fr; gap: 36px; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-image-wrap { min-height: 56vw; }
  .feature-copy { min-height: 520px; }
  .gallery-grid { grid-auto-rows: 48vw; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid li:nth-child(2n) { border-right: 0; }
  .rooms { grid-template-columns: 1fr; }
  .rooms-image { min-height: 58vw; margin: 24px 24px 0; }
  .rooms-copy { min-height: 560px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
  .legal-content section { grid-template-columns: 1fr; gap: 20px; }
  .legal-content h2 { grid-row: auto; }
  .legal-content p, .legal-content address, .legal-content dl { grid-column: 1; }
}

@media (max-width: 560px) {
  .brand-logo { width: 68px; height: 48px; }
  .hero-intro { font-size: 17px; }
  .hero-facts li:nth-child(3) { display: none; }
  .hero-facts { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .gallery-item-tall { aspect-ratio: 3 / 4; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-grid li, .amenities-grid li:nth-child(2n) { min-height: 150px; border-right: 0; }
  .booking-links { flex-direction: column; }
  .booking-links .button { width: 100%; }
  .legal-footer { flex-direction: column; }
}

@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; }
}
