* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f5f1ea;
  --surface: #fbf8f3;
  --surface-strong: #efe6d9;
  --text: #1f1f1b;
  --muted: #5d5a55;
  --green: #22352b;
  --green-soft: #31463b;
  --brown: #5f5146;
  --sand: #d8ccbc;
  --water: #8ea3a0;
  --accent: #a18a6b;
  --border: rgba(34, 53, 43, 0.1);
  --shadow: 0 18px 40px rgba(31, 31, 27, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  color: var(--green);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

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

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
}

.hero-media,
.hero-overlay,
.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
}

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

.hero-fallback {
  background:
    linear-gradient(rgba(24, 32, 27, 0.16), rgba(24, 32, 27, 0.16)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 26, 22, 0.72) 0%, rgba(20, 26, 22, 0.38) 45%, rgba(20, 26, 22, 0.18) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f7f3ed;
  padding: 120px 0 80px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 600;
}

.hero h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 5.2rem);
  margin-bottom: 18px;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 610px;
  color: rgba(247, 243, 237, 0.92);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  color: rgba(247, 243, 237, 0.82);
  font-size: 0.96rem;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--green);
  color: #f7f3ed;
}

.btn-primary:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(34, 53, 43, 0.16);
  color: var(--green);
  background: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 53, 43, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(247, 243, 237, 0.25);
  color: #f7f3ed;
  background: transparent;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 243, 237, 0.45);
}

.btn-outline.dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.section {
  padding: 110px 0;
}

.soft-bg {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 3.4rem);
  margin-bottom: 18px;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--green);
  font-size: 0.92rem;
}

.about-card,
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 520px;
}

.image-block {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.image-about {
  background:
    linear-gradient(rgba(34, 53, 43, 0.08), rgba(34, 53, 43, 0.08)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.info-card,
.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.info-card h3,
.benefit h4,
.timeline-item h3,
.site-footer h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.info-card p,
.benefit p,
.timeline-item p {
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline-item {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

.timeline-item span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  color: #f7f3ed;
  margin-bottom: 20px;
  font-weight: 700;
}

.map-placeholder {
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(rgba(245, 241, 234, 0.2), rgba(245, 241, 234, 0.2)),
    radial-gradient(circle at 50% 50%, rgba(142, 163, 160, 0.34), transparent 45%),
    linear-gradient(135deg, #e7dfd3 0%, #f7f3ed 100%);
  color: var(--green);
  font-weight: 600;
  text-align: center;
}

.map-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 14px rgba(34, 53, 43, 0.08);
  margin-bottom: 22px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin-top: 22px;
  color: var(--green);
  font-weight: 500;
}

.contact-list li + li {
  margin-top: 8px;
}

.contact-form,
.newsletter-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(34, 53, 43, 0.14);
  border-radius: 16px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(34, 53, 43, 0.35);
  box-shadow: 0 0 0 4px rgba(34, 53, 43, 0.08);
}

.newsletter {
  padding: 0 0 110px;
}

.newsletter-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.newsletter-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.newsletter-box p {
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: min(100%, 420px);
}

.newsletter-form input {
  min-width: 280px;
}

.site-footer {
  padding: 42px 0;
  background: #ece4d8;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    gap: 18px;
  }

  .two-col,
  .contact-wrap,
  .newsletter-box,
  .footer-grid,
  .card-grid,
  .benefits-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .about-card,
  .map-card,
  .image-block,
  .map-placeholder {
    min-height: 380px;
  }

  .newsletter-form {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    padding: 16px 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: 92px 0 60px;
  }

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

  .hero-points {
    gap: 10px;
    font-size: 0.9rem;
  }

  .section {
    padding: 84px 0;
  }

  .info-card,
  .benefit,
  .timeline-item,
  .contact-form,
  .newsletter-box {
    padding: 22px;
  }
}
