/* ============================================================
   Heather — Typography Analysis
   Main Stylesheet
   Palette: #FAF8F3 (cream) | #2C2C2C (charcoal) | #D4935A (amber)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAF8F3;
  color: #2C2C2C;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography Scale ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
  color: #2C2C2C;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.9rem; font-weight: 600; }

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

.serif { font-family: 'Cormorant Garamond', serif; }
.lead { font-size: 1.2rem; line-height: 1.8; color: #555; font-weight: 300; }
.caption { font-size: 0.82rem; color: #888; letter-spacing: 0.04em; }
.overline { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #D4935A; font-weight: 600; }

blockquote {
  border-left: 3px solid #D4935A;
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #444;
  background: #F5EFE6;
}
blockquote cite { display: block; margin-top: 0.8rem; font-size: 0.85rem; font-style: normal; font-family: 'Inter', sans-serif; color: #888; }

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.container--wide   { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
.section--sm { padding: 3.5rem 0; }
.section--lg { padding: 9rem 0; }

/* ─── Navigation ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C2C2C;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: #D4935A; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  color: #555;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { color: #2C2C2C; background: rgba(212,147,90,0.1); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #FAF8F3;
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.87rem;
  color: #555;
  border-radius: 0;
}
.dropdown-menu a:hover { background: #F5EFE6; color: #2C2C2C; }

.nav-cta {
  background: #2C2C2C !important;
  color: #FAF8F3 !important;
  border-radius: 4px !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: #D4935A !important; color: #FAF8F3 !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: #2C2C2C; transition: 0.3s; border-radius: 2px; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 8rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,147,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-text .overline { margin-bottom: 1.4rem; }
.hero-text h1 { margin-bottom: 1.8rem; }
.hero-text p { font-size: 1.1rem; color: #555; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: 2px; box-shadow: 16px 16px 0 #F5EFE6; }
.hero-image-caption { margin-top: 1rem; font-size: 0.8rem; color: #aaa; letter-spacing: 0.05em; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
  cursor: pointer;
}
.btn--primary { background: #2C2C2C; color: #FAF8F3; border: 2px solid #2C2C2C; }
.btn--primary:hover { background: #D4935A; border-color: #D4935A; color: #FAF8F3; }
.btn--outline { background: transparent; color: #2C2C2C; border: 2px solid #2C2C2C; }
.btn--outline:hover { background: #2C2C2C; color: #FAF8F3; }
.btn--amber { background: #D4935A; color: #FAF8F3; border: 2px solid #D4935A; }
.btn--amber:hover { background: #c07d47; border-color: #c07d47; }
.btn--ghost { background: transparent; color: #D4935A; border: 2px solid #D4935A; }
.btn--ghost:hover { background: #D4935A; color: #FAF8F3; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.6rem; }
.card-body .overline { margin-bottom: 0.8rem; }
.card-body h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.card-body h3 a:hover { color: #D4935A; }
.card-body p { font-size: 0.9rem; color: #666; margin-bottom: 1.2rem; }
.card-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; color: #aaa; }

/* ─── Grid Layouts ──────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Dividers & Decorations ────────────────────────────────── */
.divider { border: none; border-top: 1px solid rgba(44,44,44,0.1); margin: 0; }
.divider--amber { border-color: #D4935A; width: 60px; margin: 1.5rem 0; }
.dot-divider { text-align: center; color: #D4935A; letter-spacing: 0.6em; font-size: 0.7rem; margin: 2rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header .overline { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1.2rem; }
.section-header p { color: #666; font-size: 1.05rem; }

/* ─── Feature Strip ─────────────────────────────────────────── */
.feature-strip {
  background: #2C2C2C;
  color: #FAF8F3;
  padding: 5rem 0;
}
.feature-strip h2 { color: #FAF8F3; }
.feature-strip p { color: rgba(250,248,243,0.7); }

.feature-item { padding: 1.5rem; border-left: 3px solid #D4935A; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.9; }
.feature-item h4 { color: #FAF8F3; margin-bottom: 0.5rem; }
.feature-item p { color: rgba(250,248,243,0.65); font-size: 0.9rem; margin-bottom: 0; }

/* ─── Stats Row ─────────────────────────────────────────────── */
.stats-row { display: flex; gap: 0; }
.stat-item {
  flex: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(44,44,44,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #D4935A; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── Pull Quote ────────────────────────────────────────────── */
.pull-quote {
  text-align: center;
  padding: 5rem 2rem;
  background: #F5EFE6;
}
.pull-quote q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: #2C2C2C;
}
.pull-quote cite { display: block; margin-top: 1.5rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #888; }

/* ─── Article Single ────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}
.article-content { min-width: 0; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 0.8rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content img { margin: 2rem 0; border-radius: 2px; }
.article-content .img-caption { font-size: 0.82rem; color: #aaa; text-align: center; margin-top: -1.5rem; margin-bottom: 2rem; }

.article-hero { margin-bottom: 3rem; }
.article-hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 2px; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; font-size: 0.85rem; color: #aaa; flex-wrap: wrap; }
.article-meta .tag {
  background: #F5EFE6;
  color: #D4935A;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Sidebar ───────────────────────────────────────────────── */
.sidebar { position: sticky; top: 90px; }
.sidebar-block {
  border: 1px solid rgba(44,44,44,0.1);
  padding: 1.8rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.sidebar-block h4 { margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(44,44,44,0.08); font-size: 1rem; }
.sidebar-block ul li { padding: 0.55rem 0; border-bottom: 1px solid rgba(44,44,44,0.06); }
.sidebar-block ul li:last-child { border-bottom: none; }
.sidebar-block ul li a { font-size: 0.88rem; color: #555; transition: color 0.2s; }
.sidebar-block ul li a:hover { color: #D4935A; }
.sidebar-toc { counter-reset: toc; }
.sidebar-toc li { counter-increment: toc; display: flex; gap: 0.6rem; }
.sidebar-toc li::before { content: counter(toc, decimal-leading-zero); font-size: 0.72rem; color: #D4935A; font-weight: 700; margin-top: 2px; flex-shrink: 0; }

/* ─── Table ─────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.9rem; }
thead th { background: #2C2C2C; color: #FAF8F3; padding: 0.9rem 1.2rem; text-align: left; font-weight: 600; letter-spacing: 0.04em; font-size: 0.82rem; text-transform: uppercase; }
tbody td { padding: 0.85rem 1.2rem; border-bottom: 1px solid rgba(44,44,44,0.08); }
tbody tr:nth-child(even) { background: #F5EFE6; }
tbody tr:hover { background: rgba(212,147,90,0.07); }

/* ─── Font Showcase ─────────────────────────────────────────── */
.font-showcase {
  padding: 2.5rem;
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: 4px;
  margin: 2rem 0;
  position: relative;
}
.font-showcase::before { content: attr(data-font); position: absolute; top: -0.6rem; left: 1.5rem; background: #FAF8F3; padding: 0 0.5rem; font-size: 0.72rem; color: #D4935A; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.font-sample-xl { font-size: 3.5rem; line-height: 1.1; margin-bottom: 0.5rem; }
.font-sample-body { font-size: 1rem; line-height: 1.7; color: #555; }
.font-info { display: flex; gap: 2rem; margin-top: 1.2rem; flex-wrap: wrap; }
.font-info span { font-size: 0.8rem; color: #aaa; }
.font-info span strong { color: #555; }

/* ─── Color Swatch ──────────────────────────────────────────── */
.swatch-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.swatch { width: 80px; text-align: center; }
.swatch-color { height: 60px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); }
.swatch-label { font-size: 0.72rem; color: #888; margin-top: 0.4rem; }

/* ─── Accordion ─────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid rgba(44,44,44,0.1); }
.accordion-trigger {
  width: 100%; text-align: left;
  padding: 1.2rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: none; border: none; color: #2C2C2C;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: #D4935A; }
.accordion-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background: currentColor; transition: 0.3s; }
.accordion-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.accordion-icon::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.accordion-item.open .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-panel { padding-bottom: 1.2rem; display: none; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel p { color: #666; font-size: 0.95rem; }

/* ─── Glossary ──────────────────────────────────────────────── */
.glossary-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 3rem; }
.glossary-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(44,44,44,0.15);
  border-radius: 3px;
  font-size: 0.85rem; font-weight: 600;
  color: #555; transition: all 0.2s;
}
.glossary-nav a:hover, .glossary-nav a.active { background: #D4935A; border-color: #D4935A; color: #FAF8F3; }
.glossary-letter { font-family: 'Playfair Display', serif; font-size: 2rem; color: #D4935A; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(212,147,90,0.25); }
.glossary-term { padding: 1.2rem 0; border-bottom: 1px solid rgba(44,44,44,0.07); }
.glossary-term dt { font-weight: 600; margin-bottom: 0.4rem; }
.glossary-term dd { color: #555; font-size: 0.93rem; }

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info-block { margin-bottom: 2.5rem; }
.contact-info-block h4 { margin-bottom: 0.8rem; font-size: 1rem; }
.contact-info-block p { color: #666; font-size: 0.93rem; margin-bottom: 0.3rem; }
.contact-info-block a { color: #D4935A; }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: #444; letter-spacing: 0.03em; }
.form-control {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid rgba(44,44,44,0.2);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  background: #fff;
  color: #2C2C2C;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus { border-color: #D4935A; box-shadow: 0 0 0 3px rgba(212,147,90,0.12); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-hint { font-size: 0.78rem; color: #aaa; margin-top: 0.4rem; }
.form-success {
  display: none;
  background: #E8F5E9; border: 1px solid #C8E6C9;
  border-radius: 4px; padding: 1.2rem 1.5rem;
  color: #2E7D32; font-size: 0.93rem; margin-top: 1.5rem;
}
.form-success.visible { display: block; }
.form-error-msg { font-size: 0.8rem; color: #c0392b; margin-top: 0.3rem; display: none; }

/* ─── Tools Page ────────────────────────────────────────────── */
.tool-panel {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: 6px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.tool-panel h3 { margin-bottom: 0.5rem; }
.tool-panel > p { color: #666; font-size: 0.93rem; margin-bottom: 2rem; }
.scale-preview {
  padding: 2rem;
  background: #F5EFE6;
  border-radius: 4px;
  margin-top: 1.5rem;
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: #aaa; padding: 1.5rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: #888; transition: color 0.2s; }
.breadcrumb a:hover { color: #D4935A; }
.breadcrumb span { color: #ccc; }
.breadcrumb li:last-child { color: #555; }

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(44,44,44,0.08);
  margin-bottom: 5rem;
}
.page-hero .overline { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.1rem; color: #555; max-width: 600px; }

/* ─── Timeline ──────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(44,44,44,0.1); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.8rem; top: 0.3rem; width: 12px; height: 12px; border-radius: 50%; background: #D4935A; box-shadow: 0 0 0 3px rgba(212,147,90,0.25); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #D4935A; font-weight: 700; margin-bottom: 0.3rem; }
.timeline-item h4 { margin-bottom: 0.5rem; }
.timeline-item p { color: #666; font-size: 0.93rem; margin-bottom: 0; }

/* ─── Notice / Info Box ─────────────────────────────────────── */
.info-box {
  padding: 1.5rem 1.8rem;
  border-radius: 4px;
  margin: 2rem 0;
  border-left: 4px solid;
}
.info-box--note { background: #FFF8F0; border-color: #D4935A; }
.info-box--tip { background: #F0F8FF; border-color: #5B9BD5; }
.info-box--warning { background: #FFFBF0; border-color: #E6A817; }
.info-box strong { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-box p { margin-bottom: 0; font-size: 0.92rem; color: #555; }

/* ─── Tag Cloud ─────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-cloud a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(44,44,44,0.15);
  border-radius: 2px;
  font-size: 0.83rem;
  color: #666;
  transition: all 0.2s;
}
.tag-cloud a:hover { border-color: #D4935A; color: #D4935A; background: rgba(212,147,90,0.06); }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #2C2C2C;
  color: rgba(250,248,243,0.75);
  padding: 5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.footer-brand .nav-logo { color: #FAF8F3; margin-bottom: 1rem; font-size: 1.4rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: #FAF8F3; font-family: 'Inter', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #D4935A; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,243,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: #D4935A; }

/* ─── Cookie Banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  background: #2C2C2C; color: rgba(250,248,243,0.9);
  padding: 1.2rem 2rem;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 600px; width: calc(100% - 2rem);
  display: flex; gap: 1.5rem; align-items: center;
  font-size: 0.88rem;
}
#cookie-banner a { color: #D4935A; text-decoration: underline; }
#cookie-banner.hidden { display: none; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* ─── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-amber { color: #D4935A; }
.bg-cream { background: #FAF8F3; }
.bg-light { background: #F5EFE6; }
.bg-dark { background: #2C2C2C; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── Policy Pages ──────────────────────────────────────────── */
.policy-layout { max-width: 860px; margin: 0 auto; }
.policy-layout h2 { margin: 3rem 0 1rem; font-size: 1.5rem; }
.policy-layout h3 { margin: 2rem 0 0.8rem; font-size: 1.15rem; }
.policy-layout ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.4rem; }
.policy-layout ul li { margin-bottom: 0.5rem; color: #555; font-size: 0.95rem; }
.policy-layout p { color: #555; font-size: 0.95rem; }
.policy-toc { background: #F5EFE6; padding: 2rem; border-radius: 4px; margin-bottom: 3rem; }
.policy-toc h4 { margin-bottom: 1rem; }
.policy-toc ol { list-style: decimal; padding-left: 1.2rem; }
.policy-toc li { font-size: 0.9rem; margin-bottom: 0.4rem; }
.policy-toc a { color: #D4935A; }
.policy-date { font-size: 0.85rem; color: #aaa; margin-bottom: 2rem; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(44,44,44,0.08); }
  .nav-menu { display: none; }
  .burger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #FAF8F3; padding: 1rem 2rem 2rem;
    border-bottom: 1px solid rgba(44,44,44,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0.1rem;
  }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 1rem; display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  #cookie-banner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .btn { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
  .hero { padding: 4rem 0 3rem; }
}
