:root {
  --ink: #14241f;
  --muted: #4a5c55;
  --brand: #1b4d3e;
  --brand-deep: #0f3328;
  --accent: #2f7a66;
  --mist: #eef5f1;
  --paper: #f7faf8;
  --line: #d5e3dc;
  --warn: #7a5b1e;
  --warn-bg: #f7f0de;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 36, 31, 0.08);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Literata", Georgia, serif;
  --font-ui: "Sora", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9ebe3 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e4efe9 0%, transparent 50%),
    linear-gradient(180deg, var(--paper), #f3f7f5 40%, var(--mist));
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

.ad-label {
  background: var(--brand-deep);
  color: #e8f3ee;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

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

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1,
.page-title,
.article-body h1 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--brand-deep);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 14ch;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.hero-panel {
  background: linear-gradient(160deg, var(--brand), var(--brand-deep));
  color: #e7f4ee;
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: rise 0.8s ease both;
}

.hero-panel p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  opacity: 0.92;
}

.hero-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.section {
  padding: 1.5rem 0 3rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  color: var(--brand-deep);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  animation: rise 0.7s ease both;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.05rem 1.2rem 1.25rem;
}

.article-hero {
  margin: 0 0 1.4rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--mist);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

.product-gallery figure {
  margin: 0;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery figcaption {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.75rem 0.7rem;
}

@media (max-width: 900px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow);
  animation: rise 0.8s ease both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0.45rem 0 0.55rem;
  color: var(--brand-deep);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 241, 0.95)),
    var(--white);
}

.featured .tag {
  color: var(--warn);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  padding: 2.2rem 0 3.5rem;
}

.article-body {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.meta {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.article-body p,
.article-body li {
  color: #24352f;
}

.article-body h2 {
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-size: 1.45rem;
  margin-top: 1.8rem;
}

.health-notice,
.affiliate-note,
.operator-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.health-notice {
  background: var(--mist);
  border: 1px solid var(--line);
}

.affiliate-note,
.operator-note {
  background: var(--warn-bg);
  border: 1px solid #e5d7b0;
  color: #4d3c16;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.side-box h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.side-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.side-box a {
  color: var(--brand);
  text-decoration: none;
}

.lead-form {
  margin-top: 2rem;
  padding: 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--mist));
}

.lead-form h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.field input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: white;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  margin: 0.9rem 0 1rem;
}

.consent input {
  margin-top: 0.3rem;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.85rem 1.3rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
}

.legal-page {
  padding: 2.4rem 0 3.5rem;
}

.legal-page .panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.legal-page h1 {
  font-family: var(--font-display);
  margin-top: 0;
  color: var(--brand-deep);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-top: 1.6rem;
}

.entity-block {
  background: var(--mist);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}

.thanks {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 3rem 0;
  text-align: center;
}

.thanks-card {
  width: min(640px, 100%);
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  box-shadow: var(--shadow);
  animation: rise 0.6s ease both;
}

.thanks-card h1 {
  font-family: var(--font-display);
  color: var(--brand-deep);
  margin: 0 0 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #10251f;
  color: #d7e6df;
  padding: 2.4rem 0 1.6rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: #b7d4c7;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
  color: white;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  margin: 0 0 0.5rem;
}

.footer-note {
  font-size: 0.88rem;
  color: #9eb8ad;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #8eaaa0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(16, 37, 31, 0.96);
  color: #e8f3ee;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise 0.4s ease both;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .article-layout,
  .footer-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    grid-column: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
  }

  .header-inner.is-open .nav {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.6rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
