/* ============================================
   PRIMAL MATCH — Global Styles
   Minimalist B&W + Burgundy Accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Parisienne&display=swap');

:root {
  --black: #0d0d0d;
  --off-black: #1a1a1a;
  --dark-gray: #2a2a2a;
  --mid-gray: #6b6b6b;
  --light-gray: #a0a0a0;
  --off-white: #f0ece4;
  --white: #ffffff;
  --accent: #8b2635;
  --accent-light: #a83244;
  --accent-dark: #6d1e2a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Semantic tokens (dark mode = default) */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-elevated: #2a2a2a;
  --bg-nav: rgba(13, 13, 13, 0.92);
  --text-primary: #f0ece4;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --border-subtle: rgba(255,255,255,0.04);
  --border-hover: rgba(139,38,53,0.3);
  --glow: var(--glow);
  --glow-soft: var(--glow-soft);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.nav-logo-secondary {
  font-family: 'Parisienne', cursive;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text-secondary);
  text-transform: none;
  margin-top: -2px;
  line-height: 1;
}

.nav-logo-line {
  width: 80px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin-top: 6px;
}

.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.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--accent) !important;
  color: var(--text-primary) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.nav-cta::after {
  display: none !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.45) 0%,
    rgba(13, 13, 13, 0.60) 40%,
    rgba(13, 13, 13, 0.80) 75%,
    rgba(13, 13, 13, 0.95) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero > *:not(.hero-video) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--text-primary);
}

/* ---- SECTIONS ---- */
.section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 7rem 3rem;
}

.section-divider {
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- FEATURE GRID ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- SPLIT SECTION ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--glow-soft);
  font-style: italic;
}

/* ---- PHOTO BREAK (full-width lifestyle image between sections) ---- */
.photo-break {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    transparent 15%,
    transparent 85%,
    var(--bg-primary) 100%
  );
  pointer-events: none;
}

.photo-break--tall {
  height: 480px;
}

.split-content {
  max-width: 480px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial-card {
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.testimonial-card cite span {
  display: block;
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ---- STATS ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-item h3 span {
  color: var(--accent);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-title {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-banner .section-subtitle {
  margin: 0 auto 2.5rem;
}

/* ---- FOOTER ---- */
.footer {
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text-primary);
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--text-primary);
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 10rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 70%);
  pointer-events: none;
}

.page-header--photo {
  background-size: cover;
  background-position: center;
}

.page-header--photo::before {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.35) 0%,
    rgba(13, 13, 13, 0.55) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
  z-index: 0;
}

.page-header--photo > * {
  position: relative;
  z-index: 1;
}

/* ---- CTA BANNER WITH PHOTO ---- */
.cta-banner--photo {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-banner--photo::before {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.75) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
}

.cta-banner--photo > * {
  position: relative;
  z-index: 1;
}

/* ---- CONTENT BLOCKS ---- */
.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.content-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ---- FAQ ACCORDION ---- */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  padding-right: 2rem;
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- TEAM GRID ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-elevated);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  border: 1px solid var(--border-subtle);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ---- CAREERS ---- */
.job-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: padding-left 0.3s ease;
}

.job-item:hover {
  padding-left: 0.5rem;
}

.job-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.job-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.job-item .btn-outline {
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  max-width: 560px;
  margin: 3rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg-secondary);
}

/* ---- RESEARCH CARDS ---- */
.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.research-card {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.research-card:hover {
  border-color: var(--border-hover);
}

.research-card .research-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.research-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.research-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.research-card .read-more {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.research-card .read-more:hover {
  color: var(--accent-light);
}

.research-grid .research-card:only-child {
  grid-column: 1 / -1;
  max-width: 560px;
}

.research-card p strong {
  display: block;
  margin-top: 0.5rem;
}

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-item {
  padding: 2rem;
  border-left: 2px solid var(--accent);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- HEXACO SECTION ---- */
.hexaco-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.hexaco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hexaco-card {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.hexaco-card:hover {
  border-color: var(--border-hover);
}

.hexaco-letter {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.hexaco-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.hexaco-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hexaco-closing {
  margin-top: 3rem;
  max-width: 640px;
}

.hexaco-closing p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hexaco-closing strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ---- HONESTY CALLOUT ---- */
/* ---- HONESTY BANNER (standalone selling point) ---- */
.honesty-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.honesty-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.honesty-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.honesty-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.honesty-banner-title em {
  font-style: italic;
  color: var(--accent-light);
}

.honesty-banner-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.honesty-banner-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.honesty-banner-point {
  position: relative;
}

.honesty-banner-icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.honesty-banner-point h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.honesty-banner-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .feature-grid,
  .testimonial-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-nav);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .section,
  .section-full {
    padding: 4rem 1.5rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-grid,
  .testimonial-grid,
  .team-grid,
  .research-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hexaco-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .photo-break {
    height: 220px;
  }

  .photo-break--tall {
    height: 300px;
  }

  .honesty-banner-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .honesty-banner-inner {
    padding: 4rem 1.5rem;
  }

  .newsletter-popup-content {
    width: 92%;
    padding: 2.5rem 1.5rem;
  }

  .newsletter-inline {
    padding: 4rem 1.5rem;
  }
}

/* ---- NEWSLETTER POPUP ---- */
.newsletter-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.newsletter-popup-overlay.active .newsletter-popup-content {
  transform: translateY(0);
}

.newsletter-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 0.25rem;
}

.newsletter-popup-close:hover {
  color: var(--text-primary);
}

.newsletter-popup-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.newsletter-popup-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: var(--off-white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.newsletter-success {
  display: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 1rem 0;
}

/* ---- NEWSLETTER INLINE (above footer) ---- */
.newsletter-inline {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.newsletter-inline .section-divider {
  margin: 0 auto 1.5rem;
}

.newsletter-inline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.newsletter-inline p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.newsletter-inline .newsletter-form {
  max-width: 440px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    padding: 0.9rem;
  }
}
