:root {
  --ink: #14221e;
  --ink-soft: #2a3b35;
  --mist: #e7f0eb;
  --stone: #f2ebe2;
  --paper: #f7f4ef;
  --viridian: #1f7a63;
  --viridian-deep: #155746;
  --line: rgba(20, 34, 30, 0.12);
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(20, 34, 30, 0.14);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 122, 99, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(242, 235, 226, 0.9), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 42%, var(--stone) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--viridian-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

p {
  margin: 0 0 1rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.28rem;
  background:
    linear-gradient(145deg, var(--viridian) 0%, var(--viridian-deep) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  animation: mark-breathe 4.5s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 34, 30, 0.28) 0%, rgba(20, 34, 30, 0.55) 48%, rgba(20, 34, 30, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 34, 30, 0.45) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
}

.hero h1 {
  color: var(--white);
  max-width: 12ch;
}

.lede {
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.55rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--mist);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viridian);
  margin: 0 0 0.85rem;
}

.section-note {
  max-width: 42ch;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 840px) {
  .split {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.prose p {
  color: var(--ink-soft);
  max-width: 58ch;
}

.section-head {
  margin-bottom: 2.5rem;
}

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.product-copy {
  padding: 0.25rem 0;
}

.product-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin: 0 0 0.6rem;
}

.product-copy p {
  color: var(--ink-soft);
  max-width: 48ch;
}

.text-link {
  font-weight: 600;
  color: var(--viridian-deep);
}

.product-panel {
  min-height: 220px;
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(31, 122, 99, 0.95), rgba(20, 34, 30, 0.96)),
    url("assets/hero.jpg") center / cover;
  box-shadow: var(--shadow-soft);
}

.product-panel span:first-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-panel span:last-child {
  opacity: 0.85;
  font-size: 0.95rem;
}

.contact-panel {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid rgba(31, 122, 99, 0.35);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact-email:hover {
  color: var(--viridian-deep);
  border-color: var(--viridian);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-inner strong {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
}

.copyright {
  margin: 0;
}

.legal-page .site-header {
  background: rgba(247, 244, 239, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

.legal h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
  max-width: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes mark-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 700px) {
  .nav {
    gap: 0.85rem;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 3.25rem;
  }

  h1 {
    max-width: 14ch;
  }
}

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

  .hero-media img,
  .brand-mark,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
