*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d0f0e;
  --cream: #f5f0e8;
  --sage: #4a5c4e;
  --gold: #b8965a;
  --gold-light: #d4b07a;
  --mist: #e8ede9;
  --white: #fefefe;
  --text: #2a2e2b;
  --subtle: #7a8a7d;

  --font-display: 'Bricolage Grotesque', 'Syne', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11' 1, 'ss01' 1;
  text-rendering: optimizeLegibility;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,92,78,0.12);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.9rem 4rem; }
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 0.5rem 1.2rem; border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink) !important; color: var(--white) !important; }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
  background: none; border: none; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 600; line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: normal; color: var(--sage); font-weight: 400; }
.hero-sub {
  font-size: 0.95rem; color: var(--subtle); line-height: 1.8;
  max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 0.85rem 2rem; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--sage); }
.btn-outline {
  border: 1px solid var(--sage); color: var(--sage);
  padding: 0.85rem 2rem; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; background: transparent;
  transition: background 0.25s, color 0.25s;
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(74,92,78,0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--subtle); text-transform: uppercase; margin-top: 0.25rem; }
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, #2d3f31 100%);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,15,14,0.35) 0%,
    rgba(45,63,49,0.55) 100%
  );
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-right-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at 30% 70%, rgba(184,150,90,0.18) 0%, transparent 60%);
}
.hero-botanical {
  display: none;
}
.botanical-svg { width: 70%; opacity: 0.15; }
.hero-product-card {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  background: rgba(245,240,232,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 1.5rem 2rem; text-align: center; min-width: 220px;
  z-index: 3;
}
.hpc-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.6); margin-bottom: 0.4rem; }
.hpc-value { font-family: var(--font-display); font-size: 2rem; color: var(--cream); font-weight: 300; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.hpc-desc { font-size: 0.75rem; color: rgba(245,240,232,0.7); margin-top: 0.3rem; }
.hero-badge {
  position: absolute; top: 3rem; right: 3rem;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(184,150,90,0.1);
  z-index: 3;
}
.badge-text { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); text-align: center; line-height: 1.6; }
.badge-star { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.2rem; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 5rem; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600; color: var(--ink); line-height: 1.12;
  letter-spacing: -0.028em;
  margin-bottom: 1rem;
}
.section-sub { color: var(--subtle); font-size: 0.93rem; line-height: 1.8; max-width: 520px; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(74,92,78,0.12);
}
.service-card {
  padding: 2.5rem; border-right: 1px solid rgba(74,92,78,0.12);
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--mist); }
.service-icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.service-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.85rem; color: var(--subtle); line-height: 1.8; }

/* ── PRODUCTS ── */
#products { background: var(--cream); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(74,92,78,0.12); }
.product-card {
  background: var(--white); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-pct {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300; color: var(--mist);
  letter-spacing: -0.04em; font-variant-numeric: tabular-nums;
  line-height: 1; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.product-pct span { font-size: 1.8rem; color: var(--gold); }
.product-name { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); font-weight: 500; margin-bottom: 0.4rem; }
.product-type { font-size: 0.72rem; color: var(--subtle); letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.product-divider { height: 1px; background: rgba(74,92,78,0.12); margin-bottom: 1.5rem; }
.product-price {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--ink);
  letter-spacing: -0.025em; font-variant-numeric: tabular-nums;
  margin-bottom: 1.2rem;
}
.product-price small { font-size: 0.8rem; font-family: var(--font-body); color: var(--subtle); }
.product-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--sage); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.product-btn:hover { color: var(--gold); border-color: var(--gold); }
.product-tag {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--sage); color: var(--white);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

/* ── VIDEO ── */
#video-section {
  padding: 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.video-left {
  position: relative;
  overflow: hidden;
  background: #000;
}
.video-poster-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.video-left video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.video-play-btn.hidden { opacity: 0; pointer-events: none; }
.play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.6);
  background: rgba(13,15,14,0.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--cream);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.video-play-btn:hover .play-circle {
  background: rgba(184,150,90,0.35);
  border-color: var(--gold);
  transform: scale(1.08);
}
.video-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 4.5rem;
}
.video-right .section-tag { color: var(--gold-light); }
.video-right .section-tag::before { background: var(--gold-light); }
.video-right .section-h2 { color: var(--cream); margin-bottom: 1rem; }
.video-right .section-sub { color: rgba(245,240,232,0.6); margin-bottom: 2rem; }
.video-tag-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem;
}
.video-tag {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.5);
  padding: 0.4rem 0.85rem;
}

/* ── ABOUT ── */
#about {
  background: var(--ink); color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
#about .section-tag { color: var(--gold-light); }
#about .section-tag::before { background: var(--gold-light); }
#about .section-h2 { color: var(--cream); font-weight: 600; }
#about .section-sub { color: rgba(245,240,232,0.65); }
.about-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-feature { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0;
}
.feature-title { font-size: 0.85rem; font-weight: 500; color: var(--cream); margin-bottom: 0.3rem; letter-spacing: 0.04em; }
.feature-desc { font-size: 0.82rem; color: rgba(245,240,232,0.55); line-height: 1.7; }
.about-right {
  position: relative; display: flex; flex-direction: column; gap: 1.5rem;
}
.about-img-container {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sage) 0%, #1a2b1e 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-container img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(184,150,90,0.2) 0%, transparent 60%);
}
.about-img-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.3);
  padding: 1rem 1.25rem; z-index: 2;
}
.aib-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.aib-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.6); }
.about-certs { display: flex; gap: 1rem; }
.cert-pill {
  flex: 1; background: rgba(245,240,232,0.05); border: 1px solid rgba(245,240,232,0.1);
  padding: 0.8rem 1rem; text-align: center;
}
.cert-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.cert-val { font-size: 0.85rem; color: var(--cream); font-weight: 400; margin-top: 0.25rem; }

/* ── PARTNERS ── */
#partners { background: var(--mist); text-align: center; padding: 5rem; }
#partners .section-tag { justify-content: center; }
#partners .section-tag::before { display: none; }
#partners .section-h2 { text-align: center; }
.partners-track {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
  margin-top: 3rem;
}
.partner-logo {
  width: 110px; height: 110px;
  background: var(--white); border: 1px solid rgba(74,92,78,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem;
  color: var(--subtle); text-align: center; padding: 0.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.partner-logo img { max-width: 90%; max-height: 90%; object-fit: contain; }
.partner-logo:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ── CONTACT ── */
#contact { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { padding-top: 0.5rem; }
.contact-detail { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1rem; color: var(--gold); width: 20px; flex-shrink: 0; margin-top: 0.1rem; }
.contact-text a { color: var(--text); text-decoration: none; }
.contact-text a:hover { color: var(--gold); }
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.social-icon {
  width: 38px; height: 38px; border: 1px solid rgba(74,92,78,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  text-decoration: none; transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-icon:hover { border-color: var(--sage); background: var(--sage); color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); }
.form-input, .form-textarea {
  background: var(--white); border: 1px solid rgba(74,92,78,0.18);
  padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text); outline: none; transition: border-color 0.25s;
  resize: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { min-height: 120px; }
.form-submit {
  background: var(--sage); color: var(--white); border: none; cursor: pointer;
  padding: 0.95rem 2rem; font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; align-self: flex-start;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--ink); }
.form-msg { font-size: 0.82rem; color: var(--sage); display: none; margin-top: 0.5rem; }
.form-msg.show { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(245,240,232,0.5);
  padding: 3rem 5rem; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.footer-copy { font-size: 0.75rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.72rem; color: rgba(245,240,232,0.4); text-decoration: none; letter-spacing: 0.08em; }
.footer-links a:hover { color: var(--gold); }

/* ── DIVIDER ── */
.gold-divider { width: 48px; height: 1px; background: var(--gold); margin: 2rem 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; border-bottom: 1px solid rgba(74,92,78,0.12); }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-right { min-height: 300px; }
  section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(74,92,78,0.12); }
  .service-card:last-child { border-bottom: none; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  #contact { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .video-inner { grid-template-columns: 1fr; }
  .video-left { min-height: 260px; }
  .video-right { padding: 3rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  #partners { padding: 4rem 1.5rem; }
}
