@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300;1,8..60,400&display=swap');

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

:root {
  --charcoal: #36454F;
  --charcoal-dark: #222e35;
  --charcoal-mid: #2c3a42;
  --charcoal-light: #4a5e6a;
  --gold: #B8860B;
  --gold-light: #d4a017;
  --orange: #D2691E;
  --teal: #008080;
  --teal-light: #009999;
  --white: #f5f2ed;
  --off-white: #ede9e2;
  --light-gray: #c8c2b8;
  --mid-gray: #8a857d;
  --text-body: #e8e2d9;
  --text-muted: #9e9990;
  --border-line: rgba(184, 134, 11, 0.3);
  --border-subtle: rgba(245, 242, 237, 0.1);
  --section-gap: 120px;
  --container-max: 1440px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--charcoal);
  color: var(--text-body);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--white);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--gold-light); }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section-gap { padding: var(--section-gap) 0; }
.section-gap-sm { padding: 64px 0; }

.divider-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.divider-line-center {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.section-label {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.text-teal { color: var(--teal-light); }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal-dark);
}

.btn-teal {
  display: inline-block;
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.tag-pill {
  display: inline-block;
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.35);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin: 3px 3px 3px 0;
}

/* ===================== HEADER ===================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(34, 46, 53, 0.97);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark::before {
  content: 'P';
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--gold);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-primary a {
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 8px 18px;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-primary a:hover,
.nav-primary a.active {
  color: var(--white);
}

.nav-primary a:hover::after,
.nav-primary a.active::after {
  transform: scaleX(1);
}

.nav-primary a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-primary {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid rgba(184,134,11,0.2);
    padding: 16px 0;
  }
  .nav-primary.open { display: flex; }
  .nav-primary a { width: 100%; padding: 12px 40px; }
  .nav-primary a::after { display: none; }
}

/* ===================== FOOTER ===================== */
#site-footer {
  background: var(--charcoal-dark);
  border-top: 1px solid rgba(184, 134, 11, 0.25);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-top: 16px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.03em;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.footer-contact-item span:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-contact-item span:last-child {
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.footer-hours {
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.footer-hours h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-hours p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 4px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--mid-gray);
  transition: color 0.25s;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal-dark);
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--white);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Source Serif 4', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  background: transparent;
  color: var(--gold);
}

.cookie-btn.accept {
  background: var(--gold);
  color: var(--charcoal-dark);
}

.cookie-btn.accept:hover {
  background: var(--gold-light);
}

.cookie-btn.decline:hover {
  background: rgba(184,134,11,0.1);
}

.cookie-btn.learn {
  border-color: rgba(245,242,237,0.2);
  color: var(--light-gray);
}

.cookie-btn.learn:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(0.85);
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(34,46,53,0.2) 0%,
    rgba(34,46,53,0.55) 50%,
    rgba(34,46,53,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 64px 40px;
}

.hero-pre-title {
  font-family: 'Source Serif 4', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(245,242,237,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-border-box {
  display: inline-block;
  border: 1px solid rgba(184,134,11,0.45);
  padding: 6px 24px;
  margin-bottom: 32px;
}

.hero-border-box span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  margin-top: 72px;
  background: var(--charcoal-mid);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(184,134,11,0.05), transparent);
  pointer-events: none;
}

.page-hero-label {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 580px;
  line-height: 1.7;
}

/* ===================== SECTION STRUCTURES ===================== */
.section-dark { background: var(--charcoal-dark); }
.section-mid { background: var(--charcoal-mid); }
.section-charcoal { background: var(--charcoal); }

.section-header {
  margin-bottom: 56px;
}

.section-header.centered { text-align: center; }

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered p { margin: 0 auto; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-60-40 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col-40-60 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col,
  .two-col.reverse,
  .two-col-60-40,
  .two-col-40-60 {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }
}

/* Image frames */
.img-frame {
  position: relative;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-frame:hover img { transform: scale(1.03); }

.img-frame-tall img { height: 560px; }

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,134,11,0.2);
  pointer-events: none;
}

.img-accent-line {
  position: absolute;
  bottom: -12px;
  left: 24px;
  width: 64px;
  height: 3px;
  background: var(--gold);
}

.img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(34,46,53,0.88);
  padding: 10px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(184,134,11,0.4);
}

/* ===================== GLOSSARY RAIL ===================== */
.glossary-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .glossary-layout { grid-template-columns: 1fr; gap: 48px; }
}

.glossary-rail {
  background: var(--charcoal-dark);
  border-left: 2px solid var(--gold);
  padding: 32px;
  position: sticky;
  top: 96px;
}

.glossary-rail h3 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.glossary-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.glossary-item:last-child { border-bottom: none; }

.glossary-term {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.glossary-def {
  font-size: 0.83rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===================== CARDS ===================== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .cards-grid-3,
  .cards-grid-2,
  .cards-grid-4 { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.info-card:hover::before { height: 100%; }
.info-card:hover {
  border-color: rgba(184,134,11,0.35);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.info-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

.info-card .card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(184,134,11,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.expandable-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: border-color 0.3s ease;
}

.expandable-card:hover { border-color: rgba(184,134,11,0.3); }

.card-header {
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-header h3 {
  font-size: 1.05rem;
  color: var(--white);
}

.card-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184,134,11,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.35s;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  font-family: monospace;
}

.expandable-card.open .card-toggle {
  background: var(--gold);
  color: var(--charcoal-dark);
  transform: rotate(45deg);
}

.card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-body-inner {
  padding: 0 32px 28px;
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

/* ===================== PULL QUOTE ===================== */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 36px;
  margin: 40px 0;
  background: rgba(184,134,11,0.05);
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  font-weight: 400;
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ===================== STAT STRIP ===================== */
.stat-strip {
  background: var(--charcoal-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(184,134,11,0.2);
  padding: 56px 0;
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 900px) {
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .stat-strip-inner { grid-template-columns: 1fr; }
}

.stat-item {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 1rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

/* ===================== TABLE ===================== */
.data-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
  background: var(--charcoal-dark);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 20px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  line-height: 1.55;
}

.data-table tr:hover td { background: rgba(184,134,11,0.04); }

.data-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.table-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
}

.badge-plant {
  border-color: var(--teal);
  color: var(--teal-light);
}

.badge-animal {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  padding-left: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,134,11,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: -47px;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  background: var(--charcoal);
  border-radius: 50%;
}

.timeline-date {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-body {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ===================== ACCORDION ===================== */
.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184,134,11,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.35s ease, background 0.25s;
  font-family: monospace;
  font-weight: 300;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--charcoal-dark);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-answer {
  padding: 0 0 24px 0;
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* ===================== PANEL SYSTEM ===================== */
.knowledge-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.knowledge-panel {
  border: 1px solid var(--border-subtle);
  margin-bottom: -1px;
  position: relative;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  cursor: pointer;
  background: var(--charcoal-mid);
  transition: background 0.25s;
}

.panel-header:hover { background: var(--charcoal-dark); }

.panel-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(184,134,11,0.35);
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  flex: 1;
}

.panel-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.35s;
  font-family: monospace;
}

.knowledge-panel.open .panel-arrow { transform: rotate(90deg); }

.panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-content-inner {
  padding: 28px 32px 32px 92px;
  background: var(--charcoal-dark);
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 700px) {
  .panel-content-inner { padding: 24px 24px; }
}

.panel-content-inner p {
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.panel-content-inner p:last-child { margin-bottom: 0; }

/* ===================== DO/DONT ===================== */
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 700px) { .do-dont-grid { grid-template-columns: 1fr; } }

.do-col, .dont-col {
  padding: 32px;
  border: 1px solid;
}

.do-col {
  border-color: rgba(0,128,128,0.35);
  background: rgba(0,128,128,0.05);
}

.dont-col {
  border-color: rgba(210,105,30,0.35);
  background: rgba(210,105,30,0.05);
}

.do-col h3, .dont-col h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.do-col h3 { color: var(--teal-light); }
.dont-col h3 { color: var(--orange); }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.checklist-item:last-child { margin-bottom: 0; }

.check-icon {
  width: 18px;
  height: 18px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

.do-col .check-icon { border-color: var(--teal); color: var(--teal-light); }
.dont-col .check-icon { border-color: var(--orange); color: var(--orange); }

/* ===================== PRINCIPLE HIGHLIGHT ===================== */
.principle-highlight {
  background: var(--charcoal-dark);
  border: 1px solid rgba(184,134,11,0.35);
  border-left: 4px solid var(--gold);
  padding: 40px 48px;
  margin-bottom: 56px;
}

.principle-highlight .ph-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.principle-highlight h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 16px;
}

.principle-highlight p {
  font-size: 0.97rem;
  color: var(--mid-gray);
  line-height: 1.72;
  max-width: 680px;
}

/* ===================== LEGAL PAGES ===================== */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}

@media (max-width: 960px) { .legal-layout { grid-template-columns: 1fr; gap: 48px; } }

.legal-body h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  margin-top: 48px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.legal-body ul li {
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.75;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
}

.legal-sidebar {
  position: sticky;
  top: 96px;
}

.legal-meta-box {
  background: var(--charcoal-dark);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--gold);
  padding: 28px;
  margin-bottom: 24px;
}

.legal-meta-box h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}

.legal-meta-box p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

.legal-meta-box a {
  font-size: 0.85rem;
  color: var(--teal-light);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.25s;
}

.legal-meta-box a:hover { color: var(--white); }

.attention-box {
  background: rgba(210,105,30,0.08);
  border: 1px solid rgba(210,105,30,0.35);
  border-left: 4px solid var(--orange);
  padding: 28px 32px;
  margin-bottom: 32px;
}

.attention-box .att-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.attention-box p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===================== MISSION BLOCK ===================== */
.mission-block {
  background: var(--charcoal-dark);
  border: 1px solid rgba(184,134,11,0.25);
  padding: 64px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.mission-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.mission-block p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) { .mission-block { padding: 40px 28px; } }

/* ===================== FAQ ===================== */
.faq-section-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.faq-section-header h2 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

/* ===================== FADE IN ANIMATION ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===================== FULL WIDTH DIVIDER ===================== */
.fw-divider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.fw-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.75);
}

.fw-divider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(34,46,53,0.7), rgba(34,46,53,0.3), rgba(34,46,53,0.7));
}

.fw-divider-text {
  text-align: center;
  padding: 0 40px;
}

.fw-divider-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}

.fw-divider-text p {
  font-size: 1rem;
  color: var(--light-gray);
  max-width: 500px;
  margin: 0 auto;
}

/* ===================== INLINE CONTENT HELPERS ===================== */
.text-body-block h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 32px;
}

.text-body-block h3:first-child { margin-top: 0; }

.text-body-block p {
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.78;
  margin-bottom: 16px;
}

.text-body-block strong {
  color: var(--white);
  font-weight: 600;
}

.text-body-block ul {
  list-style: none;
  margin-bottom: 20px;
}

.text-body-block ul li {
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
}

.text-body-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.wide-text {
  max-width: 780px;
}

.narrow-text {
  max-width: 580px;
}

hr.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 48px 0;
}

/* ===================== RESPONSIVE PADDING ===================== */
@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  .hero-title { font-size: 2.4rem; }
  .mission-block { padding: 40px 24px; }
  .pull-quote { padding: 20px 24px; }
}

@media (max-width: 480px) {
  :root { --section-gap: 56px; }
  .container { padding: 0 16px; }
}
