/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #FAFAF5;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }

/* ─── Section Header ─── */
.section-header__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B4332;
  background: #D5F5E3;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #1B4332;
  margin-bottom: 16px;
}
.section-header__title--light { color: #FAFAF5; }
.section-header__desc {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 600px;
  line-height: 1.7;
}
.section-header__title--light + .visit__desc,
.section-header__title--light ~ .visit__desc { color: rgba(250,250,245,0.8); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #1B4332;
  color: #FAFAF5;
  box-shadow: 0 4px 20px rgba(27,67,50,0.3);
}
.btn--primary:hover { background: #2D6A4F; box-shadow: 0 8px 30px rgba(27,67,50,0.4); }
.btn--ghost {
  background: transparent;
  color: #1B4332;
  border: 2px solid rgba(27,67,50,0.3);
}
.btn--ghost:hover { border-color: #1B4332; background: rgba(27,67,50,0.05); }
.btn--large { width: 100%; justify-content: center; padding: 16px 28px; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,245,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(27,67,50,0.1); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1B4332;
}
.logo__mark {
  width: 38px;
  height: 38px;
  background: #1B4332;
  color: #FAFAF5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a:not(.nav__cta):hover { color: #1B4332; }
.nav__menu a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1B4332;
  transition: width 0.2s;
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: #1B4332;
  color: #FAFAF5 !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: #2D6A4F; transform: translateY(-1px); }
.nav__cta::after { display: none !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__bar {
  width: 100%;
  height: 2px;
  background: #1B4332;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,245,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(27,67,50,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: #FAFAF5;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.geo--1 { width: 600px; height: 600px; background: #1B4332; top: -200px; right: -100px; }
.geo--2 { width: 400px; height: 400px; background: #2D6A4F; bottom: -100px; left: -100px; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.geo--3 { width: 200px; height: 200px; background: #52B788; top: 30%; left: 45%; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.geo--4 { width: 120px; height: 120px; background: #95D5B2; top: 20%; right: 30%; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.geo--5 { width: 80px; height: 80px; background: #1B4332; bottom: 25%; left: 10%; }
.hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(27,67,50,0.08), 0 1px 3px rgba(27,67,50,0.05);
  border: 1px solid rgba(27,67,50,0.06);
}
.hero__card--main { max-width: 560px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D6A4F;
  margin-bottom: 24px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  background: #52B788;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: #1B4332;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Floating stat cards */
.hero__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.07);
  border: 1px solid rgba(27,67,50,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,67,50,0.12); }
.stat-card--1 { border-left: 4px solid #1B4332; }
.stat-card--2 { border-left: 4px solid #52B788; margin-left: 24px; }
.stat-card--3 { border-left: 4px solid #95D5B2; margin-left: 12px; }
.stat-card__icon {
  width: 52px;
  height: 52px;
  background: #E8F5E9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B4332;
  flex-shrink: 0;
}
.stat-card__icon--warm { background: #FFF3E0; color: #E65100; }
.stat-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B4332;
  line-height: 1.2;
}
.stat-card__label {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card--main { max-width: 100%; }
  .hero__stack { flex-direction: row; flex-wrap: wrap; margin-top: 32px; }
  .stat-card { flex: 1; min-width: 200px; }
  .stat-card--2, .stat-card--3 { margin-left: 0; }
}

/* ─── Products ─── */
.products {
  padding: 100px 24px;
  background: #FAFAF5;
}
.products .section-header { margin-bottom: 56px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,67,50,0.12); }
.product-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1B4332;
  color: #FAFAF5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-card__badge--accent { background: #E65100; }
.product-card__body { padding: 24px; }
.product-card__title {
  font-size: 1.15rem;
  color: #1B4332;
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ─── About ─── */
.about {
  padding: 100px 24px;
  background: #1B4332;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: #2D6A4F;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.about__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__images { position: relative; }
.about__img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 4px solid #1B4332;
}
.about__img-float img { width: 100%; height: 100%; object-fit: cover; }
.about__accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: #52B788;
  border-radius: 20px;
  opacity: 0.5;
  z-index: -1;
}
.about__content .section-header__tag { background: rgba(250,250,245,0.15); color: #95D5B2; }
.about__content .section-header__title { color: #FAFAF5; }
.about__text {
  font-size: 1.05rem;
  color: rgba(250,250,245,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,245,0.15);
}
.about__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #52B788;
  line-height: 1.2;
}
.about__stat-label {
  font-size: 0.82rem;
  color: rgba(250,250,245,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__img-float { right: -8px; bottom: -16px; }
}

/* ─── Visit ─── */
.visit {
  padding: 100px 24px;
  background: #FAFAF5;
}
.visit__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,67,50,0.1);
}
.visit__left {
  background: #1B4332;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit__left .section-header__tag { background: rgba(250,250,245,0.15); color: #95D5B2; }
.visit__desc--light { color: rgba(250,250,245,0.75); }
.visit__info { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.visit__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit__info-icon {
  width: 44px;
  height: 44px;
  background: rgba(250,250,245,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52B788;
  flex-shrink: 0;
}
.visit__info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,250,245,0.5);
  margin-bottom: 4px;
}
.visit__info-value {
  font-size: 1rem;
  color: #FAFAF5;
  font-weight: 500;
}
.visit__info-value a {
  color: #95D5B2;
  transition: color 0.2s;
}
.visit__info-value a:hover { color: #B7E4C7; }
.visit__right {
  min-height: 400px;
  background: #ddd;
}
.map-placeholder { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .visit__card { grid-template-columns: 1fr; }
  .visit__left { padding: 40px 28px; }
  .visit__right { min-height: 300px; }
}

/* ─── Contact ─── */
.contact {
  padding: 100px 24px;
  background: #E8F5E9;
}
.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact__desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-top: 16px;
}
.contact__form {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.07);
  border: 1px solid rgba(27,67,50,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1B4332;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #FAFAF5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  border-radius: 12px;
  color: #1B4332;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-success svg { color: #2D6A4F; flex-shrink: 0; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }
}

/* ─── Footer ─── */
.footer {
  background: #0D2818;
  color: rgba(250,250,245,0.6);
  padding: 64px 24px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,250,245,0.1);
}
.footer__tagline {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer__link-col { display: flex; flex-direction: column; gap: 10px; }
.footer__link-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,250,245,0.35);
  margin-bottom: 4px;
}
.footer__link-col a {
  font-size: 0.9rem;
  color: rgba(250,250,245,0.65);
  transition: color 0.2s;
}
.footer__link-col a:hover { color: #95D5B2; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
