:root {
  --ink: #16211c;
  --muted: #657169;
  --paper: #f8f5ee;
  --white: #ffffff;
  --leaf: #244b3a;
  --leaf-2: #406a51;
  --clay: #b56542;
  --gold: #cf9a4b;
  --line: rgba(22, 33, 28, 0.14);
  --shadow: 0 18px 45px rgba(22, 33, 28, 0.14);
}

* {
  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.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 245, 238, 0.94);
  box-shadow: 0 10px 30px rgba(22, 33, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.8vw, 32px);
  font-size: 0.9rem;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 18px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 14, 0.76), rgba(10, 18, 14, 0.34) 48%, rgba(10, 18, 14, 0.12)), linear-gradient(0deg, rgba(10, 18, 14, 0.55), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 132px;
  justify-self: start;
  margin-left: clamp(18px, 8vw, 108px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.5rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  border-color: var(--clay);
  color: var(--white);
  background: var(--clay);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 8vw, 108px);
  right: clamp(18px, 8vw, 108px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-facts span {
  padding: 18px 18px 0 0;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.intro p:last-child,
.split-content p,
.location-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-media {
  min-height: 520px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.split-content {
  display: grid;
  gap: 24px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.room-grid div {
  display: grid;
  gap: 6px;
  min-height: 120px;
  align-content: center;
  padding: 24px;
  background: var(--white);
}

.room-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.room-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.amenity-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.amenity-grid p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  min-width: 58px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--leaf);
  background: #e9efe7;
  font-size: 0.75rem;
  font-weight: 800;
}

.reviews {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: var(--leaf);
  color: var(--white);
}

.reviews .section-heading {
  margin-left: 0;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  min-height: 190px;
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--leaf);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 22px;
}

.location-copy .button {
  width: fit-content;
}

.location-panel {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.location-panel span {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #101914;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 18, 14, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  max-width: min(1100px, 94vw);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 148px;
    margin-left: 18px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-facts span {
    padding-top: 12px;
  }

  .intro,
  .split,
  .location {
    grid-template-columns: 1fr;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }

  .amenity-grid,
  .quote-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-facts {
    font-size: 0.88rem;
  }

  .room-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }
}
