/* ==========================================================================
   Advaith Exports — brand stylesheet
   Palette taken from the printed catalogue: forest green + warm coir brown
   on a cream paper ground.
   ========================================================================== */

:root {
  --green-900: #0d2b1a;
  --green-800: #14401f;
  --green-700: #1c5a2e;
  --green-600: #27713b;
  --green-500: #349049;
  --leaf:      #6cb247;
  --leaf-soft: #e5f0dc;

  --brown-800: #4a2f18;
  --brown-700: #6b4423;
  --brown-600: #8a5a2e;
  --brown-300: #c9a882;

  --cream:     #faf7ef;
  --cream-2:   #f2ede0;
  --cream-3:   #e7e0cd;

  --ink:       #1e241d;
  --body:      #4a5347;
  --muted:     #74806f;
  --line:      #ddd9c9;

  --white:     #ffffff;

  --shadow-sm: 0 1px 2px rgba(13, 43, 26, .06), 0 2px 6px rgba(13, 43, 26, .05);
  --shadow-md: 0 4px 12px rgba(13, 43, 26, .08), 0 12px 28px rgba(13, 43, 26, .07);
  --shadow-lg: 0 10px 30px rgba(13, 43, 26, .12), 0 24px 60px rgba(13, 43, 26, .10);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);

  --font-display: "Oswald", "Archivo Narrow", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Playfair Display", Georgia, "Times New Roman", serif;

  --header-h: 76px;
}

/* --------------------------------------------------------------- reset -- */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-900);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 .55em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.32rem); letter-spacing: .02em; }
h4 { font-size: 1rem; letter-spacing: .05em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--leaf); color: #fff; }

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-800); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- layout --- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(60px, 8vw, 104px) 0; }
.section--tight { padding: clamp(44px, 5.5vw, 68px) 0; }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }
.section--dark { background: var(--green-900); color: #cbd8c6; }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }
/* forces exactly two columns where auto-fit would otherwise leave an orphan */
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 780px) { .cols-2 { grid-template-columns: 1fr; } }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 64ch; margin-inline: auto; }

/* -------------------------------------------------------- section head -- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--leaf); border-radius: 2px;
}
.center .eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--leaf); border-radius: 2px;
}

.lede { font-size: 1.09rem; color: var(--body); }

.rule-leaf {
  width: 100%; max-width: 210px; margin: 18px auto 30px;
  height: 14px;
  background:
    linear-gradient(var(--line), var(--line)) left  center / calc(50% - 16px) 1px no-repeat,
    linear-gradient(var(--line), var(--line)) right center / calc(50% - 16px) 1px no-repeat;
  position: relative;
}
.rule-leaf::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 11px; height: 11px; transform: translate(-50%, -50%) rotate(45deg);
  background: var(--leaf); border-radius: 0 60% 0 60%;
}

/* keeps scientific casing (pH, EC) inside an uppercased heading */
.lc { text-transform: none; }

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--brown-700);
  text-transform: none;
  letter-spacing: 0;
}

/* -------------------------------------------------------------- button -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .84rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-600); color: #fff; box-shadow: var(--shadow-md); }

.btn--ghost { border-color: var(--green-700); color: var(--green-800); background: transparent; }
.btn--ghost:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.btn--light { background: #fff; color: var(--green-800); box-shadow: var(--shadow-sm); }
.btn--light:hover { color: var(--green-700); box-shadow: var(--shadow-md); }

.btn--outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--green-800); border-color: #fff; }

.btn--wa { background: #25d366; color: #08331a; }
.btn--wa:hover { background: #1fbb5a; color: #08331a; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* -------------------------------------------------------------- header -- */

.topbar {
  background: var(--green-900);
  color: #b9cbb4;
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: #dbe7d6; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; opacity: .8; }
.topbar-tag { font-family: var(--font-script); font-style: italic; color: var(--brown-300); font-size: .92rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 239, .93);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.site-header .wrap {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 40px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.32rem; letter-spacing: .06em; color: var(--green-900);
  text-transform: uppercase;
}
.brand-sub {
  font-size: .58rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--brown-600); font-weight: 600; margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-900);
  padding: 9px 13px; border-radius: var(--r-sm);
  position: relative;
  transition: color .16s ease, background .16s ease;
}
.nav a:hover { background: var(--leaf-soft); color: var(--green-700); }
.nav a[aria-current="page"] { color: var(--green-600); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--leaf); border-radius: 2px;
}
.header-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px;
  background: var(--green-900); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: calc(var(--header-h) + 1px) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px var(--gut) 26px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: .92rem; }
  .nav a[aria-current="page"]::after { left: 4px; right: auto; width: 22px; bottom: 9px; }
  .header-cta { margin: 18px 0 0; align-self: flex-start; }
  .topbar-left .topbar-item:nth-child(3) { display: none; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  background: var(--green-900);
  color: #d6e3d1;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 12% 12%, rgba(108,178,71,.20), transparent 62%),
    radial-gradient(620px 400px at 88% 88%, rgba(138,90,46,.28), transparent 66%),
    linear-gradient(150deg, #0d2b1a 0%, #14401f 46%, #0d2b1a 100%);
}
.hero .wrap {
  position: relative;
  display: grid; gap: clamp(30px, 4vw, 60px);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding-block: clamp(56px, 7.5vw, 104px);
}
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 .accent { color: var(--leaf); display: block; }
.hero .hero-script {
  font-family: var(--font-script); font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: var(--brown-300);
  margin-bottom: 20px;
}
.hero p.lede { color: #c4d4be; max-width: 52ch; }
.hero .btn-row { margin-top: 30px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .71rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.17);
  color: #dcead7;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.9);
}
.hero-seal {
  position: absolute; right: -14px; bottom: -20px;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--cream); color: var(--green-800);
  border: 3px solid var(--green-700);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.hero-seal b {
  font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1;
  color: var(--green-800); letter-spacing: .02em;
}
.hero-seal span {
  font-size: .52rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  line-height: 1.5;
  color: var(--brown-700); display: block; margin-top: 6px;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 470px; }
  .hero-seal { width: 92px; height: 92px; right: 6px; bottom: -14px; }
}

/* --------------------------------------------------------- page banner -- */

.page-hero {
  position: relative;
  background: var(--green-900);
  color: #cbd8c6;
  padding: clamp(52px, 6.5vw, 84px) 0 clamp(46px, 5.5vw, 68px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 340px at 78% 8%, rgba(108,178,71,.20), transparent 62%),
    linear-gradient(140deg, #0d2b1a, #17472a 60%, #0d2b1a);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero p { color: #bccfb7; max-width: 58ch; margin: 0; }
.page-hero .eyebrow { color: var(--leaf); }
.page-hero .eyebrow::before { background: var(--leaf); }

.crumbs {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: #93a88e; margin-top: 22px;
}
.crumbs a { color: #bccfb7; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .55; margin: 0 8px; }

/* --------------------------------------------------------------- stats -- */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.stat { background: var(--white); padding: 30px 22px; text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--green-700); line-height: 1;
}
.stat span {
  display: block; margin-top: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------- cards -- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--leaf); }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .95rem; margin: 0; }

.icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-800); color: #fff;
  display: grid; place-content: center;
  margin-bottom: 18px;
}
.icon svg { width: 25px; height: 25px; }
.icon--leaf { background: var(--leaf-soft); color: var(--green-700); }
.icon--brown { background: var(--brown-700); }

/* media card (image on top) */
.mcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mcard-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-3); }
.mcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mcard:hover .mcard-img img { transform: scale(1.05); }
.mcard-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.mcard-body h3 { margin-bottom: .45em; }
.mcard-body p { font-size: .94rem; }
.mcard-tag {
  display: inline-block; align-self: flex-start;
  font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-700); background: var(--leaf-soft);
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.mcard-foot { margin-top: auto; padding-top: 16px; }

/* feature row: icon left, text right */
.frow { display: flex; gap: 18px; align-items: flex-start; }
.frow .icon { flex: none; margin-bottom: 0; width: 48px; height: 48px; }
.frow .icon svg { width: 22px; height: 22px; }
.frow h3 { font-size: 1.05rem; margin-bottom: .3em; }
.frow p { font-size: .93rem; margin: 0; }

/* ------------------------------------------------------------- split ---- */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 66px); align-items: center;
}
.split--narrow { grid-template-columns: .85fr 1.15fr; }
.split img { border-radius: var(--r-md); box-shadow: var(--shadow-md); width: 100%; }
@media (max-width: 860px) {
  .split, .split--narrow { grid-template-columns: 1fr; }
  .split .split-media { max-width: 520px; }
}

/* --------------------------------------------------------------- table -- */

.table-scroll { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; }
table.spec { width: 100%; border-collapse: collapse; min-width: 520px; }
table.spec th, table.spec td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec thead th {
  background: var(--green-800); color: #fff;
  font-family: var(--font-display); font-weight: 500;
  font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
}
table.spec tbody th {
  font-family: var(--font-body); font-weight: 700; color: var(--green-900);
  font-size: .92rem; width: 42%;
}
table.spec td { color: var(--body); font-size: .95rem; }
table.spec tbody tr:last-child th, table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec tbody tr:nth-child(even) { background: var(--cream); }

/* ---------------------------------------------------------------- list -- */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 33px; font-size: .96rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--leaf-soft);
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: .55em;
  width: 6px; height: 10px;
  border: solid var(--green-600); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.section--dark .ticks li::before { background: rgba(108,178,71,.22); }
.section--dark .ticks li::after { border-color: var(--leaf); }

/* -------------------------------------------------------------- steps --- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; counter-reset: s; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 22px; position: relative; text-align: center;
}
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em;
  background: var(--green-700); color: #fff;
  padding: 5px 13px; border-radius: var(--r-pill);
}
.step h3 { font-size: .96rem; margin: 10px 0 .5em; }
.step p { font-size: .88rem; margin: 0; }

/* --------------------------------------------------------------- certs -- */

/* 8 badges — an explicit 4-up keeps them as two full rows, never orphaned */
.certs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 900px) { .certs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 14px; text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.cert:hover { border-color: var(--leaf); transform: translateY(-3px); }
.cert-mark {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; border: 2px solid var(--green-700);
  display: grid; place-content: center;
  font-family: var(--font-display); font-size: .78rem; letter-spacing: .04em;
  color: var(--green-800); background: var(--leaf-soft);
  line-height: 1; padding: 4px; text-align: center;
}
.cert b { display: block; font-size: .82rem; color: var(--green-900); letter-spacing: .04em; }
.cert span { display: block; font-size: .74rem; color: var(--muted); margin-top: 3px; }

/* -------------------------------------------------------------- gallery -- */

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
  padding: 12px 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--green-800); background: #fff;
}

/* ----------------------------------------------------------------- cta -- */

.cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-900) 62%, var(--brown-800));
  color: #d3e0ce;
  border-radius: var(--r-lg);
  padding: clamp(38px, 5vw, 62px) clamp(26px, 4vw, 58px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { max-width: 56ch; margin-inline: auto; }
.cta .btn-row { margin-top: 28px; justify-content: center; }

/* ---------------------------------------------------------------- form -- */

.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .76rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--green-900);
}
.field .req { color: var(--brown-600); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  padding: 13px 15px;
  background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(108,178,71,.2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }
.form-msg {
  display: none; margin-top: 18px; padding: 14px 18px;
  border-radius: var(--r-sm); font-size: .92rem;
}
.form-msg.ok  { display: block; background: var(--leaf-soft); color: var(--green-800); border: 1px solid var(--leaf); }
.form-msg.err { display: block; background: #fdece9; color: #8c2f1e; border: 1px solid #e8b4a9; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------ contacts -- */

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon { width: 46px; height: 46px; margin: 0; flex: none; }
.contact-list .icon svg { width: 20px; height: 20px; }
.contact-list h4 {
  margin: 0 0 3px; font-size: .74rem; letter-spacing: .13em; color: var(--muted);
  font-family: var(--font-body); font-weight: 700;
}
.contact-list p, .contact-list a { margin: 0; font-size: 1rem; color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--green-600); }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--green-900); color: #a8bda3; font-size: .93rem; }
.site-footer a { color: #cfdcca; }
.site-footer a:hover { color: #fff; }
.footer-main {
  display: grid; gap: clamp(28px, 4vw, 52px);
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  padding: clamp(48px, 6vw, 76px) 0 clamp(34px, 4vw, 48px);
}
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand img { width: 42px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--brown-300); }
.footer-tag { font-family: var(--font-script); font-style: italic; color: var(--brown-300); margin-bottom: 14px; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .15em; margin-bottom: 18px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .92rem; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; font-size: .92rem; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; flex: none; margin-top: 5px; color: var(--leaf); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 22px 0 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #87a081;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); } }

/* --------------------------------------------------------- float / wa --- */

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #073b1c;
  display: grid; place-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.24);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #073b1c; }
.wa-float svg { width: 29px; height: 29px; }

/* --------------------------------------------------------- animations --- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .wa-float, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
