/* =====================================================================
   AGN COMMODITIES — shared stylesheet (v2, elevated)
   Edit colours & fonts in :root. One file styles every page.
   ===================================================================== */
:root {
  --field: #1F3A29;
  /* deep field green — dark sections, headings  */
  --field-2: #15301F;
  /* darker green for depth                      */
  --leaf: #356B43;
  /* brighter leaf green — accents               */
  --olive: #7C8B5A;
  /* soft olive — decorative                     */
  --cream: #F7F2E7;
  /* warm farmhouse background                   */
  --cream-2: #EFE7D5;
  /* deeper cream for alt sections               */
  --paper: #FFFFFF;
  --ink: #243121;
  /* warm near-black for body text               */
  --sage: #626E59;
  /* muted olive — secondary text                */
  --gold: #C8923A;
  /* harvest gold accent                         */
  --gold-deep: #A06E1C;
  --line: #E4DBC7;
  /* warm hairline                               */
  --line-dk: rgba(255, 255, 255, .16);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Poppins', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --r: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 30px 60px -34px rgba(20, 40, 26, .5);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden
}

/* subtle paper grain so flat areas don't read as sterile */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E")
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 600
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px
}

/* section heading system — Agrarium-style: small italic kicker + big serif */
.kicker {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem
}

.kicker::before {
  content: "";
  width: 30px;
  height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 18'%3E%3Cpath d='M2 14C10 4 20 4 38 14' stroke='%23C8923A' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M20 9c0-3 3-6 8-7-1 4-4 7-8 7Z' fill='%23356B43'/%3E%3C/svg%3E")
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--field);
  letter-spacing: -.02em
}

.lead {
  color: var(--sage);
  font-size: 1.07rem
}

/* buttons */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  border: 0;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s
}

.btn-primary {
  background: var(--gold);
  color: #241704;
  box-shadow: 0 12px 26px -12px rgba(200, 146, 58, .85)
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d59f3f
}

.btn-dark {
  background: var(--field);
  color: #f3f6ee
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: var(--leaf)
}

.btn-ghost {
  background: transparent;
  color: var(--field);
  border: 1.5px solid var(--line)
}

.btn-ghost:hover {
  border-color: var(--field);
  transform: translateY(-2px)
}

.on-dark .btn-ghost {
  color: #fff;
  border-color: var(--line-dk)
}

.on-dark .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06)
}

.btn .arr {
  transition: transform .25s var(--ease)
}

.btn:hover .arr {
  transform: translateX(4px)
}

.coldchip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .82rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line-dk);
  color: #eef3ea
}

.coldchip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fd3a6;
  box-shadow: 0 0 0 4px rgba(143, 211, 166, .2)
}

/* TOP BAR */
.topbar {
  background: var(--field-2);
  color: #cdddc8;
  font-size: .85rem
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 44px
}

.topbar .tinfo {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap
}

.topbar .tinfo span {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.topbar .tinfo a {
  color: #e6efe2
}

.topbar .tinfo a:hover {
  color: var(--gold)
}

.topbar svg {
  color: var(--gold)
}

.topbar .tsocial {
  display: flex;
  gap: 14px
}

.topbar .tsocial a {
  color: #cdddc8;
  opacity: .85
}

.topbar .tsocial a:hover {
  opacity: 1;
  color: var(--gold)
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 231, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--field);
  letter-spacing: -.01em
}

.brand .mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto
}

.navlinks {
  display: flex;
  gap: 2.1rem;
  align-items: center
}

.navlinks a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--field);
  opacity: .8;
  transition: opacity .2s;
  position: relative
}

.navlinks a:hover {
  opacity: 1
}

.navlinks a.active {
  opacity: 1;
  font-weight: 600
}

.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px
}

.burger span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--field);
  margin: 4px auto;
  transition: .3s
}

/* HERO (home) */
.hero {
  position: relative;
  overflow: hidden;
  color: #f3f6ee;
  background-color: var(--field-2);
  background-position: center;
  background-size: cover
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 36, 23, .94) 0%, rgba(16, 36, 23, .74) 46%, rgba(16, 36, 23, .4) 100%)
}

.hero .wrap {
  position: relative;
  padding-top: 120px;
  padding-bottom: 130px
}

.hero-inner {
  max-width: 680px
}

.hero .kicker {
  color: #e9c98a
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  line-height: 1.04;
  color: #fff;
  margin: .6rem 0 1.4rem;
  letter-spacing: -.02em
}

.hero h1 .warm {
  color: var(--gold);
  font-style: italic
}

.hero p.lead {
  font-size: 1.16rem;
  color: #dde7d6;
  max-width: 48ch;
  margin-bottom: 2.2rem
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem
}

.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 14%;
  background: rgba(247, 242, 231, .97);
  color: var(--field);
  border-radius: 16px;
  padding: 20px 22px;
  width: 230px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg)
}

.hero-badge .bn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--field);
  line-height: 1
}

.hero-badge .bn span {
  color: var(--gold)
}

.hero-badge .bl {
  font-size: .85rem;
  color: var(--sage);
  margin-top: 6px
}

@media(max-width:1024px) {
  .hero-badge {
    display: none
  }
}

/* PAGE HERO (sub-pages) */
.phero {
  position: relative;
  overflow: hidden;
  color: #f3f6ee;
  background-color: var(--field-2);
  background-position: center;
  background-size: cover
}

.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(16, 36, 23, .93), rgba(16, 36, 23, .62))
}

.phero .wrap {
  position: relative;
  padding: 92px 24px 84px
}

.phero .crumb {
  font-size: .84rem;
  letter-spacing: .04em;
  color: #bcd0b8;
  margin-bottom: 14px
}

.phero .crumb a {
  color: var(--gold)
}

.phero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  max-width: 20ch;
  letter-spacing: -.02em
}

.phero p {
  color: #d8e2d0;
  font-size: 1.1rem;
  max-width: 54ch;
  margin-top: 16px
}

/* STANDARDS / TRUST STRIP */
.strip {
  background: var(--field);
  color: #dde8db
}

.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  padding: 22px 24px
}

.strip .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .86rem;
  color: #e8f1e6
}

.strip .badge svg {
  color: var(--gold);
  flex: 0 0 auto
}

.strip .vline {
  width: 1px;
  height: 22px;
  background: var(--line-dk)
}

@media(max-width:680px) {
  .strip .vline {
    display: none
  }
}

/* sections */
section {
  padding: 104px 0;
  position: relative
}

section.tight {
  padding: 78px 0
}

.alt {
  background: var(--cream-2)
}

.sec-head {
  max-width: 680px;
  margin-bottom: 56px
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.sec-head .h2 {
  margin: .2rem 0 1rem
}

.sec-head .lead {
  font-size: 1.06rem
}

/* decorative leaf accent (corner of some sections) */
.leafdec {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: .5;
  pointer-events: none;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 92C20 80 8 50 14 12 52 18 78 44 70 86c-2-22-14-40-34-52' fill='none' stroke='%23356B43' stroke-width='2.5' opacity='.5'/%3E%3C/svg%3E")
}

/* split row (image + text) */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center
}

.split.rev .media-wrap {
  order: 2
}

.split .copy .h2 {
  margin: .3rem 0 1.2rem
}

.split .copy p {
  color: var(--sage);
  margin-bottom: 1.05rem;
  font-size: 1.05rem
}

.split .copy p strong {
  color: var(--field);
  font-weight: 600
}

.media-wrap {
  position: relative
}

.media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--leaf), var(--field-2));
  box-shadow: var(--shadow)
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.media.img-fail img {
  display: none
}

.media2 {
  position: absolute;
  width: 46%;
  aspect-ratio: 1/1;
  right: -22px;
  bottom: -28px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--olive), var(--leaf))
}

.media2 img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.media2.img-fail img {
  display: none
}

.float-badge {
  position: absolute;
  left: -20px;
  top: 24px;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3
}

.float-badge .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 146, 58, .16);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  flex: 0 0 auto
}

.float-badge b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--field);
  display: block;
  line-height: 1.1
}

.float-badge span {
  font-size: .78rem;
  color: var(--sage)
}

@media(max-width:920px) {
  .media2 {
    display: none
  }

  .float-badge {
    left: 14px
  }
}

/* signature */
.sign {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px
}

.sign .sname {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--field)
}

.sign .srole {
  font-size: .85rem;
  color: var(--sage)
}

/* product cards */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.pcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column
}

.pcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.ph {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--leaf), var(--field-2))
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease)
}

.pcard:hover .ph img {
  transform: scale(1.07)
}

.ph.img-fail img {
  display: none
}

.tag {
  position: absolute;
  left: 14px;
  top: 14px;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--field);
  background: var(--cream);
  padding: .4rem .8rem;
  border-radius: 999px;
  z-index: 2
}

.pcard .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.pcard h3 {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--field)
}

.pcard p {
  color: var(--sage);
  font-size: .94rem;
  flex: 1
}

.pcard .more {
  margin-top: 16px;
  font-weight: 600;
  font-size: .86rem;
  color: var(--gold-deep);
  display: inline-flex;
  gap: .4rem;
  align-items: center
}

.pcard:hover .more {
  color: var(--field)
}

.pcard.cta {
  background: linear-gradient(158deg, var(--leaf), var(--field-2));
  border-color: transparent;
  color: #eef4ea;
  justify-content: center
}

.pcard.cta h3 {
  color: #fff
}

/* product detail rows */
.prow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line)
}

.prow:first-of-type {
  border-top: 0;
  padding-top: 8px
}

.prow.rev .pmedia {
  order: 2
}

.pmedia {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(150deg, var(--leaf), var(--field-2));
  position: relative;
  box-shadow: var(--shadow)
}

.pmedia img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pmedia.img-fail img {
  display: none
}

.prow h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: .7rem;
  color: var(--field)
}

.prow .lead-p {
  color: var(--sage);
  margin-bottom: 18px;
  font-size: 1.04rem
}

.spec {
  list-style: none;
  display: grid;
  gap: 11px
}

.spec li {
  display: flex;
  gap: 11px;
  font-size: .96rem;
  color: var(--ink)
}

.spec li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 3px;
  flex: 0 0 auto;
  background: no-repeat center/12px rgba(53, 107, 67, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23356B43' stroke-width='3'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E")
}

.spec li b {
  font-weight: 600
}

/* process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px
}

.step {
  position: relative;
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.step .no {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  background: var(--field);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: .45rem;
  color: var(--field);
  font-weight: 600
}

.step p {
  color: var(--sage);
  font-size: .92rem
}

/* why grid (dark) */
.why {
  background: var(--field-2);
  color: #dfeada;
  overflow: hidden
}

.why .h2 {
  color: #fff
}

.why .lead {
  color: #a9c2a8
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.wcell {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-dk);
  padding: 32px 26px;
  border-radius: var(--r);
  transition: background .25s, transform .3s var(--ease)
}

.wcell:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-5px)
}

.wcell .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 146, 58, .18);
  margin-bottom: 18px;
  color: var(--gold)
}

.wcell h3 {
  font-size: 1.22rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: .55rem
}

.wcell p {
  color: #aec5ac;
  font-size: .94rem
}

/* counters */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.counter .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--field);
  line-height: 1
}

.counter .n i {
  font-style: normal;
  color: var(--gold)
}

.counter .l {
  color: var(--sage);
  font-size: .95rem;
  margin-top: .5rem
}

.on-dark .counter .n {
  color: #fff
}

.on-dark .counter .l {
  color: #bcd0b8
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.gitem {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--leaf), var(--field-2))
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.gitem:hover img {
  transform: scale(1.08)
}

.gitem.tall {
  grid-row: span 2
}

.gitem .gcap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
  z-index: 2
}

.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 36, 23, .55), transparent 55%)
}

.gitem.img-fail img {
  display: none
}

/* testimonials */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.tcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative
}

.tcard .quote {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--gold);
  opacity: .45;
  height: 28px
}

.tcard p {
  color: var(--ink);
  font-size: 1rem;
  margin: 8px 0 22px
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px
}

.tcard .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--leaf), var(--field));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  flex: 0 0 auto
}

.tcard .who b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  color: var(--field);
  font-size: 1.02rem
}

.tcard .who span {
  font-size: .84rem;
  color: var(--sage)
}

/* ordering spec */
.order {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper)
}

.order div {
  padding: 24px 26px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line)
}

.order div:nth-child(-n+2) {
  border-top: 0
}

.order div:nth-child(2n) {
  border-right: 0
}

.order dt {
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px
}

.order dd {
  font-size: 1.02rem;
  color: var(--field);
  font-family: var(--display)
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto
}

.qa {
  border-bottom: 1px solid var(--line)
}

.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--field);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center
}

.qa summary::-webkit-details-marker {
  display: none
}

.qa summary .pm {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform .25s
}

.qa summary .pm::before,
.qa summary .pm::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px
}

.qa summary .pm::before {
  left: 4px;
  right: 4px;
  top: 12px;
  height: 2px
}

.qa summary .pm::after {
  top: 4px;
  bottom: 4px;
  left: 12px;
  width: 2px;
  transition: opacity .25s
}

.qa[open] summary .pm::after {
  opacity: 0
}

.qa p {
  padding: 0 0 26px;
  color: var(--sage);
  font-size: 1rem;
  max-width: 64ch
}

/* CTA band */
.ctaband {
  position: relative;
  overflow: hidden;
  color: #eef4ea;
  background-color: var(--field-2);
  background-size: cover;
  background-position: center
}

.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 36, 23, .95), rgba(16, 36, 23, .78))
}

.ctaband .wrap {
  position: relative;
  padding: 86px 24px;
  text-align: center
}

.ctaband .h2 {
  color: #fff;
  max-width: 22ch;
  margin: .3rem auto 14px
}

.ctaband p {
  color: #cdddc8;
  max-width: 48ch;
  margin: 0 auto 28px
}

/* contact */
.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start
}

.cinfo .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px
}

.cinfo .ic {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold-deep)
}

.cinfo .row b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--field)
}

.cinfo .row span {
  color: var(--sage);
  font-size: .96rem
}

.cinfo .row a {
  color: var(--sage)
}

.cinfo .row a:hover {
  color: var(--gold-deep)
}

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px;
  box-shadow: var(--shadow)
}

.field {
  margin-bottom: 18px
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field label {
  display: block;
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: .45rem;
  color: var(--field)
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--body);
  font-size: .96rem;
  padding: .85rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, background .2s
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff
}

.field textarea {
  resize: vertical;
  min-height: 130px
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.form .btn-primary {
  width: 100%;
  justify-content: center
}

.form .note {
  font-size: .78rem;
  color: var(--sage);
  margin-top: 12px;
  text-align: center
}

.formmsg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: .92rem
}

.formmsg.ok {
  display: block;
  background: rgba(53, 107, 67, .12);
  color: var(--leaf)
}

.formmsg.err {
  display: block;
  background: rgba(168, 60, 40, .1);
  color: #a8442c
}

/* footer */
footer {
  background: var(--field-2);
  color: #b3c6b1;
  padding: 70px 0 30px
}

.fgrid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 46px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1rem
}

.fcol p {
  font-size: .93rem;
  max-width: 32ch
}

.fcol h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1rem
}

.fcol a {
  display: block;
  font-size: .94rem;
  margin-bottom: .65rem;
  opacity: .85
}

.fcol a:hover {
  opacity: 1;
  color: var(--gold)
}

.fsoc {
  display: flex;
  gap: 12px;
  margin-top: 6px
}

.fsoc a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  opacity: .85
}

.fsoc a:hover {
  opacity: 1;
  background: var(--gold);
  color: #241704
}

.fbar {
  border-top: 1px solid var(--line-dk);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: #86a384
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* responsive */
@media(max-width:920px) {
  .topbar {
    display: none
  }

  .navlinks,
  .nav-cta .btn {
    display: none
  }

  .burger {
    display: block
  }

  .split,
  .cgrid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .split.rev .media-wrap {
    order: 0
  }

  .prow,
  .prow.rev {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .prow.rev .pmedia {
    order: 0
  }

  .pgrid {
    grid-template-columns: 1fr 1fr
  }

  .wgrid,
  .counters {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .tgrid {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }

  .fgrid {
    grid-template-columns: 1fr 1fr
  }

  section {
    padding: 74px 0
  }

  .navlinks.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    gap: 1rem
  }

  .navlinks.open a.active::after {
    display: none
  }
}

@media(max-width:560px) {

  .pgrid,
  .steps,
  .order,
  .frow,
  .wgrid,
  .fgrid {
    grid-template-columns: 1fr
  }

  .counters {
    grid-template-columns: 1fr 1fr
  }

  .fbar {
    flex-direction: column
  }

  .gitem.tall {
    grid-row: span 1
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  html {
    scroll-behavior: auto
  }
}