@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
  --primary: #003049;
  --accent-terra: #D96245;
  --accent-light: #EBEBEB;
  --accent-sage: #A2B29A;
  --white: #FFFFFF;
  --text-dark: #1a1a2e;
  --text-muted: #5a6a72;
  --text-light: #8a9aa2;
  --border-light: #d8dfe3;
  --section-pad: 100px 0;
  --section-pad-sm: 60px 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }

p { margin-bottom: 1.3rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-terra); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #b84e33; }

img { max-width: 100%; height: auto; display: block; }

.font-mono { font-family: 'JetBrains Mono', monospace; }
.font-serif { font-family: 'Source Serif 4', serif; }

.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 30px; }

.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }

.bg-primary { background-color: var(--primary); }
.bg-light { background-color: var(--accent-light); }
.bg-sage { background-color: var(--accent-sage); }
.bg-white { background-color: var(--white); }
.bg-terra { background-color: var(--accent-terra); }

.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-terra { color: var(--accent-terra) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-terra);
  display: block;
  margin-bottom: 18px;
}

.section-label--light { color: var(--accent-sage); }

.divider-line {
  width: 60px;
  height: 3px;
  background-color: var(--accent-terra);
  margin: 24px 0;
}

.divider-line--center { margin: 24px auto; }
.divider-line--sage { background-color: var(--accent-sage); }
.divider-line--light { background-color: rgba(255,255,255,0.4); }

.btn-xjymlar {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--accent-terra);
  color: var(--accent-terra);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-xjymlar:hover {
  background: var(--accent-terra);
  color: var(--white);
  text-decoration: none;
}
.btn-xjymlar:active { transform: scale(0.97); }

.btn-xjymlar--filled {
  background: var(--accent-terra);
  color: var(--white);
}
.btn-xjymlar--filled:hover {
  background: #b84e33;
  border-color: #b84e33;
  color: var(--white);
}

.btn-xjymlar--light {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-xjymlar--light:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-xjymlar--primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-xjymlar--primary:hover {
  background: var(--primary);
  color: var(--white);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ─── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 48, 73, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.header-logo span { color: var(--accent-terra); }
.header-logo:hover { color: var(--white); text-decoration: none; }

.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent-terra);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  padding: 12px 40px;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ─── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--accent-terra); }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.footer-educational-note {
  font-size: 0.78rem;
  color: var(--accent-sage);
  font-style: italic;
  padding: 12px 16px;
  border-left: 3px solid var(--accent-sage);
  background: rgba(162,178,154,0.08);
  margin-top: 16px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}
.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-hours-block {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-hours-title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}
.footer-hours-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.76rem; color: rgba(255,255,255,0.35); }
.footer-policies { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-policies a { font-size: 0.76rem; color: rgba(255,255,255,0.4); transition: color 0.2s; text-decoration: none; }
.footer-policies a:hover { color: rgba(255,255,255,0.75); }

/* ─── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--primary);
  border-top: 3px solid var(--accent-terra);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-btn {
  padding: 9px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.cookie-btn-accept { background: var(--accent-terra); color: var(--white); }
.cookie-btn-accept:hover { background: #b84e33; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cookie-btn-more { background: transparent; color: var(--accent-sage); font-size: 0.76rem; border: none; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: underline; }
.cookie-btn-more:hover { color: #8a9a82; }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,46,0.92) 0%, rgba(0,30,46,0.55) 50%, rgba(0,30,46,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 22px;
  display: block;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--accent-terra);
  font-style: normal;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 60px; }
  50% { opacity: 0.9; height: 80px; }
}

/* ─── INTRO SECTION ───────────────────────────────────────────── */
.intro-section { background: var(--accent-light); padding: 110px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-image-wrap {
  position: relative;
}
.intro-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.intro-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,48,73,0.88);
  padding: 18px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.intro-text { padding-top: 10px; }
.intro-text h2 { margin-bottom: 24px; }
.intro-text p { margin-bottom: 20px; }
.key-concept-list { list-style: none; margin-top: 30px; }
.key-concept-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.key-concept-list li:last-child { border-bottom: none; }
.key-concept-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent-terra);
  flex-shrink: 0;
  margin-top: 7px;
}
.key-concept-list span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.key-concept-list strong { color: var(--primary); font-weight: 600; }

/* ─── HABITS SECTION ──────────────────────────────────────────── */
.habits-section { background: var(--white); padding: 110px 0; }
.habits-header { margin-bottom: 60px; }
.habits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
}
.habit-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.habit-item:nth-child(even) { border-right: none; }
.habit-item:nth-last-child(-n+2) { border-bottom: none; }
.habit-img-wrap { overflow: hidden; position: relative; }
.habit-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.habit-item:hover .habit-img-wrap img { transform: scale(1.04); }
.habit-body { padding: 30px 28px; }
.habit-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-terra);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.habit-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.habit-body p { font-size: 0.86rem; line-height: 1.65; color: var(--text-muted); margin: 0; }

/* ─── PILLARS SECTION ─────────────────────────────────────────── */
.pillars-section { background: var(--primary); padding: 110px 0; position: relative; overflow: hidden; }
.pillars-bg-text {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: 18rem;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.pillars-header { margin-bottom: 60px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.7;
}
.pillar-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 16px; }
.pillar-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
.pillar-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-sage);
  padding: 5px 10px;
  border: 1px solid rgba(162,178,154,0.35);
}
.pillars-image-strip {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.45;
  filter: saturate(0.6);
}

/* ─── MINDFULNESS SECTION ─────────────────────────────────────── */
.mindfulness-section { background: var(--accent-light); padding: 110px 0; }
.mindfulness-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mindfulness-inner h2 { margin-bottom: 30px; }
.mindfulness-inner p { font-size: 1rem; margin-bottom: 22px; }
.pull-quote {
  background: var(--primary);
  color: var(--white);
  padding: 50px 60px;
  margin: 50px 0;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: 'Source Serif 4', serif;
  color: var(--accent-terra);
  line-height: 1;
  opacity: 0.8;
}
.pull-quote-text {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin: 0;
}
.pull-quote-attr {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-top: 22px;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.concept-card {
  background: var(--white);
  padding: 28px 24px;
  border-top: 3px solid var(--accent-sage);
}
.concept-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.concept-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ─── ROUTINE SECTION ─────────────────────────────────────────── */
.routine-section { background: var(--white); padding: 110px 0; }
.routine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.routine-image-wrap { position: relative; overflow: hidden; }
.routine-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.routine-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent-terra);
}
.routine-text { padding-top: 8px; }
.routine-text h2 { margin-bottom: 22px; }
.routine-point {
  padding: 22px 0;
  border-bottom: 1px solid var(--accent-light);
}
.routine-point:last-child { border-bottom: none; }
.routine-point h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--primary); }
.routine-point p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── CHALLENGES SECTION ──────────────────────────────────────── */
.challenges-section { background: var(--accent-light); padding: 110px 0; }
.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.challenges-text h2 { margin-bottom: 20px; }
.challenges-text p { margin-bottom: 30px; }
.challenge-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.challenge-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin-top: 30px;
}
.challenge-table th {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  padding: 16px 20px;
  text-align: left;
  font-weight: 400;
}
.challenge-table td {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.55;
}
.challenge-table tr:last-child td { border-bottom: none; }
.challenge-table tr:hover td { background: rgba(0,48,73,0.03); }
.challenge-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  background: rgba(217,98,69,0.1);
  color: var(--accent-terra);
  margin-bottom: 6px;
}

/* ─── FAQ SECTION ─────────────────────────────────────────────── */
.faq-section { background: var(--white); padding: 110px 0; }
.faq-header { margin-bottom: 60px; }
.faq-list { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}
.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
  margin: 0;
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-icon::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { border-color: var(--accent-terra); transform: none; }
.faq-item.open .faq-icon::after { transform: rotate(-135deg) translate(-2px, -2px); border-color: var(--accent-terra); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── SOFT CTA SECTION ────────────────────────────────────────── */
.soft-cta-section {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
}
.soft-cta-section h2 { color: var(--white); margin-bottom: 18px; }
.soft-cta-section p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; }

/* ─── DISCLAIMER BOX ──────────────────────────────────────────── */
.disclaimer-box {
  background: rgba(162,178,154,0.12);
  border-left: 4px solid var(--accent-sage);
  padding: 22px 28px;
  margin: 50px 0 0;
}
.disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.disclaimer-box.on-dark { background: rgba(162,178,154,0.08); border-left-color: var(--accent-sage); }
.disclaimer-box.on-dark p { color: rgba(255,255,255,0.55); }

/* ─── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-terra);
}
.page-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-block { position: relative; }
.about-image-block img { width: 100%; height: 560px; object-fit: cover; }
.about-image-overlay {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--accent-terra);
  padding: 28px 24px;
  max-width: 240px;
}
.about-image-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin: 0; font-style: italic; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--accent-light);
  padding: 26px 22px;
  border-top: 2px solid var(--accent-sage);
}
.value-card h3 { font-size: 0.92rem; margin-bottom: 8px; }
.value-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ─── CONTACT PAGE ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-form-wrap { background: var(--white); }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--accent-light);
  border: 1px solid var(--border-light);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
.form-control-custom:focus {
  border-color: var(--accent-terra);
  background: var(--white);
}
textarea.form-control-custom { resize: vertical; min-height: 160px; }
.contact-disclaimer {
  background: rgba(0,48,73,0.05);
  border-left: 3px solid var(--primary);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.contact-disclaimer p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.contact-info-block { padding-top: 10px; }
.contact-info-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-terra);
  display: block;
  margin-bottom: 6px;
}
.contact-info-value { font-size: 0.88rem; color: var(--text-dark); line-height: 1.6; }

/* ─── BLOG PAGE ───────────────────────────────────────────────── */
.blog-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
}
.blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 1; }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-terra);
  margin-bottom: 12px;
  display: block;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body p { font-size: 0.83rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.blog-read-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-terra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
}
.blog-read-link::after { content: '→'; }
.blog-read-link:hover { color: #b84e33; }

/* ─── BLOG ARTICLE ────────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 50px;
}
.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--primary); }
.article-body p { font-size: 0.93rem; line-height: 1.8; color: var(--text-muted); }
.article-body ul, .article-body ol {
  margin: 16px 0 20px 22px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}
.article-sidebar { position: sticky; top: 100px; }
.sidebar-block {
  background: var(--accent-light);
  padding: 28px 24px;
  margin-bottom: 24px;
  border-top: 3px solid var(--primary);
}
.sidebar-block-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}
.sidebar-block ul { list-style: none; }
.sidebar-block ul li { margin-bottom: 8px; }
.sidebar-block ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; text-decoration: none; }
.sidebar-block ul li a:hover { color: var(--accent-terra); }

.timeline-strip {
  border-left: 3px solid var(--accent-terra);
  padding-left: 24px;
  margin: 30px 0;
}
.timeline-entry { margin-bottom: 28px; }
.timeline-entry:last-child { margin-bottom: 0; }
.timeline-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent-terra);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.timeline-entry h3 { font-size: 0.95rem; margin-bottom: 6px; }
.timeline-entry p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--primary);
  margin: 40px 0;
}
.stat-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-terra);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }

.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.myth-box {
  padding: 22px 20px;
  border: 1px solid rgba(217,98,69,0.3);
  background: rgba(217,98,69,0.05);
}
.myth-box .box-label { font-size: 0.65rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-terra); display: block; margin-bottom: 8px; }
.fact-box {
  padding: 22px 20px;
  border: 1px solid rgba(162,178,154,0.4);
  background: rgba(162,178,154,0.07);
}
.fact-box .box-label { font-size: 0.65rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-sage); display: block; margin-bottom: 8px; }
.myth-box p, .fact-box p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

.glossary-rail {
  background: var(--accent-light);
  border-left: 3px solid var(--primary);
  padding: 0;
  margin: 30px 0;
}
.glossary-entry { padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
.glossary-entry:last-child { border-bottom: none; }
.glossary-term { font-weight: 700; font-size: 0.88rem; color: var(--primary); display: block; margin-bottom: 4px; }
.glossary-def { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ─── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.35rem; margin: 42px 0 14px; padding-top: 10px; border-top: 1px solid var(--border-light); }
.legal-body h2:first-of-type { border-top: none; margin-top: 0; }
.legal-body h3 { font-size: 1rem; margin: 26px 0 10px; }
.legal-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.legal-body ul, .legal-body ol { margin: 12px 0 18px 24px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.legal-toc {
  background: var(--accent-light);
  padding: 28px 30px;
  margin-bottom: 50px;
  border-left: 4px solid var(--primary);
}
.legal-toc-title { font-size: 0.68rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block; }
.legal-toc ol { margin: 0; padding-left: 20px; font-size: 0.85rem; color: var(--text-muted); }
.legal-toc ol li { margin-bottom: 6px; }
.legal-toc ol li a { color: var(--primary); text-decoration: none; }
.legal-toc ol li a:hover { color: var(--accent-terra); }
.warning-panel {
  background: var(--primary);
  padding: 36px 40px;
  margin-bottom: 40px;
  border-left: 6px solid var(--accent-terra);
}
.warning-panel h2 { color: var(--white) !important; border-top: none !important; margin-top: 0 !important; padding-top: 0 !important; font-size: 1.3rem; margin-bottom: 14px; }
.warning-panel p { color: rgba(255,255,255,0.75) !important; font-size: 0.92rem; margin: 0; }
.cookie-matrix {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.cookie-matrix th {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 14px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  text-align: left;
}
.cookie-matrix td { padding: 13px 18px; font-size: 0.85rem; color: var(--text-muted); border-bottom: 1px solid var(--border-light); }
.cookie-matrix tr:last-child td { border-bottom: none; }

/* ─── THANK YOU PAGE ──────────────────────────────────────────── */
.thankyou-center { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.thankyou-inner { max-width: 560px; }
.thankyou-icon { width: 64px; height: 64px; margin: 0 auto 28px; }
.thankyou-inner h1 { font-size: 2.2rem; margin-bottom: 18px; }
.thankyou-inner p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 36px; }

/* ─── UTILITY ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.pt-0 { padding-top: 0 !important; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid, .routine-grid, .challenges-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .habits-grid { grid-template-columns: 1fr; }
  .habit-item { grid-template-columns: 200px 1fr; border-right: none; }
  .habit-item:nth-child(even) { border-right: none; }
  .habit-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light); }
  .habit-item:last-child { border-bottom: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .concept-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; top: auto; }
  .about-image-overlay { position: static; margin-top: 20px; max-width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .myth-fact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; --section-pad-sm: 45px 0; }
  .container-wide, .container, .container-narrow { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 92vh; padding-bottom: 60px; }
  .hero-content { padding: 0 20px; }
  .hero-scroll { display: none; }
  .intro-image-wrap img { height: 320px; }
  .habit-item { grid-template-columns: 1fr; }
  .habit-img-wrap img { height: 180px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 36px 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero-img { height: 220px; }
  .article-hero-img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { padding: 18px 20px; }
  .challenge-image-wrap { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-block img { height: 320px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 140px 0 60px; }
  .pull-quote::before { font-size: 5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .hero-title { font-size: 2.3rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; align-items: flex-start; }
}
