:root {
  --ink: #18222a;
  --muted: #65717a;
  --line: #e2e5e5;
  --paper: #ffffff;
  --soft: #f5f3ef;
  --warm: #b46b45;
  --warm-dark: #7d432b;
  --green: #365f52;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(226, 229, 229, .8);
  backdrop-filter: blur(16px);
}
.brand, .main-nav, .hero-actions, .contact-actions, .site-footer {
  display: flex;
  align-items: center;
}
.brand { gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}
.main-nav {
  gap: clamp(14px, 3vw, 34px);
  color: #34424b;
  font-size: 15px;
  font-weight: 650;
}
.main-nav a:hover, .text-link:hover { color: var(--warm-dark); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1;
}
.header-cta, .button.primary { color: #fff; background: var(--warm); }
.button.secondary { color: #fff; border: 1px solid rgba(255, 255, 255, .75); }
.button.outline { color: var(--ink); border: 1px solid var(--line); }
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
}
.hero picture, .hero img, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img { object-fit: cover; }
.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 24, 30, .76), rgba(16, 24, 30, .34) 56%, rgba(16, 24, 30, .12));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(76px, 13vh, 144px) clamp(22px, 6vw, 84px) 170px;
  color: #fff;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f4c3a6; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
}
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.2; }
.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.booking-strip {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(820px, calc(100% - 36px));
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.booking-strip div { padding: 22px 24px; border-right: 1px solid var(--line); }
.booking-strip div:last-child { border-right: 0; }
.booking-strip strong, .booking-strip span { display: block; }
.booking-strip strong { font-size: 22px; line-height: 1.15; }
.booking-strip span { margin-top: 6px; color: var(--muted); font-size: 14px; }
.section { padding: clamp(72px, 9vw, 122px) clamp(20px, 5vw, 72px); }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}
.intro > p { color: var(--muted); font-size: 19px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 255px;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 8vw, 110px);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid img:first-child { grid-row: span 2; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.rooms { background: var(--soft); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.room-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 229, 229, .9);
  border-radius: 8px;
}
.room-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room-card div { padding: 20px; }
.room-card p { min-height: 74px; color: var(--muted); }
.room-card span { color: var(--warm-dark); font-weight: 800; }
.services-band {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--green);
}
.services-band .section-kicker { color: #e7b48f; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .2);
}
.service-grid div { min-height: 230px; padding: 28px; background: var(--green); }
.service-grid p { color: rgba(255, 255, 255, .76); }
.price-location {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 42px);
}
.price-panel, .location-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
}
dl { margin: 26px 0 0; }
dl div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
dt { color: var(--muted); }
dd { margin: 0; text-align: right; font-weight: 850; }
.note, .location-panel p { color: var(--muted); }
.note { margin: 22px 0 0; }
.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--warm-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: #18222a;
}
.contact-section h2 { max-width: 720px; }
.contact-section p:not(.section-kicker) { max-width: 680px; color: rgba(255, 255, 255, .74); }
.contact-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: min(100%, 270px);
  gap: 12px;
}
.contact-section .button.outline { color: #fff; border-color: rgba(255, 255, 255, .28); }
.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #f8f8f6;
}
.site-footer div { display: grid; gap: 4px; }
.site-footer strong { color: var(--ink); }
@media (max-width: 1050px) {
  .room-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .site-header { position: static; flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: space-between; overflow-x: auto; }
  .hero { min-height: 780px; }
  .booking-strip, .intro, .price-location, .contact-section { grid-template-columns: 1fr; }
  .booking-strip { left: 18px; right: 18px; width: auto; }
  .booking-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-strip div:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
  .header-cta { display: none; }
  .hero-content { padding-bottom: 260px; }
  .gallery-grid, .room-grid, .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-grid img:first-child { grid-row: auto; }
  dl div, .site-footer { display: grid; }
  dd { text-align: left; }
}
