:root {
  --green-900: #172016;
  --green-800: #26311f;
  --green-700: #3c4a33;
  --green-500: #7f896f;
  --green-300: #c5d1ac;
  --gold-700: #a8792a;
  --gold-500: #d6b36a;
  --gold-200: #fff1c8;
  --cream: #fffaf0;
  --ivory: #fbf7ed;
  --white: #ffffff;
  --black: #0b0d0b;
  --muted: #6a6d60;
  --line: rgba(38, 49, 31, .13);
  --shadow: 0 28px 90px rgba(20, 27, 16, .14);
  --shadow-soft: 0 18px 54px rgba(20, 27, 16, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --ease: cubic-bezier(.21, .85, .29, .99);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--green-900);
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 179, 106, .22), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(127, 137, 111, .16), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f8f2e5 42%, #fffaf1 100%);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--green-800); color: var(--cream); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 112px 0; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--cream);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__card {
  display: grid;
  gap: 18px;
  justify-items: center;
  transform: translateY(0);
  animation: preloaderFloat 1.6s ease-in-out infinite alternate;
}
.preloader__card img {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 28px 70px rgba(0,0,0,.35);
}
.preloader__card span {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,250,240,.72);
}
@keyframes preloaderFloat { to { transform: translateY(-12px); } }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1180px, calc(100% - 34px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: rgba(255, 251, 242, .74);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 54px rgba(31, 40, 24, .12);
  transition: all .45s var(--ease);
}
.site-header.is-scrolled {
  top: 10px;
  min-height: 66px;
  background: rgba(255, 251, 242, .9);
  box-shadow: 0 16px 45px rgba(31, 40, 24, .16);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(38, 49, 31, .16);
}
.brand strong,
.brand small { display: block; line-height: 1; }
.brand strong { font-size: 15px; letter-spacing: .06em; }
.brand small { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(23,32,22,.75);
  transition: color .28s var(--ease), background .28s var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green-900);
  background: rgba(127, 137, 111, .14);
}
.header-cta,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
  will-change: transform;
}
.header-cta {
  color: var(--cream);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 16px 42px rgba(23, 32, 22, .22);
}
.btn--dark {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 16px 42px rgba(23, 32, 22, .22);
}
.btn--light {
  color: var(--green-900);
  background: rgba(255,255,255,.70);
  border-color: rgba(38,49,31,.16);
  box-shadow: 0 12px 34px rgba(23, 32, 22, .08);
}
.header-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -25%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform: skewX(-20deg) translateX(-180%);
  transition: transform .75s var(--ease);
}
.header-cta:hover::after,
.btn:hover::after { transform: skewX(-20deg) translateX(520%); }
.header-cta:hover,
.btn:hover { transform: translateY(-3px); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  padding: 13px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 170px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(251,247,237,.92) 0%, rgba(251,247,237,.72) 42%, rgba(251,247,237,.34) 100%),
    url('../images/rosemary.webp') center right / cover no-repeat;
  opacity: .72;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #fffaf1);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .34;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
  animation: orbMove 9s ease-in-out infinite alternate;
}
.orb--one {
  width: 280px;
  height: 280px;
  top: 18%;
  left: 5%;
  background: radial-gradient(circle, rgba(214,179,106,.46), transparent 68%);
}
.orb--two {
  width: 360px;
  height: 360px;
  right: 2%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(127,137,111,.34), transparent 70%);
  animation-delay: -3s;
}
@keyframes orbMove {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, -22px, 0) scale(1.08); }
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 58px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.center { justify-content: center; }
.eyebrow span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-700), transparent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 66px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}
h3 { letter-spacing: -.025em; }
.hero__lead,
.section-copy p,
.section-head p,
.showcase-copy p,
.contact__panel p {
  color: rgba(23,32,22,.76);
  font-size: 17px;
  line-height: 1.82;
}
.hero__lead {
  max-width: 720px;
  font-size: clamp(17px, 1.8vw, 20px);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(38,49,31,.13);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.hero__stats div {
  padding: 22px;
  border-right: 1px solid rgba(38,49,31,.1);
}
.hero__stats div:last-child { border-right: 0; }
.hero__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--green-800);
}
.hero__stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero__visual {
  position: relative;
  min-height: 640px;
  transform-style: preserve-3d;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  will-change: transform;
}
.hero-card--main {
  inset: 0 0 auto auto;
  width: min(100%, 570px);
  height: 610px;
  border-radius: 44px;
  transform: rotate(2.5deg);
}
.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card--main::after,
.product-card__image::after,
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.46) 45%, transparent 58%);
  transform: translateX(-120%);
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%, 54% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.hero-card--small {
  z-index: 2;
  padding: 18px;
  border-radius: 26px;
}
.hero-card--top {
  top: 42px;
  left: -12px;
  display: grid;
  gap: 9px;
  width: 160px;
  justify-items: center;
  animation: floatSoft 4.8s ease-in-out infinite;
}
.hero-card--top img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}
.hero-card--top span {
  font-size: 13px;
  font-weight: 900;
  color: var(--green-800);
}
.hero-card--bottom {
  right: 8px;
  bottom: 52px;
  width: 260px;
  background: rgba(23,32,22,.9);
  color: var(--cream);
  animation: floatSoft 5.2s ease-in-out infinite reverse;
}
.hero-card--bottom strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 25px; }
.hero-card--bottom span { color: rgba(255,250,240,.76); font-size: 13px; line-height: 1.5; }
@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -16px, 0); }
}
.premium-marquee {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  overflow: hidden;
  border-block: 1px solid rgba(38,49,31,.12);
  background: rgba(255,255,255,.46);
  backdrop-filter: blur(18px);
}
.premium-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.premium-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding-inline: 32px;
  color: rgba(23,32,22,.64);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
}
.premium-marquee span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 8px rgba(214,179,106,.16);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.trust-strip { position: relative; z-index: 4; margin-top: -28px; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  min-height: 142px;
  padding: 26px;
  border: 1px solid rgba(38,49,31,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.trust-item b { display: block; margin-bottom: 10px; font-size: 17px; }
.trust-item span { color: var(--muted); font-size: 14px; line-height: 1.65; }

.about__grid,
.quality__grid,
.showcase__grid,
.contact__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}
.about__media {
  position: relative;
  min-height: 520px;
}
.about__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: -36px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  color: var(--cream);
  background: rgba(23,32,22,.86);
  box-shadow: 0 26px 70px rgba(23,32,22,.25);
  backdrop-filter: blur(18px);
}
.about__badge strong { display: block; font-family: var(--serif); font-size: 30px; margin-bottom: 8px; }
.about__badge span { display: block; color: rgba(255,250,240,.74); line-height: 1.65; }
.float-soft { animation: floatSoft 5.5s ease-in-out infinite; }
.section-copy { max-width: 680px; }
.about-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 28px;
}
.about-list div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}
.about-list i {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-200), var(--gold-500) 62%, var(--gold-700));
  box-shadow: 0 0 0 7px rgba(214,179,106,.13);
}
.about-list span { line-height: 1.72; color: rgba(23,32,22,.76); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-700);
  font-weight: 900;
}
.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width .28s var(--ease);
}
.text-link:hover::after { width: 72px; }

.products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23,32,22,.96), rgba(38,49,31,.94)),
    url('../images/urang-aring.webp') center / cover fixed;
  color: var(--cream);
}
.products::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  background:
    radial-gradient(circle at 18% 18%, rgba(214,179,106,.30), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(197,209,172,.18), transparent 26%);
  pointer-events: none;
}
.products .container { position: relative; z-index: 2; }
.section-head {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}
.products .section-head p { color: rgba(255,250,240,.76); }
.products h2 { color: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(255,255,255,.91);
  color: var(--green-900);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  transform-style: preserve-3d;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(214,179,106,.28);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.product-card:hover::before { opacity: 1; }
.product-card__image {
  position: relative;
  height: 230px;
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ivory);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__body { padding: 24px; }
.product-card__body span,
.modal__content span,
.showcase-card span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214,179,106,.18);
  color: #835d1f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}
.product-card p { color: rgba(23,32,22,.72); line-height: 1.72; min-height: 88px; }
.product-open {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--cream);
  background: var(--green-900);
  font-weight: 850;
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.product-open:hover { transform: translateY(-2px); background: var(--green-700); }

.quality {
  background:
    radial-gradient(circle at 8% 20%, rgba(214,179,106,.18), transparent 28%),
    linear-gradient(180deg, #fffaf1, #f5eddd);
}
.quality-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.quality-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(38,49,31,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quality-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.quality-card b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 16px;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500));
}
.quality-card h3 { margin-bottom: 10px; font-size: 24px; }
.quality-card p { color: var(--muted); line-height: 1.7; margin: 0; }

.showcase {
  position: relative;
  overflow: hidden;
}
.showcase__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.showcase-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 44px;
  box-shadow: var(--shadow);
}
.showcase-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.showcase-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
}
.showcase-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.process {
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(23,32,22,.94), rgba(54,65,45,.92)),
    url('../images/kemiri-bakar.webp') center / cover fixed;
  overflow: hidden;
}
.process .section-head p { color: rgba(255,250,240,.76); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.timeline__item {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 74px rgba(0,0,0,.18);
}
.timeline__item::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -28px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,179,106,.75), transparent);
}
.timeline__item:last-child::after { display: none; }
.timeline__item span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--green-900);
  font-weight: 900;
}
.timeline__item h3 { color: var(--cream); font-size: 24px; margin-bottom: 12px; }
.timeline__item p { color: rgba(255,250,240,.72); line-height: 1.72; }

.faq { background: #fffaf1; }
.faq__grid { align-items: start; }
.accordion {
  display: grid;
  gap: 16px;
}
details {
  border: 1px solid rgba(38,49,31,.13);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  font-weight: 900;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(127,137,111,.14);
  color: var(--green-900);
  flex: 0 0 auto;
  transition: transform .25s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin: -8px 26px 24px;
  color: var(--muted);
  line-height: 1.72;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(214,179,106,.22), transparent 28%),
    linear-gradient(180deg, #f5eddd, #fffaf1);
}
.contact__grid { align-items: stretch; }
.contact__panel,
.lead-form {
  border: 1px solid rgba(38,49,31,.13);
  border-radius: 40px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.contact__panel { padding: clamp(30px, 5vw, 52px); }
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(127,137,111,.11);
  color: var(--green-900);
  font-weight: 750;
}
.lead-form {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 18px;
}
.lead-form label {
  display: grid;
  gap: 9px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(38,49,31,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--green-900);
  outline: none;
  padding: 16px 17px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  transition: border .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.lead-form textarea { resize: vertical; min-height: 116px; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(168,121,42,.64);
  box-shadow: 0 0 0 4px rgba(214,179,106,.14);
  background: var(--white);
}
.lead-form .btn { width: 100%; border: 0; min-height: 56px; }

.footer {
  color: rgba(255,250,240,.72);
  background: var(--green-900);
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 46px;
}
.footer img { width: 82px; height: 82px; border-radius: 24px; margin-bottom: 20px; }
.footer p { max-width: 390px; line-height: 1.75; }
.footer h3 { color: var(--cream); margin-bottom: 18px; }
.footer a { display: block; margin: 12px 0; color: rgba(255,250,240,.72); transition: color .25s var(--ease), transform .25s var(--ease); }
.footer a:hover { color: var(--cream); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(135deg, #1d7b44, #29b160);
  box-shadow: 0 18px 42px rgba(15, 112, 57, .34);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .04em;
}

.wa-float svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(41,177,96,.34);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(.8); opacity: .9; }
  to { transform: scale(1.25); opacity: 0; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 22px;
}
.modal.is-open { display: grid; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 8, .62);
  backdrop-filter: blur(12px);
  animation: fadeIn .28s var(--ease) both;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  overflow: auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 36px;
  background: var(--cream);
  box-shadow: 0 34px 120px rgba(0,0,0,.38);
  animation: modalPop .38s var(--ease) both;
}
.modal__image { min-height: 480px; overflow: hidden; border-radius: 36px 0 0 36px; }
.modal__image img { width: 100%; height: 100%; object-fit: cover; }
.modal__content { padding: clamp(28px, 5vw, 48px); }
.modal__content h2 { font-size: clamp(34px, 5vw, 58px); }
.modal__content p { color: var(--muted); line-height: 1.75; }
.modal__content ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.modal__content li {
  position: relative;
  padding-left: 25px;
  color: rgba(23,32,22,.77);
  line-height: 1.6;
}
.modal__content li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(23,32,22,.92);
  font-size: 28px;
  line-height: 1;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(26px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .82s var(--ease), transform .82s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (max-width: 1040px) {
  .site-header { width: min(920px, calc(100% - 28px)); }
  .header-cta { display: none; }
  .hero__grid,
  .about__grid,
  .quality__grid,
  .showcase__grid,
  .contact__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 560px; }
  .hero-card--main { left: 0; width: 100%; height: 540px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline__item::after { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    min-height: 66px;
    border-radius: 24px;
  }
  .brand img { width: 44px; height: 44px; border-radius: 14px; }
  .brand small { display: none; }
  .nav-toggle { display: block; order: 3; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 26px;
    background: rgba(255,251,242,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s var(--ease), transform .28s var(--ease);
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { justify-content: center; min-height: 48px; }
  .section-pad { padding: 84px 0; }
  .hero { padding-top: 128px; min-height: auto; }
  .hero__grid { gap: 42px; }
  h1 { font-size: clamp(43px, 13vw, 68px); }
  h2 { font-size: clamp(34px, 10vw, 52px); }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats div { border-right: 0; border-bottom: 1px solid rgba(38,49,31,.1); }
  .hero__stats div:last-child { border-bottom: 0; }
  .hero__visual { min-height: 500px; }
  .hero-card--main { height: 480px; border-radius: 34px; transform: rotate(0deg); }
  .hero-card--top { left: 12px; top: 18px; }
  .hero-card--bottom { right: 12px; bottom: 24px; width: 230px; }
  .product-grid,
  .quality-cards,
  .timeline,
  .trust-strip__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .about__media,
  .about__media img { min-height: auto; height: 420px; }
  .about__badge { left: 18px; right: 18px; bottom: -28px; }
  .products { background-attachment: scroll; }
  .product-card__image { height: 220px; }
  .showcase-card,
  .showcase-card img { min-height: 420px; height: 420px; }
  .modal__dialog { grid-template-columns: 1fr; border-radius: 28px; }
  .modal__image { min-height: 280px; height: 280px; border-radius: 28px 28px 0 0; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { width: calc(100% - 20px); padding: 10px; }
  .brand span { display: none; }
  .hero__lead,
  .section-copy p,
  .section-head p,
  .showcase-copy p,
  .contact__panel p { font-size: 16px; line-height: 1.75; }
  .hero__actions { display: grid; }
  .btn { width: 100%; min-height: 52px; }
  .premium-marquee span { font-size: 19px; min-height: 62px; padding-inline: 22px; }
  .hero__visual { min-height: 410px; }
  .hero-card--main { height: 400px; }
  .hero-card--top { width: 132px; padding: 14px; }
  .hero-card--top img { width: 52px; height: 52px; }
  .hero-card--bottom { width: 205px; padding: 16px; }
  .trust-item,
  .quality-card,
  .timeline__item { min-height: auto; }
  .about__media,
  .about__media img { height: 360px; }
  .about__badge strong { font-size: 24px; }
  .product-card h3 { font-size: 27px; }
  .wa-float { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
