/* ── 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-weight: 400;
  line-height: 1.7;
  color: #1a3c34;
  background: #faf8f4;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ── Focus ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #064e3b; color: #fff; padding: 8px 16px; z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid #064e3b; outline-offset: 2px; }

/* ── Tokens ── */
:root {
  --emerald: #064e3b;
  --emerald-light: #059669;
  --emerald-pale: #d1fae5;
  --cream: #faf8f4;
  --cream-dark: #f0ebe3;
  --sage: #e8f0e8;
  --sand: #f5f0e8;
  --text: #1a3c34;
  --text-light: #4a6b62;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(6,78,59,0.08);
  --shadow-lg: 0 12px 48px rgba(6,78,59,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Section shared ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--emerald);
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}
.btn-primary:hover { background: #046d4f; border-color: #046d4f; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-secondary:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,78,59,0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(6,78,59,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 1.0625rem;
  color: var(--emerald);
}
.logo em { font-style: italic; font-weight: 400; font-size: 0.9375rem; color: var(--text-light); }
.logo-icon { flex-shrink: 0; }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: 0.9375rem; font-weight: 500; color: var(--text-light);
  transition: var(--transition); position: relative;
}
.nav-menu a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--emerald-light);
  transition: var(--transition);
}
.nav-menu a:not(.nav-cta):hover { color: var(--emerald); }
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--emerald); color: #fff !important;
  padding: 10px 22px; border-radius: 50px; font-size: 0.875rem;
}
.nav-cta:hover { background: #046d4f; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.hamburger {
  position: absolute; top: 10px; left: 8px;
  width: 24px; height: 2px; background: var(--emerald);
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
  width: 24px; height: 2px; background: var(--emerald);
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(6,78,59,0.08);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-menu a { font-size: 1.0625rem; }
}

/* ── Hero ── */
.hero {
  padding-top: 120px; padding-bottom: 0;
  background: linear-gradient(160deg, #f0f7f2 0%, var(--cream) 50%, #f5f0e8 100%);
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; flex-direction: column;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--emerald-light);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--emerald);
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: var(--emerald-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-light);
  background: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: 50px;
  border: 1px solid rgba(6,78,59,0.1);
}
.badge svg { color: var(--emerald-light); }

/* Image stack */
.hero-image-stack { position: relative; height: 580px; }
.hero-img {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--main {
  width: 340px; height: 440px; top: 0; right: 0;
}
.hero-img--float {
  width: 240px; height: 180px; bottom: 140px; right: 60px;
  border: 4px solid #fff;
}
.hero-img--accent {
  width: 180px; height: 130px; bottom: 40px; right: 0;
  border: 4px solid #fff;
}
.hero-img--float img, .hero-img--accent img { border-radius: calc(var(--radius) - 4px); }

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(209,250,229,0.5) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-stack { display: none; }
  .hero-content { max-width: 100%; }
  .hero { min-height: auto; padding-top: 100px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Categories ── */
.categories {
  padding: 100px 0;
  background: var(--cream);
}
.categories .container { text-align: center; }
.categories .section-title { margin-bottom: 56px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.category-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; display: block;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-img {
  height: 280px; overflow: hidden;
}
.category-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-img img { transform: scale(1.06); }
.category-info {
  background: #fff;
  padding: 24px 28px;
  text-align: left;
}
.category-info h3 {
  font-size: 1.25rem; color: var(--emerald);
  margin-bottom: 6px;
}
.category-info p {
  font-size: 0.9375rem; color: var(--text-light); line-height: 1.6;
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
  .category-img { height: 220px; }
}

/* ── Supplies ── */
.supplies {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
}
.supplies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.supplies-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.supplies-visual img { width: 100%; height: 100%; object-fit: cover; }
.supplies-content .section-title { margin-bottom: 16px; }
.supplies-desc {
  font-size: 1.0625rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 32px;
}
.supplies-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.supplies-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; color: var(--text);
}
.supplies-list svg { color: var(--emerald-light); flex-shrink: 0; }
@media (max-width: 900px) {
  .supplies-grid { grid-template-columns: 1fr; }
  .supplies-visual { order: -1; }
  .supplies-visual img { height: 300px; }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services .container { text-align: center; }
.services .section-title { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(6,78,59,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--emerald-pale); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--emerald-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--emerald); color: #fff; }
.service-card h3 {
  font-size: 1.125rem; color: var(--emerald);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9375rem; color: var(--text-light); line-height: 1.7;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sage) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
  font-size: 1.0625rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 16px;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(6,78,59,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--emerald);
}
.stat-label { font-size: 0.8125rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.about-images { position: relative; height: 520px; }
.about-img {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--1 { width: 260px; height: 340px; top: 0; left: 0; }
.about-img--2 { width: 220px; height: 200px; bottom: 0; right: 0; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--emerald);
  color: #fff;
}
.testimonials .section-eyebrow { color: rgba(255,255,255,0.6); }
.testimonials .section-title { color: #fff; margin-bottom: 56px; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testimonial-quote {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.2);
}
.testimonial-text {
  font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sand) 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-eyebrow { color: var(--emerald-light); }
.cta-title { margin-bottom: 16px; }
.cta-text > p {
  font-size: 1.0625rem; color: var(--text-light);
  line-height: 1.8; max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text > p { max-width: 100%; }
  .cta-actions { justify-content: center; }
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: var(--cream);
}
.visit .container { text-align: center; }
.visit .section-title { margin-bottom: 56px; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.visit-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,78,59,0.06);
  transition: var(--transition);
}
.visit-card:hover { border-color: var(--emerald-pale); transform: translateY(-2px); }
.visit-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--emerald-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
}
.visit-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 6px;
}
.visit-card p { font-size: 1rem; color: var(--text); line-height: 1.6; }
.visit-card a { color: var(--emerald); font-weight: 500; }
.visit-card a:hover { text-decoration: underline; }
.visit-map {
  height: 400px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { height: 300px; }
}

/* ── Footer ── */
.site-footer {
  background: var(--emerald);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo em { color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9375rem; color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--emerald); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 50;
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: #046d4f; transform: translateY(-2px); }

/* ── Animations ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
