:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-surface: #f7f8f4;
  --color-surface-strong: #eef2e7;
  --color-text: #17211c;
  --color-muted: #5f6d65;
  --color-line: #dfe6dc;
  --color-sage: #6f8f72;
  --color-sage-strong: #3f644b;
  --color-forest: #183d2d;
  --color-sand: #d9c8a8;
  --color-clay: #a56f4a;
  --shadow-soft: 0 24px 70px rgba(21, 41, 32, 0.12);
  --shadow-card: 0 16px 42px rgba(21, 41, 32, 0.08);
  --radius: 8px;
  --page-max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(111, 143, 114, 0.26);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--color-forest);
  color: #fff;
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(223, 230, 220, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 2rem, var(--page-max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  font-weight: 720;
  color: var(--color-text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(63, 100, 75, .25);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 143, 114, .22), rgba(217, 200, 168, .36)),
    #fff;
  position: relative;
  box-shadow: 0 10px 26px rgba(24, 61, 45, .09);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--color-forest);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.brand-mark::before {
  width: 16px;
  height: 16px;
  left: 8px;
  top: 10px;
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  right: 8px;
  bottom: 8px;
  border-color: var(--color-sage);
}

.brand-text {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(148px, 34vw, 224px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  display: grid;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + .5rem);
  padding: .7rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: none;
}

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .2rem;
}

.nav-link {
  display: block;
  padding: .78rem .85rem;
  border-radius: 6px;
  color: var(--color-muted);
  font-weight: 620;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--color-forest);
  background: var(--color-surface);
}

.header-cta {
  display: none;
}

.page-main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  max-height: 860px;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--color-surface);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.92) 78%, #fff 100%),
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 38%, rgba(255,255,255,.12) 74%);
}

.hero-inner {
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
  padding: 6.25rem 0 5.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.15rem;
  color: var(--color-sage-strong);
  font-size: .88rem;
  font-weight: 760;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: #405148;
  font-size: 1.08rem;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .78rem 1.05rem;
  font-weight: 720;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-forest);
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 61, 45, .22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #102e22;
}

.btn-secondary {
  background: rgba(255,255,255,.74);
  color: var(--color-forest);
  border-color: rgba(63, 100, 75, .24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  border-color: rgba(63, 100, 75, .52);
}

.section,
.page-hero {
  padding: 4.8rem 0;
}

.section-muted {
  background: var(--color-surface);
}

.section-dark {
  background: var(--color-forest);
  color: #fff;
}

.section-inner,
.page-hero-inner {
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-kicker {
  margin: 0 0 .75rem;
  color: var(--color-sage-strong);
  font-size: .86rem;
  font-weight: 780;
}

.section-dark .section-kicker {
  color: #bcd2b7;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.lead {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255,255,255,.78);
}

.intro-grid,
.quality-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 1.2rem;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.intro-panel {
  border-left: 3px solid var(--color-sage);
  padding: .4rem 0 .4rem 1.2rem;
}

.intro-panel strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--color-forest);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: .4rem;
}

.metric {
  padding: 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.metric strong {
  display: block;
  color: var(--color-forest);
  font-size: 1.5rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: .35rem;
  color: var(--color-muted);
  font-size: .9rem;
}

.visual-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-soft);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid,
.product-grid,
.promise-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.product-card,
.promise-card,
.info-card,
.legal-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card,
.promise-card,
.info-card,
.legal-card {
  padding: 1.25rem;
}

.feature-card {
  min-height: 180px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(111,143,114,.18), rgba(217,200,168,.24));
  border: 1px solid rgba(111,143,114,.18);
  display: grid;
  place-items: center;
  color: var(--color-forest);
}

.product-card {
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.product-media {
  background: var(--color-surface);
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  padding: 1.2rem;
}

.product-category {
  margin-bottom: .35rem;
  color: var(--color-sage-strong);
  font-weight: 740;
  font-size: .88rem;
}

.product-card p {
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--color-forest);
  font-weight: 760;
}

.text-link::after {
  content: "→";
  transition: transform 160ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(2px);
}

.process-list {
  display: grid;
  gap: 1rem;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.process-item:first-child {
  border-top: 0;
}

.process-item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #dfead9;
  font-weight: 780;
}

.promise-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.promise-card h3 {
  color: #fff;
}

.cta-band {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(111,143,114,.12), rgba(217,200,168,.16)),
    #fff;
}

.page-hero {
  background: var(--color-surface);
}

.page-hero-inner {
  padding-top: 1rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: .92rem;
}

.breadcrumb a {
  color: var(--color-sage-strong);
  font-weight: 700;
}

.form-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field label {
  color: var(--color-text);
  font-weight: 720;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9cf;
  border-radius: var(--radius);
  padding: .88rem .95rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-sage-strong);
  box-shadow: 0 0 0 4px rgba(111,143,114,.16);
}

.form-note,
.form-status {
  margin: .7rem 0 0;
  color: var(--color-muted);
  font-size: .94rem;
}

.form-status {
  color: var(--color-forest);
  font-weight: 700;
}

.info-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list a {
  color: var(--color-forest);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card h2 {
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: #101b16;
  color: #fff;
}

.footer-inner {
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.68);
}

.footer-title {
  margin: 0 0 .75rem;
  color: #dbe9d8;
  font-weight: 780;
}

.footer-links {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .7rem;
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .92rem;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  padding: 1rem;
}

.cookie-inner p {
  margin: .45rem 0 0;
  color: var(--color-muted);
  font-size: .94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: .66rem .86rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
}

.cookie-settings.is-open {
  display: grid;
  gap: .75rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.cookie-option strong,
.cookie-option span {
  display: block;
}

.cookie-option span {
  color: var(--color-muted);
  font-size: .9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero h1,
  .page-hero h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section,
  .page-hero {
    padding: 6rem 0;
  }

  .feature-grid,
  .product-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .quality-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .cta-band .section-actions {
    margin-top: 0;
    flex: 0 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr .7fr .8fr;
  }
}

@media (min-width: 940px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    justify-content: initial;
    gap: .3rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    justify-self: end;
    margin-left: 0;
    margin-right: clamp(2.5rem, 7vw, 5.5rem);
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: .05rem;
  }

  .nav-link {
    padding: .6rem .55rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    margin-left: .12rem;
    padding: .58rem .9rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-inner {
    padding-bottom: 7rem;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
