/* ============================================
   WOODBRIDGE CONSULTING — GLOBAL DESIGN SYSTEM v2
   woodbridgeconsulting.co
   ============================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --black:       #000000;
  --white:       #ffffff;
  --gold:        #C6A55C;
  --gold-light:  #dfc080;
  --dark:        #0D0D0D;
  --dark-2:      #111111;
  --dark-3:      #1a1a17;
  --warm-gray:   #ECEAE4;
  --off-white:   #F5F3EE;
  --stone:       #E8E4DC;
  --text-body:   #2C2B28;
  --text-muted:  #6B6860;
  --border:      rgba(255,255,255,0.07);
  --border-light: #e0ddd6;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --transition:  0.25s ease;
  --max-width:   1200px;
  --section-pad: 7rem 2rem;
}

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(198,165,92,0.18);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-w {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-right: 0.75rem;
}
.nav-logo-divider {
  width: 0.5px;
  height: 28px;
  background: var(--gold);
  opacity: 0.65;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-text span {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.75px solid var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.page-wrap { padding-top: 70px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-3);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.58) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 920px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  line-height: 1.82;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.6rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); border: 0.75px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-white { background: transparent; color: var(--white); border: 0.75px solid rgba(255,255,255,0.45); }
.btn-white:hover { background: var(--white); color: var(--black); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-pad); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark-2 { background: var(--dark-2); color: var(--white); }
.section-warm { background: var(--warm-gray); }
.section-stone { background: var(--stone); }
.section-off-white { background: var(--off-white); }
.section-white { background: var(--white); }
.section-black { background: var(--black); color: var(--white); }
.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { font-weight: 300; line-height: 1.85; font-size: 1rem; }
strong { font-weight: 500; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.rule-gold { width: 48px; height: 0.5px; background: var(--gold); margin: 1.5rem 0; }
.rule-gold.centered { margin: 1.5rem auto; }

/* ============================================
   INTRO BAND
   ============================================ */
.intro-band {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--white);
  border-bottom: 0.5px solid var(--border-light);
}
.intro-band p {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-body);
}

/* ============================================
   ALTERNATING BLOCKS
   ============================================ */
.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-top: 0.5px solid var(--border-light);
}
.alt-block:first-child { border-top: none; }
.alt-block.reverse { direction: rtl; }
.alt-block.reverse > * { direction: ltr; }
.alt-text {
  padding: 5.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.alt-text h3 { margin-bottom: 1.25rem; color: var(--dark); }
.alt-text p { margin-bottom: 1.1rem; color: var(--text-body); font-size: 1rem; }
.alt-text p:last-child { margin-bottom: 0; }
.alt-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}
.alt-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.alt-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 60%);
}
.alt-pull-quote {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  border-left: 1.5px solid var(--gold);
  padding-left: 1.25rem;
}

/* ============================================
   SIGNAL LIST
   ============================================ */
.signal-list {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.signal-list li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.65;
}
.signal-list li::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================
   PILLARS GRID
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.pillar { background: var(--dark); padding: 3rem 2.5rem; }
.pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar h4 { color: var(--white); margin-bottom: 0.85rem; }
.pillar p { font-size: 0.95rem; color: rgba(255,255,255,0.52); line-height: 1.78; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 2.5rem;
}
.card h4 { color: var(--dark); margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.78; }
.card-dark { background: var(--dark-2); border: 0.5px solid rgba(255,255,255,0.06); }
.card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.48); }

/* ============================================
   IMAGE BREAK
   ============================================ */
.img-break {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.65) 100%);
}
.img-break-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
}
.img-break-text p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

/* ============================================
   NICHE TAGS
   ============================================ */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-body);
  border: 0.5px solid rgba(198,165,92,0.45);
  padding: 0.42rem 1.1rem;
  background: var(--white);
  transition: border-color var(--transition), color var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   FAQ
   ============================================ */
.faq-item { border-bottom: 0.5px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 1rem; color: var(--text-muted); line-height: 1.82; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================================
   STEPS
   ============================================ */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 740px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 0.5px solid var(--border-light);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.3rem;
}
.step h4 { color: var(--dark); margin-bottom: 0.5rem; }
.step p { font-size: 1rem; color: var(--text-muted); line-height: 1.82; }

/* ============================================
   FORM
   ============================================ */
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.35rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-body);
  background: var(--white);
  border: 0.5px solid var(--border-light);
  padding: 0.9rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-dark .form-group label { color: rgba(255,255,255,0.48); }
.form-dark .form-group input,
.form-dark .form-group textarea,
.form-dark .form-group select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-dark .form-group input::placeholder,
.form-dark .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-dark .form-group input:focus,
.form-dark .form-group textarea:focus { border-color: var(--gold); }

/* ============================================
   QUIZ SIDEBAR BUTTON
   ============================================ */
.quiz-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 0.65rem;
  writing-mode: vertical-rl;
  cursor: pointer;
  border: none;
  z-index: 500;
  transition: background var(--transition);
}
.quiz-trigger:hover { background: var(--gold-light); }

/* ============================================
   QUIZ MODAL
   ============================================ */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.84);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quiz-overlay.open { opacity: 1; pointer-events: all; }
.quiz-modal {
  background: var(--dark-2);
  border: 0.5px solid rgba(198,165,92,0.22);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem;
  position: relative;
}
.quiz-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.38);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.quiz-close:hover { color: var(--white); }
.quiz-modal h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--white); margin-bottom: 0.5rem; }
.quiz-intro { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; line-height: 1.7; }
.quiz-progress-bar { width: 100%; height: 2px; background: rgba(255,255,255,0.08); margin-bottom: 2.25rem; }
.quiz-progress-fill { height: 100%; background: var(--gold); transition: width 0.4s ease; }
.quiz-question-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; display: block; }
.quiz-question-text { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 1.65rem; line-height: 1.45; }
.quiz-options { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.quiz-option {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 0.95rem 1.35rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  width: 100%;
  line-height: 1.5;
}
.quiz-option:hover,
.quiz-option.selected {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(198,165,92,0.1);
}
.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.quiz-step-count { font-size: 0.8rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }

/* Lead capture — shown after questions */
.quiz-lead-screen h3 { margin-bottom: 0.5rem; }
.quiz-lead-screen p { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; line-height: 1.7; }

/* Results */
.result-score-wrap {
  text-align: center;
  padding: 2rem 0;
  border-top: 0.5px solid rgba(198,165,92,0.2);
  border-bottom: 0.5px solid rgba(198,165,92,0.2);
  margin-bottom: 1.75rem;
}
.result-score { font-family: var(--serif); font-size: 4.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.result-category { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }
.result-summary { font-size: 0.95rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 1.75rem; }

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.newsletter-overlay.open { opacity: 1; pointer-events: all; }
.newsletter-modal {
  background: var(--dark-2);
  border: 0.5px solid rgba(198,165,92,0.25);
  max-width: 520px;
  width: 100%;
  padding: 3.5rem;
  position: relative;
  text-align: center;
}
.newsletter-close {
  position: absolute;
  top: 1.1rem;
  right: 1.35rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition);
}
.newsletter-close:hover { color: var(--white); }
.newsletter-modal h3 { font-family: var(--serif); font-size: 1.9rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.2; }
.newsletter-modal p { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 1.75rem; line-height: 1.72; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-form input {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 0.9rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 0.75rem;
  text-decoration: underline;
  font-family: var(--sans);
}
.newsletter-skip:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--dark);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 50%, rgba(198,165,92,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.58); max-width: 520px; margin: 0 auto 2.75rem; font-size: 1.05rem; position: relative; }
.cta-note { display: block; margin-top: 1.35rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.22); position: relative; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  padding: 2.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.footer-left { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-lang { font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.12em; }
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; letter-spacing: 0.06em; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-back { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-decoration: none; letter-spacing: 0.08em; transition: color var(--transition); }
.footer-back:hover { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--dark);
  padding: 6rem 2rem 5rem;
  text-align: center;
  border-bottom: 0.5px solid rgba(198,165,92,0.12);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.52); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================
   LEGAL
   ============================================ */
.legal-content { max-width: 760px; margin: 0 auto; padding: 5rem 2rem; }
.legal-content h2 { font-size: 1.1rem; font-weight: 500; color: var(--dark); margin: 2.5rem 0 0.75rem; font-family: var(--sans); letter-spacing: 0.04em; }
.legal-content p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }
.legal-date { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 2.5rem; display: block; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 5.5rem 2rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  body { font-size: 17px; }
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(0,0,0,0.97); padding: 2rem 1.5rem; gap: 1.5rem; border-bottom: 0.5px solid rgba(198,165,92,0.15); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .alt-block { grid-template-columns: 1fr; }
  .alt-block.reverse { direction: ltr; }
  .alt-text { padding: 3.5rem 1.5rem; }
  .alt-visual { min-height: 340px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .img-break { height: 320px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
  .quiz-modal { padding: 2.25rem 1.5rem; }
  .newsletter-modal { padding: 2.25rem 1.5rem; }
  .quiz-trigger { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
}
