:root {
  --ink: #1c2622;
  --muted: #637069;
  --paper: #f7f4ed;
  --chalk: #fffdf8;
  --moss: #244437;
  --moss-soft: #d9e0d4;
  --slate: #5e7583;
  --clay: #a06f4b;
  --line: rgba(28, 38, 34, 0.14);
  --shadow: 0 18px 48px rgba(28, 38, 34, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--chalk);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--chalk);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(28, 38, 34, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.footer-grid,
.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.site-nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
}

.site-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-footer a:hover {
  border-bottom-color: currentColor;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--moss);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 20, 0.76), rgba(17, 24, 20, 0.34) 48%, rgba(17, 24, 20, 0.14)),
    linear-gradient(0deg, rgba(17, 24, 20, 0.52), transparent 50%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 70px;
  color: var(--chalk);
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 11vw, 8.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.contact-card:hover,
.gallery-item:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--chalk);
  color: var(--ink);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(255, 253, 248, 0.72);
  color: var(--chalk);
}

.button-light {
  background: var(--chalk);
  color: var(--moss);
}

.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid,
.split-grid,
.experience-grid,
.location-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.intro-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-strip {
  background: var(--moss);
  color: var(--chalk);
  padding: 26px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.28);
}

.feature-item {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: var(--moss);
}

.feature-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.feature-label {
  color: rgba(255, 253, 248, 0.76);
}

.split-section {
  background: var(--chalk);
}

.split-grid,
.experience-grid,
.location-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.media-panel {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-panel p,
.experience-copy p,
.contact-grid p,
.location-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-weight: 700;
}

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

.section-heading {
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 10px;
  width: min(1380px, calc(100% - 20px));
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--moss-soft);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.gallery-item:hover {
  box-shadow: var(--shadow);
}

.gallery-item:hover img {
  scale: 1.035;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.experience-section {
  background: var(--chalk);
}

.amenities {
  display: grid;
  gap: 14px;
}

.amenity,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.amenity {
  padding: 22px;
}

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

.location-band {
  background:
    linear-gradient(rgba(36, 68, 55, 0.88), rgba(36, 68, 55, 0.88)),
    url("../images/6503758D-006F-4F0E-9175-BD31156E74BF.jpeg") center / cover;
  color: var(--chalk);
  padding: clamp(70px, 9vw, 115px) 0;
}

.location-grid {
  align-items: end;
}

.location-grid p {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.8);
}

.location-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  min-height: 120px;
  display: grid;
  align-content: end;
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
  border-color: rgba(36, 68, 55, 0.35);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.82);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--chalk);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(10, 14, 12, 0.76);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: 999px;
  background: rgba(28, 38, 34, 0.75);
  color: var(--chalk);
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .location-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 132px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 28px, 980px);
    padding-bottom: 44px;
  }

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

  .button {
    width: 100%;
  }

  .feature-grid,
  .contact-actions,
  .check-list {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 88px;
  }

  .media-panel {
    min-height: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    width: min(100% - 20px, 1380px);
  }

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

  .footer-grid div {
    gap: 12px;
  }
}
