@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:    #FAF8F4;
  --cream:    #F2EDE5;
  --charcoal: #1A1A1A;
  --ink:      #2C2C2C;
  --gold:     #C9A96E;
  --gold-lt:  #DFC08A;
  --muted:    #7A736A;
  --rule:     #DDD7CE;
  --white:    #FFFFFF;
  --ff-head:  'Playfair Display', Georgia, serif;
  --ff-body:  'Cormorant Garamond', 'Times New Roman', serif;
  --ff-alt:   'Libre Baskerville', Georgia, serif;
  --max-w:    1240px;
  --gap:      clamp(1.5rem, 3vw, 3rem);
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; }
img { display: block; width: 100%; height: auto; object-fit: cover; }

.container { width: min(100%, var(--max-w)); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--ff-head); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
p  { font-size: clamp(1rem, 1.5vw, 1.15rem); margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 300; line-height: 1.8; font-style: italic; color: var(--muted); }
.eyebrow { font-family: var(--ff-alt); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.rule-line { display: block; width: 56px; height: 1px; background: var(--gold); margin-bottom: 1.6rem; }
.rule-line--center { margin-inline: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--ff-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9em 2.4em;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  text-decoration: none;
}
.btn:hover { background: var(--charcoal); color: var(--ivory); }
.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--white); }
.btn--fill { background: var(--charcoal); color: var(--ivory); }
.btn--fill:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--sm { padding: 0.6em 1.6em; font-size: 0.65rem; }

/* ─── SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.logo span { color: var(--gold); }
.logo:hover { color: var(--charcoal); }

.nav-primary { display: flex; align-items: center; gap: 0; }
.nav-primary a {
  font-family: var(--ff-alt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-primary a:hover, .nav-primary a.active { color: var(--gold); border-color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: default; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  min-width: 220px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 800;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-family: var(--ff-alt);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  border-bottom: none;
}
.dropdown-menu a:hover { color: var(--gold); background: var(--cream); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--charcoal); transition: transform 0.25s; }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  gap: 0;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 4vw, 5rem) clamp(3rem, 6vw, 7rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--cream);
}
.hero-text h1 { margin-bottom: 1.4rem; }
.hero-text .lead { margin-bottom: 2.4rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; overflow: hidden; min-height: 500px; }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.35) 0%, transparent 60%);
}
.hero-visual-caption {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-align: right;
  line-height: 1.5;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--charcoal);
  color: var(--gold);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}
.marquee-inner { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee-inner span {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.18em;
  padding-inline: 3rem;
  color: var(--gold-lt);
  border-right: 1px solid rgba(201,169,110,0.3);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ivory); }
.section--dark .lead { color: rgba(250,248,244,0.65); }
.section--dark .eyebrow { color: var(--gold-lt); }
.section--dark .rule-line { background: var(--gold-lt); }
.section--dark p { color: rgba(250,248,244,0.82); }
.section--dark .btn { border-color: var(--ivory); color: var(--ivory); }
.section--dark .btn:hover { background: var(--ivory); color: var(--charcoal); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-head--center { text-align: center; }
.section-head--center .rule-line { margin-inline: auto; }

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-asymmetric { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.grid-asymmetric-rev { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }

/* ─── ARTICLE CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s, transform 0.28s;
}
.card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.8rem 1.6rem 2rem; flex: 1; display: flex; flex-direction: column; }
.card-category { font-family: var(--ff-alt); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.card h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); margin-bottom: 0.8rem; line-height: 1.3; }
.card h3 a { color: var(--charcoal); transition: color 0.2s; }
.card h3 a:hover { color: var(--gold); }
.card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.4rem; }
.card-meta { margin-top: auto; font-family: var(--ff-alt); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 1rem; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; }

/* Featured card */
.card-featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.card-featured .card-img { aspect-ratio: auto; height: 100%; min-height: 320px; }
.card-featured .card-body { padding: 2.4rem 2.4rem 2.8rem; }
.card-featured h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* ─── STATS BAR ─── */
.stats-bar { padding-block: 4rem; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--ff-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--charcoal); line-height: 1; }
.stat-label { font-family: var(--ff-alt); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 0.5rem; }
.stat-divider { width: 1px; background: var(--rule); height: 60px; margin: 0 auto 1rem; display: none; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.6rem 2rem 1.6rem 2.5rem;
  margin: 2.5rem 0;
  background: var(--cream);
}
.quote-block blockquote {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.quote-block cite { font-family: var(--ff-alt); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-style: normal; }

/* ─── FULL-WIDTH BANNER ─── */
.banner-full {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-full img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.62);
}
.banner-full-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  color: var(--ivory);
}
.banner-full-content h2 { color: var(--ivory); }

/* ─── ALPHABET SHOWCASE ─── */
.alpha-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.alpha-letter {
  flex: 0 0 calc(100% / 13);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 700;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--charcoal);
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
.alpha-letter:hover { background: var(--charcoal); color: var(--gold); }
.alpha-letter.gold { color: var(--gold); }

/* ─── SIDEBAR LAYOUT ─── */
.layout-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.sidebar-widget { margin-bottom: 2.8rem; border: 1px solid var(--rule); padding: 1.8rem; }
.sidebar-widget h4 { margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--rule); }
.sidebar-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--rule); font-size: 0.92rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--ink); transition: color 0.2s; display: flex; justify-content: space-between; align-items: center; }
.sidebar-list a:hover { color: var(--gold); }
.sidebar-list a span { font-family: var(--ff-alt); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ─── TAG CLOUD ─── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-family: var(--ff-alt);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border: 1px solid var(--rule);
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.tag:hover, .tag.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-alt);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 1.2rem;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--rule); }

/* ─── PAGE HERO ─── */
.page-hero { padding: clamp(4rem, 7vw, 8rem) 0 clamp(3rem, 5vw, 5rem); text-align: center; background: var(--cream); border-bottom: 1px solid var(--rule); }
.page-hero .lead { max-width: 640px; margin-inline: auto; margin-top: 1.2rem; }

/* ─── ARTICLE BODY ─── */
.article-body { max-width: 720px; }
.article-body h2 { margin-top: 2.8rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.8rem; color: var(--ink); }
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { padding-left: 1.6rem; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.75; }
.article-body img { margin-block: 2.5rem; }
.article-body .caption { font-family: var(--ff-alt); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: -2rem; margin-bottom: 2.5rem; }
.article-body strong { font-weight: 600; color: var(--charcoal); }

/* ─── FONT SPECIMEN ─── */
.font-specimen {
  border: 1px solid var(--rule);
  padding: 2rem 2.4rem;
  margin-block: 2rem;
  background: var(--white);
}
.specimen-name { font-family: var(--ff-alt); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 1rem; }
.specimen-display { font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; color: var(--charcoal); margin-bottom: 0.8rem; }
.specimen-body-text { font-family: var(--ff-body); font-size: 1rem; color: var(--muted); line-height: 1.7; }
.specimen-weights { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); }
.specimen-weight-item { font-family: var(--ff-head); }

/* ─── ACCORDION (FAQ) ─── */
.accordion-item { border-bottom: 1px solid var(--rule); }
.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-head);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.accordion-icon::before,
.accordion-icon::after { content: ''; position: absolute; background: var(--charcoal); border-radius: 2px; transition: transform 0.28s; }
.accordion-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion-icon::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion-trigger.open .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion-body { display: none; padding-bottom: 1.6rem; font-size: 1rem; color: var(--muted); line-height: 1.8; }
.accordion-body.open { display: block; }

/* ─── CONTACT FORM ─── */
.contact-form { max-width: 640px; }
.form-row { margin-bottom: 1.6rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.6rem; }
label { display: block; font-family: var(--ff-alt); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.5rem; }
input, textarea, select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.85rem 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 1.6rem; }
.form-consent input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--gold); }

/* ─── FOOTER ─── */
.site-footer { background: var(--charcoal); color: rgba(250,248,244,0.75); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: var(--ivory); display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.2rem; color: rgba(250,248,244,0.6); }
.footer-address { font-size: 0.88rem; line-height: 1.9; color: rgba(250,248,244,0.55); font-style: normal; }
.footer-col h5 { color: var(--ivory); font-size: 0.65rem; letter-spacing: 0.2em; margin-bottom: 1.4rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(250,248,244,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-newsletter p { font-size: 0.9rem; color: rgba(250,248,244,0.6); margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--ivory); font-size: 0.88rem; padding: 0.7rem 1rem; flex: 1; }
.newsletter-form input::placeholder { color: rgba(250,248,244,0.4); }
.newsletter-form button {
  font-family: var(--ff-alt);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.6rem;
  font-size: 0.78rem;
  color: rgba(250,248,244,0.4);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom a { color: rgba(250,248,244,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-policy-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 3px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: rgba(250,248,244,0.82); margin: 0; max-width: 640px; }
.cookie-banner a { color: var(--gold-lt); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  font-family: var(--ff-alt);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55em 1.3em;
  cursor: pointer;
  border: 1px solid;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn--accept { background: var(--gold); border-color: var(--gold); color: var(--white); }
.cookie-btn--accept:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.cookie-btn--decline { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(250,248,244,0.7); }
.cookie-btn--decline:hover { border-color: var(--ivory); color: var(--ivory); }
.cookie-btn--settings { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(250,248,244,0.7); font-size: 0.58rem; }
.cookie-btn--settings:hover { border-color: var(--gold); color: var(--gold); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); }
.back-to-top svg { width: 16px; height: 16px; stroke: var(--ivory); fill: none; stroke-width: 2; }

/* ─── PAGINATION ─── */
.pagination { display: flex; align-items: center; gap: 0.4rem; justify-content: center; padding-top: 3rem; }
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--ff-alt);
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid var(--rule);
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-link:hover, .page-link.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* ─── INFO TABLE ─── */
.info-table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; }
.info-table th, .info-table td { padding: 0.9rem 1.2rem; border: 1px solid var(--rule); text-align: left; font-size: 0.92rem; }
.info-table th { background: var(--cream); font-family: var(--ff-alt); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.info-table tr:hover td { background: var(--cream); }

/* ─── CLASSIFICATION CARD ─── */
.class-card { background: var(--white); border: 1px solid var(--rule); padding: 2rem; transition: box-shadow 0.25s; }
.class-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.class-symbol { font-family: var(--ff-head); font-size: 3.5rem; line-height: 1; color: var(--charcoal); margin-bottom: 1rem; display: block; }
.class-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.class-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.class-examples { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.class-example { font-family: var(--ff-alt); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25em 0.7em; border: 1px solid var(--rule); color: var(--muted); }

/* ─── PROFILE CARDS ─── */
.profile-card { display: flex; flex-direction: column; }
.profile-img { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.2rem; }
.profile-img img { width: 100%; height: 100%; }
.profile-info { flex: 1; }
.profile-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.profile-role { font-family: var(--ff-alt); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.8rem; }
.profile-bio { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── GLOSSARY ─── */
.glossary-letter { font-family: var(--ff-head); font-size: 3rem; font-weight: 700; color: var(--rule); line-height: 1; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--rule); }
.glossary-term { padding-block: 1.2rem; border-bottom: 1px solid var(--rule); }
.glossary-term dt { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
.glossary-term dd { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--rule); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot { position: absolute; left: -2.5rem; top: 0.3rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; transform: translateX(-50%); margin-left: 1px; }
.timeline-year { font-family: var(--ff-alt); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.4rem; }
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ─── RESOURCE CARD ─── */
.resource-item { display: flex; gap: 1.5rem; padding: 1.8rem; border: 1px solid var(--rule); margin-bottom: 1rem; background: var(--white); transition: box-shadow 0.25s; }
.resource-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); }
.resource-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--cream); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 700; color: var(--gold); font-size: 1.2rem; }
.resource-info h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.resource-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }
.resource-type { font-family: var(--ff-alt); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.3rem; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory);
  z-index: 850;
  overflow-y: auto;
  padding: 2rem;
  border-top: 1px solid var(--rule);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--charcoal);
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.w-full { width: 100%; }
.separator { width: 100%; height: 1px; background: var(--rule); margin-block: 2.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 400px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .card-featured .card-img { min-height: 220px; }
  .grid-asymmetric, .grid-asymmetric-rev { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-primary { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .alpha-letter { flex: 0 0 calc(100% / 7); }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-text { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .alpha-letter { flex: 0 0 calc(100% / 5); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
