@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2C3E50;
  --primary-light: #34495E;
  --accent-red: #E74C3C;
  --accent-green: #2ECC71;
  --accent-orange: #F39C12;
  --neutral-light: #ECF0F1;
  --neutral-mid: #BDC3C7;
  --neutral-dark: #34495E;
  --white: #FFFFFF;
  --text-body: #34495E;
  --text-muted: #7F8C8D;
  --container-max: 1440px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-xxl: 120px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 2px 8px rgba(44,62,80,0.08);
  --shadow-md: 0 4px 20px rgba(44,62,80,0.12);
  --shadow-lg: 0 8px 40px rgba(44,62,80,0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--primary);
}

p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-pad {
  padding: var(--space-xxl) 0;
}

.section-pad-md {
  padding: var(--space-xl) 0;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-white:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.btn-filled {
  background: var(--primary);
  color: var(--white);
}

.btn-filled:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: var(--space-md) 0;
}

.divider-center {
  margin: var(--space-md) auto;
}

.tag-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo span {
  color: var(--accent-red);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary);
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent-orange);
}

.page-offset {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(44,62,80,0.55) 60%, rgba(44,62,80,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto var(--space-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  padding: 6px 18px;
  margin-bottom: var(--space-md);
}

.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  background: var(--white);
  padding: var(--space-lg) var(--space-lg);
  border-top: 4px solid var(--accent-red);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--neutral-mid);
}

.section-bg-light {
  background: var(--neutral-light);
}

.section-bg-dark {
  background: var(--primary);
  color: var(--white);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--white);
}

.section-bg-dark h2 {
  color: var(--accent-orange);
}

.section-bg-dark p {
  color: rgba(255,255,255,0.82);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.two-col-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.two-col-img .col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--white);
  padding: var(--space-lg);
  border-top: 3px solid var(--accent-red);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  background: #fafbfc;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-light {
  background: var(--neutral-light);
  border-top-color: var(--accent-orange);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-item {
  background: var(--white);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
}

.feature-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1;
  min-width: 48px;
  opacity: 0.35;
}

.feature-text h3 {
  margin-bottom: 8px;
}

.bulleted-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bulleted-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.bulleted-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 0;
  background: var(--accent-red);
  margin-top: 8px;
}

.bulleted-list.green li::before {
  background: var(--accent-green);
}

.bulleted-list.orange li::before {
  background: var(--accent-orange);
}

.quote-block {
  background: var(--primary);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0;
  color: var(--accent-red);
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 40px;
}

.quote-block p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.glossary-rail {
  border-left: 3px solid var(--accent-orange);
  padding: var(--space-md) var(--space-lg);
  background: var(--neutral-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.glossary-term {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.glossary-def {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral-mid);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-red);
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.definition-panel {
  background: var(--accent-red);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-lg) 0;
}

.definition-panel p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
}

.definition-panel .def-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 10px;
  font-style: normal;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2px;
  background: var(--neutral-mid);
  border: 2px solid var(--neutral-mid);
}

.matrix-cell {
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-top: 3px solid transparent;
}

.matrix-cell:nth-child(odd) {
  border-top-color: var(--accent-red);
}

.matrix-cell:nth-child(even) {
  border-top-color: var(--accent-orange);
}

.matrix-cell h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.matrix-cell p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.diagram-node {
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  min-width: 130px;
}

.diagram-node span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}

.diagram-node small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

.diagram-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--accent-orange);
  padding: 0 8px;
  font-weight: 900;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion-item {
  background: var(--white);
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease;
}

.accordion-item.active,
.accordion-item:hover {
  border-left-color: var(--accent-red);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: var(--neutral-light);
}

.accordion-trigger h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
  text-align: left;
  margin: 0;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: transform 0.3s ease, background 0.25s ease;
}

.accordion-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke 0.25s ease;
}

.accordion-item.active .accordion-icon {
  background: var(--accent-red);
  transform: rotate(45deg);
}

.accordion-item.active .accordion-icon svg {
  stroke: var(--white);
}

.accordion-body {
  display: none;
  padding: 0 var(--space-lg) var(--space-md);
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.myth-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.myth-false {
  background: #FDF2F2;
  padding: var(--space-md);
  border-top: 3px solid #E74C3C;
}

.myth-true {
  background: #F0FAF4;
  padding: var(--space-md);
  border-top: 3px solid var(--accent-green);
}

.myth-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.myth-false .myth-label { color: var(--accent-red); }
.myth-true .myth-label { color: var(--accent-green); }

.myth-block p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.large-image-block {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.large-image-block img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.large-image-block .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44,62,80,0.85);
  padding: var(--space-md) var(--space-lg);
}

.large-image-block .image-caption p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.advice-card {
  background: var(--white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--accent-orange);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.advice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.advice-card-icon {
  width: 52px;
  height: 52px;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.advice-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advice-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.advice-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.methodology-table {
  width: 100%;
  border-collapse: collapse;
}

.methodology-table thead {
  background: var(--primary);
}

.methodology-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
}

.methodology-table tbody tr {
  border-bottom: 1px solid var(--neutral-light);
  transition: background 0.2s ease;
}

.methodology-table tbody tr:hover {
  background: var(--neutral-light);
}

.methodology-table tbody td {
  padding: 18px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-body);
  vertical-align: top;
}

.methodology-table tbody td:first-child {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-red);
  white-space: nowrap;
}

.warning-box {
  background: #FFF8E7;
  border: 2px solid var(--accent-orange);
  border-left: 6px solid var(--accent-orange);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-lg) 0;
}

.warning-box .warning-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
  display: block;
}

.warning-box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--primary);
}

.mission-panel {
  background: var(--primary);
  padding: var(--space-xl) var(--space-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(231,76,60,0.12);
  border-radius: 0;
}

.mission-panel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(46,204,113,0.08);
  border-radius: 0;
}

.mission-panel h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.mission-panel p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-block h3 {
  margin-bottom: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item p,
.contact-info-item a {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-body);
  padding-top: 8px;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: var(--white);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}

.form-disclaimer {
  background: var(--neutral-light);
  border-left: 3px solid var(--accent-orange);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-disclaimer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--neutral-mid);
  background: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  min-height: 140px;
}

.thank-you-panel {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-panel .check-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.thank-you-panel .check-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-panel h1 {
  margin-bottom: var(--space-md);
}

.thank-you-panel p {
  margin-bottom: var(--space-lg);
}

.policy-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--neutral-light);
}

.policy-page h2:first-of-type {
  margin-top: 0;
}

.policy-page p {
  margin-bottom: var(--space-sm);
}

.policy-page ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-lg);
}

.policy-page ul li {
  list-style: disc;
  color: var(--text-body);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-page ol {
  margin: var(--space-sm) 0 var(--space-md) var(--space-lg);
}

.policy-page ol li {
  list-style: decimal;
  color: var(--text-body);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-page dl {
  margin: var(--space-sm) 0 var(--space-md);
}

.policy-page dt {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.policy-page dd {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.page-hero-inner {
  background: var(--primary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.page-hero-inner h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero-inner p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-xl);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-red);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--neutral-mid);
}

.info-disclaimer {
  background: var(--neutral-light);
  border-top: 3px solid var(--primary);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
}

.info-disclaimer .disc-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.info-disclaimer p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand h3 span {
  color: var(--accent-red);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-message {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  border: 1px solid rgba(243,156,18,0.4);
  padding: 6px 14px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-orange);
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-hours {
  margin-top: var(--space-sm);
  background: rgba(255,255,255,0.05);
  padding: var(--space-sm);
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

.footer-hours strong {
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-policies a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-policies a:hover {
  color: var(--accent-orange);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 3px solid var(--accent-orange);
  padding: var(--space-md) var(--space-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-accept {
  background: var(--accent-green);
  color: var(--white);
}

.cookie-accept:hover {
  background: #27ae60;
  color: var(--white);
}

.cookie-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.cookie-more {
  background: transparent;
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
}

.cookie-more:hover {
  background: var(--accent-orange);
  color: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.content-image-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.content-image-right .img-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.geo-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(231,76,60,0.2);
  pointer-events: none;
}

.section-number {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--neutral-light);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.section-bg-dark .section-number {
  color: rgba(255,255,255,0.05);
}

.vertical-divider {
  width: 1px;
  background: var(--neutral-mid);
  align-self: stretch;
}

.highlight-block {
  background: var(--accent-red);
  padding: var(--space-lg) var(--space-xl);
}

.highlight-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
}

.highlight-block h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-center {
  text-align: center;
  margin-top: var(--space-xl);
}

.inline-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neutral-light);
  padding: 10px 18px;
  margin-bottom: var(--space-md);
}

.inline-info span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.col-gap-list {
  columns: 2;
  column-gap: var(--space-xl);
}

.col-gap-list li {
  break-inside: avoid;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.col-gap-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--accent-green);
  margin-top: 9px;
}

.page-hero-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--space-lg);
}

.page-hero-img .overlay h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero-img .overlay p {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  max-width: 500px;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .two-col,
  .two-col-img,
  .content-image-right,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-col-img .col-img img,
  .content-image-right .img-col img,
  .about-img-wrap img {
    height: 300px;
  }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .four-col {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .matrix-grid {
    grid-template-columns: 1fr 1fr;
  }

  .myth-block {
    grid-template-columns: 1fr;
  }

  .advice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    gap: var(--space-lg);
  }

  .stat-divider {
    display: none;
  }

  .diagram {
    flex-direction: column;
    align-items: flex-start;
  }

  .diagram-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section-pad {
    padding: var(--space-xl) 0;
  }

  .section-pad-md {
    padding: var(--space-lg) 0;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .four-col {
    grid-template-columns: 1fr;
  }

  .advice-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .col-gap-list {
    columns: 1;
  }

  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .quote-block {
    padding: var(--space-lg);
  }

  .mission-panel {
    padding: var(--space-xl) var(--space-lg);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.35rem; }
  .hero { min-height: 70vh; }
  .stat-strip { flex-direction: column; gap: var(--space-md); }
}
