/* =============================================================
   颐养 · Botanical Journal Style
   Washi paper texture · Serif display · Seal-red accent
   Intimate, literary, warm — like a wellness letter you'd keep
   ============================================================= */

/* ── Reset & Variables ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper:      #F7F2EA;
  --ink:        #1A2318;
  --seal:       #C45B3E;
  --seal-light: #D4765A;
  --green:      #7B9E6B;
  --green-light:#A8C496;
  --parchment:  #D4C5A0;
  --earth:      #3D2B1F;
  --cream:      #EDE8DD;
  --border:     rgba(26, 35, 24, 0.1);
}

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

body {
  font-family: "PingFang SC", "Noto Serif SC", "Source Han Serif SC",
               "Songti SC", "SimSun", Georgia, serif;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  /* Subtle texture overlay */
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h6v6H0z' fill='none'/%3E%3Cpath d='M3 0v6M0 3h6' stroke='%23000' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/svg%3E");
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  font-size: 0.95rem;
  max-width: 68ch;
  text-align: justify;
  text-indent: 2em;
}
p:first-of-type,
p.intro-text { text-indent: 0; }

/* ── Eyebrow / vertical label ────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seal);
  border: 1px solid var(--seal);
  padding: 4px 10px;
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Stamp / seal logo mark */
.logo-accent {
  width: 28px;
  height: 28px;
  border: 2px solid var(--seal);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-accent::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--seal);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 0;
  font-size: 0.82rem;
}

.nav-links li { position: relative; }

.nav-links a {
  display: block;
  padding: 0 20px;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  background: var(--cream);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-header {
    z-index: 10000;
  }
  .mobile-menu-toggle {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 1002;
  }
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    border-radius: 1px;
  }
  /* Rotate to X when open */
  .mobile-menu-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
    background: var(--seal);
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 43%;
    background: linear-gradient(180deg,rgba(237,232,221,1) 66%,rgba(237, 232, 221, 0) );
	/* box-shadow: 0 30px 30px rgba(237,232,221,1); */
    flex-direction: column;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 8px;
	/* backdrop-filter: blur(8px); */
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    display: block;
    padding: 16px 32px;
    font-size: 1rem;
    height: auto;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
    opacity: 1;
    color: var(--ink);
  }
  .nav-links a.active {
    opacity: 1;
    background: var(--cream);
    color: var(--seal);
    font-weight: 700;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO — homepage
   ═══════════════════════════════════════════════════════════ */
.new-hero {
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 98%/15%;
  box-shadow: 0 10px 30px rgba(42, 80, 89, 0.5);
}

/* Decorative pattern overlay */
.new-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero-left { color: var(--paper); }

.hero-left .eyebrow {
  border-color: var(--seal);
  color: var(--seal);
  margin-bottom: 24px;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--paper);
}

.hero-left h1 strong {
  color: var(--seal);
  font-weight: 800;
  position: relative;
}

.hero-left h1 strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--seal);
  opacity: 0.3;
}

.hero-left .lead-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(247, 242, 234, 0.55);
  text-indent: 0;
  text-align: left;
  max-width: 520px;
  margin-bottom: 40px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(247, 242, 234, 0.25);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-light);
}

.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* background: #2a3530; */
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  border-radius: 80%/68% 79% 93% 7%;
}

/* Seal stamp decoration */
.hero-stamp {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--seal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  z-index: 2;
}
.hero-stamp span {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--seal);
  letter-spacing: 0.15em;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 16px;
  background: rgba(255,255,255,0.06);
}

.hero-stat-item {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  text-align: center;
}

.hero-stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--seal);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-item span {
  font-size: 0.7rem;
  color: rgba(247, 242, 234, 0.4);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right { display: none; }
}

/* ── Section dividers / decorative rules ─────────────────── */
.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-rule-mark {
  width: 10px;
  height: 10px;
  border: 1px solid var(--seal);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Section spacing ─────────────────────────────────────── */
.section {
  padding: 80px 0;
  position: relative;
}

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

/* ── Notice bar ──────────────────────────────────────────── */
.notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  margin: 32px 0;
  border-left: 2px solid var(--green);
  background: rgba(123, 158, 107, 0.06);
  font-size: 0.84rem;
  color: var(--text-light);
  text-indent: 0;
  text-align: left;
  line-height: 1.7;
}

.notice-icon {
  font-size: 1rem;
  color: var(--green);
  padding-top: 2px;
  flex-shrink: 0;
}

/* ── Philosophy / About section ──────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.philosophy-text {
  padding-top: 16px;
}

.philosophy-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.philosophy-text .lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--seal);
  text-indent: 0;
  margin-bottom: 20px;
}

.philosophy-text p {
  margin-bottom: 16px;
  color: rgba(26, 35, 24, 0.7);
}

.philosophy-figure {
  position: relative;
}

.philosophy-figure img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(0.75);
  background: var(--cream);
}

.philosophy-figure::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--parchment);
  z-index: -1;
  border-radius: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seal);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 8px;
  transition: gap 0.3s;
}
.text-link:hover { gap: 14px; }

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-figure img { height: 300px; }
}

/* ── Direction cards (homepage) ──────────────────────────── */
.direction-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.direction-card {
  padding: 32px 28px;
  background: var(--paper);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.direction-card:hover {
  background: var(--cream);
}

.direction-card .card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--parchment);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.direction-card .card-icon-alt {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 1rem;
  color: var(--green);
  opacity: 0.5;
}

.direction-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 20px;
}

.direction-card p {
  font-size: 0.84rem;
  color: rgba(26, 35, 24, 0.6);
  margin-bottom: 20px;
  line-height: 1.8;
}

.direction-card .card-img {
  width: calc(100% + 56px);
  margin-left: -28px;
  height: 140px;
  object-fit: cover;
  filter: saturate(0.7) sepia(0.15);
  background: var(--cream);
}

@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: 48px;
  text-align: left;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.section-header p {
  color: rgba(26, 35, 24, 0.5);
  font-size: 0.92rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}
.section-header-center h2 { margin-bottom: 12px; }

/* ── Page hero (sub-pages) ───────────────────────────────── */
.new-page-hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 98%/15%;
  box-shadow: 0 10px 30px rgba(42, 80, 89, 0.5);
}

.new-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.new-page-hero > .container { position: relative; z-index: 1; }

.new-page-hero .eyebrow {
  border-color: var(--seal);
  color: var(--seal);
  margin-bottom: 20px;
}

.new-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 16px;
}

.new-page-hero p {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.5);
  max-width: 520px;
  margin: 0 auto;
  text-indent: 0;
  text-align: left;
}

.policy-date {
  font-size: 0.78rem !important;
  color: rgba(247, 242, 234, 0.3) !important;
  margin-top: 16px;
}

/* ── Mission (About page) ────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: start;
}

.mission-figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.7);
  background: var(--cream);
}

.mission-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.mission-content p {
  color: rgba(26, 35, 24, 0.7);
  margin-bottom: 16px;
}

.mission-statement {
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 2px solid var(--seal);
  background: var(--cream);
  font-style: italic;
}
.mission-statement p {
  text-indent: 0;
  color: var(--ink) !important;
  font-size: 1rem;
}

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

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

.value-block {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.value-block:last-child { border-right: none; }

.value-line {
  width: 24px;
  height: 1px;
  background: var(--seal);
  margin: 0 auto 20px;
}

.value-icon {
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 20px;
  display: block;
}

.value-block h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-block p {
  font-size: 0.84rem;
  color: rgba(26, 35, 24, 0.6);
  margin: 0 auto;
  text-align: center;
  text-indent: 0;
}

@media (max-width: 768px) {
  .values-row { grid-template-columns: 1fr; }
  .value-block { border-right: none; border-bottom: 1px solid var(--border); }
  .value-block:last-child { border-bottom: none; }
}

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

.contact-main h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-main > p {
  color: rgba(26, 35, 24, 0.6);
  margin-bottom: 32px;
  text-indent: 0;
}

.contact-info-block {
  border: 1px solid var(--border);
  background: var(--cream);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--seal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px 6px;
}

.contact-details {
  padding: 6px 20px 24px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 2;
  text-indent: 0;
}

.contact-tip {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: rgba(26, 35, 24, 0.45);
  text-indent: 0;
}

.contact-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.6) sepia(0.1);
  background: var(--cream);
}

@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; }

.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.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.88rem;
  color: rgba(26, 35, 24, 0.6);
  text-indent: 0;
  text-align: left;
}

/* ── Legal pages (Cookie, Privacy, Terms) ────────────────── */
.legal-article {
  max-width: 760px;
  margin: 0 auto;
}

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

.section-number {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--seal);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.legal-section p {
  color: rgba(26, 35, 24, 0.7);
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.85;
}

.legal-list {
  margin: 12px 0 16px;
  padding-left: 0;
}
.legal-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(26, 35, 24, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.75;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--seal);
  opacity: 0.6;
}

.note {
  font-size: 0.82rem !important;
  color: rgba(26, 35, 24, 0.4) !important;
  font-style: italic;
}

.contact-mini {
  margin: 16px 0 24px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 2;
  text-indent: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--seal) !important;
  font-weight: 600;
  font-size: 0.85rem;
}
.back-link:hover { opacity: 0.7; }

.legal-section a {
  color: var(--seal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Health panels ───────────────────────────────────────── */
.health-panels {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--paper);
}

.health-panel {
  padding: 48px 40px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  align-items: start;
}
.health-panel:first-child { border-top: none; }
.health-panel:last-child { border-bottom: none; }

.panel-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--parchment);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.health-panel h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 4px;
}

.health-panel .panel-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.6) sepia(0.15);
  background: var(--cream);
  margin-bottom: 20px;
}

.health-panel ul { padding-left: 0; }
.health-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(26, 35, 24, 0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.75;
}
.health-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--seal);
  opacity: 0.6;
}
.health-panel strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .health-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 24px;
  }
  .panel-number { font-size: 2rem; }
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(247, 242, 234, 0.45);
  padding: 64px 0 32px;
  font-size: 0.82rem;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--paper);
  display: inline-flex;
}

.footer-brand p {
  text-indent: 0;
  text-align: left;
  color: rgba(247, 242, 234, 0.35);
  max-width: 320px;
  font-size: 0.82rem;
  line-height: 1.8;
}

.footer-legal a {
  display: block;
  color: rgba(247, 242, 234, 0.4);
  padding: 8px 0;
  font-size: 0.82rem;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-legal a:hover { color: var(--seal); }

.footer-divider {
  height: 1px;
  background: rgba(247, 242, 234, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  font-size: 0.72rem;
  color: rgba(247, 242, 234, 0.2);
  line-height: 1.9;
  text-indent: 0;
}

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

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s 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; }

/* ── Cookie Banner (bottom fixed) ────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0; right: 0;
  z-index: 9999;
  background: rgba(26,35,24,0.9);
  border-top: 2px solid var(--seal);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  backdrop-filter:blur(8px);
  padding: 20px 0;
  transition: bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-banner__content {
  max-width: var(--max-width);
  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.88rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.55);
  text-indent: 0;
  margin: 0;
}

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

.cookie-banner__link {
  font-size: 0.78rem;
  color: var(--seal);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.cookie-banner__link:hover {
  border-color: var(--seal);
}

.cookie-banner__button {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.cookie-banner__button--primary {
  background: var(--seal);
  color: #fff;
}
.cookie-banner__button--primary:hover {
  background: var(--seal-light);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: rgba(247, 242, 234, 0.6);
  border: 1px solid rgba(247, 242, 234, 0.15);
}
.cookie-banner__button--secondary:hover {
  color: var(--paper);
  border-color: rgba(247, 242, 234, 0.3);
}

@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;
  }
}
