/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ── Section shared ── */
.section { padding: 6rem 0; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #064e3b;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a7c6d;
  max-width: 560px;
}
.text-center .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.btn-primary:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4); }
.btn-outline {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
}
.btn-outline:hover { background: #059669; color: #fff; }
.btn-cream {
  background: #fefdf8;
  color: #064e3b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-cream:hover { background: #fdf9ee; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #d1fae5;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}
.reveal { /* fallback: always visible */ opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(5, 150, 105, 0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 4rem;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #064e3b;
  flex-shrink: 0;
}
.nav-logo-icon { width: 28px; height: 28px; color: #059669; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d6a4f;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: #d1fae5; color: #064e3b; }
.nav-cta {
  background: #059669 !important;
  color: #fff !important;
  border-radius: 100px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: #047857 !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #064e3b;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { width: 100%; text-align: center; padding: 0.75rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 100%);
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(110, 231, 183, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(5, 150, 105, 0.1), 0 1px 3px rgba(5, 150, 105, 0.05);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #047857;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #064e3b;
  margin-bottom: 1.25rem;
}
.hero-accent { color: #059669; font-style: italic; }
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2d6a4f;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12); }
.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #059669, #34d399);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-body { display: flex; flex-direction: column; }
.stat-num { font-weight: 700; font-size: 1rem; color: #064e3b; }
.stat-label { font-size: 0.85rem; color: #4a7c6d; margin-top: 0.15rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
  .stat-card { flex: 1; min-width: 180px; }
}
@media (max-width: 480px) {
  .hero { padding: 5rem 1rem 3rem; }
  .hero-card { padding: 2rem; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: 100%; }
}

/* ── ABOUT ── */
.about { background: #fefdf8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(5, 150, 105, 0.12); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #064e3b;
}
.about-image-badge svg { width: 16px; height: 16px; color: #059669; }
.about-content .section-desc { margin-bottom: 1.5rem; }
.about-content p { color: #4a7c6d; line-height: 1.8; margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d6a4f;
}
.value-icon { width: 20px; height: 20px; color: #059669; flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { max-height: 360px; }
}
@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}

/* ── PRODUCTS ── */
.products { background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12); }
.product-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body { padding: 1.5rem; }
.product-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #064e3b;
  margin-bottom: 0.5rem;
}
.product-body p { font-size: 0.9rem; line-height: 1.7; color: #4a7c6d; }
.products-note { color: #4a7c6d; font-size: 0.95rem; }

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

/* ── WHY US ── */
.why-us { background: #fefdf8; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(5, 150, 105, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(5, 150, 105, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: #064e3b;
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.9rem; line-height: 1.75; color: #2d6a4f; }

@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ── VISIT ── */
.visit { background: linear-gradient(180deg, #fefdf8 0%, #ecfdf5 100%); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}
.visit-detail:first-child { padding-top: 0; }
.visit-detail:last-child { border-bottom: none; }
.visit-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}
.visit-detail-icon svg { width: 20px; height: 20px; }
.visit-detail strong { display: block; font-size: 0.85rem; color: #064e3b; margin-bottom: 0.2rem; }
.visit-detail p { font-size: 0.9rem; color: #4a7c6d; line-height: 1.6; }
.visit-detail a { color: #059669; transition: color 0.2s; }
.visit-detail a:hover { color: #047857; }

.visit-map { border-radius: 20px; overflow: hidden; }
.map-placeholder {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(5, 150, 105, 0.12);
}
.map-pin { width: 48px; height: 48px; color: #059669; margin: 0 auto 1rem; }
.map-placeholder p {
  font-size: 1rem;
  color: #064e3b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

/* ── CTA ── */
.cta { padding: 6rem 0; background: #064e3b; position: relative; overflow: hidden; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #047857, #065f46);
  border-radius: 28px;
  padding: 4rem;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(110, 231, 183, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-desc { font-size: 1.05rem; line-height: 1.75; color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) { .cta-card { padding: 2.5rem 1.5rem; } }

/* ── CONTACT ── */
.contact { background: #fefdf8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #2d6a4f;
}
.contact-info-item svg { width: 20px; height: 20px; color: #059669; flex-shrink: 0; }
.contact-info-item a { color: #059669; transition: color 0.2s; }
.contact-info-item a:hover { color: #047857; }

/* Form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.07);
  border: 1px solid rgba(5, 150, 105, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1fae5;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #064e3b;
  background: #fefdf8;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #95d5b2; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #d1fae5;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #064e3b;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: #059669; flex-shrink: 0; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.footer { background: #064e3b; color: rgba(255, 255, 255, 0.7); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo svg { width: 24px; height: 24px; color: #34d399; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li,
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #34d399; }
.footer-contact li svg { width: 16px; height: 16px; color: #34d399; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #34d399; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-disclaimer { max-width: 480px; text-align: right; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
}
