:root {
  color-scheme: light;
  --color-bg: #f7f6f2;
  --color-surface: #ffffff;
  --color-text: #1e2526;
  --color-muted: #5d6769;
  --color-border: #d9ded9;
  --color-primary: #135e56;
  --color-primary-dark: #0d443f;
  --color-accent: #c47d28;
  --shadow-soft: 0 18px 45px rgba(22, 33, 35, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: 4.5rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--color-text);
  color: var(--color-surface);
  padding: 0.65rem 0.85rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 222, 217, 0.9);
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a,
.footer-inner a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.footer-inner a:hover {
  color: var(--color-primary);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-muted {
  background: #eceee8;
}

.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

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

.hero-text {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-surface);
}

.button-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-surface);
}

.button-secondary {
  border-color: var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

.button-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-panel,
.product-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 2rem;
}

.hero-panel h2 {
  font-size: 2rem;
}

.eyebrow,
.panel-label {
  margin-bottom: 0.65rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.section-copy {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

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

.product-card-copy {
  max-width: 700px;
}

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

.content-stack {
  display: grid;
  gap: 2rem;
}

.content-stack section {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.content-stack section:last-of-type {
  border-bottom: 0;
}

.privacy-hero {
  padding-bottom: 2rem;
}

.back-link {
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner a:hover {
  color: var(--color-surface);
}

@media (max-width: 820px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .product-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section {
    padding-block: 3.5rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .hero-panel,
  .product-card {
    padding: 1.25rem;
  }

  .site-nav {
    gap: 0.75rem 1rem;
  }

  .site-nav a,
  .footer-inner a {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

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