/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2e28;
  background: #FDF8F0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-light: #059669;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --cream-mid: #FAF3E8;
  --text-dark: #1a2e28;
  --text-mid: #3d5a4e;
  --text-light: #6b8f82;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(4, 120, 87, 0.08);
  --shadow-lg: 0 12px 48px rgba(4, 120, 87, 0.12);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ===== SECTION SUB ===== */
.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--emerald);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--emerald);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--emerald-dark); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(4, 120, 87, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--emerald);
  background: rgba(4, 120, 87, 0.06);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}
.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 40, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #047857 0%, #065f46 30%, #064e3b 60%, #1a2e28 100%);
  padding: 100px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(5, 150, 105, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(4, 120, 87, 0.3) 0%, transparent 50%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-shape--1 {
  width: 600px;
  height: 600px;
  background: #059669;
  top: -200px;
  right: -150px;
}
.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: #34d399;
  bottom: -100px;
  left: -100px;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
}
.hero-shape--3 {
  width: 200px;
  height: 200px;
  background: #6ee7b7;
  top: 30%;
  left: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-shape--4 {
  width: 120px;
  height: 120px;
  background: #a7f3d0;
  bottom: 20%;
  right: 15%;
  border-radius: var(--radius);
  transform: rotate(30deg);
  opacity: 0.2;
}
.hero-shape--5 {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  top: 20%;
  right: 25%;
  border-radius: 50%;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #a7f3d0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: #6ee7b7;
  position: relative;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--emerald);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.06);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}
.about-feature span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.features-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.feat-shape {
  position: absolute;
  opacity: 0.08;
}
.feat-shape--1 {
  width: 500px;
  height: 500px;
  background: #34d399;
  border-radius: 50%;
  top: -200px;
  left: -150px;
}
.feat-shape--2 {
  width: 300px;
  height: 300px;
  background: #6ee7b7;
  border-radius: var(--radius-lg);
  bottom: -100px;
  right: -50px;
  transform: rotate(30deg);
}
.feat-shape--3 {
  width: 150px;
  height: 150px;
  background: #a7f3d0;
  border-radius: 50%;
  top: 40%;
  right: 10%;
}
.features .section-tag {
  background: rgba(255,255,255,0.12);
  color: #a7f3d0;
  border-color: rgba(255,255,255,0.2);
}
.features .section-title {
  color: var(--white);
}
.features .section-sub {
  color: rgba(255,255,255,0.65);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card--cream {
  background: var(--cream);
}
.feature-card--cream:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.feature-card--emerald {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.feature-card--emerald:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.15);
}
.feature-card-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.06;
}
.feature-card--cream .feature-card-accent { background: var(--emerald); }
.feature-card--emerald .feature-card-accent { background: #6ee7b7; }
.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card--cream .feature-card-icon {
  background: rgba(4, 120, 87, 0.1);
  color: var(--emerald);
}
.feature-card--emerald .feature-card-icon {
  background: rgba(255,255,255,0.15);
  color: #a7f3d0;
}
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-card--cream .feature-card-title { color: var(--text-dark); }
.feature-card--emerald .feature-card-title { color: var(--white); }
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.feature-card--cream p { color: var(--text-mid); }
.feature-card--emerald p { color: rgba(255,255,255,0.7); }

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(26, 46, 40, 0.8));
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}
.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
}
.gallery-item--large img { height: 480px; }
.gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}
.gallery-item:nth-child(2) img { height: 230px; }
.gallery-item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}
.gallery-item:nth-child(3) img { height: 230px; }
.gallery-item:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
}
.gallery-item:nth-child(4) img { height: 230px; }
.gallery-item--wide {
  grid-column: 5 / 13;
  grid-row: 2 / 3;
}
.gallery-item--wide img { height: 230px; }

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.visit-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.visit-shape {
  position: absolute;
  opacity: 0.05;
}
.visit-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--emerald);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}
.visit-shape--2 {
  width: 200px;
  height: 200px;
  background: var(--emerald-light);
  border-radius: var(--radius-lg);
  bottom: -50px;
  left: 10%;
  transform: rotate(45deg);
}
.visit-shape--3 {
  width: 100px;
  height: 100px;
  background: #34d399;
  border-radius: 50%;
  top: 30%;
  left: 5%;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-info .section-tag { margin-bottom: 16px; }
.visit-info .section-title { margin-bottom: 32px; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}
.visit-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.visit-detail span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visit-map-link {
  display: block;
  position: relative;
}
.visit-map-link img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.visit-map-cta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.visit-map-cta:hover { background: var(--emerald-dark); }

/* CTA Card */
.visit-cta-card {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-cta-card-inner {
  padding: 48px 40px;
  color: var(--white);
}
.visit-cta-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.visit-cta-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7f3d0;
}
.visit-cta-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.visit-cta-card-inner > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.visit-cta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.visit-cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.visit-cta-list li svg { color: #6ee7b7; min-width: 16px; }
.btn-white:hover { background: var(--cream); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-tag { margin-bottom: 16px; }
.contact-text .section-title { margin-bottom: 20px; }
.contact-text > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--emerald);
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.06);
  transition: all 0.2s ease;
}
.contact-direct-link:hover {
  background: rgba(4, 120, 87, 0.06);
  transform: translateX(4px);
}
.contact-direct-link svg { color: var(--emerald); min-width: 18px; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(4, 120, 87, 0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
  background: var(--white);
}
.form-input::placeholder { color: var(--text-light); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23047857' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit:hover svg { transform: translateX(4px); }
.form-submit svg { transition: transform 0.2s ease; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: var(--radius-sm);
  color: var(--emerald);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success svg { color: var(--emerald); min-width: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-shape {
  position: absolute;
  opacity: 0.04;
}
.footer-shape--1 {
  width: 400px;
  height: 400px;
  background: #059669;
  border-radius: 50%;
  top: -200px;
  right: -100px;
}
.footer-shape--2 {
  width: 250px;
  height: 250px;
  background: #34d399;
  border-radius: var(--radius-lg);
  bottom: -80px;
  left: 20%;
  transform: rotate(30deg);
}
.footer-shape--3 {
  width: 120px;
  height: 120px;
  background: #6ee7b7;
  border-radius: 50%;
  top: 20%;
  left: 5%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-links span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-links a:hover { color: #6ee7b7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-img-accent {
    right: -20px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 96px 24px 32px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-links a:hover {
    background: rgba(4, 120, 87, 0.06);
  }
  .btn-nav {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }
  .nav-toggle {
    display: flex;
    z-index: 1002;
  }
  .nav-overlay {
    display: block;
  }
  .hero {
    padding: 120px 24px 80px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-divider {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--large {
    grid-column: 1 / -1;
  }
  .gallery-item--large img { height: 300px; }
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img,
  .gallery-item:nth-child(4) img { height: 200px; }
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
  .gallery-item--wide img { height: 200px; }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 16px;
    border: 4px solid var(--cream);
  }
  .about-img-main img { height: 360px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .visit-cta-card-inner {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: 1; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item--wide {
    grid-column: 1;
  }
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img,
  .gallery-item:nth-child(4) img,
  .gallery-item--wide img { height: 220px; }
  .gallery-item--large img { height: 260px; }
}
