/* =========================================================
   HARYANA MILK — Stylesheet
   Palet: Susu / Krim / Padang Rumput / Meadow / Mentega / Bark
   Tipografi: Fraunces (display) + Plus Jakarta Sans (body)
   ========================================================= */

:root {
  --milk: #FBF9F3;
  --cream: #F2EBDB;
  --cream-2: #F7F1E4;
  --pasture: #1C4A2A;
  --pasture-deep: #143920;
  --meadow: #3E7C4E;
  --meadow-light: #6FAE71;
  --butter: #E9B23C;
  --butter-deep: #D69A26;
  --bark: #2B241C;
  --stone: #7A7266;

  --line: rgba(28, 74, 42, .12);
  --line-strong: rgba(28, 74, 42, .2);
  --shadow-sm: 0 4px 14px rgba(43, 36, 28, .06);
  --shadow-md: 0 14px 34px rgba(28, 74, 42, .10);
  --shadow-lg: 0 26px 60px rgba(28, 74, 42, .16);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --section-pad: clamp(66px, 9vw, 122px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bark);
  background: var(--milk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(1200px, 92%); margin-inline: auto; }

::selection { background: var(--butter); color: var(--pasture); }

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--pasture);
  color: var(--milk);
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--meadow);
  margin-bottom: 1.1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow__leaf {
  width: 20px; height: 12px;
  background: var(--butter);
  border-radius: 0 100% 0 100% / 0 100% 0 100%;
  transform: rotate(-8deg);
  flex: none;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -.01em;
  color: var(--pasture);
  max-width: 16ch;
}
.section__title--center { margin-inline: auto; text-align: center; max-width: 20ch; }
.section__head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.section__intro { color: var(--stone); font-size: 1.06rem; margin: .9rem auto 0; max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pasture);
  --btn-fg: var(--milk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  line-height: 1;
  padding: .85em 1.5em;
  border-radius: 100px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.02em 1.9em; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--pasture); color: var(--milk); }
.btn--primary:hover { background: var(--meadow); }

.btn--ghost {
  background: transparent;
  color: var(--pasture);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--pasture); color: var(--milk); border-color: var(--pasture); }

.btn--butter { background: var(--butter); color: var(--pasture); }
.btn--butter:hover { background: var(--butter-deep); color: #3a2b0c; }

.btn--milk { background: var(--milk); color: var(--pasture); }
.btn--milk:hover { background: #fff; }

/* ---------- Decorative blobs (cow-spot motif) ---------- */
.blob {
  position: absolute;
  border-radius: 46% 54% 63% 37% / 45% 38% 62% 55%;
  pointer-events: none;
  z-index: 0;
}
.blob--a { width: 220px; height: 220px; background: var(--butter); opacity: .1; top: -40px; right: -30px; }
.blob--b { width: 150px; height: 150px; background: var(--meadow); opacity: .08; bottom: 6%; left: -46px; }
.blob--c { width: 260px; height: 260px; background: var(--milk); opacity: .07; top: -60px; right: -40px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--pasture);
  color: rgba(251, 249, 243, .82);
  font-size: .82rem;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.topbar__promo { margin: 0; display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--butter); flex: none; }
.topbar__contact { display: inline-flex; gap: 10px; white-space: nowrap; }
.topbar__contact a:hover { color: var(--butter); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 243, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 249, 243, .94); }
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; filter: drop-shadow(0 3px 6px rgba(28,74,42,.18)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.34rem; color: var(--pasture); letter-spacing: -.01em; }
.brand__tag { font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--meadow); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a {
  padding: .55em .85em;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--bark);
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav__links > a:not(.btn):hover { color: var(--pasture); background: rgba(28,74,42,.06); }
.nav__links > a.is-active:not(.btn) { color: var(--pasture); }
.nav__links > a.is-active:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 3px; background: var(--butter);
}
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle span { width: 22px; height: 2.4px; background: var(--pasture); border-radius: 3px; transition: transform .3s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(40px, 6vw, 84px) clamp(56px, 8vw, 108px);
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(233,178,60,.14), transparent 55%),
    radial-gradient(110% 80% at 8% 100%, rgba(111,174,113,.16), transparent 52%),
    var(--milk);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--pasture);
  margin-bottom: 1.1rem;
}
.hero__title .accent { color: var(--butter-deep); font-style: italic; }
.hero__lead { font-size: 1.13rem; color: var(--stone); max-width: 52ch; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(16px, 3vw, 34px);
  margin: 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__stats dt { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--pasture); }
.hero__stats dd { margin: 0; font-size: .82rem; color: var(--stone); font-weight: 500; }

.hero__art { position: relative; }
.hero__art img {
  width: 100%; height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero__art img { animation: none; } }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { padding-block: clamp(40px, 6vw, 72px); background: var(--milk); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ic {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--pasture);
  color: var(--butter);
  margin-bottom: 18px;
}
.feature__ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.14rem; color: var(--pasture); margin-bottom: .5rem; }
.feature p { margin: 0; font-size: .95rem; color: var(--stone); }
.trust__grid .feature:nth-child(2){ transition-delay:.06s } 
.trust__grid .feature:nth-child(3){ transition-delay:.12s }
.trust__grid .feature:nth-child(4){ transition-delay:.18s }

/* =========================================================
   TENTANG KAMI
   ========================================================= */
.about { padding-block: var(--section-pad); background: var(--cream-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(30px, 5vw, 74px); }
.about__art { position: relative; }
.about__art img { width: 100%; aspect-ratio: 11 / 9; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.about__badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.2;
}
.about__badge strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--pasture); }
.about__badge span { font-size: .78rem; color: var(--meadow); font-weight: 700; }

.about__copy p { color: var(--stone); }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 1.5rem 0 2rem; }
.values li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: .96rem; }
.values li span {
  flex: none; display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--meadow-light); color: #fff; font-size: .7rem; font-weight: 800;
  margin-top: 2px;
}

/* =========================================================
   PROSES
   ========================================================= */
.process { padding-block: var(--section-pad); background: var(--milk); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 22px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600;
  color: var(--butter);
  line-height: 1;
}
.step__ic {
  position: absolute; top: 26px; right: 22px;
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(28,74,42,.08); color: var(--pasture);
}
.step__ic svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.06rem; color: var(--pasture); margin: 16px 0 .45rem; }
.step p { margin: 0; font-size: .9rem; color: var(--stone); }
.steps .step:nth-child(2){transition-delay:.06s}
.steps .step:nth-child(3){transition-delay:.12s}
.steps .step:nth-child(4){transition-delay:.18s}
.steps .step:nth-child(5){transition-delay:.24s}

/* =========================================================
   PRODUK
   ========================================================= */
.products { padding-block: var(--section-pad); background: var(--cream-2); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(233,178,60,.5); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 26px 26px; }
.card__body h3 { font-family: var(--font-display); font-size: 1.34rem; color: var(--pasture); margin: 12px 0 .5rem; }
.card__body p { margin: 0 0 1.2rem; font-size: .95rem; color: var(--stone); }
.tag {
  display: inline-block;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--meadow); background: rgba(62,124,78,.12);
  padding: .35em .8em; border-radius: 100px;
}
.tag--best { color: #7a5300; background: rgba(233,178,60,.22); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--bark); }
.price small { font-family: var(--font-body); font-size: .74rem; font-weight: 600; color: var(--stone); margin-left: 3px; }
.card__link { font-weight: 700; color: var(--pasture); font-size: .92rem; transition: color .2s ease, transform .2s ease; }
.card__link:hover { color: var(--butter-deep); transform: translateX(3px); }
.products__grid .card:nth-child(2){transition-delay:.05s}
.products__grid .card:nth-child(3){transition-delay:.1s}
.products__grid .card:nth-child(4){transition-delay:.05s}
.products__grid .card:nth-child(5){transition-delay:.1s}
.products__grid .card:nth-child(6){transition-delay:.15s}
.products__note { text-align: center; margin: 2.6rem 0 0; color: var(--stone); }
.products__note a { color: var(--pasture); font-weight: 700; }
.products__note a:hover { color: var(--butter-deep); }

/* =========================================================
   TESTIMONI
   ========================================================= */
.testimonials { padding-block: var(--section-pad); background: var(--milk); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 28px;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem; line-height: .6; color: var(--butter);
  height: 34px; overflow: hidden;
}
.quote blockquote { margin: 10px 0 22px; font-size: 1.05rem; color: var(--bark); }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pasture); color: var(--milk);
  font-weight: 800; font-size: .9rem; letter-spacing: .02em;
}
.quote figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; font-size: .88rem; color: var(--stone); }
.quote figcaption strong { color: var(--pasture); font-size: .98rem; }
.quotes .quote:nth-child(2){transition-delay:.08s}
.quotes .quote:nth-child(3){transition-delay:.16s}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding-block: var(--section-pad); background: var(--cream-2); }
.faq__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 66px); align-items: start; }
.faq__intro p { color: var(--stone); margin-bottom: 1.6rem; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details {
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 6px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__list details[open] { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--pasture);
  padding: 16px 46px 16px 18px;
  position: relative;
  font-size: 1.02rem;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(28,74,42,.08); color: var(--pasture);
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 500; line-height: 1;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--butter); }
.faq__list details p { margin: 0; padding: 0 18px 18px; color: var(--stone); font-size: .97rem; }

/* =========================================================
   JENJANG KARIR
   ========================================================= */
.career { padding-block: var(--section-pad); background: var(--milk); }
.perks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: clamp(34px, 4vw, 52px);
}
.perk {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px;
}
.perk__ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--pasture); color: var(--butter); }
.perk__ic svg { width: 24px; height: 24px; }
.perk p { margin: 0; font-weight: 600; font-size: .95rem; color: var(--pasture); }

.jobs { display: grid; gap: 14px; }
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(233,178,60,.45); }
.job__info h3 { font-size: 1.2rem; color: var(--pasture); margin-bottom: .35rem; }
.job__info p { margin: 0 0 .6rem; color: var(--stone); font-size: .95rem; }
.job__meta { display: flex; gap: 18px; font-size: .84rem; color: var(--meadow); font-weight: 600; }
.job__apply { flex: none; }
.career__cta { text-align: center; margin: 2.6rem 0 0; color: var(--stone); }
.career__cta a { color: var(--pasture); font-weight: 700; }
.career__cta a:hover { color: var(--butter-deep); }

/* =========================================================
   CTA BAND
   ========================================================= */
.ctaband {
  position: relative;
  background: var(--pasture);
  color: var(--milk);
  text-align: center;
  padding-block: clamp(58px, 8vw, 96px);
  margin-block: clamp(20px, 4vw, 40px);
  overflow: visible;
}
.wave { position: absolute; left: 0; width: 100%; height: 60px; z-index: 1; }
.wave path { fill: var(--pasture); }
.wave--top { top: -59px; }
.wave--bottom { bottom: -59px; }
.ctaband__inner { position: relative; z-index: 2; max-width: 760px; }
.ctaband h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: .9rem;
}
.ctaband p { color: rgba(251,249,243,.82); font-size: 1.1rem; margin-bottom: 1.9rem; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   KONTAK
   ========================================================= */
.contact { padding-block: var(--section-pad); background: var(--milk); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.infocard {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.infocard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(233,178,60,.45); }
.infocard__ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--pasture); color: var(--butter); }
.infocard__ic svg { width: 24px; height: 24px; }
.infocard span:last-child { display: flex; flex-direction: column; gap: 3px; font-size: .95rem; color: var(--stone); }
.infocard strong { color: var(--pasture); font-size: 1rem; }

.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-2); border: 1px solid var(--line); color: var(--pasture);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--pasture); color: var(--butter); transform: translateY(-3px); }
.socials svg { width: 22px; height: 22px; }

.contact__form {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 700; font-size: .84rem; color: var(--pasture); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--bark);
  background: var(--milk);
  border: 1.6px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--butter); box-shadow: 0 0 0 4px rgba(233,178,60,.22);
}
.field input::placeholder, .field textarea::placeholder { color: #b3ab9c; }
.form__hint { text-align: center; font-size: .84rem; color: var(--stone); margin: 14px 0 0; }
.form__hint.is-error { color: #b23b2f; font-weight: 600; }
.form__hint.is-ok { color: var(--meadow); font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--pasture-deep); color: rgba(251,249,243,.72); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px;
  padding-block: clamp(52px, 7vw, 84px);
}
.brand--footer .brand__name { color: var(--milk); }
.brand--footer .brand__tag { color: var(--butter); }
.footer__brand p { margin: 18px 0 0; font-size: .94rem; max-width: 38ch; }
.footer__col h4 { color: var(--milk); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer__col a { display: block; padding: 5px 0; font-size: .95rem; transition: color .2s ease, transform .2s ease; }
.footer__col a:hover { color: var(--butter); transform: translateX(3px); }
.footer__contact { font-size: .94rem; margin: 0 0 14px; line-height: 1.7; }
.footer__contact a:hover { color: var(--butter); }

.footer__bar { border-top: 1px solid rgba(251,249,243,.12); }
.footer__barrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-block: 20px; flex-wrap: wrap; }
.footer__barrow p { margin: 0; font-size: .84rem; }
.footer__mini { color: rgba(251,249,243,.5); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .products__grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--milk);
    padding: 18px 6% 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links > a { padding: 13px 14px; border-radius: 12px; font-size: 1.02rem; }
  .nav__links > a.is-active:not(.btn)::after { display: none; }
  .nav__cta { margin: 8px 0 0; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 520px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__art { max-width: 520px; }
  .faq__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar__contact { display: none; }
  .topbar__promo { font-size: .78rem; }
  .trust__grid, .steps, .products__grid, .quotes, .perks { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .job { flex-direction: column; align-items: flex-start; }
  .job__apply { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .about__badge { right: 10px; }
}
