@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --slate: #4a5568;
  --slate-dark: #2d3748;
  --slate-deeper: #1a202c;
  --slate-light: #718096;
  --slate-lighter: #a0aec0;
  --slate-bg: #edf2f7;
  --slate-bg-alt: #e2e8f0;
  --petrol: #1e6b7a;
  --petrol-light: #2a8fa2;
  --petrol-dark: #155262;
  --ochre: #b08034;
  --ochre-light: #c9963e;
  --sage: #6b8f71;
  --sage-light: #85ab8b;
  --white: #ffffff;
  --black: #0f1117;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #cbd5e0;
  --border-light: #e2e8f0;
  --section-pad: 96px 0;
  --section-pad-sm: 64px 0;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26,32,44,0.10);
  --shadow-sm: 0 2px 8px rgba(26,32,44,0.07);
  --transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.22;
  color: var(--slate-deeper);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }

p { margin-bottom: 1.25rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

a { color: var(--petrol); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--petrol-light); text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; color: var(--text-secondary); }

strong { color: var(--text-primary); font-weight: 700; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.section-alt { background: var(--slate-bg); }
.section-dark { background: var(--slate-deeper); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: var(--slate-lighter); }

.section-border-top { border-top: 1px solid var(--border-light); }

.text-petrol { color: var(--petrol); }
.text-ochre { color: var(--ochre); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--text-muted); }

.accent-line {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--petrol);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.accent-line-ochre { background: var(--ochre); }
.accent-line-sage { background: var(--sage); }
.accent-line-center { margin-left: auto; margin-right: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,32,44,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--ochre-light) !important; text-decoration: none !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  display: block;
  padding: 8px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  border-bottom-color: var(--ochre);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.site-footer {
  background: var(--slate-deeper);
  color: var(--slate-lighter);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--slate-lighter); line-height: 1.65; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--slate-lighter);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--slate-lighter);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact p strong { color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; min-width: 60px; }
.footer-contact a { color: var(--petrol-light); }
.footer-contact a:hover { color: var(--white); }

.footer-hours { margin-top: 1.2rem; }
.footer-hours p { margin-bottom: 0.4rem; font-size: 0.85rem; }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--slate-light); margin: 0; }
.footer-edu-notice {
  font-size: 0.8rem;
  color: var(--ochre);
  font-style: italic;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}
.btn-primary:hover {
  background: var(--petrol-dark);
  border-color: var(--petrol-dark);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30,107,122,0.32);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}
.btn-outline-dark:hover {
  background: var(--petrol);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 22px; font-size: 0.78rem; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-main.jpg') center center / cover no-repeat;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,32,44,0.82) 0%, rgba(26,32,44,0.45) 60%, rgba(30,107,122,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 1.6rem;
  padding: 6px 16px;
  border: 1px solid rgba(176,128,52,0.35);
  border-radius: 2px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  font-weight: 900;
}

.hero-lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2.4rem;
  max-width: 580px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-edu {
  margin-top: 3.5rem;
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.2rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.principle-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--petrol);
}
.principle-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.principle-card-body {
  padding: 28px 28px 32px;
}
.principle-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30,107,122,0.08);
}
.principle-card-icon svg { width: 22px; height: 22px; }
.principle-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.principle-card p { font-size: 0.93rem; margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

.two-col-text {}
.two-col-text h2 { margin-bottom: 1.2rem; }
.two-col-text p { margin-bottom: 1rem; }

.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.key-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.key-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.key-list li:last-child { border-bottom: none; }
.key-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--petrol);
  flex-shrink: 0;
  margin-top: 8px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.activity-item {}
.activity-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.activity-item h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.activity-item p { font-size: 0.9rem; margin-bottom: 0; }

.blockquote-styled {
  border-left: 4px solid var(--petrol);
  padding: 20px 28px;
  margin: 2rem 0;
  background: rgba(30,107,122,0.04);
  border-radius: 0 4px 4px 0;
}
.blockquote-styled p {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.65;
}

.cycle-diagram {
  background: var(--slate-bg);
  border-radius: 8px;
  padding: 36px;
  margin: 2rem 0;
  border: 1px solid var(--border-light);
}
.cycle-diagram h3 { font-size: 1rem; margin-bottom: 1.4rem; text-align: center; color: var(--petrol); }
.cycle-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.cycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 110px;
}
.cycle-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  background: var(--petrol);
  color: var(--white);
  flex-shrink: 0;
}
.cycle-step p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.cycle-arrow {
  color: var(--ochre);
  font-size: 1.4rem;
  font-weight: 300;
  padding: 0 4px;
  align-self: center;
}

.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}
.numbered-list li {
  counter-increment: item;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.97rem;
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(item, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--petrol);
  flex-shrink: 0;
  min-width: 42px;
  line-height: 1.2;
}
.numbered-list li strong { display: block; margin-bottom: 3px; color: var(--text-primary); }

.section-accent { background: var(--petrol); }
.section-accent h2, .section-accent h3 { color: var(--white); }
.section-accent p, .section-accent li { color: rgba(255,255,255,0.82); }
.section-accent .accent-line { background: var(--ochre); }
.section-accent .numbered-list li::before { color: var(--ochre-light); }
.section-accent .numbered-list li { border-bottom-color: rgba(255,255,255,0.12); }

.notion-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.8rem;
}
.notion-key-item {
  background: var(--slate-bg);
  border-top: 3px solid var(--petrol);
  padding: 20px 18px;
  border-radius: 0 0 4px 4px;
}
.notion-key-item:nth-child(2) { border-top-color: var(--ochre); }
.notion-key-item:nth-child(3) { border-top-color: var(--sage); }
.notion-key-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--petrol);
  margin-bottom: 0.5rem;
}
.notion-key-item:nth-child(2) h4 { color: var(--ochre); }
.notion-key-item:nth-child(3) h4 { color: var(--sage); }
.notion-key-item p { font-size: 0.87rem; margin: 0; color: var(--text-secondary); }

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  gap: 16px;
}
.accordion-btn:hover { color: var(--petrol); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--petrol);
  font-size: 1.1rem;
  font-weight: 300;
}
.accordion-btn.active .accordion-icon {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 0 0 24px;
}
.accordion-body.open { display: block; }
.accordion-body p { font-size: 0.96rem; color: var(--text-secondary); }

.soft-cta-band {
  background: var(--slate-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 64px 0;
  text-align: center;
}
.soft-cta-band h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.soft-cta-band p { font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; }

.disclaimer-box {
  background: rgba(30,107,122,0.06);
  border: 1px solid rgba(30,107,122,0.18);
  border-left: 4px solid var(--petrol);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin: 2rem 0;
}
.disclaimer-box p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.disclaimer-box strong { color: var(--petrol); }

.page-hero {
  background: var(--slate-deeper);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.62); max-width: 620px; position: relative; z-index: 1; font-size: 1.05rem; }
.page-hero .accent-line { position: relative; z-index: 1; }

.page-hero-with-img {
  background: var(--slate-deeper);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}
.page-hero-with-img-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: end;
}
.page-hero-text {
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}
.page-hero-text h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-text p { color: rgba(255,255,255,0.62); font-size: 1.05rem; }
.page-hero-img { position: relative; z-index: 1; }
.page-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px 6px 0 0;
  opacity: 0.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--petrol-light);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 0.75rem;
  font-family: 'Lato', sans-serif;
}
.blog-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  line-height: 1.4;
  color: var(--text-primary);
  transition: var(--transition);
}
.blog-card:hover h3 { color: var(--petrol); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 1.2rem; }
.blog-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--petrol);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link::after { content: '→'; transition: var(--transition); }
.blog-card:hover .blog-card-link::after { transform: translateX(4px); }

.article-hero {
  position: relative;
  background: var(--slate-deeper);
  padding: 140px 0 56px;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.article-hero-content { position: relative; z-index: 1; max-width: 820px; }
.article-hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-light);
  padding: 4px 12px;
  border: 1px solid rgba(176,128,52,0.35);
  border-radius: 2px;
}
.article-meta-date {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Lato', sans-serif;
}

.article-body { padding: 72px 0 80px; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.8rem; }
.article-body p { margin-bottom: 1.2rem; font-size: 1.02rem; }
.article-body ul, .article-body ol { margin-bottom: 1.4rem; }
.article-body ul li, .article-body ol li { font-size: 0.98rem; margin-bottom: 0.55rem; }

.fact-box {
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--ochre);
  border-radius: 0 0 6px 6px;
  padding: 28px 28px;
  margin: 2.4rem 0;
}
.fact-box-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.8rem;
  display: block;
}
.fact-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.fact-box p { font-size: 0.92rem; margin: 0; }

.glossary-rail {
  position: sticky;
  top: 88px;
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
  align-self: start;
}
.glossary-rail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-light);
}
.glossary-term {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.glossary-term dd { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.practice-box {
  background: rgba(107,143,113,0.07);
  border: 1px solid rgba(107,143,113,0.22);
  border-left: 4px solid var(--sage);
  border-radius: 0 6px 6px 0;
  padding: 28px 28px;
  margin: 2.4rem 0;
}
.practice-box-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
  display: block;
}
.practice-box h4 { font-size: 1.05rem; margin-bottom: 0.8rem; }
.practice-box p { font-size: 0.9rem; margin: 0; }
.practice-box ol { margin: 0.6rem 0 0; padding-left: 1.4rem; }
.practice-box ol li { font-size: 0.9rem; margin-bottom: 0.45rem; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.values-list li:last-child { border-bottom: none; }
.values-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
}
.values-list-content h4 { font-family: 'Lato', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; color: var(--text-primary); }
.values-list-content p { font-size: 0.88rem; margin: 0; color: var(--text-muted); }

.timeline {
  position: relative;
  padding-left: 40px;
  margin: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--petrol);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--petrol);
}
.timeline-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 5px;
}
.timeline-item p { font-size: 0.9rem; margin: 0; color: var(--text-secondary); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

.contact-form label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.96rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  line-height: 1.5;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(30,107,122,0.1);
}
.contact-form .field-group { margin-bottom: 24px; }
.contact-form textarea { min-height: 180px; }

.contact-info-card {
  background: var(--slate-deeper);
  border-radius: 6px;
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; font-size: 1.3rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,107,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--petrol-light);
}
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.contact-detail-text p { font-size: 0.9rem; color: var(--slate-lighter); margin: 0; line-height: 1.55; }
.contact-detail-text a { color: var(--petrol-light); }
.contact-detail-text a:hover { color: var(--white); }

.legal-page-body { padding: 80px 0 96px; }
.legal-page-body h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.legal-page-body h3 { margin: 1.8rem 0 0.7rem; font-size: 1.15rem; }
.legal-page-body p { font-size: 0.97rem; margin-bottom: 1rem; }
.legal-page-body ul, .legal-page-body ol { margin-bottom: 1.2rem; }
.legal-page-body li { font-size: 0.95rem; }
.legal-page-body strong { font-weight: 700; }

.legal-clause {
  padding: 18px 20px;
  border-left: 3px solid var(--border);
  margin-bottom: 10px;
  background: var(--slate-bg);
  border-radius: 0 4px 4px 0;
}
.legal-clause p { margin: 0; font-size: 0.9rem; }
.legal-clause strong { color: var(--petrol); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.cookie-table th {
  background: var(--slate-deeper);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}
.cookie-table tr:nth-child(even) td { background: var(--slate-bg); }

.alert-warning {
  background: rgba(176,128,52,0.08);
  border: 1px solid rgba(176,128,52,0.25);
  border-left: 4px solid var(--ochre);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin: 1.5rem 0;
}
.alert-warning p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }
.alert-warning strong { color: var(--ochre); }
.alert-critical {
  background: var(--slate-deeper);
  border: none;
  padding: 32px 36px;
  border-radius: 6px;
  margin: 2rem 0;
}
.alert-critical p { color: rgba(255,255,255,0.78); margin: 0; line-height: 1.7; font-size: 0.96rem; }
.alert-critical strong { color: var(--ochre-light); }

.page-hero-sage { background: var(--slate-deeper); }

.cookie-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 1.8rem 0;
  padding: 28px;
  background: var(--slate-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.cookie-col-list h3,
.cookie-col-desc h3 { margin-top: 0; font-size: 1.05rem; margin-bottom: 0.75rem; }
.cookie-col-list ul { margin-bottom: 0; }

.cookie-browser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 1.5rem 0 1.8rem;
}
.browser-item {
  padding: 20px 22px;
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--petrol);
  border-radius: 0 0 var(--radius) var(--radius);
}
.browser-item h3 { font-size: 1rem; margin-bottom: 0.5rem; margin-top: 0; }
.browser-item p { font-size: 0.88rem; margin: 0; color: var(--text-muted); line-height: 1.6; }

.health-alert-primary {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(107,143,113,0.10);
  border: 1px solid rgba(107,143,113,0.30);
  border-left: 4px solid var(--sage);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin: 0.5rem 0 2rem;
}
.health-alert-icon {
  flex-shrink: 0;
  color: var(--sage);
  margin-top: 2px;
}
.health-alert-body { flex: 1; }
.health-alert-body p { font-size: 0.97rem; margin: 0; color: var(--text-secondary); line-height: 1.7; }
.health-alert-body strong { color: var(--sage); }

.health-warning-box {
  background: var(--slate-deeper);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 2rem 0;
}
.health-warning-box h3 { color: var(--ochre-light); margin-top: 0; margin-bottom: 0.75rem; font-size: 1.1rem; }
.health-warning-box p { color: rgba(255,255,255,0.80); margin: 0; font-size: 0.95rem; line-height: 1.7; }
.health-warning-box strong { color: var(--white); }
.health-warning-box-sm { padding: 22px 26px; }
.health-warning-box-sm p { font-size: 0.9rem; }

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-bg);
  padding: 48px 24px;
}
.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 72px 64px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(30,107,122,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--petrol);
}
.thankyou-icon svg { width: 36px; height: 36px; }
.thankyou-card h1 { font-size: 2.1rem; margin-bottom: 1rem; }
.thankyou-card p { font-size: 0.97rem; margin-bottom: 2rem; color: var(--text-muted); }

.blog-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.filter-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
  display: block;
  margin-bottom: 1rem;
}
.section-label-ochre { color: var(--ochre); }
.section-label-sage { color: var(--sage); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  margin: 2.5rem 0;
}
.stat-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border-light);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--petrol);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-label { font-size: 0.83rem; color: var(--text-muted); }

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 2rem 0;
}
.matrix-cell {
  padding: 24px;
  background: var(--slate-bg);
  border-radius: 4px;
  border: 1px solid var(--border-light);
}
.matrix-cell h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--petrol); font-family: 'Lato', sans-serif; font-weight: 700; }
.matrix-cell p { font-size: 0.88rem; margin: 0; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slate-deeper);
  border-top: 2px solid var(--petrol);
  padding: 20px 32px;
  display: none;
}
.cookie-banner.visible { display: flex; }
.cookie-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--petrol-light); }
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--petrol);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--petrol-light); }
.cookie-btn-refuse {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  color: rgba(255,255,255,0.62);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-refuse:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cookie-btn-learn {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  color: var(--petrol-light);
  border: 1.5px solid rgba(30,107,122,0.35);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cookie-btn-learn:hover { color: var(--white); border-color: var(--petrol-light); text-decoration: none; }

.page-body-content { padding-top: 68px; }

.divider { height: 1px; background: var(--border-light); margin: 0; }

.two-col-cookie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-with-sidebar { grid-template-columns: 1fr; }
  .glossary-rail { position: static; }
  .page-hero-with-img-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-reverse { direction: ltr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .activity-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .notion-key { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 300px; }
  .matrix-grid { grid-template-columns: 1fr; }
  .two-col-cookie { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; --section-pad-sm: 48px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(26,32,44,0.98); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 32px; border-bottom: none; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 100px 0 60px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .principles-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cookie-banner.visible { flex-direction: column; align-items: flex-start; }
  .thankyou-card { padding: 48px 28px; }
  .contact-info-card { padding: 28px; }
  .cookie-two-col { grid-template-columns: 1fr; gap: 20px; }
  .cookie-browser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container, .container-lg, .container-narrow { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
