@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --deep-teal: #1a4a4a;
  --deep-teal-dark: #112f2f;
  --deep-teal-light: #2a6a6a;
  --warm-gold: #c8963e;
  --warm-gold-light: #dba94f;
  --grey-blue: #7a8fa6;
  --grey-blue-light: #c4d0db;
  --grey-blue-bg: #eef2f5;
  --terracotta: #b5735a;
  --terracotta-light: #f5ece7;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text-dark: #1c2b2b;
  --text-mid: #3d5454;
  --text-muted: #6b8080;
  --border-light: #dde5e5;
  --shadow-soft: 0 2px 12px rgba(26,74,74,0.08);
  --shadow-card: 0 4px 20px rgba(26,74,74,0.10);
  --shadow-hover: 0 8px 32px rgba(26,74,74,0.16);
  --radius: 4px;
  --radius-card: 6px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { font-size: 16px; scroll-behavior: smooth; background: var(--off-white); }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: -0.01em; }

p { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

a { color: var(--deep-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--warm-gold); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.45rem; color: var(--text-mid); line-height: 1.7; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--warm-gold);
  margin: 1.2rem 0 2rem;
}

.divider-center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--warm-gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--warm-gold-light);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,150,62,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--deep-teal);
  border: 2px solid var(--deep-teal);
}
.btn-outline:hover {
  background: var(--deep-teal);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--warm-gold); }
.text-teal { color: var(--deep-teal); }
.text-muted { color: var(--text-muted); }

.bg-teal { background: var(--deep-teal); }
.bg-teal-dark { background: var(--deep-teal-dark); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-grey-blue { background: var(--grey-blue-bg); }
.bg-terracotta-light { background: var(--terracotta-light); }

/* ===================== HEADER ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17,47,47,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.logo span {
  color: var(--warm-gold);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.nav-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm-gold);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-teal-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(17,47,47,0.75) 0%, rgba(17,47,47,0.55) 60%, rgba(26,74,74,0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.2rem;
}

/* ===================== EDITORIAL INTRO ===================== */

.editorial-intro {
  background: var(--white);
  padding: 90px 0;
}

.editorial-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-intro .intro-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.editorial-intro .intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===================== OVERVIEW ===================== */

.overview-section {
  background: var(--off-white);
  padding: 90px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.overview-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* ===================== MISCONCEPTIONS ===================== */

.misconceptions-section {
  background: var(--white);
  padding: 90px 0;
}

.misconceptions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.misconception-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border-left: 4px solid var(--deep-teal);
  transition: box-shadow var(--transition), transform var(--transition);
}

.misconception-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.misconception-card h3 {
  font-size: 1rem;
  color: var(--deep-teal);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.misconception-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

/* ===================== KNOWLEDGE PILLARS ===================== */

.pillars-section {
  background: var(--grey-blue-bg);
  padding: 90px 0;
}

.pillars-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

.pillars-main h2 { margin-bottom: 1rem; }
.pillars-main .divider { margin-bottom: 2rem; }

.pillar-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pillar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar-item h3 {
  color: var(--deep-teal);
  margin-bottom: 0.7rem;
}

.glossary-rail {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 88px;
}

.glossary-rail h3 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.glossary-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.glossary-item:last-child { border-bottom: none; }

.glossary-term {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 0.3rem;
}

.glossary-def {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pillars-image {
  margin-top: 40px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pillars-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ===================== FAQ ===================== */

.faq-section {
  background: var(--terracotta-light);
  padding: 90px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.faq-list { margin-top: 2rem; }

.faq-item {
  border-bottom: 1px solid rgba(181,115,90,0.22);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--deep-teal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--warm-gold); }

.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--deep-teal);
  transition: all var(--transition);
}

.faq-question .faq-icon::before {
  width: 14px; height: 2px;
  top: 9px; left: 3px;
}

.faq-question .faq-icon::after {
  width: 2px; height: 14px;
  top: 3px; left: 9px;
}

.faq-question.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
}

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

.faq-answer.open { display: block; }

/* ===================== CONTACT PREVIEW ===================== */

.contact-preview {
  background: var(--deep-teal);
  padding: 80px 0;
  text-align: center;
}

.contact-preview h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-preview p {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ===================== FINAL CTA ===================== */

.final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--deep-teal-dark);
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,47,47,0.72);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.final-cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

/* ===================== ABOUT PAGE ===================== */

.page-hero {
  background: var(--deep-teal-dark);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.about-section {
  background: var(--white);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text-block {
  background: var(--off-white);
  padding: 90px 0;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

/* ===================== CONTACT PAGE ===================== */

.contact-section {
  background: var(--grey-blue-bg);
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.8rem; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.4rem;
}

.contact-detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
}

.contact-detail-value {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--text-mid);
}

.contact-detail-value a:hover {
  color: var(--deep-teal);
}

.contact-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 32px;
}

.contact-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-form-block {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.contact-form-block h2 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.contact-form-block p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.8rem; }

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(26,74,74,0.08);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===================== THANK YOU ===================== */

.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 120px 24px;
}

.thankyou-block {
  text-align: center;
  max-width: 560px;
}

.thankyou-block h1 { margin-bottom: 1.2rem; color: var(--deep-teal); }
.thankyou-block p { margin-bottom: 2rem; font-size: 1.02rem; }

/* ===================== LEGAL PAGES ===================== */

.legal-hero {
  background: var(--deep-teal);
  padding: 140px 0 70px;
  text-align: center;
}

.legal-hero h1 { color: var(--white); }

.legal-content {
  background: var(--white);
  padding: 80px 0 100px;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.25rem;
  color: var(--deep-teal);
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.legal-body h2:first-of-type {
  border-top: none;
  margin-top: 0.8rem;
  padding-top: 0;
}

.legal-body p { font-size: 0.96rem; color: var(--text-mid); }
.legal-body ul { color: var(--text-mid); font-size: 0.96rem; }
.legal-body li { margin-bottom: 0.5rem; }

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-light);
}

/* ===================== BLOGS PAGE ===================== */

.blog-hero {
  position: relative;
  background: var(--deep-teal-dark);
  padding: 150px 0 90px;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,47,47,0.68);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-hero-content h1 { color: var(--white); margin-bottom: 1.1rem; }
.blog-hero-content p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }

.blogs-list {
  background: var(--off-white);
  padding: 80px 0 100px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  color: var(--deep-teal);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.4rem;
}

.blog-card .btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.72rem;
}

/* ===================== ARTICLE PAGE ===================== */

.article-hero {
  background: var(--deep-teal-dark);
  padding: 140px 0 80px;
}

.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.article-meta-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.article-meta-item span {
  color: var(--warm-gold);
}

.article-body {
  background: var(--white);
  padding: 80px 0 100px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-main h2 {
  color: var(--deep-teal);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-main h2:first-child {
  margin-top: 0;
}

.article-main h3 {
  color: var(--deep-teal-light);
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.article-image {
  margin: 2rem 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.article-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--deep-teal);
}

.sidebar-card h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.sidebar-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-blue);
  text-decoration: none;
  margin-bottom: 2.4rem;
  transition: color var(--transition);
}

.article-back:hover { color: var(--deep-teal); }

.article-back::before {
  content: '←';
  font-size: 1rem;
}

/* ===================== TIMELINE (blog2) ===================== */

.timeline-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline-rail {
  padding-top: 8px;
}

.timeline-marker {
  position: relative;
  padding: 0 0 52px 0;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 32px;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--grey-blue-light);
}

.timeline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gold);
  text-align: center;
  background: var(--white);
  position: relative;
  z-index: 1;
  padding: 4px 0;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--deep-teal);
  border-radius: 50%;
  margin: 8px auto 0;
  position: relative;
  z-index: 1;
}

.timeline-content-col { padding-top: 0; }

.timeline-content-col h2 {
  color: var(--deep-teal);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding-top: 0;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-light);
}

.timeline-content-col h2:last-of-type {
  border-bottom: none;
}

/* ===================== STAT STRIP (blog6) ===================== */

.stat-strip {
  background: var(--warm-gold);
  padding: 44px 0;
}

.stat-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* ===================== COMPARISON MATRIX (blog4) ===================== */

.matrix-section { padding: 40px 0; }

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4rem;
  margin-bottom: 2.4rem;
}

.matrix-table th {
  background: var(--deep-teal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
}

.matrix-table td {
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
}

.matrix-table tr:nth-child(even) td {
  background: var(--grey-blue-bg);
}

.matrix-table tr:nth-child(odd) td {
  background: var(--white);
}

.matrix-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* ===================== PANEL SYSTEM (blog5) ===================== */

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

.approach-panel {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--deep-teal);
  transition: box-shadow var(--transition), transform var(--transition);
}

.approach-panel:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.panel-symbol {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  opacity: 0.4;
}

.approach-panel h2 {
  font-size: 1.1rem;
  color: var(--deep-teal);
  margin-bottom: 0.8rem;
}

.approach-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== CHECKLIST CARDS (blog3) ===================== */

.habit-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.habit-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 24px 24px;
  border-left: 3px solid var(--warm-gold);
  transition: box-shadow var(--transition);
}

.habit-card:hover {
  box-shadow: var(--shadow-card);
}

.habit-card h3 {
  font-size: 0.96rem;
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
}

.habit-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== BREADCRUMB ===================== */

.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-blue);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--deep-teal); }

.breadcrumb span {
  font-size: 0.72rem;
  color: var(--grey-blue-light);
}

.breadcrumb .current {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--deep-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--deep-teal-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 1.2rem;
  display: inline-block;
}

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

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.2rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.6rem;
  color: inherit;
}

.footer-nav a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.6;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact-item {
  margin-bottom: 1rem;
}

.footer-contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact-value a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-contact-value a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-editorial-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gold);
  opacity: 0.75;
}

/* ===================== COOKIE BANNER ===================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--deep-teal-dark);
  border-top: 1px solid rgba(200,150,62,0.28);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-banner-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-banner-text a {
  color: var(--warm-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--warm-gold);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--warm-gold-light);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ===================== 404 PAGE ===================== */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-teal-dark);
  text-align: center;
  padding: 60px 24px;
}

.error-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.error-page h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.error-page p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pillars-layout {
    grid-template-columns: 1fr;
  }
  .glossary-rail {
    position: static;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }

  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-teal-dark);
    padding: 32px 24px;
    gap: 28px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-list.open a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
  }

  .editorial-intro .intro-grid,
  .overview-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .about-columns,
  .misconceptions-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid { grid-template-areas: "img" "text"; }
  .overview-image { grid-area: img; }

  .section, .section-lg { padding: 64px 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .timeline-layout {
    grid-template-columns: 1fr;
  }
  .timeline-rail { display: none; }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip .container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .misconceptions-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-content h1 { font-size: 2rem; }
  .article-layout { padding: 0 16px; }
  .container { padding: 0 16px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
