:root {
  --cream: #ded2ba;
  --cream-light: #eee7d7;
  --green: #2e7d55;
  --green-dark: #1d5b3b;
  --ink: #151515;
  --muted: #625d52;
  --brown: #a96839;
  --white: #fffdf7;
  --line: rgba(46, 125, 85, 0.18);
  --shadow: 0 30px 80px rgba(65, 48, 28, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
}

body::selection {
  color: #fff;
  background: var(--green);
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: #fff;
  direction: ltr;
  background: linear-gradient(180deg, rgba(15, 15, 14, 0.78), rgba(15, 15, 14, 0));
}

.site-header > * {
  direction: rtl;
}

.visit-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.visit-button {
  justify-self: start;
  color: #202020;
  background: rgba(255, 255, 255, 0.92);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.brand {
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 96px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: #111;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: end;
  min-height: 96vh;
  max-width: 760px;
  margin-right: 0;
  margin-left: auto;
  padding: 130px clamp(24px, 5vw, 88px) 70px;
  color: #fff;
  text-align: right;
}

.kicker {
  margin: 0 0 12px;
  color: #d7ab78;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero p:not(.kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 34px;
}

.button.solid {
  color: #fff;
  background: var(--green);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
  width: min(520px, 100%);
  margin-top: 26px;
}

.stats article {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.intro {
  display: grid;
  grid-template-columns: 180px 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.logo-lockup {
  display: block;
  width: min(190px, 46vw);
  height: auto;
  justify-self: center;
}

.intro h2,
.section-title h2,
.story-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.25;
}

.intro > p,
.section-title > p,
.story-copy p:not(.kicker),
.contact p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.featured-story {
  display: grid;
  gap: 92px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 92px;
}

.story-row {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 56px;
  align-items: center;
}

.story-row.reverse {
  grid-template-columns: 0.58fr 0.42fr;
}

.story-row.reverse .story-copy {
  order: 2;
}

.story-copy {
  position: relative;
  padding: 24px 0;
}

.mini-logo {
  margin-bottom: 38px;
  display: block;
  width: 116px;
  height: auto;
}

.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: min(560px, 58vw);
  object-fit: cover;
}

.story-media.tall img {
  height: min(640px, 62vw);
}

.features {
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  background: var(--cream-light);
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-title.centered {
  margin-inline: auto;
  text-align: center;
}

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

.feature-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 253, 247, 0.58);
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.feature-grid h3 {
  margin: 24px 0 10px;
  color: var(--green-dark);
  font-size: 20px;
}

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

.details-section {
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 253, 247, 0.58), transparent 38%),
    var(--cream);
}

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

.detail-group {
  border: 1px solid rgba(191, 105, 83, 0.32);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 253, 247, 0.44);
}

.detail-group h3 {
  display: inline-flex;
  margin: 0 0 22px;
  border: 1px solid rgba(191, 105, 83, 0.62);
  border-radius: 2px;
  padding: 8px 18px;
  color: #b76552;
  font-size: 18px;
}

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

.amenity-list li {
  display: grid;
  gap: 7px;
  justify-items: center;
  color: var(--green);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.amenity-list span {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 7px;
  box-shadow: inset 0 -8px 0 rgba(46, 125, 85, 0.1);
}

.gallery-section {
  padding: 92px max(16px, calc((100vw - 1200px) / 2));
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}

.filter {
  min-height: 44px;
  border: 1px solid rgba(46, 125, 85, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--green);
  background: rgba(255, 253, 247, 0.46);
  cursor: pointer;
  font-weight: 800;
}

.filter.is-active {
  color: #fff;
  background: var(--green);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--green-dark);
  box-shadow: 0 16px 40px rgba(61, 45, 27, 0.12);
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card.tall {
  grid-row: span 2;
  min-height: 534px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 350ms ease;
}

.photo-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(46, 125, 85, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card.is-hidden {
  display: none;
}

.video-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 92px;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.location-section {
  padding: 18px max(20px, calc((100vw - 1180px) / 2)) 92px;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #1d3328;
}

.contact .kicker {
  color: #d7ab78;
}

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.contact-links a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7ab78;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

select option {
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #f3d5ad;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
  color: var(--green-dark);
  background: var(--cream-light);
  font-weight: 800;
}

.lightbox {
  width: min(1180px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #111;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px;
  background: #111;
  font-weight: 800;
}

.close-lightbox {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

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

  .main-nav {
    display: none;
  }

  .brand {
    justify-self: end;
  }

  .hero-content {
    justify-items: stretch;
    margin-right: 0;
    margin-left: 0;
    padding-top: 120px;
  }

  .intro,
  .story-row,
  .story-row.reverse,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-copy {
    order: 0;
  }

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

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

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

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

  .visit-button {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .brand img {
    width: 74px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats,
  .feature-grid,
  .details-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .amenity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card,
  .photo-card.tall {
    min-height: 260px;
  }

  .photo-card.wide,
  .photo-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .story-media img,
  .story-media.tall img {
    height: 320px;
  }

  .intro {
    width: min(100% - 30px, 1180px);
    padding: 64px 0;
  }
}
