/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2e1a;
  background: #f7f9f4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ── Section helpers ── */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B5E20;
  background: #e8f5e9;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #1a2e1a;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: #4a5e4a;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #1B5E20;
  color: #fff;
  border-color: #1B5E20;
}
.btn-primary:hover { background: #145a18; border-color: #145a18; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,32,0.25); }
.btn-outline {
  background: transparent;
  color: #1B5E20;
  border-color: #1B5E20;
}
.btn-outline:hover { background: #1B5E20; color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,249,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,94,32,0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(27,94,32,0.08); }
.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: inline-flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: #1a2e1a; }
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #3a4e3a; transition: color 0.2s; }
.nav-links a:hover { color: #1B5E20; }
.nav-cta {
  background: #1B5E20;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #145a18; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #1a2e1a; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #f7f9f4 0%, #e8f5e9 50%, #f7f9f4 100%);
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1B5E20;
  background: rgba(27,94,32,0.08);
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; background: #1B5E20; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: #1a2e1a;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .accent { color: #1B5E20; font-style: italic; }
.hero-subtitle {
  font-size: 18px;
  color: #4a5e4a;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual + stat cards */
.hero-visual { position: relative; min-height: 520px; }
.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,94,32,0.15);
}
.hero-img-card img { width: 100%; height: 520px; object-fit: cover; }
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(27,94,32,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.stat-card--1 { bottom: 60px; left: -30px; animation-delay: 0s; }
.stat-card--2 { top: 40px; right: -20px; animation-delay: 1s; }
.stat-card--3 { bottom: 10px; right: 20px; animation-delay: 2s; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: #1B5E20; }
.stat-label { font-size: 12px; font-weight: 600; color: #6a7e6a; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PRODUCTS ── */
.products { background: #f7f9f4; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,94,32,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,94,32,0.12); }
.product-img { overflow: hidden; }
.product-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 24px; }
.product-body h3 { font-size: 20px; margin-bottom: 10px; color: #1a2e1a; }
.product-body p { font-size: 14px; color: #5a6e5a; line-height: 1.7; }

/* ── ABOUT ── */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; min-height: 640px; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(27,94,32,0.12); }
.about-img-main img { width: 100%; height: 640px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(27,94,32,0.15);
  border: 4px solid #fff;
}
.about-img-float img { width: 100%; height: 240px; object-fit: cover; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text { font-size: 16px; color: #4a5e4a; line-height: 1.8; margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item svg { color: #1B5E20; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 15px; color: #1a2e1a; margin-bottom: 2px; }
.value-item span { font-size: 14px; color: #6a7e6a; }

/* ── SCHEDULE ── */
.schedule { background: #f7f9f4; }
.schedule-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 4px 24px rgba(27,94,32,0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.schedule-table { display: flex; flex-direction: column; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e8ede6;
  font-size: 15px;
}
.schedule-row--header {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1B5E20;
  border-bottom: 2px solid #1B5E20;
}
.schedule-row--closed span:last-child { color: #a5d6a7; font-weight: 600; }
.schedule-content .section-tag { margin-bottom: 16px; }
.schedule-content .section-title { margin-bottom: 16px; }
.schedule-content .section-subtitle { margin-bottom: 0; }

/* ── CONTACT ── */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail svg { color: #1B5E20; flex-shrink: 0; margin-top: 3px; }
.contact-detail strong { display: block; font-size: 14px; color: #1a2e1a; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 15px; color: #4a5e4a; }
.contact-detail a:hover { color: #1B5E20; text-decoration: underline; }
.contact-form-wrap { background: #f7f9f4; border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #3a4e3a; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d4e4d4;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a2e1a;
  background: #fff;
  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: #1B5E20;
  box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1B5E20;
}
.form-success svg { flex-shrink: 0; }

/* ── MAP ── */
.map-section { background: #e8f5e9; }
.map-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── FOOTER ── */
.footer { background: #1a2e1a; color: #a5c4a5; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #a5d6a7; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: #a5c4a5; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(165,196,165,0.2); padding-top: 24px; text-align: center; font-size: 13px; color: #6a8a6a; }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247,249,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(27,94,32,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(27,94,32,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .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); }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-img-card img { height: 360px; }
  .stat-card { display: none; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 400px; }
  .about-img-main img { height: 400px; }
  .about-img-float { right: -10px; bottom: -20px; }
  .schedule-card { grid-template-columns: 1fr; padding: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
