@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --primary: #2E3A47;
  --secondary: #A7B6C2;
  --light-grey: #D1D8DB;
  --off-white: #F8F8F8;
  --taupe: #B5A18C;
  --white: #ffffff;
  --text-dark: #1a2530;
  --text-mid: #4a5a68;
  --text-light: #7a8c99;
  --border: #d0d8dc;
  --shadow: 0 4px 24px rgba(46,58,71,0.10);
  --shadow-hover: 0 8px 36px rgba(46,58,71,0.18);
  --radius: 3px;
}

html { font-size: 16px; scroll-behavior: smooth; background: var(--off-white); }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: var(--off-white); line-height: 1.7; min-height: 100vh; }

h1, h2, h3, h4 { font-family: 'Merriweather', serif; color: var(--primary); line-height: 1.3; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--taupe); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.45rem; color: var(--text-mid); line-height: 1.7; }

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

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--primary);
  border-bottom: 1px solid rgba(167,182,194,0.18);
  height: 64px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Merriweather', serif; font-size: 1.35rem; font-weight: 900;
  color: var(--white); letter-spacing: 0.5px; text-decoration: none;
}
.nav-logo span { color: var(--taupe); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-family: 'Open Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--light-grey); text-decoration: none; padding: 8px 14px;
  border-radius: var(--radius); letter-spacing: 0.3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(167,182,194,0.15); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--primary); z-index: 998; padding: 16px 24px 24px; border-bottom: 1px solid rgba(167,182,194,0.18); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; font-size: 0.95rem; font-weight: 600; color: var(--light-grey); padding: 12px 0; border-bottom: 1px solid rgba(167,182,194,0.12); text-decoration: none; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
body { padding-top: 64px; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 13px 32px; border: none;
  cursor: pointer; border-radius: var(--radius); text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-primary { background: var(--taupe); color: var(--white); }
.btn-primary:hover { background: #a08d78; color: var(--white); box-shadow: 0 4px 18px rgba(181,161,140,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: #1e2832; color: var(--white); }

/* ─── SECTION SPACING ────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 104px 0; }
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { font-size: 1.05rem; max-width: 640px; color: var(--text-mid); }
.section-title.centered { text-align: center; }
.section-title.centered p { margin: 0 auto; }
.section-label {
  font-family: 'Open Sans', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary);
  display: block; margin-bottom: 12px;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; min-height: 86vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.42;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(46,58,71,0.88) 48%, rgba(46,58,71,0.42) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 760px; padding: 40px 0;
}
.hero-content .section-label { color: var(--secondary); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p { font-size: 1.13rem; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── EDITORIAL INTRO ────────────────────────────────── */
.editorial-intro { background: var(--white); }
.editorial-grid { display: grid; grid-template-columns: 1fr 48px; gap: 48px; align-items: start; }
.editorial-bar { width: 2px; background: var(--light-grey); height: 100%; min-height: 180px; margin: 0 auto; margin-top: 12px; }

/* ─── CARDS ──────────────────────────────────────────── */
.cards-bg { background: var(--light-grey); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card-body p { flex: 1; margin-bottom: 20px; }
.card-link { font-size: 0.83rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--taupe); }
.card-link:hover { color: var(--primary); }

/* ─── TWO-COL ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { }
.two-col-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }
.two-col-img-tall { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }
.text-block h2 { margin-bottom: 20px; }
.text-block p { margin-bottom: 16px; }

/* ─── MYTH/FACT ───────────────────────────────────────── */
.myth-fact-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.myth-fact-item:last-child { border-bottom: none; }
.myth-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); margin-bottom: 4px; }
.myth-fact-item h4 { color: var(--primary); margin-bottom: 8px; }
.myth-fact-item p { font-size: 0.95rem; margin: 0; }

/* ─── GLOSSARY PREVIEW ───────────────────────────────── */
.glossary-bg { background: var(--secondary); }
.glossary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.glossary-bg h2, .glossary-bg p, .glossary-bg .section-label { color: var(--primary); }
.glossary-terms { display: flex; flex-direction: column; gap: 0; }
.glossary-term { padding: 16px 0; border-bottom: 1px solid rgba(46,58,71,0.18); }
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.98rem; color: var(--primary); margin-bottom: 4px; }
.glossary-term dd { font-size: 0.92rem; color: var(--text-dark); margin: 0; }

/* ─── APPROACHES TABLE ────────────────────────────────── */
.approaches-wrap { overflow-x: auto; }
.approaches-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.approaches-table th { background: var(--primary); color: var(--white); font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase; padding: 14px 18px; text-align: left; border-bottom: 2px solid var(--taupe); }
.approaches-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-mid); }
.approaches-table tr:last-child td { border-bottom: none; }
.approaches-table tr:hover td { background: rgba(209,216,219,0.22); }
.approaches-table .row-head { font-weight: 700; color: var(--primary); font-family: 'Merriweather', serif; font-size: 0.9rem; }

/* ─── FAQ ACCORDION ───────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
  font-family: 'Merriweather', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--primary); transition: color 0.2s;
}
.faq-question:hover { color: var(--taupe); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--taupe); transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { font-size: 0.97rem; }

/* ─── CONTACT PREVIEW ────────────────────────────────── */
.contact-preview { background: var(--primary); overflow: hidden; }
.contact-preview-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.contact-preview-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.contact-preview-text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.contact-preview-text h2, .contact-preview-text p { color: var(--white); }
.contact-preview-text p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ─── FINAL CTA ───────────────────────────────────────── */
.final-cta { background: var(--off-white); text-align: center; padding: 72px 0; }
.final-cta h3 { margin-bottom: 20px; }
.final-cta p { max-width: 520px; margin: 0 auto 28px; }

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero { background: var(--primary); padding: 72px 0 56px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 600px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { font-size: 0.82rem; color: var(--secondary); font-weight: 600; letter-spacing: 0.4px; }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ─── ABOUT ────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; }
.about-img-col { position: relative; }
.about-img-full { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.about-text-col { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.timeline-visual { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.timeline-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.timeline-item:last-child { border-bottom: none; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--taupe); flex-shrink: 0; margin-top: 6px; }
.timeline-item h4 { margin-bottom: 6px; color: var(--primary); font-size: 0.95rem; }
.timeline-item p { font-size: 0.9rem; margin: 0; }

/* ─── CONTACT FORM ────────────────────────────────────── */
.contact-form-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(167,182,194,0.2); }
.form-textarea { resize: vertical; min-height: 140px; }
.contact-info-block h4 { margin-bottom: 12px; font-size: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon { width: 36px; height: 36px; background: var(--light-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; }
.contact-detail-text { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.hours-block { background: var(--light-grey); padding: 24px; border-radius: var(--radius); }
.hours-block h4 { margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }

/* ─── BLOG GRID ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 12px; }
.blog-card-body p { flex: 1; font-size: 0.93rem; margin-bottom: 20px; }
.blog-read-link { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--taupe); }
.blog-read-link:hover { color: var(--primary); }

/* ─── SINGLE BLOG ─────────────────────────────────────── */
.blog-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 48px; }
.blog-content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.blog-article h2 { margin-top: 40px; margin-bottom: 16px; }
.blog-article h3 { margin-top: 32px; margin-bottom: 12px; }
.blog-article p { margin-bottom: 20px; }
.blog-article ul, .blog-article ol { margin-bottom: 20px; }
.blog-article li { margin-bottom: 8px; }
.blog-sidebar {}
.sidebar-box { background: var(--light-grey); padding: 28px; border-radius: var(--radius); margin-bottom: 24px; }
.sidebar-box h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-box ul { padding-left: 0; list-style: none; }
.sidebar-box ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar-box ul li:last-child { border-bottom: none; }
.blog-author { display: flex; align-items: center; gap: 14px; background: var(--off-white); border: 1px solid var(--border); padding: 20px; border-radius: var(--radius); margin-top: 40px; }
.blog-author-avatar { width: 48px; height: 48px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.blog-author-info { font-size: 0.88rem; }
.blog-author-info strong { display: block; color: var(--primary); font-size: 0.95rem; margin-bottom: 2px; }
.key-component-box { background: var(--primary); color: var(--white); padding: 32px; border-radius: var(--radius); margin: 40px 0; }
.key-component-box h3 { color: var(--white); margin-bottom: 20px; }
.key-component-list { list-style: none; padding: 0; }
.key-component-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.93rem; color: rgba(255,255,255,0.88); display: flex; flex-direction: column; gap: 3px; }
.key-component-list li:last-child { border-bottom: none; }
.key-component-list li strong { color: var(--taupe); font-size: 0.82rem; letter-spacing: 0.6px; text-transform: uppercase; }
.pullquote { border-left: 4px solid var(--taupe); padding: 16px 24px; margin: 32px 0; background: rgba(181,161,140,0.07); border-radius: 0 var(--radius) var(--radius) 0; }
.pullquote p { font-family: 'Merriweather', serif; font-size: 1.05rem; font-style: italic; color: var(--primary); margin: 0; }
.env-matrix { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.9rem; }
.env-matrix th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.8rem; letter-spacing: 0.6px; text-transform: uppercase; }
.env-matrix td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; }
.env-matrix tr:last-child td { border-bottom: none; }
.env-matrix tr:hover td { background: rgba(209,216,219,0.2); }
.timeline-historical { display: flex; flex-direction: column; border-left: 3px solid var(--taupe); margin: 32px 0; padding-left: 0; }
.timeline-hist-item { position: relative; padding: 0 0 28px 28px; }
.timeline-hist-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 11px; height: 11px; background: var(--taupe); border-radius: 50%; }
.timeline-hist-item:last-child { padding-bottom: 0; }
.timeline-hist-item h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--primary); }
.timeline-hist-item p { font-size: 0.9rem; margin: 0; }
.archetypes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.archetype-card { background: var(--light-grey); padding: 20px; border-radius: var(--radius); }
.archetype-card h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--primary); }
.archetype-card p { font-size: 0.88rem; margin: 0; }
.stress-framework { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 32px 0; }
.stress-framework h4 { margin-bottom: 16px; }
.stress-phase { display: flex; align-items: flex-start; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.stress-phase:last-child { border-bottom: none; }
.stress-phase-num { width: 28px; height: 28px; border-radius: 50%; background: var(--taupe); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; flex-shrink: 0; }
.stress-phase-text h4 { font-size: 0.92rem; margin-bottom: 4px; }
.stress-phase-text p { font-size: 0.88rem; margin: 0; }
.sleep-phases-block { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.sleep-phase-row { display: flex; align-items: flex-start; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.sleep-phase-row:last-child { border-bottom: none; }
.sleep-phase-badge { background: var(--primary); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius); flex-shrink: 0; margin-top: 3px; }
.sleep-phase-row h4 { font-size: 0.9rem; margin-bottom: 4px; }
.sleep-phase-row p { font-size: 0.88rem; margin: 0; }

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 { margin-top: 48px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-body p, .legal-body li { font-size: 0.97rem; }
.legal-body ul, .legal-body ol { margin-bottom: 20px; }

/* ─── THANK YOU ────────────────────────────────────────── */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.thankyou-box { text-align: center; max-width: 560px; padding: 64px 40px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.thankyou-box h1 { font-size: 2rem; margin-bottom: 20px; }
.thankyou-box p { margin-bottom: 28px; }

/* ─── 404 ───────────────────────────────────────────────── */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-size: 6rem; font-weight: 900; color: var(--light-grey); line-height: 1; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(167,182,194,0.18); }
.footer-brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--taupe); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--taupe); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.footer-contact-item .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--secondary); }
.footer-contact-item .value { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.42); margin: 0; }
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.38); font-style: italic; }

/* ─── COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary); border-top: 2px solid var(--taupe);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.82); margin: 0; max-width: 700px; }
.cookie-banner a { color: var(--taupe); }
.cookie-banner a:hover { color: var(--white); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-accept { background: var(--taupe); color: var(--white); border: none; padding: 10px 24px; font-family: 'Open Sans', sans-serif; font-size: 0.83rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: #a08d78; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); padding: 10px 20px; font-family: 'Open Sans', sans-serif; font-size: 0.83rem; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-taupe { color: var(--taupe); }
.text-secondary { color: var(--secondary); }
.bg-primary { background: var(--primary); }
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-light { background: var(--light-grey); }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.mt-0 { margin-top: 0; }

/* ─── ENV MATRIX (blog5) ──────────────────────────────────── */
.env-matrix { margin: 40px 0; }
.env-matrix h3 { margin-bottom: 8px; }
.env-matrix-table-wrap { overflow-x: auto; }
.env-matrix-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.env-matrix-table thead th { background: var(--primary); color: var(--white); padding: 13px 16px; text-align: left; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.7px; text-transform: uppercase; border-bottom: 2px solid var(--taupe); }
.env-matrix-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; line-height: 1.55; }
.env-matrix-table tbody td:first-child { font-weight: 700; color: var(--primary); font-family: 'Merriweather', serif; font-size: 0.88rem; }
.env-matrix-table tbody tr:last-child td { border-bottom: none; }
.env-matrix-table tbody tr:hover td { background: rgba(209,216,219,0.22); }

/* ─── HISTORICAL TIMELINE (blog6) ───────────────────────── */
.blog-intro-lead { font-size: 1.08rem; font-style: italic; color: var(--text-mid); border-left: 4px solid var(--secondary); padding: 16px 24px; margin-bottom: 40px; background: rgba(167,182,194,0.09); border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.75; }
.hist-timeline { display: flex; flex-direction: column; gap: 0; margin: 0; }
.hist-era { position: relative; padding: 0 0 48px 32px; border-left: 3px solid var(--taupe); }
.hist-era:last-child { padding-bottom: 0; }
.hist-era-marker { position: absolute; left: -9px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--taupe); border: 3px solid var(--off-white); }
.hist-era-content h2 { margin-top: 0; margin-bottom: 16px; }
.hist-era-content p { margin-bottom: 18px; }
.hist-era-content p:last-child { margin-bottom: 0; }
.hist-quote-block { margin: 28px 0; }
.hist-quote-block blockquote { border-left: 4px solid var(--taupe); padding: 18px 24px; background: rgba(181,161,140,0.07); border-radius: 0 var(--radius) var(--radius) 0; }
.hist-quote-block blockquote p { font-family: 'Merriweather', serif; font-size: 1rem; font-style: italic; color: var(--primary); margin-bottom: 10px; }
.hist-quote-block blockquote cite { font-size: 0.82rem; color: var(--text-light); font-style: normal; }
.timeline-concepts-block { background: var(--light-grey); padding: 36px; border-radius: var(--radius); margin-top: 48px; }
.timeline-concepts-block h3 { margin-bottom: 8px; }
.concepts-timeline-list { display: flex; flex-direction: column; gap: 0; }
.concept-item { display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.concept-item:last-child { border-bottom: none; }
.concept-era-label { font-family: 'Merriweather', serif; font-size: 0.82rem; font-weight: 700; color: var(--taupe); white-space: nowrap; min-width: 160px; padding-top: 2px; }
.concept-desc { font-size: 0.91rem; color: var(--text-mid); line-height: 1.65; }
.concept-desc em { font-style: italic; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .blog-content-wrap { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { min-height: 70vh; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col-img, .two-col-img-tall { height: 280px; }
  .about-split { grid-template-columns: 1fr; }
  .about-text-col { padding: 40px 24px; }
  .glossary-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .contact-preview-img { height: 240px; }
  .contact-preview-text { padding: 40px 24px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-bar { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .archetypes-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .breadcrumb { flex-wrap: wrap; }
  .concept-item { flex-direction: column; gap: 6px; }
  .concept-era-label { min-width: unset; white-space: normal; }
  .hist-era { padding-left: 20px; }
  .timeline-concepts-block { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 24px 0; }
  .btn { padding: 11px 24px; font-size: 0.82rem; }
  .card-body { padding: 20px; }
  .blog-card-body { padding: 20px; }
  .contact-info-block, .hours-block { padding: 20px; }
}
