:root {
  --ink: #15231e;
  --ink-soft: #445850;
  --paper: #f4f6f3;
  --mist: #e7eee9;
  --line: #cfdad3;
  --accent: #176f57;
  --accent-deep: #104c3c;
  --accent-soft: #cfe8dc;
  --max: 1120px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(207, 232, 220, 0.35), transparent 55%),
    linear-gradient(180deg, #eef3ef 0%, var(--paper) 42%, #f7f8f6 100%);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(244, 246, 243, 0.86);
  border-bottom: 1px solid rgba(207, 218, 211, 0.9);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem 1.25rem;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.9rem 1.35rem;
  font: inherit;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 76, 60, 0.18);
}

.btn-primary:hover { background: var(--accent-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: #9fb0a7;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

/* Clear photo hero — sophisticated, not washed */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(90vh, 800px);
  display: grid;
  align-items: end;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  color: #f4f7f5;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(12, 24, 20, 0.78) 0%,
      rgba(12, 24, 20, 0.52) 38%,
      rgba(12, 24, 20, 0.18) 68%,
      rgba(12, 24, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 24, 20, 0.12) 0%, rgba(12, 24, 20, 0.42) 100%);
}

.hero-inner {
  max-width: 36rem;
  position: relative;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.75rem, 6.8vw, 4.5rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: #f6faf8;
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand em {
  font-style: italic;
  font-weight: 500;
  color: #b9e3d1;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.32rem, 2.6vw, 1.72rem);
  line-height: 1.28;
  margin: 0 0 0.9rem;
  max-width: 18ch;
  color: #eef4f0;
  animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero p {
  margin: 0;
  color: rgba(238, 244, 240, 0.88);
  font-size: 1.06rem;
  max-width: 30rem;
  animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.hero .btn-row { animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }

.hero .btn-ghost {
  color: #f4f7f5;
  border-color: rgba(244, 247, 245, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.hero .btn-ghost:hover {
  border-color: rgba(244, 247, 245, 0.75);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@keyframes kenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1%, -0.7%, 0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.section { padding: 4.5rem 0; }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  line-height: 1.14;
}

.lead {
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.35rem;
}

.split {
  display: grid;
  gap: 2rem 3.25rem;
}

@media (min-width: 860px) {
  .split-2 { grid-template-columns: 1.12fr 0.88fr; align-items: start; }
}

.product-band {
  position: relative;
}

.product-band::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: min(34vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 232, 220, 0.55), transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(18px); }
}

.product-band .wrap { position: relative; z-index: 1; }

.feature-rail {
  display: grid;
  gap: 0.95rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-rail li {
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
}

.feature-rail strong {
  display: block;
  color: var(--ink);
  font-weight: 650;
}

.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 0.1rem 0 0.35rem;
  letter-spacing: -0.03em;
}

.muted { color: var(--ink-soft); }
.tiny { font-size: 0.88rem; }

.list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.list li { margin: 0.35rem 0; }

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

.post-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, transform 0.2s ease;
}

.post-list li:last-child a { border-bottom: 0; }

.post-list a:hover {
  color: var(--accent-deep);
  transform: translateX(3px);
}

.post-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.post-list span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reads {
  margin-top: 0.25rem;
  padding-top: 0.15rem;
}

.prose { max-width: 42rem; }

.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.prose h1 { font-size: clamp(1.95rem, 4vw, 2.6rem); }

.disclaimer-box {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.55);
}

.site-footer {
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.form {
  display: grid;
  gap: 0.75rem;
  max-width: 26rem;
}

.form input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.badge {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

@media (max-width: 640px) {
  .nav { display: none; }
  .hero {
    min-height: 84vh;
    padding: 4.2rem 0 3rem;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(12, 24, 20, 0.28) 0%,
        rgba(12, 24, 20, 0.55) 48%,
        rgba(12, 24, 20, 0.8) 100%);
  }
  .hero-brand { font-size: clamp(2.5rem, 11.5vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .product-band::after,
  .hero-brand,
  .hero h1,
  .hero p,
  .hero .btn-row {
    animation: none !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
