:root {
  --green: #1e7a45;
  --green-2: #2a9a58;
  --green-dark: #123d26;
  --green-ink: #0d2819;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --sand: #e7d8be;
  --ink: #1b1713;
  --muted: #5d564c;
  --gold: #c4a15a;
  --line: rgba(27, 23, 19, 0.12);
  --shadow: 0 18px 50px rgba(18, 61, 38, 0.14);
  --radius: 18px;
  --header: 76px;
  --font: "Figtree", system-ui, sans-serif;
  --serif: "Source Serif 4", "Times New Roman", serif;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--green); text-underline-offset: 3px; }

a:hover { color: var(--green-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: #fff;
  padding: 0.5rem 0.8rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: min(1280px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--green);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img, .brand svg {
  width: min(240px, 52vw);
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.nav a:hover,
.nav a.is-active {
  background: var(--green);
  color: #fff;
}

.lang {
  display: flex;
  gap: 0.15rem;
  margin-left: 0.4rem;
  padding-left: 0.6rem;
  border-left: 1px solid var(--line);
}
.lang button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
}
.lang button.is-active,
.lang button:hover { color: var(--green-dark); background: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13,40,25,0.15) 0%, rgba(13,40,25,0.28) 38%, rgba(13,40,25,0.82) 100%);
}
.hero-copy {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto 4.5rem;
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 14ch;
  color: #fff;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 42ch;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--green-2); color: #fff; }
.btn-primary:hover { background: var(--green); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: #fff; color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  color: #fff;
}
.stats div {
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.stats span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

/* Sections */
section { padding: 4.5rem 0; }
.section-head { max-width: 42rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: min(460px, 58vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .copy { order: 2; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18,61,38,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card .body { padding: 1.15rem 1.2rem 1.4rem; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.card .more {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--green);
  font-size: 0.92rem;
}

.band {
  background: var(--green-ink);
  color: #fff;
}
.band h2, .band p { color: inherit; }
.band .muted { color: rgba(255,255,255,0.75); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery a, .gallery img {
  border-radius: 14px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: zoom-in;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18,61,38,0.06);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.price-table th { background: var(--green-dark); color: #fff; font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-weight: 700; white-space: nowrap; }

.hours, .chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.note {
  background: #fff6df;
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13,40,25,.2), rgba(13,40,25,.78));
}
.page-hero .wrap { padding: 5rem 0 2.2rem; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
}
.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(18,61,38,0.08);
}
.contact-card h3 { margin-bottom: 0.3rem; }
.contact-card a { font-weight: 700; text-decoration: none; }
.map {
  min-height: 380px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  gap: 0.8rem;
}
.form label { font-weight: 700; font-size: 0.9rem; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }

.video {
  aspect-ratio: 16/9;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 1.1rem;
  border-left: 2px solid var(--green);
  padding-left: 1.2rem;
}
.timeline article { position: relative; }
.timeline article::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}
.timeline strong { color: var(--green-dark); }

.site-footer {
  background: var(--green-ink);
  color: rgba(255,255,255,0.82);
  padding: 3rem 0 1.6rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer a { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1.1rem; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(10,16,12,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}
.lb.is-open { display: flex; }
.lb img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 12px; }
.lb button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  .nav.is-open { display: flex; }
  .lang { border: 0; padding: 0.4rem 0 0; }
  .split, .split.reverse, .cards, .stats, .gallery, .contact-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .copy { order: 0; }
  .stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
}
