@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=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --charcoal: #283139;
  --ember: #e1641c;
  --cream: #f5f2ee;
  --white: #ffffff;
  --text-secondary: #5a6a74;
  --dark: #1d252b;
  --dark-alt: #2e3840;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { font-size: 1rem; line-height: 1.75; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ── UTILITIES ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 1.25rem;
}
.ember { color: var(--ember); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-ember { background: var(--ember); color: var(--white); border-color: var(--ember); }
.btn-ember:hover { background: #c8551a; border-color: #c8551a; }
.btn-white-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-dark-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-dark-outline:hover { background: var(--charcoal); color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  display: flex;
  align-items: center;
  transition: border-bottom var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom: 1px solid rgba(40,49,57,0.1);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-links .btn-ember { opacity: 1; padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.nav-mobile a:hover { opacity: 1; color: var(--ember); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 2rem; line-height: 1;
}

/* ── PAGE OFFSET ── */
main { padding-top: var(--nav-height); }

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(225,100,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 6rem 0; }
.hero-content .section-label { margin-bottom: 1.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-subtext { color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; right: clamp(1.25rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(225,100,28,0.8));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── INTRO SECTION ── */
.intro-section { padding: 7rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
.two-col-sticky .col-left { position: sticky; top: calc(var(--nav-height) + 2rem); height: fit-content; }
.stats-stack { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.stat-item { border-top: 1px solid rgba(40,49,57,0.12); padding-top: 1.25rem; }
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; color: var(--charcoal); line-height: 1; }
.stat-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); margin-top: 0.25rem; }
.pull-quote {
  border-left: 3px solid var(--ember);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.col-right p { color: var(--text-secondary); margin-bottom: 1.25rem; }
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 0.5rem;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 2px;
  transition: gap var(--transition);
}
.link-btn:hover { gap: 0.75rem; }
.link-btn::after { content: '→'; }

/* ── WHY NORDERA ── */
.why-section { background: var(--cream); padding: 7rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header h2 { margin-top: 0.5rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(40,49,57,0.08); }
.card {
  background: var(--white);
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.card-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(40,49,57,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}
.card h4 { margin-bottom: 0.75rem; }
.card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── APPROACH SECTION ── */
.approach-section { background: var(--charcoal); padding: 7rem 0; }
.approach-section .section-label { color: var(--ember); }
.approach-section h2 { color: var(--white); margin-top: 0.5rem; margin-bottom: 0.75rem; }
.approach-subtext { color: rgba(255,255,255,0.5); max-width: 540px; margin-bottom: 4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.step {
  padding: 2rem 2rem 2rem 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 2rem;
}
.step:first-child { padding-left: 0; border-left: none; }
.step-number { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--ember); text-transform: uppercase; margin-bottom: 1rem; }
.step h4 { color: var(--white); margin-bottom: 0.75rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.approach-cta { margin-top: 3.5rem; }

/* ── FOCUS SECTION ── */
.focus-section { padding: 7rem 0; }
.focus-intro { max-width: 600px; color: var(--text-secondary); margin-bottom: 3rem; }
.sectors-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  background: rgba(40,49,57,0.08);
  margin-bottom: 3rem;
}
.sector-item {
  background: var(--cream);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border-right: 1px solid rgba(40,49,57,0.08);
}
.sector-item:last-child { border-right: none; }
.sector-item:hover { background: var(--charcoal); color: var(--white); }

/* ── TRUST SECTION ── */
.trust-section { background: var(--cream); padding: 7rem 0; }
.trust-rows { display: flex; flex-direction: column; }
.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--cream);
  transition: box-shadow var(--transition);
}
.trust-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.trust-row strong { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; }
.trust-row span { color: var(--text-secondary); font-size: 0.875rem; }

/* ── DISCRETION SECTION ── */
.discretion-section { background: var(--dark-alt); padding: 5rem 0; }
.discretion-section h3 { color: var(--white); margin-bottom: 1rem; }
.discretion-section p { color: rgba(255,255,255,0.6); max-width: 480px; }
.discretion-badge {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  padding: 1.5rem;
  margin-left: auto;
}

/* ── PERSPECTIVES ── */
.perspectives-section { padding: 7rem 0; }
.perspectives-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
}
.perspectives-header h2 { margin-top: 0.5rem; }
.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: rgba(40,49,57,0.08);
}
.persp-card {
  background: var(--white);
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}
.persp-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.persp-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.persp-card.featured .persp-category,
.persp-card.featured .persp-title,
.persp-card.featured .persp-excerpt { color: var(--white); }
.persp-card.featured .persp-title { color: var(--white); }
.persp-card.cream-bg { background: var(--cream); }
.persp-category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
  display: block;
}
.persp-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.persp-card.featured .persp-title { font-size: 1.5rem; }
.persp-excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.persp-card.featured .persp-excerpt { color: rgba(255,255,255,0.6); }

/* ── CONTACT CTA ── */
.contact-cta { background: var(--charcoal); padding: 7rem 0; }
.contact-cta .col-left h2 { color: var(--white); margin-top: 0.5rem; margin-bottom: 1rem; }
.contact-cta .col-left p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.contact-email-display {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.5rem;
}

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control:focus { border-color: var(--ember); }
.form-control option { background: var(--charcoal); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.form-privacy a { color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.2); }
.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(225,100,28,0.12);
  border: 1px solid rgba(225,100,28,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Contact page form (on light background) */
.form-light label { color: var(--text-secondary); }
.form-light .form-control {
  background: var(--white);
  border: 1px solid rgba(40,49,57,0.15);
  color: var(--charcoal);
}
.form-light .form-control::placeholder { color: rgba(40,49,57,0.3); }
.form-light .form-control:focus { border-color: var(--ember); }
.form-light .form-control option { background: var(--white); color: var(--charcoal); }
.form-light .form-privacy { color: var(--text-secondary); }
.form-light .form-privacy a { color: var(--charcoal); border-color: var(--charcoal); }
.form-light .form-success {
  background: rgba(225,100,28,0.08);
  border-color: rgba(225,100,28,0.3);
  color: var(--charcoal);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand img { height: 28px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1rem; }
.footer-address { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-col .footer-email { font-size: 0.875rem; color: rgba(255,255,255,0.55); display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid { opacity: 0.5; }
.page-hero .hero-glow { opacity: 0.6; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-top: 0.75rem; margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 560px; }

/* ── GENERIC PAGE SECTIONS ── */
.page-section { padding: 6rem 0; }
.page-section.cream { background: var(--cream); }
.page-section.charcoal { background: var(--charcoal); }
.page-section.dark { background: var(--dark); }
.page-section h2 { margin-top: 0.5rem; margin-bottom: 1.5rem; }

/* ── STAT BOXES ── */
.stat-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(40,49,57,0.08); margin: 2rem 0; }
.stat-box { background: var(--white); padding: 2.5rem; text-align: center; }
.stat-box .stat-number { font-size: 1.75rem; font-family: var(--font-serif); margin-bottom: 0.5rem; }
.stat-box .stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
.stat-box .stat-sub { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ── WHAT NORDERA IS NOT ── */
.not-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(40,49,57,0.08); }
.not-card { background: var(--white); padding: 2.5rem; }
.not-card h4 {
  font-family: var(--font-serif);
  color: var(--ember);
  text-decoration: line-through;
  text-decoration-color: rgba(225,100,28,0.4);
  margin-bottom: 0.75rem;
}
.not-card p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── APPROACH STEPS (page) ── */
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(40,49,57,0.08);
  background: var(--white);
  padding-left: 2rem;
  padding-right: 2rem;
}
.approach-step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(40,49,57,0.07);
  line-height: 1;
  align-self: start;
}
.approach-step h4 { margin-bottom: 0.75rem; }
.approach-step p { color: var(--text-secondary); }

/* ── CONTRIBUTION GRID ── */
.contrib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.08); }
.contrib-card {
  border-top: 2px solid var(--ember);
  padding: 2rem;
  background: rgba(255,255,255,0.05);
}
.contrib-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.contrib-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ── FOCUS SECTORS (page) ── */
.sector-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid rgba(40,49,57,0.08);
}
.sector-row:nth-child(even) .sector-left { background: var(--charcoal); }
.sector-row:nth-child(odd) .sector-left { background: var(--dark-alt); }
.sector-left {
  padding: 3rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
}
.sector-num { font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 0.75rem; }
.sector-name { font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); line-height: 1.2; }
.sector-right { padding: 3rem; background: var(--white); }
.sector-right p { color: var(--text-secondary); margin-bottom: 1rem; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.sector-tag {
  background: var(--cream);
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

/* ── PERSPECTIVES (page) ── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  margin-bottom: 1.5px;
}
.featured-article .fa-left,
.featured-article .fa-right {
  padding: 4rem 3rem;
}
.featured-article .fa-left { border-right: 1px solid rgba(255,255,255,0.08); }
.featured-article .persp-title { font-size: 1.75rem; color: var(--white); }
.featured-article .persp-excerpt { color: rgba(255,255,255,0.6); }
.persp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(40,49,57,0.08);
}
.persp-cards-grid .persp-card:nth-child(even) { background: var(--cream); }
.persp-bottom-cta {
  background: var(--cream);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5px;
}
.persp-bottom-cta p { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; max-width: 600px; }

/* ── CONTACT PAGE ── */
.contact-enquiry-types { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }
.enquiry-type {
  border-left: 3px solid var(--ember);
  padding: 1.25rem 1.5rem;
  background: var(--cream);
}
.enquiry-type strong { display: block; margin-bottom: 0.25rem; }
.enquiry-type span { font-size: 0.875rem; color: var(--text-secondary); }
.contact-direct { margin-top: 2.5rem; }
.contact-direct-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); display: block; margin-bottom: 0.5rem;
}
.contact-direct a { font-size: 1rem; color: var(--charcoal); border-bottom: 1px solid var(--charcoal); padding-bottom: 1px; }
.contact-office { margin-top: 2rem; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }
.contact-office strong { display: block; font-weight: 500; color: var(--charcoal); margin-bottom: 0.35rem; }
.contact-form-box {
  background: var(--charcoal);
  padding: 3rem;
}
.contact-form-box .form-box-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.5rem;
}
.contact-form-box h3 { color: var(--white); margin-bottom: 2rem; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 5rem clamp(1.25rem, 4vw, 3rem); }
.legal-content h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.legal-effective { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 3rem; letter-spacing: 0.05em; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; margin-bottom: 0.75rem; font-family: var(--font-serif); }
.legal-section p, .legal-section li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section ul { padding-left: 1.5rem; }

/* ── REGISTERED OFFICE (about) ── */
.reg-office-section { padding: 5rem 0; border-top: 1px solid rgba(40,49,57,0.08); }
.reg-office-section h4 { margin-bottom: 1rem; }
.reg-details { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sectors-row { grid-template-columns: repeat(4, 1fr); }
  .sectors-row .sector-item:nth-child(n+5) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article .fa-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-sticky .col-left { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stat-boxes { grid-template-columns: 1fr; }
  .not-cards { grid-template-columns: 1fr; }
  .contrib-grid { grid-template-columns: 1fr 1fr; }
  .sector-row { grid-template-columns: 1fr; }
  .sector-left { padding: 2rem; }
  .persp-cards-grid { grid-template-columns: 1fr 1fr; }
  .perspectives-grid { grid-template-columns: 1fr 1fr; }
  .persp-card.featured { grid-column: 1 / -1; grid-row: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .persp-bottom-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .sectors-row { grid-template-columns: 1fr 1fr; }
  .sectors-row .sector-item:nth-child(n+5) { display: flex; }
  .contrib-grid { grid-template-columns: 1fr; }
  .persp-cards-grid { grid-template-columns: 1fr; }
  .perspectives-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .approach-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .approach-step-num { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .contact-cta .two-col { grid-template-columns: 1fr; }
  .discretion-section .two-col { grid-template-columns: 1fr; }
  .discretion-badge { margin: 2rem auto 0; }
}
