:root {
  --forest: #173d2a;
  --forest-deep: #0d2a1c;
  --leaf: #557c46;
  --lime: #d8e97b;
  --cream: #f4f0e5;
  --paper: #fffdf7;
  --ink: #1c251f;
  --muted: #657069;
  --line: rgba(23, 61, 42, .15);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 80px);
  color: white;
}
.site-header.is-scrolled {
  position: fixed;
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--forest);
  background: rgba(255, 253, 247, .93);
  box-shadow: 0 8px 30px rgba(13, 42, 28, .08);
  backdrop-filter: blur(12px);
  animation: slideDown .35s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } }
.brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-mark svg { width: 28px; height: 28px; fill: currentColor; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 17px; line-height: 1; }
.brand small { margin-top: 3px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); font-size: 13px; font-weight: 600; }
.main-nav a:not(.nav-cta) { padding: 10px 0; border-bottom: 1px solid transparent; }
.main-nav a:not(.nav-cta):hover { border-color: currentColor; }
.nav-cta { padding: 12px 21px; color: var(--forest); background: var(--lime); border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; color: currentColor; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-shade { background: linear-gradient(90deg, rgba(6, 24, 15, .82) 0%, rgba(6, 24, 15, .38) 55%, rgba(6, 24, 15, .05) 100%), linear-gradient(0deg, rgba(6, 24, 15, .45), transparent 45%); }
.hero-content { position: relative; z-index: 1; width: min(790px, 90%); margin: 0 0 clamp(88px, 13vh, 145px) clamp(22px, 9vw, 145px); }
.eyebrow { margin: 0 0 18px; color: var(--leaf); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 35px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }
.eyebrow.light { color: var(--lime); }
.hero h1 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(52px, 8vw, 108px); font-weight: 400; line-height: .93; letter-spacing: -.045em; }
.hero-content > p:not(.eyebrow) { max-width: 550px; margin: 27px 0 34px; color: rgba(255,255,255,.86); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--forest-deep); background: var(--lime); }
.button-primary:hover { background: white; }
.button-ghost { color: white; border-color: rgba(255,255,255,.6); }
.button-ghost:hover { color: var(--forest); background: white; }
.scroll-hint { position: absolute; z-index: 1; right: clamp(22px, 5vw, 80px); bottom: 38px; display: flex; align-items: center; gap: 15px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-hint span { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }

.section { padding: clamp(80px, 11vw, 150px) clamp(22px, 7vw, 110px); }
.intro { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 9vw, 140px); }
.intro h2, .section-heading h2, .experience h2, .booking h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 5vw, 70px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.intro-copy .lead { margin: 30px 0 18px; color: var(--ink); font-size: 18px; line-height: 1.7; }
.intro-copy > p:last-of-type { color: var(--muted); line-height: 1.8; }
.quick-facts { display: flex; gap: 12px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.quick-facts div { flex: 1; }
.quick-facts strong, .quick-facts span { display: block; }
.quick-facts strong { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.quick-facts span { margin-top: 5px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.intro-images { position: relative; padding: 0 0 90px 70px; }
.intro-images::before { content: ""; position: absolute; z-index: -1; top: -35px; right: -35px; width: 55%; height: 70%; background: var(--cream); }
.image-main { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.image-detail { position: absolute; bottom: 0; left: 0; width: 42%; aspect-ratio: 4/5; object-fit: cover; border: 9px solid var(--paper); border-radius: 18px; }

.rooms { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading > p { max-width: 390px; margin: 0 0 7px; color: var(--muted); line-height: 1.7; }
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.room-card { min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: var(--paper); border: 1px solid rgba(23,61,42,.08); border-radius: 18px; transition: transform .25s, box-shadow .25s; }
.room-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(23,61,42,.1); }
.room-card.featured { color: white; background: var(--forest); }
.room-number { color: var(--leaf); font-family: var(--serif); font-size: 17px; }
.featured .room-number, .featured .room-type { color: var(--lime); }
.room-type { margin: 0 0 10px; color: var(--leaf); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.room-card h3 { min-height: 64px; margin: 0 0 18px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; }
.room-card p:not(.room-type) { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.featured p:not(.room-type) { color: rgba(255,255,255,.68); }
.room-meta { display: flex; flex-direction: column; gap: 8px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.featured .room-meta { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.15); }
.room-card > a { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.room-card > a span { font-size: 20px; }

.experience { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; color: white; background: var(--forest); }
.experience-image { min-height: 650px; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-copy { padding: clamp(70px, 8vw, 130px); align-self: center; }
.experience h2 { max-width: 670px; }
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; margin-top: 60px; }
.amenities > div { display: flex; align-items: center; gap: 17px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.15); }
.amenities > div > span { display: grid; width: 42px; height: 42px; flex: none; place-items: center; color: var(--lime); border: 1px solid rgba(216,233,123,.5); border-radius: 50%; font-family: var(--serif); font-size: 14px; }
.amenities p, .amenities strong, .amenities small { display: block; margin: 0; }
.amenities strong { font-size: 14px; }
.amenities small { margin-top: 5px; color: rgba(255,255,255,.58); line-height: 1.4; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 16px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 16px; background: var(--cream); cursor: zoom-in; }
.gallery-item::after { content: "+"; position: absolute; right: 18px; bottom: 18px; display: grid; width: 42px; height: 42px; place-items: center; color: white; background: rgba(13,42,28,.72); border-radius: 50%; font-size: 22px; opacity: 0; transform: scale(.7); transition: .25s; }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.booking { padding-top: 20px; }
.booking-card { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 28px; }
.booking-card > img, .booking-overlay { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.booking-overlay { background: rgba(8, 31, 20, .66); }
.booking-content { position: relative; z-index: 1; max-width: 730px; padding: 45px 22px; text-align: center; }
.booking-content .eyebrow::before { display: none; }
.booking-content p:not(.eyebrow) { max-width: 550px; margin: 25px auto 32px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7; }
.booking-content .button { min-width: 220px; }
.booking-content .button span { margin-left: 14px; font-size: 17px; }

footer { padding: 70px clamp(22px, 7vw, 110px) 28px; color: white; background: var(--forest-deep); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.footer-brand p { margin: 7px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 35px; margin: 48px 0; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.lightbox { width: min(1100px, 92vw); padding: 0; overflow: visible; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(5,17,11,.92); backdrop-filter: blur(5px); }
.lightbox img { max-height: 85vh; object-fit: contain; border-radius: 12px; }
.lightbox button { position: absolute; z-index: 2; top: -45px; right: 0; width: 38px; height: 38px; color: white; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: transparent; font-size: 25px; cursor: pointer; }

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

@media (max-width: 1050px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
  .room-card { min-height: 380px; }
  .experience { grid-template-columns: .8fr 1.2fr; }
  .experience-copy { padding: 70px 45px; }
  .amenities { grid-template-columns: 1fr; margin-top: 40px; }
}

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  .menu-button { position: relative; z-index: 2; display: flex; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
  .menu-button span { width: 22px; height: 1px; background: currentColor; transition: .25s; }
  .menu-open .menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 18px; color: white; background: var(--forest-deep); transform: translateY(-100%); transition: transform .35s ease; }
  .menu-open .main-nav { transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 28px; font-weight: 400; }
  .main-nav .nav-cta { margin-top: 15px; color: var(--forest); font-family: var(--sans); font-size: 13px; }
  .menu-open .site-header, .menu-open .site-header.is-scrolled { color: white; }
  .hero { min-height: 820px; }
  .hero-shade { background: linear-gradient(0deg, rgba(6,24,15,.88), rgba(6,24,15,.2) 85%); }
  .hero-content { width: calc(100% - 40px); max-width: 100%; margin: 0 20px 105px; }
  .hero h1 { max-width: 100%; font-size: clamp(43px, 13.5vw, 60px); overflow-wrap: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .scroll-hint { display: none; }
  .section { padding: 80px 20px; }
  .intro { grid-template-columns: 1fr; }
  .intro-images { padding: 0 0 55px 35px; }
  .intro-images::before { right: -20px; }
  .image-detail { border-width: 6px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card { min-height: 390px; }
  .experience { grid-template-columns: 1fr; }
  .experience-image { min-height: 480px; }
  .experience-copy { padding: 75px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 9px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .booking { padding-top: 0; }
  .booking-card { min-height: 610px; border-radius: 20px; }
  footer { padding: 60px 20px 25px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

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