:root {
  --forest-900: #123524;
  --forest-800: #1f5a38;
  --forest-700: #2d7a4b;
  --moss-500: #7ba768;
  --leaf-300: #cfe3bf;
  --sand-100: #f6f4ec;
  --stone-200: #e4e8e0;
  --white: #ffffff;
  --text: #1d2a22;
  --muted: #4d5f54;
  --shadow: 0 16px 36px rgba(18, 53, 36, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(123, 167, 104, 0.2) 0%, transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(45, 122, 75, 0.18) 0%, transparent 28%),
    var(--sand-100);
  line-height: 1.55;
}

a {
  color: var(--forest-800);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 244, 236, 0.9);
  border-bottom: 1px solid rgba(31, 90, 56, 0.12);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.brand strong {
  font-size: 1.05rem;
  color: var(--forest-900);
}

.brand span {
  font-size: 0.82rem;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-900);
}

nav a.active {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  padding: 4.25rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  background: rgba(45, 122, 75, 0.14);
  color: var(--forest-900);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--forest-900);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 0.9rem;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0 0 0.6rem;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--forest-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-800);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(31, 90, 56, 0.35);
  color: var(--forest-900);
}

.btn-secondary:hover {
  border-color: var(--forest-700);
  text-decoration: none;
}

.header-cta {
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(31, 90, 56, 0.25);
}

.hero-card {
  background: linear-gradient(150deg, #2d7a4b, #1f5a38);
  color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 0.9rem;
}

.section-media {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(18, 53, 36, 0.12);
}

.hero .section-media {
  height: 460px;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

main section {
  padding: 3rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

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

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

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

.card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(18, 53, 36, 0.09);
  box-shadow: 0 8px 20px rgba(18, 53, 36, 0.06);
  padding: 1rem;
}

.card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

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

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.badge-emerald {
  background: #d6f3e2;
  color: #17643e;
}

.badge-sand {
  background: #f6ecd6;
  color: #7a5d22;
}

.badge-sky {
  background: #d9ebf7;
  color: #1f5f88;
}

.badge-stone {
  background: #e7eae5;
  color: #405046;
}

.badge-olive {
  background: #e5efd6;
  color: #5b6d2d;
}

.badge-rust {
  background: #f4dfd5;
  color: #824529;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  color: var(--forest-700);
  stroke-width: 2;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.value-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.stars {
  color: #f0b429;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  font-weight: 700;
}

.rating-number {
  font-weight: 700;
  color: var(--forest-900);
  font-size: 0.88rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  background: linear-gradient(140deg, #eef5ea, #ffffff);
  border: 1px solid #d8e4d6;
  border-radius: 14px;
  padding: 0.9rem;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--forest-800);
  line-height: 1.1;
}

.stat span {
  font-size: 0.84rem;
  color: var(--muted);
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(18, 53, 36, 0.09);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.gallery-item .caption {
  padding: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.case-block {
  border-left: 4px solid var(--forest-700);
  padding-left: 0.9rem;
  margin: 1rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 36, 0.15);
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

footer {
  margin-top: 2.5rem;
  background: #e9efe6;
  border-top: 1px solid rgba(18, 53, 36, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
  padding: 1.4rem 0;
}

.footer-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.footer-mini-map {
  background: #f3f6f1;
  border: 1px solid #d4ded2;
  border-radius: 12px;
  padding: 0.75rem;
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d4ded2;
  min-height: 180px;
}

.footer-map iframe {
  border: 0;
  width: 100%;
  height: 180px;
  display: block;
}

.footer-mini-map p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.note {
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  nav ul {
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-photo {
    height: 300px;
  }

  .hero .section-media {
    height: 320px;
  }

  .gallery-item img {
    height: 300px;
  }

  .map-wrap {
    min-height: 320px;
  }

  .map-wrap iframe {
    height: 320px;
  }
}
