:root {
  --white: #ffffff;
  --stone: #f3f6f4;
  --fog: #e4ebe6;
  --pine: #1e3d32;
  --pine-deep: #142820;
  --moss: #3d6b54;
  --ink: #152019;
  --ink-soft: #3d4f45;
  --ink-muted: #6a7a71;
  --line: #c8d4cc;
  --signal: #2f6f5e;
  --signal-hover: #245a4c;
  --warn: #8a5a2b;
  --warn-bg: #f3ebe0;

  --font-body: 'Avenir Next', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-display: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow: 0 12px 40px rgba(20, 40, 32, 0.08);
  --header-h: 72px;

  /* legacy aliases for secondary pages */
  --color-white: var(--white);
  --color-bg: var(--stone);
  --color-bg-warm: var(--warn-bg);
  --color-bg-blue: var(--fog);
  --color-bg-teal: var(--fog);
  --color-bg-lavender: var(--fog);
  --color-ink: var(--ink);
  --color-ink-soft: var(--ink-soft);
  --color-ink-muted: var(--ink-muted);
  --color-border: var(--line);
  --color-border-light: var(--line);
  --color-primary: var(--signal);
  --color-primary-dark: var(--signal-hover);
  --color-primary-light: var(--fog);
  --color-accent: var(--moss);
  --color-accent-soft: var(--fog);
  --color-accent-dark: var(--pine);
  --color-cream: var(--stone);
  --color-mint: var(--fog);
  --color-mint-deep: var(--line);
  --color-text: var(--ink);
  --color-text-secondary: var(--ink-soft);
  --color-bg-light: var(--stone);
  --color-sage-dark: var(--pine);
  --color-green-leaf: var(--fog);
  --color-green-deep: var(--pine);
  --color-dark: var(--ink);
  --font-main: var(--font-body);
  --spacing-xs: var(--sp-xs);
  --spacing-sm: var(--sp-sm);
  --spacing-md: var(--sp-md);
  --spacing-lg: var(--sp-lg);
  --spacing-xl: var(--sp-xl);
  --spacing-xxl: var(--sp-2xl);
  --radius-sm: var(--r-sm);
  --radius-md: var(--r-md);
  --radius-lg: var(--r-lg);
  --radius-xl: var(--r-lg);
  --radius-full: 999px;
  --shadow-sm: var(--shadow);
  --shadow-md: var(--shadow);
  --bg: var(--stone);
  --bg-soft: var(--fog);
  --bg-dark: var(--pine-deep);
  --bg-violet: var(--pine);
  --violet: var(--signal);
  --violet-dark: var(--signal-hover);
  --violet-light: var(--fog);
  --gold: var(--moss);
  --gold-light: var(--warn-bg);
  --gold-dark: var(--warn);
  --border: var(--line);
  --border-dark: var(--pine);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--signal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pine); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-md); }
.text-center { text-align: center; }
.text-sm { font-size: 14px; color: var(--ink-muted); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
h1 { font-size: clamp(34px, 5.5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -0.015em; }
p { color: var(--ink-soft); margin-bottom: var(--sp-sm); }

/* ─── AD DISCLOSURE ─── */
.ad-disclosure {
  background: var(--pine-deep);
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  line-height: 1.4;
}
.ad-disclosure strong { color: #fff; font-weight: 700; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm); border: none; cursor: pointer; transition: all 0.25s;
  text-align: center; width: 100%; letter-spacing: 0.02em;
}
@media (min-width: 768px) { .btn { width: auto; } }

.btn-primary {
  background: var(--signal); color: #fff;
}
.btn-primary:hover {
  background: var(--signal-hover); color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--pine); color: var(--pine); }
.btn-light {
  background: #fff; color: var(--pine);
}
.btn-light:hover { background: var(--fog); color: var(--pine-deep); }

/* ─── HEADER ─── */
.site-top { position: sticky; top: 0; z-index: 200; }

.header {
  background: rgba(243, 246, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled { background: rgba(255,255,255,0.96); }

.header-wrap {
  max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-md);
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
  position: relative;
}
.header-wrap .logo { margin-right: auto; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-buy { padding: 8px 16px; font-size: 13px; width: auto; }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.menu-toggle {
  background: none; border: 1.5px solid var(--line); cursor: pointer;
  padding: 10px; border-radius: var(--r-sm);
  display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--stone); border-bottom: 1px solid var(--line);
  padding: var(--sp-md); z-index: 199;
}
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.nav-toggle:checked ~ .mobile-nav { display: block; }
.nav-toggle:checked ~ .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle:checked ~ .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .nav-desktop { display: block; margin-left: auto; }
  .header-actions { margin-left: 0; }
}

.logo {
  display: flex; flex-direction: column; gap: 0; text-decoration: none;
  line-height: 1;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--pine); letter-spacing: -0.03em;
}
.logo-mark span { color: var(--moss); }
.logo-tagline {
  font-size: 10px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 28px; list-style: none; }
.nav-desktop a {
  font-weight: 500; font-size: 13px; color: var(--ink-soft);
  position: relative;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--pine); transition: width 0.25s;
}
.nav-desktop a:hover { color: var(--pine); }
.nav-desktop a:hover::after { width: 100%; }

/* ─── HERO: full-bleed ─── */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--pine-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,40,32,0.88) 0%, rgba(20,40,32,0.55) 48%, rgba(20,40,32,0.25) 100%),
    url('klaros-product.jpg') right center / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(61,107,84,0.25), transparent 55%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1120px; margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: var(--sp-md);
  animation: fadeSlide 0.9s ease both;
}
.hero-brand em {
  font-style: italic; font-weight: 500; color: #a8c4b4;
}
.hero h1 {
  color: #fff; max-width: 520px;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 500; margin-bottom: var(--sp-sm);
  animation: fadeSlide 0.9s 0.12s ease both;
}
.hero-lead {
  color: rgba(255,255,255,0.78); max-width: 440px;
  font-size: 16px; margin-bottom: var(--sp-lg);
  animation: fadeSlide 0.9s 0.22s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  animation: fadeSlide 0.9s 0.32s ease both;
}
.hero-price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px;
  color: #fff; margin-right: 8px; max-width: 360px;
}
.hero-price .now { font-size: 28px; font-weight: 700; }
.hero-price .ref {
  flex: 1 1 100%;
  font-size: 12px; font-weight: 500; color: #c8e0d4; line-height: 1.45;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── STRIP ─── */
.info-strip {
  display: grid; grid-template-columns: 1fr;
  background: var(--white); border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .info-strip { grid-template-columns: repeat(3, 1fr); } }
.info-strip-item {
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
}
@media (min-width: 768px) {
  .info-strip-item { border-bottom: none; border-right: 1px solid var(--line); }
  .info-strip-item:last-child { border-right: none; }
}
.info-strip-item strong { display: block; color: var(--pine); font-size: 14px; margin-bottom: 2px; }

/* ─── SECTIONS ─── */
section { padding: var(--sp-2xl) 0; }
.section-pine { background: var(--pine-deep); color: #fff; }
.section-pine h2, .section-pine h3 { color: #fff; }
.section-pine p { color: rgba(255,255,255,0.7); }
.section-fog { background: var(--fog); }
.section-stone { background: var(--stone); }
.section-white { background: var(--white); }

.section-head { max-width: 560px; margin-bottom: var(--sp-xl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--moss); margin-bottom: var(--sp-xs);
}
.section-pine .eyebrow { color: #a8c4b4; }

/* ─── CONTEXT ─── */
.context-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-xl);
}
@media (min-width: 900px) { .context-grid { grid-template-columns: 1fr 1.1fr; align-items: center; } }

.context-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.context-fact {
  background: var(--pine-deep); padding: var(--sp-md);
}
.context-fact b {
  display: block; font-family: var(--font-display);
  font-size: 28px; color: #c8e0d4; margin-bottom: 4px;
}
.context-fact span { font-size: 12px; color: rgba(255,255,255,0.55); }

.pest-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-md); }
.pest-chips span {
  font-size: 12px; font-weight: 500; padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85);
}

/* ─── INGREDIENTS ─── */
.ing-stack { display: flex; flex-direction: column; gap: var(--sp-xl); }
.ing-row {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-md); align-items: center;
}
@media (min-width: 768px) {
  .ing-row { grid-template-columns: 1.05fr 1fr; gap: var(--sp-xl); }
  .ing-row.flip .ing-media { order: 2; }
}
.ing-media {
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--fog);
}
.ing-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.ing-row:hover .ing-media img { transform: scale(1.04); }
.ing-copy h3 { font-size: 26px; margin-bottom: 8px; }
.ing-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss); margin-bottom: 10px; display: block;
}
.ing-note {
  margin-top: var(--sp-xl); padding: var(--sp-md);
  background: var(--white); border-left: 3px solid var(--pine);
  font-size: 14px; line-height: 1.7;
}

/* ─── STEPS ─── */
.steps-rail {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .steps-rail { grid-template-columns: repeat(5, 1fr); } }
.step {
  padding: var(--sp-lg) var(--sp-md) var(--sp-lg) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .step { border-bottom: none; border-right: 1px solid var(--line); padding-right: var(--sp-md); }
  .step:last-child { border-right: none; }
}
.step-n {
  font-family: var(--font-display); font-size: 36px; color: var(--fog);
  line-height: 1; margin-bottom: 10px;
}
.step h3 { font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 13px; margin: 0; line-height: 1.55; }

/* ─── BENEFITS ─── */
.benefit-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .benefit-list { grid-template-columns: 1fr 1fr; } }
.benefit {
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .benefit:nth-child(odd) { padding-right: var(--sp-lg); border-right: 1px solid var(--line); }
  .benefit:nth-child(even) { padding-left: var(--sp-lg); }
}
.benefit h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.benefit p { font-size: 14px; margin: 0; }

/* ─── PRODUCT ─── */
.product-block {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); align-items: center;
}
@media (min-width: 900px) { .product-block { grid-template-columns: 0.9fr 1.1fr; } }
.product-visual {
  background: linear-gradient(160deg, var(--pine) 0%, var(--moss) 100%);
  padding: var(--sp-xl); display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.product-visual img {
  max-width: 220px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.3));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.checklist { list-style: none; margin: var(--sp-md) 0; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ''; width: 8px; height: 8px; margin-top: 6px; flex-shrink: 0;
  background: var(--signal); border-radius: 1px;
}

/* ─── PLACES ─── */
.places {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 768px) { .places { grid-template-columns: repeat(4, 1fr); } }
.place {
  background: var(--white); padding: var(--sp-md);
  text-align: center; font-size: 13px; font-weight: 600; color: var(--ink);
  transition: background 0.2s;
}
.place:hover { background: var(--fog); }

/* ─── GALLERY ─── */
.gallery {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-sm);
}
@media (min-width: 768px) {
  .gallery { grid-template-columns: 1.4fr 1fr 1fr; height: 300px; }
}
.gallery figure { overflow: hidden; margin: 0; height: 100%; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
@media (max-width: 767px) { .gallery figure { aspect-ratio: 16/10; } }
.gallery figure:hover img { transform: scale(1.05); }

/* ─── TABS ─── */
.tabs-wrap {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--line); background: var(--white);
}
@media (min-width: 768px) { .tabs-wrap { grid-template-columns: 200px 1fr; } }
.tab-nav {
  display: flex; flex-direction: row; overflow-x: auto;
  background: var(--fog); border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .tab-nav { flex-direction: column; border-bottom: none; border-right: 1px solid var(--line); }
}
.tab-btn {
  background: none; border: none; padding: 14px 18px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--ink-muted); cursor: pointer; text-align: left;
  white-space: nowrap; transition: all 0.2s;
}
.tab-btn:hover { color: var(--ink); background: var(--white); }
.tab-btn.active {
  color: var(--pine); background: var(--white); font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--pine);
}
@media (min-width: 768px) {
  .tab-btn.active { box-shadow: inset 3px 0 0 var(--pine); }
}
.tab-panel { display: none; padding: var(--sp-lg); }
.tab-panel.active { display: block; }
.product-details-list { list-style: none; }
.product-details-list li {
  display: flex; justify-content: space-between; gap: var(--sp-sm);
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.product-details-list li span:first-child { font-weight: 600; color: var(--ink); }
.product-details-list li span:last-child { color: var(--ink-soft); text-align: right; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-md);
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-item {
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--line);
}
.faq-item h3 {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  margin-bottom: 6px;
}
.faq-item p { font-size: 14px; margin: 0; line-height: 1.65; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--pine);
  padding: var(--sp-xl) var(--sp-md);
  text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-sm); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto var(--sp-md); }

/* ─── DISCLAIMERS ─── */
.disclaimer-box {
  background: var(--white); padding: var(--sp-lg);
  border: 1px solid var(--line);
}
.disclaimer-list {
  list-style: none; column-count: 1; font-size: 13px; color: var(--ink-soft);
}
@media (min-width: 768px) { .disclaimer-list { column-count: 2; column-gap: var(--sp-xl); } }
.disclaimer-list li {
  margin-bottom: 8px; padding-left: 14px; position: relative; break-inside: avoid;
}
.disclaimer-list li::before {
  content: '–'; position: absolute; left: 0; color: var(--moss);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--pine-deep); color: rgba(255,255,255,0.7);
}
.footer-brand-row {
  padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 1120px; margin: 0 auto;
}
.footer-brand-row .logo-mark {
  font-size: clamp(40px, 8vw, 64px); color: #fff; margin-bottom: 8px;
}
.footer-brand-row .logo-mark span { color: #a8c4b4; }
.footer-brand-row p {
  max-width: 420px; font-size: 14px; color: rgba(255,255,255,0.55); margin: 0;
}

.footer-cols {
  max-width: 1120px; margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg);
}
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }

.footer-cols h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #a8c4b4; margin-bottom: var(--sp-sm);
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-cols a:hover { color: #fff; }

.footer-entity {
  font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.55);
}
.footer-entity a { color: #c8e0d4; }

.footer-legal-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-md);
  text-align: center;
  font-size: 11px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 800px; margin: 0 auto;
}
.footer-legal-bar p { color: inherit; margin-bottom: 4px; }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 12px var(--sp-md);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 98;
  box-shadow: 0 -8px 30px rgba(20,40,32,0.08);
}
.sticky-cta-visible { transform: none; }
.sticky-cta-title { font-weight: 600; font-size: 13px; }
.sticky-cta-price { color: var(--signal); font-weight: 700; font-size: 15px; }
.sticky-cta .btn { padding: 10px 20px; font-size: 13px; width: auto; }

/* ─── FORMS / PAGES ─── */
.form-group { margin-bottom: var(--sp-lg); }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 13px; }
.form-control {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: 15px;
  background: var(--white); transition: all 0.2s;
}
.form-control:focus {
  outline: none; border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(47,111,94,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { margin-top: 4px; accent-color: var(--signal); }
.checkbox-label { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.page-header {
  padding: calc(var(--header-h) + var(--sp-xl)) 0 var(--sp-xl);
  background: var(--fog); text-align: center;
}
.page-header h1 { font-family: var(--font-display); }
.page-content { padding: var(--sp-2xl) 0; max-width: 800px; margin: 0 auto; }

.contact-intro {
  padding-bottom: var(--sp-2xl);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61, 107, 84, 0.12), transparent 70%),
    linear-gradient(180deg, var(--fog) 0%, var(--stone) 100%);
}
.contact-intro h1 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
}
.contact-intro-text {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.contact-channels {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  text-align: center;
}
.contact-channels h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-channels p {
  margin-top: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  text-align: center;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--sp-lg);
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
}
.contact-card p {
  margin-top: 10px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-content h2 { margin-top: var(--sp-xl); font-family: var(--font-display); font-size: 20px; }
.legal-content p, .legal-content ul { font-size: 15px; line-height: 1.75; margin-bottom: var(--sp-md); }
.legal-content ul { padding-left: 24px; }

.rich-text { max-width: 720px; margin: 0 auto; }
.rich-text p { font-size: 16px; line-height: 1.75; margin-bottom: var(--sp-md); }
.rich-text h3 { font-family: var(--font-display); margin-top: var(--sp-xl); font-size: 22px; }

.entity-card {
  background: var(--white); border: 1px solid var(--line);
  padding: var(--sp-lg); margin-bottom: var(--sp-lg);
}
.entity-card dl {
  display: grid; grid-template-columns: 140px 1fr; gap: 10px 16px;
  font-size: 14px;
}
.entity-card dt { font-weight: 600; color: var(--ink); }
.entity-card dd { color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) {
  .entity-card dl { grid-template-columns: 1fr; gap: 2px; }
  .entity-card dt { margin-top: 10px; }
}

.thanks-wrap {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  padding: var(--sp-2xl) var(--sp-md); text-align: center;
}
.thanks-box { max-width: 480px; }
.thanks-icon {
  width: 64px; height: 64px; margin: 0 auto var(--sp-md);
  background: var(--fog); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--signal);
}


.ing-media-stat {
  background: var(--fog);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.ing-stat { text-align: center; padding: 24px; }
.ing-stat-n {
  font-family: var(--font-display); font-size: 42px;
  color: var(--pine); font-weight: 700;
}
.ing-stat-l { font-size: 13px; color: var(--ink-muted); margin-top: 8px; }

.details-stack { max-width: 720px; margin: 0 auto; }
.details-stack details {
  border: 1px solid var(--line); background: var(--white);
  margin-bottom: 10px; padding: 0;
}
.details-stack summary {
  cursor: pointer; list-style: none; padding: 16px 18px;
  font-weight: 600; font-size: 15px; color: var(--ink);
}
.details-stack summary::-webkit-details-marker { display: none; }
.details-stack details[open] summary { border-bottom: 1px solid var(--line); }
.details-stack details > *:not(summary) { padding: 16px 18px 20px; }
.detail-steps {
  padding-left: 20px; color: var(--ink-soft); line-height: 2;
}

.fade-up { opacity: 1; transform: none; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--pine-deep); color: #fff;
  padding: 12px 18px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(120%); transition: transform 0.3s;
  border-left: 3px solid var(--moss);
}
.toast.show { transform: translateX(0); }
.toast svg { width: 16px; height: 16px; color: #a8c4b4; }

.header-container {
  max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-md);
  display: flex; align-items: center; justify-content: space-between; height: var(--header-h);
}
.footer-bar {
  background: var(--pine-deep); padding: var(--sp-md); text-align: center; font-size: 12px;
}
.footer-bar p { color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); }
@media (min-width: 600px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; align-items: center; }
  .cookie-text { flex: 1; }
  .cookie-actions .btn { flex: none; }
}
