:root {
  --ivory: #f7f1e7;
  --paper: #fffaf2;
  --sage: #7b9a7d;
  --eucalyptus: #506f55;
  --forest: #20352a;
  --charcoal: #242826;
  --terracotta: #b96f4b;
  --gold: #b99a58;
  --mist: #e5eadf;
  --line: rgba(32, 53, 42, 0.18);
  --shadow: 0 22px 60px rgba(22, 31, 25, 0.16);
  --sans: Inter, Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(20, 31, 25, 0.86), rgba(20, 31, 25, 0.38) 72%, transparent);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--forest);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--eucalyptus);
  border: 1px solid rgba(255, 250, 242, 0.35);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-mark path,
.card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-action {
  padding: 11px 17px;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid rgba(255, 250, 242, 0.42);
}

.site-header.is-scrolled .nav-action,
.site-header.is-open .nav-action {
  color: var(--paper);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  color: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 31, 25, 0.88) 0%, rgba(20, 31, 25, 0.72) 34%, rgba(20, 31, 25, 0.2) 68%, rgba(20, 31, 25, 0.4) 100%),
    linear-gradient(0deg, rgba(20, 31, 25, 0.46), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 96vh;
  margin: 0 auto;
  padding: 118px 0 58px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote-panel .eyebrow {
  color: #dfb18d;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7.4vw, 6.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.2rem);
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.12;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--terracotta);
  border-color: rgba(255, 250, 242, 0.18);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.42);
  backdrop-filter: blur(12px);
}

.quote-panel {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--forest);
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid rgba(255, 250, 242, 0.62);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.06;
}

label,
fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  padding: 0 0 7px;
}

select,
input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #ffffff;
}

.segmented label {
  display: block;
  min-width: 0;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px;
  text-align: center;
  cursor: pointer;
}

.segmented label + label span {
  border-left: 1px solid var(--line);
}

.segmented input:checked + span {
  color: var(--paper);
  background: var(--eucalyptus);
}

.form-button {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-note {
  margin: 0;
  color: rgba(32, 53, 42, 0.72);
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--forest);
  color: var(--paper);
}

.trust-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.intro,
.areas {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro p:not(.eyebrow),
.areas p {
  margin: 0;
  color: rgba(36, 40, 38, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.section-heading {
  max-width: 750px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

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

.service-card,
.proof-grid article {
  min-height: 285px;
  padding: 24px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  background: var(--mist);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card p,
.proof-grid p,
.process-list p,
.transparency-panel p,
.faq-list p {
  margin: 0;
  color: rgba(36, 40, 38, 0.74);
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--terracotta);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.difference {
  width: 100%;
  max-width: none;
  background: #edf0e6;
}

.difference > * {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ingredient-list div,
.transparency-panel {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.ingredient-list strong,
.ingredient-list span {
  display: block;
}

.ingredient-list strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 500;
}

.ingredient-list span {
  margin-top: 8px;
  color: rgba(36, 40, 38, 0.72);
}

.transparency-panel {
  color: var(--paper);
  background: var(--forest);
}

.transparency-panel p,
.transparency-panel li {
  color: rgba(255, 250, 242, 0.8);
}

.transparency-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.process-list h3,
.proof-grid h3 {
  margin-bottom: 10px;
}

.areas {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: var(--forest);
}

.areas .eyebrow {
  color: #dfb18d;
}

.areas p {
  margin-top: 22px;
  color: rgba(255, 250, 242, 0.78);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-list span {
  padding: 15px 16px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.16);
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
  min-height: 200px;
}

.faq {
  padding-top: 38px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--ivory);
  border: 1px solid var(--line);
}

summary {
  padding: 22px 24px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.22rem;
  cursor: pointer;
}

details p {
  padding: 0 24px 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 46px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: #17241c;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.86);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    color: var(--forest);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-action {
    color: var(--paper);
    background: var(--forest);
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 110px;
  }

  .quote-panel {
    max-width: 590px;
  }

  .trust-strip,
  .service-grid,
  .ingredient-list,
  .process-list,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .areas,
  .difference-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    min-height: 100svh;
    padding: 96px 0 32px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 31, 25, 0.8), rgba(20, 31, 25, 0.56) 40%, rgba(20, 31, 25, 0.82)),
      linear-gradient(90deg, rgba(20, 31, 25, 0.7), rgba(20, 31, 25, 0.18));
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .ingredient-list,
  .process-list,
  .proof-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.18);
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 62px 0;
  }

  .difference > * {
    width: min(100% - 28px, 1180px);
  }

  .areas {
    padding-right: 14px;
    padding-left: 14px;
  }

  .quote-panel,
  .service-card,
  .proof-grid article,
  .ingredient-list div,
  .transparency-panel {
    padding: 20px;
  }

  .segmented span {
    font-size: 0.72rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
