
/* ══════════════════════════════════════
   DESIGN SYSTEM — CSS VARIABLES
   ══════════════════════════════════════ */
:root {
  --gold: #9A7B4F;
  --gold-light: #B8975F;
  --gold-dark: #7A6340;
  --cream: #FAF7F2;
  --cream-deep: #F0EBE1;
  --charcoal: #2C2A26;
  --graphite: #4A4640;
  --stone: #8A847A;
  --white: #FFFFFF;
  --ink: #1A1814;
  --teal: #2B3A3B;
  --terracotta: #3B2C2C;
  --navy: #2C2C3B;
  --sage: #89A8A0;
  --rose: #C4897A;
  --lavender: #8A8AB8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', 'Georgia', serif;
  --max-w: 1280px;
  --px: clamp(1.5rem, 4vw, 3rem);
}

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
::selection { background: rgba(154,123,79,0.2); color: var(--charcoal); }
input::placeholder { color: #6A665E; }

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }
.section-pad { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); }
.section-pad-sm { padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ── Section Label ── */
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-label svg { width: 50px; flex-shrink: 0; }
.section-label span { font-family: var(--font-body); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Typography ── */
.heading-xl { font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; }
.heading-lg { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
.heading-md { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; }
.heading-sm { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; line-height: 1.3; }
.text-gold { color: var(--gold); }
.text-gold-i { color: var(--gold); font-style: italic; }
.text-cream { color: var(--cream); }
.text-stone { color: var(--stone); }
.text-graphite { color: var(--graphite); }
.body-lg { font-size: 1.1rem; line-height: 1.8; }
.body-md { font-size: 1rem; line-height: 1.75; }
.body-sm { font-size: 0.9rem; line-height: 1.65; }

/* ── Buttons ── */
.btn { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; display: inline-block; transition: all 0.4s ease; cursor: pointer; border: none; }
.btn-primary { color: var(--cream); background: var(--charcoal); }
.btn-primary:hover { background: var(--gold); }
.btn-outline { color: var(--charcoal); border: 1px solid var(--charcoal); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { color: var(--charcoal); background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.link-arrow { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: color 0.3s ease; }
.link-arrow:hover { color: var(--gold); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-12 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-12 { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .grid-12-r { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.5s ease; height: 80px; }
.nav.scrolled { background: rgba(250,247,242,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(154,123,79,0.12); height: 64px; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold); letter-spacing: -0.02em; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-body); font-size: 0.875rem; color: var(--graphite); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta { color: var(--cream); background: var(--gold); padding: 8px 20px; font-size: 0.8rem; }
.nav-links .nav-cta:hover { background: var(--gold-dark); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* Mobile menu */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--charcoal); transition: all 0.3s ease; }
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--cream); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; overflow-y: auto; padding: 5rem 1rem; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu.open a:nth-child(9) { transition-delay: 0.45s; }
.mobile-menu.open a:nth-child(10) { transition-delay: 0.5s; }
.mobile-menu.open a:nth-child(11) { transition-delay: 0.55s; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero { background: var(--cream); min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(154,123,79,0.04) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; }
.hero .arc-top { position: absolute; top: 0; left: 0; right: 0; width: 100%; }
.hero h1, .hero p, .hero .hero-ctas { opacity: 0; transform: translateY(40px); }
.hero.loaded h1 { opacity: 1; transform: translateY(0); transition: all 1s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.hero.loaded p { opacity: 1; transform: translateY(0); transition: all 1s cubic-bezier(0.22,1,0.36,1) 0.5s; }
.hero.loaded .hero-ctas { opacity: 1; transform: translateY(0); transition: all 1s cubic-bezier(0.22,1,0.36,1) 0.7s; }
.hero-arc-small { opacity: 0; transition: opacity 1s ease 0.2s; }
.hero.loaded .hero-arc-small { opacity: 1; }

/* Spines visual */
.hero-spines { position: relative; width: 320px; height: 400px; display: none; }
@media (min-width: 768px) { .hero-spines { display: block; } }
.spine { position: absolute; bottom: 0; width: 36px; box-shadow: 4px 0 12px rgba(0,0,0,0.08); opacity: 0; transform: translateY(30px); }
.hero.loaded .spine { opacity: 1; transform: translateY(0); }
.spine:nth-child(1) { left: 0; height: 380px; background: var(--charcoal); transition: all 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s; }
.spine:nth-child(2) { left: 48px; height: 360px; background: #3A3832; transition: all 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s; }
.spine:nth-child(3) { left: 96px; height: 370px; background: var(--gold-dark); transition: all 0.8s cubic-bezier(0.22,1,0.36,1) 0.7s; }
.spine:nth-child(4) { left: 144px; height: 350px; background: var(--graphite); transition: all 0.8s cubic-bezier(0.22,1,0.36,1) 0.8s; }
.spine:nth-child(5) { left: 192px; height: 365px; background: var(--gold); transition: all 0.8s cubic-bezier(0.22,1,0.36,1) 0.9s; }
.spine-shelf { position: absolute; bottom: -1px; left: -20px; right: -20px; height: 2px; background: var(--gold); opacity: 0.3; }
.spine-arc { position: absolute; bottom: 55%; left: -10px; width: 250px; opacity: 0.4; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 1.5s ease 1.2s; }
.hero.loaded .scroll-indicator { opacity: 0.4; }
.scroll-line { width: 1px; height: 48px; background: var(--gold); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; } }

/* ══════════════════════════════════════
   CATEGORY CARDS
   ══════════════════════════════════════ */
.cat-card { cursor: pointer; }
.cat-visual { aspect-ratio: 3/4.2; position: relative; overflow: hidden; margin-bottom: 1.25rem; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease; box-shadow: 8px 8px 24px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; }
.cat-visual:hover { transform: translateY(-6px); box-shadow: 12px 16px 40px rgba(0,0,0,0.15); }
.cat-visual .spine-edge { position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: linear-gradient(90deg, rgba(0,0,0,0.25), transparent); }
.cat-visual .initial { font-family: var(--font-display); font-size: 5rem; opacity: 0.12; font-style: italic; line-height: 1; }
.cat-visual .label-bottom { position: absolute; bottom: 24px; left: 20px; right: 20px; }
.cat-visual .label-bottom .imprint { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cat-visual .label-bottom .cat-name { font-family: var(--font-display); font-size: 1rem; color: var(--cream); line-height: 1.3; margin-top: 4px; }
.cat-visual .arc-deco { position: absolute; top: 15%; left: 15%; width: 70%; }
.cat-subs { margin-top: 0.75rem; }
.cat-subs span { font-size: 0.78rem; color: var(--stone); display: inline; }

/* ══════════════════════════════════════
   BOOK PLACEHOLDERS
   ══════════════════════════════════════ */
.book-slot { border: 1px dashed rgba(154,123,79,0.3); background: rgba(154,123,79,0.03); aspect-ratio: 3/4.2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 1rem; transition: all 0.4s ease; }
.book-slot:hover { border-color: var(--gold); background: rgba(154,123,79,0.06); }
.book-slot .slot-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(154,123,79,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--gold); font-size: 1.5rem; }
.book-slot .slot-label { font-family: var(--font-body); font-size: 0.75rem; color: var(--stone); letter-spacing: 0.1em; text-transform: uppercase; }
.book-slot .slot-cat { font-family: var(--font-display); font-size: 0.95rem; color: var(--graphite); margin-top: 0.5rem; }

/* ══════════════════════════════════════
   EDITORIAL PILLARS
   ══════════════════════════════════════ */
.pillar { border-top: 1px solid rgba(154,123,79,0.18); padding-top: 1.75rem; }

/* ══════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid rgba(154,123,79,0.15); padding-top: 2rem; margin-top: 2.5rem; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--gold); font-weight: 500; }
.stat-label { font-size: 0.8rem; color: var(--stone); letter-spacing: 0.04em; margin-top: 0.25rem; }

/* ══════════════════════════════════════
   AUTHOR REASONS
   ══════════════════════════════════════ */
.reason { border-left: 2px solid rgba(154,123,79,0.2); padding-left: 1.5rem; }

/* ══════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════ */
.blog-card { background: var(--white); border: 1px solid rgba(154,123,79,0.08); transition: all 0.5s ease; overflow: hidden; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.blog-card-body { padding: 1.75rem; }
.blog-card .tag { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; margin-bottom: 0.5rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); line-height: 1.35; margin-bottom: 0.75rem; }
.blog-card .excerpt { font-size: 0.9rem; color: var(--stone); line-height: 1.65; margin-bottom: 1rem; }
.blog-card .meta { font-size: 0.78rem; color: var(--stone); display: flex; gap: 1rem; }

/* ══════════════════════════════════════
   BLOG FULL ARTICLES (expanded section)
   ══════════════════════════════════════ */
.blog-full { border-top: 1px solid rgba(154,123,79,0.12); }
.blog-article { border-bottom: 1px solid rgba(154,123,79,0.1); padding: 3rem 0; }
.blog-article:last-child { border-bottom: none; }
.blog-article .article-tag { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.blog-article h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; color: var(--charcoal); line-height: 1.3; margin-bottom: 1rem; }
.blog-article .article-meta { font-size: 0.8rem; color: var(--stone); margin-bottom: 1.5rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.blog-article .article-body p { font-size: 1rem; color: var(--graphite); line-height: 1.85; margin-bottom: 1.25rem; }
.blog-article .article-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   SUBMISSIONS
   ══════════════════════════════════════ */
.submit-box { background: var(--cream); padding: 2.5rem; border: 1px solid rgba(154,123,79,0.12); margin-bottom: 1.5rem; }
.submit-box .box-title { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.submit-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.submit-item svg { width: 14px; flex-shrink: 0; margin-top: 5px; }
.submit-item span { font-size: 0.95rem; color: var(--graphite); line-height: 1.5; }

/* ══════════════════════════════════════
   JOURNAL LIST
   ══════════════════════════════════════ */
.journal-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(154,123,79,0.1); transition: padding-left 0.4s ease; }
.journal-item:hover { padding-left: 12px; }
.journal-item .j-cat { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.journal-item h3 { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 500; color: var(--charcoal); margin-top: 4px; }
.journal-item .j-meta { font-size: 0.8rem; color: var(--stone); white-space: nowrap; }

/* ══════════════════════════════════════
   CREDIBILITY BAR
   ══════════════════════════════════════ */
.trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem; }
.trust-tags span { font-size: 0.85rem; color: #7A766E; letter-spacing: 0.02em; padding: 0.5rem 0; border-bottom: 1px solid rgba(154,123,79,0.1); }

/* ══════════════════════════════════════
   EVENT ITEMS
   ══════════════════════════════════════ */
.event-item { padding: 1.25rem 0; border-bottom: 1px solid rgba(154,123,79,0.08); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.event-item:last-child { border-bottom: none; }
.event-type { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.event-detail { font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal); font-weight: 500; margin-top: 4px; }
.event-note { font-size: 0.8rem; color: var(--stone); white-space: nowrap; margin-top: 1.1rem; }

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input { flex: 1; font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); background: rgba(255,255,255,0.7); border: 1px solid rgba(154,123,79,0.2); padding: 12px 16px; outline: none; transition: border-color 0.3s ease; }
.newsletter-form input:focus { border-color: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer { background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-col-title { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: #8A857E; margin-bottom: 0.6rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--cream); }
.footer-bar { border-top: 1px solid rgba(154,123,79,0.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; }
.footer-bar p, .footer-bar a { font-size: 0.75rem; color: #5A564E; }
.footer-bar a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ══════════════════════════════════════
   BG SECTIONS
   ══════════════════════════════════════ */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-charcoal { background: var(--charcoal); color: #B0ADA6; }
.bg-charcoal h2, .bg-charcoal h3 { color: var(--cream); }
.bg-charcoal .section-label span { color: var(--gold); }

/* ══════════════════════════════════════
   ARC SVG (decorative)
   ══════════════════════════════════════ */
.arc-deco-bg { position: absolute; left: 0; right: 0; width: 100%; pointer-events: none; }

/* ══════════════════════════════════════
   IMPRINTS BAR
   ══════════════════════════════════════ */
.imprints-bar { background: var(--cream-deep); border-top: 1px solid rgba(154,123,79,0.1); border-bottom: 1px solid rgba(154,123,79,0.1); padding: 2rem 0; overflow: hidden; }
.imprints-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.imprint-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-right: 1rem; }
.imprint { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--gold-dark); letter-spacing: 0.01em; white-space: nowrap; }
.imprint-sep { width: 1px; height: 20px; background: rgba(154,123,79,0.25); }
@media (max-width: 768px) { .imprint-sep { display: none; } .imprints-inner { gap: 1rem 2rem; } }

/* ══════════════════════════════════════
   TIMELINE (Publishing Process)
   ══════════════════════════════════════ */
.timeline { position: relative; padding-left: 0; }
.timeline-stage { position: relative; padding: 2rem 0 2rem 3rem; border-left: 1px solid rgba(154,123,79,0.25); }
.timeline-stage:last-child { border-left-color: transparent; }
.timeline-stage::before { content: ''; position: absolute; left: -7px; top: 2.25rem; width: 13px; height: 13px; background: var(--cream); border: 1px solid var(--gold); border-radius: 50%; }
.timeline-stage::after { content: ''; position: absolute; left: -3px; top: 2.5rem; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.timeline-num { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 0.5rem; display: block; }
.timeline-stage h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; }
.timeline-stage .timeline-duration { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.timeline-stage p { font-size: 0.95rem; color: var(--graphite); line-height: 1.75; }

/* ══════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════ */
.service-card { padding: 2rem; background: var(--white); border: 1px solid rgba(154,123,79,0.1); transition: all 0.4s ease; height: 100%; }
.service-card:hover { border-color: rgba(154,123,79,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.05); }
.service-icon { width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; font-style: italic; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.3; }
.service-card p { font-size: 0.92rem; color: var(--stone); line-height: 1.7; }

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.faq-item { border-bottom: 1px solid rgba(154,123,79,0.15); }
.faq-question { width: 100%; padding: 1.5rem 0; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; transition: color 0.3s ease; }
.faq-question:hover { color: var(--gold); }
.faq-toggle { flex-shrink: 0; font-family: var(--font-body); font-size: 1.5rem; color: var(--gold); font-weight: 300; transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 1.5rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--graphite); line-height: 1.75; max-width: 780px; }

/* ══════════════════════════════════════
   CONTACT GRID (departmental)
   ══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--cream); border: 1px solid rgba(154,123,79,0.15); padding: 2rem; transition: all 0.4s ease; }
.contact-card:hover { border-color: var(--gold); background: var(--white); }
.contact-dept { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.9rem; color: var(--stone); line-height: 1.6; margin-bottom: 1rem; }
.contact-email { font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.3s ease; word-break: break-word; }
.contact-email:hover { color: var(--gold); }

/* ══════════════════════════════════════
   TEAM PLACEHOLDER CARDS
   ══════════════════════════════════════ */
.team-card { text-align: left; }
.team-portrait { aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(154,123,79,0.1), rgba(44,42,38,0.05)); border: 1px solid rgba(154,123,79,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; position: relative; overflow: hidden; }
.team-portrait .team-initial { font-family: var(--font-display); font-size: 5rem; color: rgba(154,123,79,0.25); font-style: italic; line-height: 1; }
.team-role { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.team-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; }
.team-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.65; }

/* ══════════════════════════════════════
   INTERNATIONAL DISTRIBUTION
   ══════════════════════════════════════ */
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; }
@media (min-width: 768px) { .region-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .region-list { grid-template-columns: repeat(4, 1fr); } }
.region-item { border-top: 1px solid rgba(154,123,79,0.2); padding-top: 1rem; }
.region-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.35rem; }
.region-item .region-countries { font-size: 0.8rem; color: var(--stone); line-height: 1.6; }

/* ══════════════════════════════════════
   PRESS KIT
   ══════════════════════════════════════ */
.press-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }
.press-item { background: var(--cream); border: 1px solid rgba(154,123,79,0.12); padding: 1.75rem; transition: all 0.4s ease; }
.press-item:hover { border-color: var(--gold); background: var(--white); }
.press-item .press-type { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.press-item h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--charcoal); margin: 0.4rem 0 0.6rem; }
.press-item p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

/* ══════════════════════════════════════
   VALUES BLOCK
   ══════════════════════════════════════ */
.value-block { padding: 1.5rem 0; border-top: 1px solid rgba(154,123,79,0.18); }
.value-block .value-num { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.value-block h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; }
.value-block p { font-size: 0.9rem; color: var(--graphite); line-height: 1.7; }


.page-hero { background: var(--cream); padding-top: 8rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(154,123,79,0.1); }
.page-hero .eyebrow { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; display:block; }
.page-hero p { max-width: 760px; }
.notice-box { background: var(--cream-deep); border: 1px solid rgba(154,123,79,0.12); padding: 1rem 1.25rem; margin-top: 1rem; }
.notice-box p { font-size: 0.9rem; color: var(--graphite); }
.contact-form-wrap { background: var(--cream); border: 1px solid rgba(154,123,79,0.12); padding: 2rem; margin-top: 3rem; }
.contact-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.contact-form-grid .full { grid-column:1 / -1; }
@media (max-width: 768px) { .contact-form-grid { grid-template-columns:1fr; } }
.contact-form-wrap label { display:block; font-size:0.78rem; color:var(--gold); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:0.5rem; }
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea { width:100%; padding:12px 14px; border:1px solid rgba(154,123,79,0.2); background:var(--white); font-family:var(--font-body); font-size:0.95rem; color:var(--charcoal); }
.contact-form-wrap textarea { min-height: 160px; resize: vertical; }
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus { outline:none; border-color:var(--gold); }
.visually-hidden { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }
