:root {
  --bg0: #f3f4f6;
  --bg1: #eef0f2;
  --surface: rgba(255,255,255,0.62);
  --surface2: rgba(255,255,255,0.78);
  --ink: #0b0f12;
  --muted: rgba(11, 15, 18, 0.66);
  --muted2: rgba(11, 15, 18, 0.48);
  --line: rgba(11, 15, 18, 0.12);

  --accent: #006030;
  --accent2: #0a7a43;

  --silver: rgba(255,255,255,0.9);
  --shadow: 0 24px 60px rgba(0,0,0,0.12);
  --shadow2: 0 14px 34px rgba(0,0,0,0.10);

  --r1: 18px;
  --r2: 26px;

  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(0,96,48,0.12), transparent 55%),
              radial-gradient(1200px 800px at 80% 30%, rgba(0,96,48,0.10), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.h1 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}

.h2 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 520;
  font-size: clamp(28px, 3.0vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 22px;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.14));
  border-top: 1px solid rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.sectionHead {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 74ch;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(243, 244, 246, 0.64);
  border-bottom: 1px solid rgba(255,255,255,0.75);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  border: none;
  display: grid;
  place-items: center;
  overflow: visible;
}
.brand__mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}
.brand__name {
  font-weight: 760;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 12px;
  color: var(--muted2);
}

.nav {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.45);
}
.nav a {
  font-size: 13px;
  padding: 10px 8px;
  color: rgba(11, 15, 18, 0.72);
  transition: color .2s ease;
}
.nav a:hover { color: rgba(11, 15, 18, 0.96); }

.header__cta {
  display: inline-flex;
  gap: 10px;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.14);
  background: rgba(255,255,255,0.65);
  color: rgba(11, 15, 18, 0.86);
  font-weight: 680;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}
.btn:active { transform: translateY(0px) scale(0.99); }

.btn--primary {
  color: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.20);
  background: radial-gradient(140% 140% at 20% 0%, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
              linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 36px rgba(0,96,48,0.22);
}
.btn--primary:hover {
  box-shadow: 0 22px 44px rgba(0,96,48,0.28);
}

.btn--ghost {
  background: rgba(255,255,255,0.40);
}

.navToggle {
  flex-direction: column;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.45);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.navToggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 15, 18, 0.75);
  border-radius: 2px;
}

.mobileNav { display: none; }
.mobileNav__panel {
  width: min(520px, calc(100% - 28px));
  margin: 12px auto 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px;
  box-shadow: var(--shadow2);
  display: grid;
  gap: 10px;
}
.mobileNav__panel a:not(.btn) {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,18,0.08);
  background: rgba(255,255,255,0.55);
  color: rgba(11,15,18,0.86);
}
.mobileNav__panel .mobileNav__btn{
  margin-top: 6px;
  background: linear-gradient(135deg, rgba(0,96,48,0.96), rgba(0,96,48,0.86));
  color: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  padding: 12px 14px;
  border-radius: 14px;
  text-align:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
} { margin-top: 6px; }

.hero {
  padding: 74px 0 84px;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.12);
  background: rgba(255,255,255,0.60);
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  font-size: 13px;
  color: rgba(11, 15, 18, 0.76);
}
.badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,96,48,0.12);
}

.hero__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.metaCard {
  padding: 14px 14px 15px;
  border-radius: var(--r1);
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.50);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.metaCard__title {
  font-weight: 780;
  font-size: 13px;
}
.metaCard__desc {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(11,15,18,0.62);
}

.hero__visual {
  position: relative;
  min-height: 520px;
}
.heroCard {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.72);
  background: radial-gradient(120% 120% at 25% 10%, rgba(255,255,255,0.65), rgba(255,255,255,0.18)),
              linear-gradient(180deg, rgba(255,255,255,0.50), rgba(255,255,255,0.22));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.heroCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,96,48,0.30), rgba(255,255,255,0.0), rgba(0,96,48,0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.heroCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.heroCard__logo {
  width: 94px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.76));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.heroCard__logo img {
  width: 124px;
  height: auto;
  transform: translateY(1px);
}
.heroCard__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.12);
  background: rgba(255,255,255,0.55);
  font-size: 12px;
  color: rgba(11,15,18,0.70);
}
.chipDot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,96,48,0.12);
}

.heroCard__dial {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.46);
}

.dial {
  width: 220px;
  height: 220px;
  position: relative;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65), rgba(255,255,255,0.18)),
              radial-gradient(circle at 70% 70%, rgba(0,96,48,0.10), rgba(255,255,255,0.0));
  border: 1px solid rgba(11,15,18,0.10);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
  overflow: hidden;
}
.dial__ring {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.16);
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.55), rgba(255,255,255,0.10));
}
.dial__ticks {
  position: absolute;
  inset: 0;
  background:
    /* minor ticks */
    repeating-conic-gradient(from 210deg,
      rgba(11,15,18,0.0) 0deg,
      rgba(11,15,18,0.0) 5deg,
      rgba(11,15,18,0.14) 5deg,
      rgba(11,15,18,0.14) 5.7deg
    ),
    /* major ticks */
    repeating-conic-gradient(from 210deg,
      rgba(11,15,18,0.0) 0deg,
      rgba(11,15,18,0.0) 25deg,
      rgba(11,15,18,0.22) 25deg,
      rgba(11,15,18,0.22) 26.3deg
    );
  mask: radial-gradient(circle at 50% 50%, transparent 0 58%, #000 59% 100%);
  opacity: 0.9;
}
.dial__needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 82px;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(0,96,48,0.95));
  transform-origin: bottom;
  transform: translate(-50%, -100%) rotate(-120deg);
  filter: drop-shadow(0 10px 16px rgba(0,96,48,0.25));
}
.dial__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: rgba(11,15,18,0.86);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(0,96,48,0.10);
}

.dialLabel { text-align: right; }
.dialLabel__kicker {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(11,15,18,0.55);
}
.dialLabel__value {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.dialLabel__sub {
  color: rgba(11,15,18,0.56);
  margin-top: 6px;
  font-size: 13px;
}

.heroCard__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.miniStat {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.46);
  padding: 12px;
}
.miniStat__num { font-weight: 820; }
.miniStat__lbl {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(11,15,18,0.60);
  line-height: 1.45;
}

.floatText {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.50);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
  font-size: 12px;
  color: rgba(11,15,18,0.72);
  backdrop-filter: blur(10px);
}
.floatText--a { top: 104px; right: 18px; transform: rotate(2deg); }
.floatText--b { bottom: 120px; left: -12px; transform: rotate(-2deg); }
.floatText--c { bottom: 10px; right: 18px; }

.hero__scroll {
  margin-top: 34px;
  display: grid;
  place-items: center;
}
.hero__scroll a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(11,15,18,0.56);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.scrollPip {
  width: 18px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.20);
  position: relative;
  background: rgba(255,255,255,0.35);
}
.scrollPip::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--accent);
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: pip 1.4s ease-in-out infinite;
}
@keyframes pip {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(12px); opacity: 0.35; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0.15; }
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(11,15,18,0.10);
  background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.65), rgba(255,255,255,0.20)),
              linear-gradient(135deg, rgba(0,96,48,0.12), rgba(255,255,255,0.0));
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 14px 26px rgba(0,0,0,0.08);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0 0 12px;
  color: rgba(11,15,18,0.66);
  line-height: 1.6;
  font-size: 13.5px;
}
.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(11,15,18,0.62);
  font-size: 13px;
  line-height: 1.6;
}
.bullets li { margin: 6px 0; }

.callout {
  margin-top: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.75);
  background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.62), rgba(255,255,255,0.22)),
              linear-gradient(135deg, rgba(0,96,48,0.10), rgba(255,255,255,0.0));
  box-shadow: 0 20px 54px rgba(0,0,0,0.10);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.callout__title { font-weight: 820; margin-bottom: 6px; }
.callout__text {
  color: rgba(11,15,18,0.64);
  line-height: 1.6;
  font-size: 13.5px;
  max-width: 75ch;
}
.callout__right {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.whyGrid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 14px;
}
.whyBlock {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  padding: 18px;
}
.whyBlock h3 { margin: 0 0 8px; font-size: 16px; }
.whyBlock p { margin: 0; color: rgba(11,15,18,0.66); line-height: 1.65; }
.whyBlock--stats {
  background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.62), rgba(255,255,255,0.22)),
              linear-gradient(135deg, rgba(0,96,48,0.10), rgba(255,255,255,0.0));
}
.stats { display: grid; gap: 10px; }
.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11,15,18,0.10);
  background: rgba(255,255,255,0.55);
}
.stat__num {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.stat__lbl {
  font-weight: 740;
  font-size: 13px;
  color: rgba(11,15,18,0.70);
}
.statsNote {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(11,15,18,0.62);
  font-size: 13px;
}
.statsNote__dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,96,48,0.12);
}

.steps { display: grid; gap: 12px; }
.step {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 860;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 36px rgba(0,96,48,0.22);
}
.step__body h3 { margin: 4px 0 6px; font-size: 16px; }
.step__body p { margin: 0; color: rgba(11,15,18,0.66); line-height: 1.65; }

.statement {
  margin-top: 20px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.78);
  background: radial-gradient(120% 120% at 15% 0%, rgba(255,255,255,0.70), rgba(255,255,255,0.22)),
              linear-gradient(135deg, rgba(0,96,48,0.12), rgba(255,255,255,0.0));
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  padding: 22px;
  text-align: center;
}
.statement__kicker {
  font-weight: 860;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(11,15,18,0.56);
}
.statement__text {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.statement__sub {
  margin-top: 10px;
  color: rgba(11,15,18,0.62);
  line-height: 1.65;
}

.contactGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.contactCard {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  padding: 18px;
}
.contactCard__title {
  font-weight: 860;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(11,15,18,0.56);
}
.contactCard__name {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.contactCard__role { margin-top: 6px; color: rgba(11,15,18,0.62); }
.contactCard__links { margin-top: 14px; display: grid; gap: 10px; }
.contactLink {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11,15,18,0.10);
  background: rgba(255,255,255,0.55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.contactLink:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.10);
}
.contactLink__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(11,15,18,0.10);
  background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.65), rgba(255,255,255,0.20)),
              linear-gradient(135deg, rgba(0,96,48,0.12), rgba(255,255,255,0.0));
}
.contactLink__icon svg { width: 18px; height: 18px; }
.contactCard__note {
  margin-top: 14px;
  color: rgba(11,15,18,0.62);
  line-height: 1.65;
  font-size: 13px;
}

.form {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  padding: 18px;
}
.form label { display: grid; gap: 8px; margin-bottom: 12px; }
.form span { font-weight: 740; font-size: 12px; color: rgba(11,15,18,0.70); }
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,15,18,0.14);
  background: rgba(255,255,255,0.70);
  font: inherit;
  color: rgba(11,15,18,0.86);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { resize: vertical; min-height: 140px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(0,96,48,0.42);
  box-shadow: 0 0 0 6px rgba(0,96,48,0.12);
}
.formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.formActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.formFineprint { font-size: 12px; color: rgba(11,15,18,0.56); }

.footer {
  margin-top: 44px;
  padding: 18px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.65);
}
.footerBrand { display: inline-flex; align-items: center; gap: 10px; }
.footerBrand__mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
}
.footerBrand__mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.footerBrand__text { font-weight: 800; }
.footer__small {
  margin-top: 10px;
  color: rgba(11,15,18,0.58);
  font-size: 13px;
  line-height: 1.6;
  max-width: 52ch;
}
.footer__right { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.footer__right a {
  font-size: 13px;
  color: rgba(11,15,18,0.72);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,18,0.10);
  background: rgba(255,255,255,0.48);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.footer__right a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.62);
  color: rgba(11,15,18,0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: multiply;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.ambient__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.65;
}
.ambient__glow--a {
  left: -220px;
  top: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(0,96,48,0.26), rgba(255,255,255,0));
}
.ambient__glow--b {
  right: -260px;
  bottom: -320px;
  background: radial-gradient(circle at 40% 35%, rgba(0,96,48,0.20), rgba(255,255,255,0));
}
.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background:
    linear-gradient(to right, rgba(11,15,18,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,15,18,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask: radial-gradient(circle at 50% 0%, #000 0 55%, transparent 80%);
}

main { position: relative; z-index: 1; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(1200px 800px at 25% 15%, rgba(0,96,48,0.18), rgba(0,0,0,0.0) 55%),
              linear-gradient(180deg, rgba(8,10,12,0.98), rgba(8,10,12,0.92));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.loader__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.loader__ui {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 44px));
  display: grid;
  place-items: center;
  text-align: center;
}
.loader__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0,96,48,0.18);
  animation: pulse 1.2s ease-in-out infinite;
}
.loader__hint {
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  60% { transform: scale(1.0); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}
.loader.is-hidden {
  pointer-events: none;
  animation: fadeOut .7s ease forwards;
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes pip {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(12px); opacity: 0.35; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0.15; }
}

@media (max-width: 980px) {
  .header__inner { grid-template-columns: 1fr auto; }
  .nav, .header__cta { display: none; }
  .navToggle { display: inline-flex; justify-self: end; }
  .mobileNav { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; }
  .dial { width: 200px; height: 200px; }
  .heroCard__dial { grid-template-columns: 1fr; text-align: left; }
  .dialLabel { text-align: left; }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .whyGrid { grid-template-columns: 1fr; }
  .contactGrid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { padding: 62px 0 74px; }
  .hero__meta { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr; }
  .formRow { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
.footer__copy{
  margin-top: 10px;
  color: rgba(11,15,18,0.52);
  font-size: 12px;
}
.fieldLabel{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fieldLabel.req::after{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,96,48,0.12);
  transform: translateY(1px);
}
.dial__labels{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dial__lbl{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: rotate(var(--a)) translate(0, -94px) rotate(calc(var(--a) * -1));
  transform-origin: center;
  font-size: 11px;
  font-weight: 760;
  color: rgba(11,15,18,0.52);
}

.heroCard__logo img{
  width:48px;
  height:48px;
}

.heroCard__logo{
  background:none !important;
  box-shadow:none !important;
}
.heroCard__logo img{
  width:72px;
  height:72px;
}

select{
  appearance:none;
  -webkit-appearance:none;
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(11,15,18,0.12);
  border-radius:14px;
  padding:14px 42px 14px 14px;
  font-family:inherit;
  font-size:14px;
  color:#0b0f12;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 4px),
    calc(100% - 14px) calc(1em + 4px);
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
}

select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(0,96,48,0.15);
}

/* NAV LOGO REAL SCALE + ALIGN */
.header__inner{
  align-items:center !important;
}
.brand__mark{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand__mark img{
  width:64px !important;
  height:64px !important;
}

/* FOOTER LOGO SCALE */
.footerBrand__mark{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.footerBrand__mark img{
  width:48px !important;
  height:48px !important;
}

/* HERO LOGO ABOVE DIAL */
.heroCard__logo{
  position:relative;
  z-index:5;
  margin-bottom:12px;
}
.heroCard__logo img{
  width:96px !important;
  height:96px !important;
}

/* ensure dial sits behind */
.heroCard__dial{
  position:relative;
  z-index:1;
}

/* FORM SELECT STYLING */
.form select{
  appearance:none;
  -webkit-appearance:none;
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(11,15,18,0.12);
  border-radius:14px;
  padding:14px 42px 14px 14px;
  font-family:inherit;
  font-size:14px;
  color:#0b0f12;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 18px,
    calc(100% - 14px) 18px;
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
}

.form select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(0,96,48,0.15);
}

.heroCard{
  overflow: visible !important;
}


/* Custom Select (DBT style adapted) */
.select{
  position:relative;
}
.selectBtn{
  width:100%;
  text-align:left;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(11,15,18,0.12);
  border-radius:14px;
  padding:14px;
  cursor:pointer;
  font-family:inherit;
}
.selectBtn::after{
  content:"";
  position:absolute;
  right:16px;
  top:50%;
  width:6px;
  height:6px;
  border-right:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
  transform:translateY(-50%) rotate(45deg);
}
.selectList{
  position:absolute;
  inset:auto 0 0 0;
  transform:translateY(6px);
  background:white;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  padding:6px;
  display:none;
  z-index:10;

  max-height: 260px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.select.open .selectList{display:block;}
.selectOpt{
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}
.selectOpt:hover{
  background:rgba(0,96,48,.08);
}


/* Footer layout reset (desktop row, mobile column) */
.footer{
  flex-direction: row !important;
  align-items: flex-start !important;
}
@media (max-width: 820px){
  .footer{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .footer__right{
    margin-top: 14px;
  }
}
.footer__right{
  justify-content: flex-end;
  margin-left: auto;
}

/* Hero logo visibility fixes */
.heroCard__logo{
  overflow: visible !important;
  height: auto !important;
}
.heroCard__logo img{
  display:block;
}

/* Custom select polish */
.selectBtn{
  position: relative;
  color: rgba(11,15,18,0.82);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}
.selectBtn:hover{
  background: rgba(255,255,255,0.86);
}
.select.open .selectBtn{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,96,48,0.12);
}
.selectList{
  top: calc(100% + 8px);
  bottom: auto;
  left: 0;
  right: 0;
  display:none;
  max-height: 240px;
  overflow:auto;
  border: 1px solid rgba(11,15,18,0.10);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
}
.selectOpt{
  color: rgba(11,15,18,0.86);
}
.selectOpt:active{
  transform: translateY(1px);
}
.selectValue{
  position:absolute;
  opacity:0;
  pointer-events:none;
  height:1px;
  width:1px;
  left:0;
  top:0;
}


/* Contact form: restore original layout (service + message stacked full-width) */
.formGrid .field--service,
.formGrid .field--message{
  grid-column: 1 / -1;
}

.formGrid .field--service{
  margin-top: 4px;
}

.formGrid .field--message{
  margin-top: 2px;
}

/* Ensure custom select button matches input height */
.formGrid .field--service .selectBtn{
  height: 48px;
  display:flex;
  align-items:center;
}

}
/* Contact form layout reset */
.formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.formRow--full{
  grid-template-columns: 1fr;
}
.formRow--actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}
.formNote{
  color: rgba(11,15,18,0.48);
  font-size: 12px;
}

@media (max-width: 760px){
  .formRow{ grid-template-columns: 1fr; }
  .formRow--actions{ flex-direction: column; align-items:flex-start; }
}

/* Custom select (match inputs) */
.select{
  position:relative;
}
.selectValue{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.selectBtn{
  width:100%;
  text-align:left;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(11,15,18,0.12);
  border-radius:14px;
  padding:14px 42px 14px 14px;
  cursor:pointer;
  font-family:inherit;
  font-size:14px;
  color:#0b0f12;
  height: 48px;
  display:flex;
  align-items:center;
}
.selectBtn::after{
  content:"";
  position:absolute;
  right:16px;
  top:50%;
  width:7px;
  height:7px;
  border-right:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
  transform:translateY(-50%) rotate(45deg);
}
.selectList{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 8px);
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(11,15,18,0.10);
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,.14);
  padding:6px;
  display:none;
  z-index:50;
  backdrop-filter: blur(10px);
}
.select.open .selectList{ display:block; }
.selectOpt{
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  color: rgba(11,15,18,0.85);
}
.selectOpt:hover{
  background:rgba(0,96,48,.08);
}
.selectBtn:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(0,96,48,0.15);
}

@media (max-width: 760px){
  .callout{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    padding: 16px;
  }
  .callout__text{ max-width: none; }
  .callout__right{ justify-content: flex-start; }
}
