/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #d1fae5;
  --emerald-50: #ecfdf5;
  --cream: #faf9f6;
  --cream-warm: #f5f0e8;
  --cream-dark: #e8e0d0;
  --text: #1a2e28;
  --text-muted: #5a6e68;
  --text-light: #8a9e98;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(26,46,40,0.06), 0 1px 2px rgba(26,46,40,0.04);
  --shadow-md: 0 4px 16px rgba(26,46,40,0.08), 0 2px 6px rgba(26,46,40,0.04);
  --shadow-lg: 0 12px 40px rgba(26,46,40,0.10), 0 4px 12px rgba(26,46,40,0.05);
  --shadow-xl: 0 24px 60px rgba(26,46,40,0.12);
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.text-accent { color: var(--emerald); }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(5,150,105,0.3);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5,150,105,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,46,40,0.06);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--emerald); background: var(--emerald-50); }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--emerald-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition);
  margin-left: auto;
}
.nav-toggle:hover { background: var(--emerald-50); color: var(--emerald); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--emerald-50) 50%, var(--cream-warm) 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(5,150,105,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(5,150,105,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--emerald-light);
  color: var(--emerald);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline-accent {
  color: var(--emerald);
  font-style: italic;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-cards {
  position: relative;
  height: 580px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover { transform: translateY(-6px) !important; }
.hero-card--main {
  width: 300px;
  height: 380px;
  top: 20px;
  right: 40px;
  z-index: 1;
}
.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card--stat {
  width: 170px;
  background: var(--white);
  padding: 24px 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.hero-card--top { top: 0; right: 0; box-shadow: var(--shadow-xl); }
.hero-card--bottom { bottom: 180px; right: 10px; box-shadow: var(--shadow-xl); }
.hc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.hc-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--emerald);
}
.hc-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.hero-card--wide {
  width: 280px;
  height: 100px;
  bottom: 20px;
  right: 60px;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}
.hero-card--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hc-wide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ─────────────────────────────────────── */
.section {
  padding: 100px 0;
}

/* ── About ────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; height: 640px; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 480px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 260px;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-img-float-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald);
}
.about-text .section-sub { margin-bottom: 24px; }
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.ah-item svg { flex-shrink: 0; }

/* ── Products ─────────────────────────────────────── */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pc-img {
  height: 220px;
  overflow: hidden;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .pc-img img { transform: scale(1.05); }
.pc-body { padding: 24px; }
.pc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-50);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.pc-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.pc-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-content .section-sub { margin-bottom: 36px; }
.wu-features { display: flex; flex-direction: column; gap: 20px; }
.wu-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--cream);
}
.wu-feature:hover { background: var(--emerald-50); transform: translateX(4px); }
.wu-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wu-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.wu-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.wu-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.wu-visual-card img { width: 100%; height: 100%; object-fit: cover; }
.wu-visual-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(26,46,40,0.7), transparent);
  color: var(--white);
}
.wu-visual-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  margin-top: 8px;
}

/* ── Visit / CTA ──────────────────────────────────── */
.visit { padding: 80px 0; background: var(--cream); }
.visit-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 72px 64px;
  box-shadow: var(--shadow-xl);
}
.visit-card-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.visit-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-label-light { color: rgba(255,255,255,0.7) !important; }
.section-label-light::before { background: rgba(255,255,255,0.5) !important; }
.section-title-light { color: var(--white); }
.section-sub-light { color: rgba(255,255,255,0.8); }
.vd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.vd-item:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.vd-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.vd-item strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.vd-item span {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ci-links { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.ci-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.ci-link:hover { color: var(--emerald); }
.ci-link svg { flex-shrink: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.cf-group input,
.cf-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-light);
  border-radius: var(--radius-md);
  color: var(--emerald-dark);
  font-size: 0.9rem;
  font-weight: 500;
}
.cf-success.show { display: flex; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-links { display: flex; gap: 48px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fl-col a, .fl-col span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  line-height: 1.6;
}
.fl-col a:hover { color: var(--emerald-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
}

/* ── Animations ───────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* ── Mobile Menu ──────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,46,40,0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 80px 28px 28px;
  gap: 4px;
  box-shadow: var(--shadow-xl);
  z-index: 100;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.nav-links.mobile-open a {
  padding: 14px 16px;
  font-size: 1rem;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { height: 400px; margin: 0 auto; }
  .hero-card--main { width: 240px; height: 300px; right: 20px; }
  .hero-card--stat { width: 140px; padding: 18px 14px; }
  .hero-card--wide { width: 220px; }
  .about-grid,
  .why-us-layout,
  .visit-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 440px; }
  .about-img-float { right: -10px; width: 220px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-cards { height: 320px; }
  .hero-card--main { width: 180px; height: 240px; right: 10px; top: 10px; }
  .hero-card--stat { width: 120px; padding: 14px 10px; }
  .hero-card--stat .hc-number { font-size: 1.2rem; }
  .hero-card--stat .hc-label { font-size: 0.7rem; }
  .hero-card--wide { width: 170px; height: 80px; right: 30px; bottom: 10px; }
  .hero-scroll { display: none; }
  .section { padding: 70px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .visit-card { padding: 48px 28px; }
  .visit-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cards { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-images { height: 320px; }
  .about-img-float { display: none; }
}
