/* =============================================================
   Warm Botanical Premium — Organic Health Platform
   Warm tones · Soft shadows · Botanical palette · Editorial feel
   ============================================================= */

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

:root {
  /* Core palette */
  --white:        #FFFFFF;
  --bg:           #faf8f3;
  --bg-warm:      #f3efe6;
  --bg-sage:      #eef2ec;

  /* Text */
  --text-dark:    #1f2e25;
  --text-mid:     #4a5d52;
  --text-light:   #8a9b8f;

  /* Borders */
  --border:       #e0ddd5;
  --border-light: #ecebe5;

  /* Primary accent — botanical green */
  --accent:       #2d7a5f;
  --accent-dark:  #1a5c42;
  --accent-soft:  #d0e3d8;
  --accent-light: #e8f1ec;

  /* Earthy accent system */
  --clay:         #c97b5a;
  --mist:         #6b9080;
  --matcha:       #87a96b;
  --lilac:        #9b8aa4;
  --dusty-rose:   #c0878a;
  --charcoal:     #1f2e25;
  --paper-dark:   #e8e4d9;

  /* Radii */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(31, 46, 37, 0.04);
  --shadow-sm:    0 2px 8px rgba(31, 46, 37, 0.06);
  --shadow-md:    0 8px 24px rgba(31, 46, 37, 0.08);
  --shadow-lg:    0 16px 48px rgba(31, 46, 37, 0.10);
  --shadow-accent: 0 8px 24px rgba(45, 122, 95, 0.15);

  --max-w:        1140px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Noto Sans SC", "Hiragino Sans GB",
               "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER — Glassmorphism with warm tint
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.82);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
  background: rgba(250, 248, 243, 0.92);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 0.86rem;
  background: var(--white);
  padding: 4px;
  border-radius: 40px;
  box-shadow: var(--shadow-xs);
}

.nav-links a {
  display: block;
  padding: 8px 18px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s, background 0.2s;
  border-radius: 30px;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-dark);
  background: var(--bg-warm);
}
.nav-links a.active {
  color: var(--white);
  background: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 0;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links a:hover { background: var(--bg-warm); }
  .nav-links a.active {
    background: var(--accent-light);
    color: var(--accent);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO — Warm gradient, spacious
   ═══════════════════════════════════════════════════════════ */
.new-hero {
  padding-top: 80px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg) 50%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}
.new-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #e4f1c1;
  opacity: 0.4;
  z-index: 0;
}
.new-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.5;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.hero-left h1 strong {
  color: var(--accent);
  position: relative;
}
.hero-left h1 strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-left .lead-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  text-indent: 0;
  text-align: left;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 30px;
}

.btn-primary {
  background: #98c12c;
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 122, 95, 0.22);
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  /* border: 1px solid var(--border); */
  box-shadow: 6px 7px 11px 0px rgba(31, 46, 37, 0.04);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-figure {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-figure-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(45, 122, 95, 0.18), 0 8px 20px rgba(0,0,0,0.08);
  background-color: var(--border-light);
  transition: transform 0.35s ease;
}

.hero-figure:hover .hero-figure-img {
  transform: scale(1.015);
}

.hero-stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero-stat-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.hero-stat-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-stat-badge span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  font-weight: 500;
  white-space: nowrap;
}

.hero-stat-1 {
  top: 32px;
  left: -28px;
}

.hero-stat-2 {
  bottom: 36px;
  right: -24px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { display: flex; }
  .hero-figure { max-width: 100%; }
  .hero-figure-img { height: 280px; }
  .hero-stat-1 { top: 20px; left: -12px; }
  .hero-stat-2 { bottom: 20px; right: -12px; }
}

@media (max-width: 560px) {
  .hero-figure-img { height: 220px; }
  .hero-stat-badge { padding: 14px 18px; }
  .hero-stat-badge strong { font-size: 1.4rem; }
  .hero-stat-1 { top: 14px; left: -6px; }
  .hero-stat-2 { bottom: 14px; right: -6px; }
}

/* ── Notice bar ──────────────────────────────────────────── */
.notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 24px;
  margin: 32px 0;
  border-radius: var(--radius-md);
  background: #fff6df;
  border: 1px solid #fdecc0;
  font-size: 0.84rem;
  color: #d3642d;
  line-height: 1.7;
}
.notice-bar .notice-icon {
  color: #f96d28;
  flex-shrink: 0;
}

.notice-bar-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  box-shadow: var(--shadow-xs);
}
.notice-bar-section .notice-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Section spacing ─────────────────────────────────────── */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-warm);
}

/* ── Philosophy ──────────────────────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.philosophy-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 22px;
  color: #246b41;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.philosophy-text .lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #b0c182;
  margin-bottom: 18px;
}

.philosophy-text p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 12px;
  padding: 8px 0;
  transition: gap 0.2s;
}
.text-link:hover { gap: 12px; }

.philosophy-figure > div {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  background-color: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.philosophy-figure > div img,
.philosophy-figure > div [style*="background"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Direction cards ─────────────────────────────────────── */
.direction-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.direction-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

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

.direction-card .card-number {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.direction-card .card-icon-alt {
  position: absolute;
  top: 28px;
  right: 26px;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.35;
}

.direction-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.direction-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.75;
}

.direction-card .card-img-bg {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-warm);
  overflow: hidden;
}
.direction-card .card-img-bg img,
.direction-card .card-img-bg [style*="background"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .direction-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .direction-cards { grid-template-columns: 1fr; }
}

/* ── Section header ──────────────────────────────────────── */
.section-header {
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: #246b41;
  letter-spacing: -0.02em;
}

.section-header-center {
  text-align: center;
  margin-bottom: 52px;
}
.section-header-center h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* ── Page hero ───────────────────────────────────────────── */
.new-page-hero {
  padding-top: 120px;
  padding-bottom: 64px;
  background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.new-page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.3;
}
.new-page-hero .container { position: relative; z-index: 1; }

.new-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.new-page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  text-indent: 0;
  text-align: center;
}

.policy-date {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  margin-top: 14px;
  font-weight: 500;
}

/* ── Mission ─────────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: start;
}

.mission-figure > div {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  background-color: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mission-figure > div img,
.mission-figure > div [style*="background"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.mission-content p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.mission-statement {
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-soft);
  border-left: 4px solid var(--accent);
}
.mission-statement p {
  color: var(--text-dark) !important;
  font-size: 0.96rem;
  font-weight: 500;
}

/* Sketchy fallback — now just a clean rounded box */
.sketchy {
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ── Values ──────────────────────────────────────────────── */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-block {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.value-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow-accent);
}

.value-block h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-block p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .values-row { grid-template-columns: 1fr; }
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.contact-main h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.contact-main > p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: 0.94rem;
}

.contact-info-block {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-details {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 2;
}

.contact-tip {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  margin-top: 18px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-mid);
}
.contact-tip .notice-icon { color: var(--accent); flex-shrink: 0; }

.contact-figure > div {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  background-color: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-figure > div img,
.contact-figure > div [style*="background"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-figure { order: -1; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-block { max-width: 720px; }
.faq-block h2 {
  margin-bottom: 24px;
  color: var(--text-dark);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item h3 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-item p {
  font-size: 0.86rem;
  color: var(--text-mid);
}

/* ── Legal ───────────────────────────────────────────────── */
.legal-article { max-width: 760px; margin: 0 auto; }

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }

.section-number {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.legal-section p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.85;
}
.legal-section a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.2s;
}
.legal-section a:hover { border-bottom-color: var(--accent); }

.legal-list { margin: 14px 0 18px; }
.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.75;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.note {
  font-size: 0.82rem !important;
  color: var(--text-light) !important;
  font-style: italic;
}

.contact-mini {
  margin: 18px 0 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--accent-light);
  transition: all 0.2s;
}
.back-link:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Health panels ───────────────────────────────────────── */
.health-panels {
  display: grid;
  gap: 20px;
}

.health-panel {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.health-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.panel-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 56px;
  text-align: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  letter-spacing: -0.02em;
}

.health-panel h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.health-panel .panel-img-bg {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-md);
  background-color: var(--bg-warm);
  overflow: hidden;
  margin-bottom: 18px;
}
.health-panel .panel-img-bg img,
.health-panel .panel-img-bg [style*="background"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.health-panel ul { padding-left: 0; }
.health-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mid);
  font-size: 0.86rem;
  margin-bottom: 10px;
  line-height: 1.75;
}
.health-panel li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.health-panel strong {
  color: var(--text-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .health-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
  .panel-number { font-size: 1.2rem; width: 48px; height: 48px; line-height: 48px; }
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 36px;
}

.footer-brand .logo {
  margin-bottom: 12px;
  display: inline-flex;
  color: var(--white);
}
.footer-brand .logo-accent {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 122, 95, 0.3);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-legal .eyebrow {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
  margin-bottom: 10px;
}

.footer-legal a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  font-size: 0.84rem;
  transition: color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}
.footer-legal a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.footer-bottom {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  /* border-top: 1px solid var(--border); */
  padding: 24px 0;
  transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 32px rgba(31, 46, 37, 0.1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner__content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-indent: 0;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-banner__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-banner__button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 22px;
  border: 1px solid;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.2s;
}

.cookie-banner__button--primary {
  background: #98c12c;
  color: white;
  border-color: #98c12c;
}
.cookie-banner__button--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.cookie-banner__button--secondary:hover {
  border-color: var(--text-mid);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ── Banner image section (removed — merged into hero) ──── */

body.mobile-menu-open {
  overflow: hidden;
}
