:root {
  --leaf: #173f2d;
  --leaf-2: #285f43;
  --moss: #7d8f55;
  --water: #d8eee8;
  --mist: #f5f7f0;
  --stone: #6d6558;
  --soil: #b0794f;
  --ink: #14221a;
  --muted: #637064;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 33, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(14, 40, 28, 0.34);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 247, 240, 0.92);
  box-shadow: 0 18px 45px rgba(20, 34, 26, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: rgba(216, 238, 232, 0.92);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav-cta {
  background: rgba(23, 63, 45, 0.09);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  overflow: hidden;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 54px;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 28, 18, 0.82), rgba(9, 28, 18, 0.28) 55%, rgba(9, 28, 18, 0.12)),
    linear-gradient(0deg, rgba(9, 28, 18, 0.7), rgba(9, 28, 18, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-label {
  color: var(--leaf-2);
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-copy {
  width: min(610px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions,
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--water);
  color: var(--leaf);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

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

.button.full {
  width: 100%;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(300px, 32vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.visit,
.media-split,
.section-heading,
.amenities-grid,
.restaurant,
.contact,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

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

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--leaf);
  color: var(--white);
}

.feature {
  min-height: 260px;
  padding: clamp(30px, 5vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.feature span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--water);
  font-weight: 900;
}

.feature p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.amenities {
  background: var(--mist);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.amenity-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 34, 26, 0.1);
}

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

.amenity-card div {
  padding: 24px;
}

.amenity-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.restaurant {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf4e7, #ffffff 58%, #e1f0ee);
}

.restaurant-copy {
  width: min(920px, 100%);
}

.restaurant.section {
  margin-top: clamp(40px, 7vw, 88px);
  padding-top: clamp(44px, 7vw, 78px);
  padding-bottom: clamp(44px, 7vw, 78px);
}

.restaurant-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.restaurant-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.restaurant-list span {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(23, 63, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--leaf);
  font-weight: 850;
  line-height: 1.35;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.video-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--leaf);
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-copy p,
.section-heading p,
.visit-content p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--leaf);
  font-weight: 900;
  border-bottom: 2px solid var(--moss);
}

.gallery {
  background: #e8ede1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  width: min(390px, 100%);
}

.gallery-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--leaf);
}

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

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

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

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

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.visit-panel {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visit-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 34, 26, 0.1);
}

.visit-row span {
  color: var(--muted);
  min-width: 130px;
}

.visit-row strong {
  text-align: right;
}

.visit-panel .button {
  margin-top: 22px;
}

.contact {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 7vw, 72px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--water), #f8fbf5 58%, #efe6d9);
}

.contact div {
  width: min(650px, 100%);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 63, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--leaf);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact .button.primary,
.visit-panel .button.primary {
  background: var(--leaf);
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 130px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 28, 18, 0.86), rgba(9, 28, 18, 0.16) 68%),
      linear-gradient(90deg, rgba(9, 28, 18, 0.48), rgba(9, 28, 18, 0.08));
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .intro-grid,
  .media-split,
  .restaurant,
  .visit {
    grid-template-columns: 1fr;
  }

  .feature-band {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    min-height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .amenities-grid,
  .restaurant-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

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

  .visit-panel {
    padding: 20px;
  }

  .visit-row {
    display: grid;
    gap: 6px;
  }

  .visit-row strong {
    text-align: left;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .restaurant.section {
    border-radius: 0;
  }
}
