@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background-color: #0b0b0b;
  color: #e8e0d0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dim: rgba(201,168,76,0.18);
  --dark: #0b0b0b;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #272727;
  --cream: #e8e0d0;
  --cream-dim: rgba(232,224,208,0.6);
  --cream-muted: rgba(232,224,208,0.35);
  --white: #f9f5ee;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --max-w: 1340px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; color: var(--white); }
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.8vw, 2.4rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
p { font-size: clamp(0.9rem, 1.2vw, 1.05rem); color: var(--cream-dim); line-height: 1.8; }

.kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.serif { font-family: var(--font-serif); }
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.cream { color: var(--cream); }
.italic { font-style: italic; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--sm { padding: clamp(2.5rem, 5vw, 5rem) 0; }
.section--lg { padding: clamp(5rem, 10vw, 11rem) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.grid-asym { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.grid-asym-r { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.text-center { text-align: center; }
.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.75rem; }
.mb-lg { margin-bottom: 3rem; }

/* ===== GOLD DIVIDER ===== */
.gold-line {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(11,11,11,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

/* Burger is desktop-hidden by default */
.burger { display: none; }
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  transition: background 0.25s, color 0.25s;
}
.nav__cta:hover { background: var(--gold-light); color: var(--dark); }

.burger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav — hidden on desktop */
.nav__mobile {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  display: none;
  transform: translateY(-110%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .kicker { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all 0.28s;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--dark); }
.btn--ghost {
  border: 1px solid rgba(232,224,208,0.25);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--text {
  padding: 0;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.btn--text:hover { border-color: var(--gold); }
.btn svg { width: 14px; height: 14px; }

/* ===== CARDS ===== */
.card {
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
}
.card:hover { transform: translateY(-4px); }
.card__img {
  overflow: hidden;
  position: relative;
}
.card__img img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  object-fit: cover;
}
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.5rem; }
.card__body .kicker { margin-bottom: 0.6rem; }
.card__body h3, .card__body h4 { margin-bottom: 0.7rem; }
.card__body p { font-size: 0.9rem; margin-bottom: 1.1rem; }

/* ===== ARTICLE CARD ===== */
.art-card { display: flex; flex-direction: column; }
.art-card__img { aspect-ratio: 4/3; }
.art-card__img--tall { aspect-ratio: 3/4; }
.art-card__img--wide { aspect-ratio: 16/9; }

/* ===== FEATURED ARTICLE ===== */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark-2);
  overflow: hidden;
}
.feat__img { height: 100%; min-height: 480px; }
.feat__body {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat__body h2 { margin-bottom: 1.2rem; }
.feat__body p { margin-bottom: 1.8rem; }
.feat__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.feat__meta span { font-size: 0.75rem; color: var(--cream-muted); letter-spacing: 0.1em; }
.feat__meta .sep { color: var(--gold); }

/* ===== SECTION HEADER ===== */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.sec-head .kicker { margin-bottom: 0.8rem; }
.sec-head h2 { margin-bottom: 1rem; }
.sec-head p { max-width: 60ch; }
.sec-head--center { text-align: center; }
.sec-head--center p { margin-left: auto; margin-right: auto; }
.sec-head--between { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }

/* ===== PULL QUOTE ===== */
.pullquote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
}
.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}
.pullquote cite { display: block; margin-top: 0.7rem; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ===== HERO (BASE) ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img { height: 100%; object-fit: cover; object-position: center top; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.88) 0%, rgba(11,11,11,0.3) 55%, rgba(11,11,11,0.1) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
  padding-bottom: clamp(3rem, 8vh, 7rem);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__content h1 { margin-bottom: 1.2rem; }
.hero__content p { max-width: 55ch; margin-bottom: 2rem; font-size: clamp(1rem, 1.4vw, 1.15rem); }

/* ===== INNER HERO (subpages) ===== */
.inner-hero {
  position: relative;
  height: clamp(340px, 50vw, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.inner-hero__bg { position: absolute; inset: 0; z-index: 0; }
.inner-hero__bg img { height: 100%; object-fit: cover; }
.inner-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.2) 60%);
}
.inner-hero__content {
  position: relative; z-index: 2;
  padding: var(--gutter);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.inner-hero__content h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }

/* ===== BG SECTIONS ===== */
.bg-dark-2 { background-color: var(--dark-2); }
.bg-dark-3 { background-color: var(--dark-3); }
.bg-dark-4 { background-color: var(--dark-4); }
.bg-gold-dim { background-color: var(--gold-dim); }

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-muted);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STAT BAR ===== */
.stats-bar {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat__num span { color: var(--gold); }
.stat__label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-muted); }

/* ===== NUMBER ITEMS ===== */
.num-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(232,224,208,0.08); }
.num-item:last-child { border-bottom: none; }
.num-item__n {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}
.num-item__body h4 { margin-bottom: 0.4rem; }
.num-item__body p { font-size: 0.88rem; }

/* ===== TAG / BADGE ===== */
.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* ===== FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.form-input, .form-textarea, .form-select {
  background: var(--dark-3);
  border: 1px solid rgba(232,224,208,0.12);
  color: var(--cream);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color 0.25s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--dark-3); }
.form-msg {
  display: none;
  padding: 1rem 1.4rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.88rem;
  margin-top: 1rem;
}
.form-msg.show { display: block; }

/* ===== NEWSLETTER ===== */
.newsletter-row {
  display: flex;
  gap: 0;
  max-width: 520px;
}
.newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--cream);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-row input::placeholder { color: var(--cream-muted); }
.newsletter-row button {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 1.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter-row button:hover { background: var(--gold-light); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}
.breadcrumb a { color: var(--cream-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); font-size: 0.6rem; }

/* ===== ARTICLE BODY ===== */
.article-body { max-width: 72ch; margin: 0 auto; }
.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body p { margin-bottom: 1.4rem; }
.article-body ul { margin-bottom: 1.4rem; padding-left: 1.5rem; }
.article-body ul li { list-style: disc; color: var(--cream-dim); font-size: 0.98rem; line-height: 1.8; margin-bottom: 0.4rem; }
.article-body .pullquote { margin: 2.5rem -1rem; }

/* ===== SIDEBAR ===== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: start;
}
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget { background: var(--dark-2); padding: 1.8rem; }
.sidebar-widget h5 { margin-bottom: 1.2rem; }
.sidebar-list-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(232,224,208,0.08);
  transition: color 0.2s;
}
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item:hover h4 { color: var(--gold); }
.sidebar-list-item__img { width: 68px; height: 68px; flex-shrink: 0; overflow: hidden; }
.sidebar-list-item__img img { height: 68px; object-fit: cover; }
.sidebar-list-item h4 { font-size: 0.98rem; transition: color 0.2s; margin-bottom: 0.2rem; }
.sidebar-list-item .kicker { font-size: 0.6rem; }

/* ===== POLICY PAGE ===== */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 3rem var(--gutter); }
.policy-wrap h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.policy-wrap .meta { font-size: 0.78rem; color: var(--cream-muted); margin-bottom: 2.5rem; letter-spacing: 0.1em; }
.policy-wrap h2 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: 2.5rem; margin-bottom: 0.8rem; }
.policy-wrap h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.policy-wrap p { margin-bottom: 1rem; }
.policy-wrap ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-wrap ul li { list-style: disc; color: var(--cream-dim); line-height: 1.8; margin-bottom: 0.3rem; }
.policy-wrap a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.policy-wrap a:hover { border-color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: clamp(3rem, 6vw, 6rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3.5rem;
}
.footer__brand .nav__logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer__brand p { font-size: 0.88rem; max-width: 30ch; margin-bottom: 1.5rem; }
.footer__col h5 { margin-bottom: 1.2rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: var(--cream-muted);
  transition: color 0.25s;
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,224,208,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.75rem; color: var(--cream-muted); }
.footer__bottom a { color: var(--cream-muted); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.72rem; }

/* ===== COOKIE BANNER ===== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.2rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s;
}
.cookie-bar.hidden { transform: translateY(110%); }
.cookie-bar p { font-size: 0.85rem; color: var(--cream-dim); max-width: 70ch; }
.cookie-bar__btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MISC ===== */
.aspect-3-4 { aspect-ratio: 3/4; overflow: hidden; }
.aspect-4-3 { aspect-ratio: 4/3; overflow: hidden; }
.aspect-16-9 { aspect-ratio: 16/9; overflow: hidden; }
.aspect-1-1 { aspect-ratio: 1/1; overflow: hidden; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

.sep-line {
  width: 100%;
  height: 1px;
  background: rgba(232,224,208,0.08);
  margin: 2rem 0;
}

.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-size: 1rem;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold-light); }

/* ===== PERSON CARD ===== */
.person-card { text-align: center; }
.person-card__img { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.2rem; border: 2px solid var(--gold); }
.person-card__img img { height: 140px; object-fit: cover; }
.person-card h4 { margin-bottom: 0.2rem; }
.person-card .kicker { margin-bottom: 0.5rem; }
.person-card p { font-size: 0.85rem; max-width: 26ch; margin: 0 auto; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(232,224,208,0.1); margin-bottom: 2.5rem; }
.tab-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.85rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.25);
}
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 0.35rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-3.5px);
}
.tl-item .kicker { margin-bottom: 0.4rem; }
.tl-item h4 { margin-bottom: 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta-btn { display: none; }
  .burger { display: flex; }
  .nav__mobile { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-asym, .grid-asym-r { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; }
  .feat__img { min-height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
  .newsletter-row { flex-direction: column; }
  .newsletter-row input { border-right: 1px solid rgba(201,168,76,0.3); }
}
