:root {
  --bg: #eef3ef;
  --surface: #ffffff;
  --ink: #102217;
  --muted: #4a5e53;
  --accent: #1a6b4b;
  --accent-strong: #0f5138;
  --stroke: #d6e0d7;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(16, 34, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, #cfe3d6 0%, transparent 40%),
    radial-gradient(circle at 100% 0, #e6f0e9 0%, transparent 38%),
    var(--bg);
  line-height: 1.55;
}

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

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: clip;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 4;
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.hero-content {
  display: grid;
  align-content: center;
  max-width: 700px;
  padding: 4rem 0 5rem;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-family: "Instrument Serif", Georgia, serif;
}

h1 span {
  display: block;
  color: var(--accent-strong);
  font-style: italic;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-family: "Instrument Serif", Georgia, serif;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  max-width: 64ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 107, 75, 0.28);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 243, 239, 0.95) 16%, rgba(238, 243, 239, 0.57) 52%, rgba(238, 243, 239, 0.2) 100%),
    linear-gradient(180deg, rgba(238, 243, 239, 0.1), rgba(238, 243, 239, 0.75));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

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

.grid {
  display: grid;
  gap: 1rem;
}

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

.two-col {
  grid-template-columns: 1.1fr 0.9fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.statement {
  font-size: 1.14rem;
}

.statement p {
  margin: 0;
}

.statement p + p {
  margin-top: 0.8rem;
}

.features .card p,
.card p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #d7e2d9;
  cursor: zoom-in;
}

.gallery figure:nth-child(1) {
  grid-column: span 7;
}

.gallery figure:nth-child(2) {
  grid-column: span 5;
}

.gallery figure:nth-child(3),
.gallery figure:nth-child(4),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6),
.gallery figure:nth-child(7) {
  grid-column: span 4;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.video-wrap video {
  width: 100%;
  border-radius: 14px;
}

.specs {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.5rem;
}

.specs li {
  color: var(--muted);
}

.plans h3 {
  margin-bottom: 0.75rem;
}

.plans img,
.map img {
  border-radius: 12px;
}

.contact-data {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.contact-data a {
  width: fit-content;
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 600;
}

.note {
  margin-bottom: 0;
}

.footer {
  padding: 2rem 0 3.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox {
  border: 0;
  border-radius: 16px;
  padding: 0.8rem;
  width: min(92vw, 1050px);
  max-height: 92vh;
  background: #f5faf7;
}

.lightbox::backdrop {
  background: rgba(5, 18, 12, 0.74);
}

.lightbox img {
  border-radius: 12px;
  max-height: 78vh;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

@media (max-width: 920px) {
  .features,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(238, 243, 239, 0.96) 20%, rgba(238, 243, 239, 0.67) 65%, rgba(238, 243, 239, 0.42) 100%),
      linear-gradient(180deg, rgba(238, 243, 239, 0.1), rgba(238, 243, 239, 0.75));
  }
}

@media (max-width: 720px) {
  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(6),
  .gallery figure:nth-child(7) {
    grid-column: span 12;
  }

  .nav {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    gap: 0.6rem 0.95rem;
  }

  .section {
    padding: 3rem 0;
  }
}
