:root {
  --ink: #20242a;
  --muted: #606a73;
  --paper: #faf8f3;
  --white: #ffffff;
  --sage: #eee6da;
  --olive: #7d6a4d;
  --teal: #3a2a22;
  --clay: #8f6f3f;
  --gold: #c9a45c;
  --line: rgba(32, 36, 42, 0.14);
  --shadow: 0 20px 48px rgba(32, 36, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 850;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  border-radius: 6px;
  height: 42px;
  object-fit: contain;
  width: 96px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 23px;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.84), rgba(58, 42, 34, 0.36)),
    url("assets/room-wide.jpeg") center / cover;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 78vh;
  padding: 8vw 5vw 5vw;
}

.hero-copy {
  max-width: 890px;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  margin-bottom: 1.3rem;
  max-width: 1040px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  text-decoration: none;
}

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

.button.primary:hover {
  background: #0a5558;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.map-button {
  background: var(--teal);
  color: var(--white);
  margin-top: 0.7rem;
}

.button.wide {
  width: 100%;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.hero-panel div {
  background: var(--white);
  padding: 1.2rem;
}

.hero-panel strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-panel span {
  color: var(--muted);
  display: block;
  font-weight: 750;
  margin-top: 0.4rem;
}

.section {
  padding: 6.4rem 5vw;
}

.section-heading {
  max-width: 840px;
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 280px;
  margin-top: 2rem;
}

.intro-grid p {
  font-size: 1.2rem;
  max-width: 780px;
}

.stat {
  background: var(--sage);
  border-radius: 8px;
  padding: 1.4rem;
}

.stat strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  display: block;
  font-weight: 750;
  margin-top: 0.5rem;
}

.reviews-section {
  background: var(--white);
}

.reviews-heading > p:last-child {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 1.5rem;
}

.review-meta {
  align-items: flex-start;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.review-meta h3 {
  margin-bottom: 0;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.stars i {
  color: #c7c2b8;
  font-style: normal;
}

.review-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  margin: 1.4rem 0;
}

.review-context {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  margin-top: auto;
}

.review-link {
  color: var(--teal);
  display: inline-block;
  font-weight: 850;
  margin-top: 1.5rem;
  text-decoration: none;
}

.review-link:hover {
  text-decoration: underline;
}

.rooms-section {
  background: var(--white);
}

.room-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.room-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.room-card-copy {
  padding: 1.25rem;
}

.room-card-copy p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.room-card-copy span {
  color: var(--olive);
  font-weight: 850;
}

.amenities-section {
  background: var(--sage);
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.video-section {
  background: var(--sage);
}

.video-section .section-heading > p:last-child {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.video-frame {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 2.4rem;
  overflow: hidden;
}

.video-frame video {
  display: block;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  width: 100%;
}

.amenities-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
  overflow: hidden;
}

.amenity {
  background: rgba(255, 255, 255, 0.58);
  min-height: 230px;
  padding: 1.5rem;
}

.amenity span {
  color: var(--clay);
  display: block;
  font-weight: 900;
  margin-bottom: 2rem;
}

.amenity p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.location-section {
  align-items: stretch;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 380px;
}

.location-copy {
  max-width: 790px;
}

.location-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.location-card ul {
  color: var(--muted);
  line-height: 1.9;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.contact-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-copy {
  max-width: 780px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  background: var(--white);
}

.contact-link {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: block;
  font-weight: 800;
  padding: 1rem 0;
  text-decoration: none;
}

.contact-link:first-child {
  padding-top: 0;
}

.address {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 1rem 0 0;
}

.contact-card .button {
  margin-top: 1rem;
}

.site-footer {
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 5vw;
}

.site-footer p {
  font-size: 0.92rem;
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero,
  .intro-grid,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 0.5rem 5vw 1rem;
    position: absolute;
    right: 0;
    top: 66px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    width: 100%;
  }

  .hero {
    align-items: end;
    min-height: 76vh;
    padding-top: 7rem;
  }

  .hero-panel,
  .room-grid,
  .amenities-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .section {
    padding: 4.5rem 5vw;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }
}
