/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a2e2a;
  background: #fefdf8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── UTILITIES ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.container--centered { max-width: 900px; }
@media (max-width: 900px) {
  .container--split { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── SECTION SHARED ─── */
.section { padding: 120px 0; }
.section--cream { background: #fdf9ef; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #064e3b;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #3d5e56;
  max-width: 540px;
  line-height: 1.75;
}
.section--cream .section-desc { color: #4a6b62; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 101, 52, 0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(6, 78, 59, 0.07); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #064e3b;
}
.nav-brand-icon { color: #166534; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text span { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #2d5a4e;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #166534;
  transition: width 0.3s;
}
.nav-link:hover { color: #064e3b; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fefdf8;
  background: #064e3b;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #15803d; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #064e3b;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(254, 253, 248, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; }
  .nav-cta { font-size: 1rem; padding: 12px 28px; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 44, 34, 0.72) 0%,
    rgba(6, 78, 59, 0.55) 50%,
    rgba(22, 101, 52, 0.40) 100%
  );
}
.hero-card {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
}
.hero-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.7);
  border: 1px solid rgba(254, 253, 248, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: #fefdf8;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-headline .accent {
  font-style: italic;
  color: #86efac;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(254, 253, 248, 0.8);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: #064e3b;
  color: #fefdf8;
  border: 1px solid #064e3b;
}
.btn-primary:hover { background: #15803d; border-color: #15803d; box-shadow: 0 8px 30px rgba(6, 78, 59, 0.35); }
.btn-ghost {
  background: transparent;
  color: #fefdf8;
  border: 1px solid rgba(254, 253, 248, 0.35);
}
.btn-ghost:hover { background: rgba(254, 253, 248, 0.1); border-color: rgba(254, 253, 248, 0.6); }
.btn--full { width: 100%; justify-content: center; }

/* Floating stat cards */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-card {
  background: rgba(254, 253, 248, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(254, 253, 248, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 170px;
  text-align: center;
  transition: transform 0.25s, background 0.25s;
  animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.45s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:hover { background: rgba(254, 253, 248, 0.18); transform: translateY(-4px) !important; }
.stat-icon {
  color: #86efac;
  margin: 0 auto 10px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(134, 239, 172, 0.3);
  border-radius: 10px;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fefdf8;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(254, 253, 248, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fefdf8;
  border: 1px solid rgba(22, 101, 52, 0.10);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(22, 101, 52, 0.25);
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(22, 101, 52, 0.15);
  border-radius: 12px;
  color: #166534;
  margin-bottom: 20px;
  background: rgba(22, 101, 52, 0.04);
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 10px;
  line-height: 1.25;
}
.feature-text {
  font-size: 0.9rem;
  color: #4a6b62;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 7/5.6;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.3), transparent);
  border-radius: 0 0 20px 20px;
}
.about-content { padding-top: 8px; }
.about-body {
  font-size: 1rem;
  color: #3d5e56;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #2d5a4e;
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #166534;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── LOCATION ─── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 700px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  background: #fefdf8;
  border: 1px solid rgba(22, 101, 52, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.location-card:hover {
  border-color: rgba(22, 101, 52, 0.22);
  box-shadow: 0 8px 30px rgba(6, 78, 59, 0.07);
}
.location-card-icon {
  color: #166534;
  margin-bottom: 16px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(22, 101, 52, 0.14);
  border-radius: 10px;
  background: rgba(22, 101, 52, 0.04);
}
.location-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 8px;
}
.location-card-value {
  font-size: 0.95rem;
  color: #3d5e56;
  line-height: 1.65;
  white-space: pre-line;
}

/* ─── CONTACT ─── */
.contact-info { padding-top: 8px; }
.contact-body {
  font-size: 1rem;
  color: #3d5e56;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-row:hover { opacity: 0.75; }
.contact-row-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(22, 101, 52, 0.14);
  border-radius: 10px;
  color: #166534;
  background: rgba(22, 101, 52, 0.04);
  flex-shrink: 0;
}
.contact-row-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 4px;
}
.contact-row-value {
  font-size: 0.95rem;
  color: #2d5a4e;
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: #fdf9ef;
  border: 1px solid rgba(22, 101, 52, 0.08);
  border-radius: 20px;
  padding: 44px 40px;
}
@media (max-width: 560px) { .contact-form-wrap { padding: 28px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #166534;
}
.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1a2e2a;
  background: #fefdf8;
  border: 1px solid rgba(22, 101, 52, 0.18);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: #9fb8b0; }
.form-input:focus { border-color: #166534; box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.08); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(22, 101, 52, 0.06);
  border: 1px solid rgba(22, 101, 52, 0.15);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #166534;
  line-height: 1.5;
}
.form-success.visible { display: flex; }
.form-success svg { flex-shrink: 0; margin-top: 2px; }

/* ─── FOOTER ─── */
.footer {
  background: #064e3b;
  color: rgba(254, 253, 248, 0.6);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fefdf8;
}
.footer-logo { color: #86efac; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(254, 253, 248, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #86efac; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(254, 253, 248, 0.35);
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
