:root {
  --green: #164525;
  --green-2: #2f7445;
  --mint: #b9f3c6;
  --ink: #414941;
  --muted: #707772;
  --line: #d6dfd8;
  --soft: #f4f7fb;
  --white: #fff;
  --footer: #2b3031;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

h1, h2, h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

p { margin: 0; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: start center;
  padding: 24px;
  background: var(--soft);
  opacity: 1;
  visibility: visible;
  transition: opacity .28s ease, visibility .28s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.skeleton-wrap {
  width: min(1060px, 100%);
}
.skeleton-nav,
.skeleton-hero,
.skeleton-cards span,
.skeleton-hero span {
  overflow: hidden;
  position: relative;
  background: #e7ecee;
}
.skeleton-nav::after,
.skeleton-hero span::after,
.skeleton-cards span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  animation: skeleton-shimmer 1.25s infinite;
}
.skeleton-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(31,42,68,.06);
}
.skeleton-nav span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #e7ecee;
}
.skeleton-nav span:nth-child(1) { width: 150px; }
.skeleton-nav span:nth-child(2) { width: 210px; }
.skeleton-nav span:nth-child(3) { width: 140px; }
.skeleton-hero {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  margin-top: 28px;
  padding: 76px 72px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
}
.skeleton-hero div,
.skeleton-cards {
  display: grid;
  gap: 18px;
}
.skeleton-hero span {
  display: block;
  height: 22px;
  border-radius: 999px;
}
.skeleton-hero div:first-child span:nth-child(1) { width: 84%; height: 48px; }
.skeleton-hero div:first-child span:nth-child(2) { width: 70%; height: 48px; }
.skeleton-hero div:first-child span:nth-child(3) { width: 92%; }
.skeleton-hero div:first-child span:nth-child(4) { width: 58%; }
.skeleton-hero div:last-child {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
}
.skeleton-hero div:last-child span { width: 100%; height: 46px; }
.skeleton-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
}
.skeleton-cards span {
  height: 190px;
  border-radius: 20px;
}

@keyframes skeleton-shimmer {
  100% { transform: translateX(100%); }
}

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

.site-header {
  position: relative;
  z-index: 10;
  height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  padding: 0 calc((100vw - min(1060px, calc(100vw - 80px))) / 2);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7ebe8;
}

.logo img { width: 190px; }
.site-nav { display: flex; justify-content: center; gap: 38px; font-size: 14px; }
.site-nav a { padding: 30px 0 8px; border-bottom: 3px solid transparent; }
.site-nav a.active, .site-nav a:hover { color: var(--green); border-color: var(--green); }
.header-cta {
  justify-self: end;
  padding: 12px 24px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-weight: 700;
  font-size: 13px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.header-cta:hover {
  background: #0f361d;
  box-shadow: 0 12px 22px rgba(22,69,37,.22);
  transform: translateY(-1px);
}
.header-cta:active {
  background: #0b2b17;
  box-shadow: inset 0 3px 7px rgba(0,0,0,.22);
  transform: translateY(1px) scale(.98);
}
.header-cta:focus-visible {
  outline: 3px solid rgba(160,211,167,.75);
  outline-offset: 3px;
}
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 26px; }

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.75)), url("assets/living-room.png") center/cover;
}

.home-hero { min-height: 690px; display: flex; align-items: center; }
.about-hero { min-height: 560px; display: flex; align-items: center; }
.contact-hero { min-height: 800px; display: flex; align-items: center; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: center;
}

.hero-copy h1 { max-width: 540px; font-size: 52px; letter-spacing: -.8px; }
.hero-copy p { max-width: 580px; margin-top: 28px; color: #5f665f; font-size: 18px; }
.check-list { list-style: none; margin: 24px 0 36px; padding: 0; display: grid; gap: 10px; font-size: 14px; color: #2e3d34; }
.check-list li::before { content: "✓"; margin-right: 10px; display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; }

.button-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.button-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(22,69,37,.18);
}
.btn:active {
  transform: translateY(1px) scale(.98);
  box-shadow: inset 0 3px 8px rgba(0,0,0,.22);
}
.btn:focus-visible {
  outline: 3px solid rgba(160,211,167,.75);
  outline-offset: 3px;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
  box-shadow: none;
}
.btn-primary { color: #fff; background: var(--green); }
.btn-primary:hover { background: #0f361d; }
.btn-primary:active { background: #0b2b17; }
.btn-outline { color: #43516a; background: rgba(255,255,255,.45); border-color: #33415d; }
.btn-outline:hover { color: #fff; background: #33415d; border-color: #33415d; }
.btn-outline:active { background: #25304a; }
.btn-light { color: var(--green); background: #fff; }
.btn-light:hover { color: #0f361d; background: #f0fff3; }
.btn-light:active { background: #dff6e4; }
.btn-dark-outline { color: #fff; border-color: rgba(255,255,255,.65); background: transparent; }
.btn-dark-outline:hover { color: var(--green); background: #fff; border-color: #fff; }
.btn-dark-outline:active { background: #dff6e4; }

.form-card {
  padding: 42px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20,34,24,.12);
}
.form-card h2 { margin-bottom: 26px; text-align: center; font-size: 27px; }
.form-card.large h2 { text-align: left; font-size: 43px; }
.form-card.large > p { margin: -14px 0 28px; }
label { display: grid; gap: 8px; color: var(--green); font-size: 13px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid #cdd6d0;
  border-radius: 14px;
  background: #fff;
  padding: 15px 18px;
  color: var(--ink);
  font: inherit;
  outline: none;
}
input[name="email"] {
  font-size: 14px;
}
textarea { min-height: 98px; resize: vertical; }
select { appearance: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card label + label, .form-row + label, .form-card .form-row + .form-row { margin-top: 18px; }
.form-card button { width: 100%; margin-top: 24px; }
.form-status {
  display: block;
  width: 100%;
  margin: 18px 0 0;
  min-height: 42px;
  color: var(--green);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.section { padding: 96px 0; background: #fff; }
.section-soft { background: var(--soft); }
.section-title { text-align: center; font-size: 31px; }
.section-intro { width: min(620px, 100%); margin: 18px auto 0; text-align: center; color: var(--muted); }
.underline::after { content: ""; display: block; width: 78px; height: 3px; margin: 20px auto 0; background: #9edcab; }

.service-grid, .cards-three, .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 58px;
}

.service-card, .value-card, .contact-card {
  min-height: 285px;
  padding: 44px 36px;
  border: 1.5px solid #1e5a35;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 24px rgba(22,69,37,.08);
}
.service-card h3, .contact-card h3 { margin-top: 28px; font-size: 21px; color: #151515; }
.service-card p, .contact-card p { margin-top: 18px; color: #656b67; font-size: 14px; line-height: 1.45; }
.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eef2f0;
  color: #1c2b28;
  font-size: 24px;
}
.icon-circle svg, .icon-square svg, .trusted svg, .mini-list svg, .integrity-card svg, .btn-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-icon {
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
}
.btn-icon svg {
  width: 16px;
  height: 16px;
}
.btn .btn-icon:first-child {
  margin-left: 0;
  margin-right: 8px;
}
.icon-circle.green, .icon-square.green { background: var(--mint); color: var(--green); }
.icon-circle.blue, .icon-square.blue { background: #d8e2ff; color: #34476e; }
.icon-circle.taupe, .icon-square.taupe { background: #e9e5df; color: #343331; }

.story-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 82px;
  align-items: center;
}
.story-grid h2 { font-size: 48px; letter-spacing: -.96px; }
.story-grid p { margin-top: 26px; color: #59615c; font-size: 17px; line-height: 1.65; }
.image-stack {
  position: relative;
  border-radius: 34px;
}
.image-stack::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 220px;
  height: 170px;
  border-radius: 18px;
  background: var(--mint);
  z-index: 0;
}
.image-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  clip-path: inset(0 round 34px);
  box-shadow: 0 18px 36px rgba(32,39,34,.16);
}
.stat-card {
  position: absolute;
  z-index: 2;
  left: -48px;
  top: 48%;
  transform: translateY(-50%);
  width: 165px;
  padding: 24px 18px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(22,32,28,.14);
}
.stat-card strong { display: block; color: var(--green); font-size: 31px; line-height: 1; }
.stat-card span { font-size: 12px; color: #747b76; }

.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 110px; margin-top: 88px; text-align: center; }
.value-row h3 { margin-top: 28px; color: #1b1b1b; font-size: 21px; }
.value-row p { margin-top: 16px; color: #6f7671; font-size: 14px; line-height: 1.45; }
.choose-section {
  padding: 96px 0;
  background: var(--soft);
}
.choose-section .section-title {
  font-size: 32px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.3;
}
.choose-section .underline::after {
  width: 96px;
  height: 4px;
  margin-top: 16px;
}
.choose-section .value-row {
  gap: 40px;
  margin-top: 64px;
}
.choose-section .value-row article {
  width: 100%;
  padding: 32px;
}
.choose-section .icon-circle {
  width: 80px;
  height: 80px;
}
.choose-section .icon-circle svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}
.choose-section .value-row h3 {
  margin-top: 23px;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.4;
}
.choose-section .value-row p {
  max-width: 270px;
  margin: 16px auto 0;
  color: #414941;
  font-size: 16px;
  line-height: 1.5;
}

.cta-band, .cta-panel {
  background: var(--green);
  color: rgba(255,255,255,.72);
  text-align: center;
}
.cta-band { padding: 96px 0; }
.cta-band h2, .cta-panel h2 { color: #fff; font-size: 42px; }
.cta-band p, .cta-panel p { width: min(680px, 100%); margin: 28px auto 36px; font-size: 18px; }
.cta-panel {
  width: min(1060px, calc(100% - 80px));
  margin: 0 auto 86px;
  padding: 76px 40px;
  border-radius: 28px;
}

.site-footer { background: var(--footer); color: rgba(255,255,255,.62); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.site-footer img { width: 130px; margin-bottom: 14px; background: #fff; }
.site-footer p { font-size: 12px; }
.site-footer strong { color: rgba(255,255,255,.75); font-size: 18px; }

.narrow-copy { position: relative; }
.narrow-copy h1 { width: min(660px, 100%); margin-top: 24px; font-size: 52px; }
.narrow-copy p { width: min(720px, 100%); margin: 30px 0; color: #59615c; font-size: 18px; }
.pill { display: inline-flex; padding: 8px 18px; border-radius: 999px; background: var(--mint); color: var(--green-2); font-size: 13px; font-weight: 700; }

.quote-image { position: relative; }
.quote-image img { border-radius: 24px; background: #fff; box-shadow: 0 12px 30px rgba(30,43,35,.08); }
.quote-chip { position: absolute; right: -38px; bottom: -34px; width: 290px; padding: 26px; border-radius: 20px; background: #fff; box-shadow: 0 12px 28px rgba(25,37,31,.1); color: #5f665f; }
.value-card { text-align: left; border-color: #cbd8cf; }
.value-card h3 { margin-top: 30px; font-size: 21px; }
.value-card p { margin-top: 18px; color: #59615c; }
.icon-square { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 13px; font-size: 24px; }

.trust-grid { display: grid; grid-template-columns: 1fr 375px; gap: 86px; align-items: center; }
.trust-grid h2 { font-size: 34px; }
.trust-grid > div > p { margin-top: 28px; color: #616863; }
.trust-grid img { border-radius: 20px; box-shadow: 0 12px 26px rgba(27,35,30,.14); }
.mini-list { display: grid; gap: 28px; margin-top: 34px; }
.mini-list article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
.mini-list span { display: grid; place-items: center; width: 36px; height: 36px; border: 1.5px solid var(--green); border-radius: 50%; color: var(--green); }
.mini-list h3 { color: var(--green); font-size: 20px; }
.mini-list p { margin-top: 6px; color: #656d68; font-size: 14px; }
.founder-card { padding: 66px; border-radius: 22px; background: #fff; box-shadow: 0 14px 34px rgba(24,36,29,.1); }
.founder-card h2 { font-size: 34px; }
.founder-card p { width: min(720px, 100%); margin: 42px 0 26px; color: #606862; }
.founder-card strong { color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: 20px; }

.contact-hero .hero-grid { grid-template-columns: 1fr 560px; }
.trusted { display: flex; align-items: center; margin-top: 70px; }
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid rgba(255,255,255,.96);
  background: #eef2f0;
  box-shadow: 0 8px 16px rgba(20,36,27,.08);
}
.avatar-stack img + img {
  margin-left: -14px;
}
.trusted p { margin: 0 0 0 42px; font-size: 22px; line-height: 1.35; color: #3f4841; }
.contact-card strong { display: block; margin-top: 22px; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: 18px; }
.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; margin-top: 80px; align-items: center; }
.process-card { padding: 48px; border-radius: 24px; background: #fff; box-shadow: 0 16px 34px rgba(22,34,28,.08); }
.process-card article { display: grid; grid-template-columns: 58px 1fr; gap: 24px; }
.process-card article + article { margin-top: 38px; }
.process-card span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--green-2); color: #fff; font-weight: 700; }
.process-card h3 { color: var(--green-2); font-family: Manrope, Arial, sans-serif; font-size: 23px; font-weight: 500; }
.process-card p { color: #626b65; line-height: 1.45; }
.integrity-card { padding: 52px 56px; border-left: 5px solid var(--green); border-radius: 0 24px 24px 0; background: #e7ecee; }
.integrity-card span { color: var(--green); font-size: 44px; }
.integrity-card svg {
  width: 44px;
  height: 44px;
}
.integrity-card h3 { margin-top: 26px; font-size: 18px; }
.integrity-card p { margin-top: 28px; font-size: 19px; color: #3f4841; }
.contact-panel { margin-top: 100px; margin-bottom: 110px; }

@media (max-width: 760px) {
  body { font-size: 14px; }
  .container { width: calc(100% - 32px); }
  .page-loader { padding: 12px; }
  .skeleton-nav {
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
  }
  .skeleton-nav span:nth-child(1) { width: 86px; }
  .skeleton-nav span:nth-child(2) { width: 100px; }
  .skeleton-nav span:nth-child(3) { width: 32px; }
  .skeleton-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 14px;
    padding: 28px 18px;
    border-radius: 22px;
  }
  .skeleton-hero div:last-child {
    padding: 22px;
    border-radius: 18px;
  }
  .skeleton-hero div:first-child span:nth-child(1),
  .skeleton-hero div:first-child span:nth-child(2) {
    height: 30px;
  }
  .skeleton-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }
  .skeleton-cards span { height: 120px; }
  .site-header {
    height: 48px;
    grid-template-columns: 96px 1fr 40px;
    padding: 0 12px;
  }
  .logo img { width: 100px; }
  .header-cta {
    justify-self: center;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 10px;
  }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    background: #fff;
    border-bottom: 1px solid #e5e9e6;
    gap: 18px;
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 0 0 5px; }

  .home-hero, .about-hero, .contact-hero { min-height: 0; padding: 34px 0 46px; align-items: start; }
  .hero-grid, .contact-hero .hero-grid, .story-grid, .trust-grid, .expect-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy h1, .narrow-copy h1 { font-size: 28px; letter-spacing: -.2px; }
  .hero-copy p, .narrow-copy p { margin-top: 18px; font-size: 14px; line-height: 1.55; }
  .check-list { margin-bottom: 22px; font-size: 11px; }
  .button-row { gap: 10px; }
  .btn { min-height: 38px; padding: 0 18px; border-radius: 12px; font-size: 11px; }
  .form-card { padding: 26px; border-radius: 18px; }
  .form-card h2, .form-card.large h2 { font-size: 22px; text-align: left; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .form-card label + label, .form-row + label, .form-card .form-row + .form-row { margin-top: 14px; }
  input, textarea, select { padding: 12px 14px; border-radius: 12px; font-size: 12px; }

  .section { padding: 62px 0; }
  .section-title { font-size: 24px; }
  .service-grid, .cards-three, .contact-cards, .value-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
  }
  .service-card, .value-card, .contact-card {
    min-height: 0;
    padding: 34px 28px;
  }
  .story-grid h2 { font-size: 28px; letter-spacing: -.2px; }
  .story-grid p { font-size: 13px; margin-top: 18px; }
  .image-stack::after { display: none; }
  .stat-card { display: none; }
  .quote-chip { display: none; }
  .value-row { text-align: center; }
  .choose-section {
    padding: 72px 0 78px;
  }
  .choose-section .section-title {
    font-size: 24px;
    letter-spacing: 0;
  }
  .choose-section .underline::after {
    width: 64px;
    height: 3px;
    margin-top: 16px;
  }
  .choose-section .value-row {
    gap: 46px;
    margin-top: 48px;
  }
  .choose-section .icon-circle {
    width: 70px;
    height: 70px;
  }
  .choose-section .icon-circle svg {
    width: 30px;
    height: 30px;
  }
  .choose-section .value-row h3 {
    margin-top: 20px;
    font-size: 18px;
  }
  .choose-section .value-row p {
    max-width: 260px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }
  .trust-grid img { width: 100%; }
  .founder-card { padding: 36px 26px; }
  .founder-card h2, .trust-grid h2 { font-size: 26px; }

  .cta-band { padding: 58px 0; }
  .cta-band h2, .cta-panel h2 { font-size: 26px; }
  .cta-band p, .cta-panel p { margin: 20px auto 28px; font-size: 13px; }
  .cta-panel {
    width: calc(100% - 32px);
    padding: 44px 24px;
    border-radius: 22px;
    margin-bottom: 52px;
  }

  .trusted { margin-top: 36px; }
  .avatar-stack img {
    width: 46px;
    height: 46px;
    border-width: 5px;
  }
  .avatar-stack img + img {
    margin-left: -10px;
  }
  .trusted p {
    margin-left: 24px;
    font-size: 13px;
  }
  .image-stack img {
    height: auto;
    border-radius: 24px;
    clip-path: inset(0 round 24px);
  }
  .expect-grid { margin-top: 40px; }
  .process-card { padding: 30px 24px; }
  .process-card article { grid-template-columns: 42px 1fr; gap: 14px; }
  .process-card span { width: 36px; height: 36px; }
  .process-card h3 { font-size: 18px; }
  .integrity-card { padding: 34px 26px; }
  .integrity-card p { font-size: 14px; }

  .footer-inner { display: grid; justify-items: center; text-align: center; }
  .site-footer img { margin: 0 auto 10px; width: 96px; }
  .site-footer strong { font-size: 13px; }
}
/* ── Opt-in checkbox row ── */
.opt-in-row { margin-top: 12px; margin-bottom: 4px; }

.opt-in-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.opt-in-wrap input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  accent-color: #164525;
  cursor: pointer;
}

.opt-in-text {
  display: inline !important;
  color: #6b7280 !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  cursor: pointer;
}

.opt-in-text a {
  color: #164525 !important;
  text-decoration: underline;
}