/* ── GOOGLE FONTS IMPORT ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@200;300;400;500&display=swap');

/* ── CSS VARIABLES (brand colours) ───────────────────────── */
:root {
  --navy:       #07111f;   /* deepest navy — main background */
  --navy2:      #0c1c30;   /* slightly lighter navy — alternate sections */
  --navy3:      #0a1628;   /* mid navy */
  --gold:       #c8a84b;   /* primary gold — buttons, borders, accents */
  --gold2:      #e8c96a;   /* lighter gold — hover states */
  --gold3:      #9a7428;   /* darker gold */
  --white:      #ffffff;   /* pure white — headlines */
  --offwhite:   #f0f4fa;   /* off white */
  --gray:       #6b7280;   /* mid grey — footer text, labels */
  --midgray:    #4a6080;   /* blue-grey — subheadlines, body text */
  --text:       #cdd8e8;   /* light blue-grey — main body text on dark bg */
  --accent:     #3b9eff;   /* blue accent — links */
}

/* ── GLOBAL RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', Lato, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE / GRAIN TEXTURE OVERLAY ───────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--white);
  line-height: 1.1;
  font-weight: 600;
}

h1 { font-size: clamp(48px, 6vw, 80px); font-weight: 300; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

p {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

a:hover { color: var(--gold2); }

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

strong { font-weight: 600; color: var(--white); }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav,
.nav-bar,
header,
.site-header,
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(7, 17, 31, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  transition: border-color 0.3s ease;
}

nav.scrolled,
.navbar.scrolled {
  border-bottom-color: rgba(200, 168, 75, 0.3);
}

/* Nav logo */
.nav-logo,
.site-logo,
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img,
.site-logo img,
.logo img {
  height: 36px;
  width: auto;
}

.nav-logo span,
.site-logo span,
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
nav ul,
.nav-links,
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul a,
.nav-links a,
.navbar-nav a {
  font-family: 'DM Sans', Lato, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midgray) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

nav ul a:hover,
.nav-links a:hover,
.navbar-nav a:hover {
  color: var(--gold) !important;
}

/* Nav CTA button */
.nav-cta,
nav .btn-cta,
.navbar .cta-button {
  padding: 9px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover,
nav .btn-cta:hover,
.navbar .cta-button:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── BUTTONS ──────────────────────────────────────────────── */

/* Primary button — gold fill */
.btn-primary,
.button-primary,
button[type="submit"],
input[type="submit"],
.cta-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'DM Sans', Lato, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover,
.button-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.cta-primary:hover {
  background: var(--gold2);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.3);
}

/* Secondary button — outlined */
.btn-secondary,
.button-secondary,
.cta-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold) !important;
  font-family: 'DM Sans', Lato, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 2px;
  border: 1px solid rgba(200, 168, 75, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover,
.button-secondary:hover,
.cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 75, 0.08);
}

/* ── SECTIONS — GENERAL ───────────────────────────────────── */
section,
.section,
.page-section {
  position: relative;
  z-index: 1;
  padding: 120px 60px;
}

/* Alternate section backgrounds */
.section-dark  { background-color: var(--navy);  }
.section-dark2 { background-color: var(--navy2); }

/* Section tag — small gold label above headings */
.section-tag,
.section-label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before,
.section-label::before,
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero,
#home,
.hero-section,
.banner-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 100px;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(12, 28, 52, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay on hero */
.hero::after,
#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.hero-content,
.hero-text,
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Hero pre-title */
.hero-pretitle,
.hero-eyebrow {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-pretitle::before,
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Hero headline */
.hero h1,
.hero-headline,
.banner-headline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  font-size: clamp(48px, 6vw, 80px) !important;
  line-height: 1.08 !important;
  color: var(--white) !important;
  margin-bottom: 28px;
}

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

.hero h1 strong,
.hero-headline strong {
  font-weight: 700;
  color: var(--white);
}

/* Hero subheadline */
.hero-sub,
.hero p,
.banner-sub {
  font-size: 17px !important;
  color: var(--midgray) !important;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Hero button group */
.hero-actions,
.hero-buttons,
.banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── PROBLEM SECTION ──────────────────────────────────────── */
.problem-section,
#problem {
  background-color: var(--navy2);
}

.problem-grid,
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Problem cards */
.problem-card,
.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: 4px;
  background: rgba(200, 168, 75, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.problem-card:hover,
.problem-item:hover {
  border-color: rgba(200, 168, 75, 0.3);
  background: rgba(200, 168, 75, 0.08);
  transform: translateX(4px);
}

.problem-card strong,
.problem-item strong {
  display: block;
  color: var(--white);
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.problem-card span,
.problem-card p,
.problem-item span,
.problem-item p {
  font-size: 14px;
  color: var(--midgray);
  margin: 0;
}

/* ── METHODOLOGY / PILLARS SECTION ───────────────────────── */
.methodology-section,
#methodology {
  background-color: var(--navy);
  text-align: center;
}

.pillars-header {
  max-width: 600px;
  margin: 0 auto 70px;
}

.pillars-grid,
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual pillar card */
.pillar-card,
.pillar-item {
  padding: 56px 40px;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.pillar-card::before,
.pillar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover::before,
.pillar-item:hover::before {
  opacity: 1;
}

.pillar-card:hover,
.pillar-item:hover {
  background: rgba(12, 28, 52, 0.95);
}

/* The large C / I / M letter */
.pillar-letter,
.pillar-initial {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 88px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* The word beneath */
.pillar-word,
.pillar-name {
  font-family: 'DM Sans', Lato, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--midgray);
  margin-bottom: 20px;
}

/* Description */
.pillar-desc,
.pillar-description,
.pillar-card p,
.pillar-item p {
  font-size: 15px !important;
  color: var(--text) !important;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

/* ── WHO WE WORK WITH ─────────────────────────────────────── */
.who-section,
#who {
  background-color: var(--navy2);
}

.who-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.who-card,
.who-item {
  padding: 32px 36px;
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.who-card:hover,
.who-item:hover {
  border-color: rgba(200, 168, 75, 0.35);
  background: rgba(200, 168, 75, 0.04);
}

.who-arrow {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.who-card strong,
.who-item strong {
  display: block;
  color: var(--white);
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.who-card span,
.who-card p,
.who-item span,
.who-item p {
  font-size: 14px !important;
  color: var(--midgray) !important;
  line-height: 1.6;
  margin: 0;
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section,
#about {
  background-color: var(--navy);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Pull quote with gold left border */
.pull-quote,
.about-quote,
blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(20px, 2.5vw, 30px) !important;
  line-height: 1.4 !important;
  color: var(--white) !important;
  border-left: 2px solid var(--gold) !important;
  padding-left: 28px !important;
  margin: 0 0 40px 0 !important;
}

/* Experience block */
.experience-block,
.exp-block {
  padding: 36px;
  border: 1px solid rgba(200, 168, 75, 0.15);
  border-radius: 4px;
  background: rgba(200, 168, 75, 0.03);
  margin-top: 32px;
}

.exp-label {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.exp-company {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.exp-role {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 13px;
  color: var(--midgray);
  margin-bottom: 16px;
}

/* ── BILINGUAL STRIP ──────────────────────────────────────── */
.bilingual-strip {
  padding: 80px 60px;
  background: var(--navy2);
  border-top: 1px solid rgba(200, 168, 75, 0.1);
  border-bottom: 1px solid rgba(200, 168, 75, 0.1);
}

.bilingual-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: center;
}

.bilingual-divider {
  background: rgba(200, 168, 75, 0.2);
  align-self: stretch;
}

.bilingual-lang {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.bilingual-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white);
  line-height: 1.4;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section,
#contact {
  background-color: var(--navy);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Contact details */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 16px;
}

.contact-detail a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── FORM STYLES ──────────────────────────────────────────── */
form,
.contact-form,
.zoho-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Form labels */
form label,
.form-group label,
.form-field label {
  font-family: 'DM Sans', Lato, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--midgray) !important;
  font-weight: 400 !important;
}

/* Form inputs */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
.form-group input,
.form-group textarea,
.form-field input,
.form-field textarea,
.zf-form input,
.zf-form textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(200, 168, 75, 0.2) !important;
  border-radius: 2px !important;
  padding: 14px 18px !important;
  color: var(--white) !important;
  font-family: 'DM Sans', Lato, sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  outline: none !important;
  width: 100% !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

form input:focus,
form textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold) !important;
  background: rgba(200, 168, 75, 0.04) !important;
}

form input::placeholder,
form textarea::placeholder {
  color: var(--midgray) !important;
  opacity: 0.6;
}

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

/* Form submit button */
form button[type="submit"],
form input[type="submit"],
.form-submit button,
.zf-submitBtn {
  padding: 16px 36px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: 'DM Sans', Lato, sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  margin-top: 8px !important;
}

form button[type="submit"]:hover,
form input[type="submit"]:hover,
.zf-submitBtn:hover {
  background: var(--gold2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.3) !important;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer,
.site-footer,
.footer {
  padding: 40px 60px !important;
  background: var(--navy) !important;
  border-top: 1px solid rgba(200, 168, 75, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap;
  gap: 20px;
}

footer a,
.site-footer a,
.footer a {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

footer a:hover,
.site-footer a:hover,
.footer a:hover {
  color: var(--gold) !important;
}

footer p,
.footer-copy {
  font-size: 12px !important;
  color: var(--gray) !important;
}

/* Footer brand */
.footer-brand,
footer .logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white) !important;
  letter-spacing: 0.08em;
}

/* ── DIVIDERS & DECORATIVE ELEMENTS ──────────────────────── */

/* Gold horizontal rule */
.gold-rule,
.gold-divider {
  width: 54px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Gold top accent bar */
.accent-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 168, 75, 0.5) 30%,
    rgba(232, 201, 106, 0.9) 50%,
    rgba(200, 168, 75, 0.5) 70%,
    transparent 100%
  );
}

/* Vertical gold rule */
.gold-vline,
.vertical-rule {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 168, 75, 0.5) 20%,
    rgba(200, 168, 75, 0.5) 80%,
    transparent
  );
  align-self: stretch;
}

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── LANGUAGE TOGGLE ──────────────────────────────────────── */
.lang-toggle {
  display: flex;
  gap: 6px;
}

.lang-btn {
  font-family: 'DM Sans', Lato, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid rgba(200, 168, 75, 0.3);
  background: transparent;
  color: var(--midgray);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 500;
}

/* Language visibility */
.lang-es [data-en],
body.lang-es [data-en] { display: none !important; }

.lang-en [data-es],
body.lang-en [data-es] { display: none !important; }

/* ── INNER CONTENT MAX-WIDTH ──────────────────────────────── */
.section-inner,
.content-inner,
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PROBLEM STRIP ────────────────────────────────────────── */
.problem-strip,
.strip {
  background: var(--gold);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.problem-strip p,
.strip p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy) !important;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── UTILITY CLASSES ──────────────────────────────────────── */
.text-gold    { color: var(--gold) !important; }
.text-white   { color: var(--white) !important; }
.text-gray    { color: var(--gray) !important; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.12em; }
.font-serif   { font-family: 'Cormorant Garamond', Georgia, serif !important; }
.font-sans    { font-family: 'DM Sans', Lato, sans-serif !important; }
.font-italic  { font-style: italic; }
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE — TABLET & MOBILE ────────────────────────── */
@media (max-width: 1024px) {
  section,
  .section,
  .page-section {
    padding: 80px 40px;
  }

  .problem-grid,
  .problem-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillars-grid,
  .pillars-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .bilingual-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bilingual-divider { display: none; }
}

@media (max-width: 768px) {
  nav,
  .nav-bar,
  header,
  .site-header,
  .navbar {
    padding: 0 24px !important;
  }

  nav ul,
  .nav-links,
  .navbar-nav {
    display: none;
  }

  section,
  .section,
  .page-section {
    padding: 60px 24px;
  }

  .hero,
  #home,
  .hero-section {
    padding: 120px 24px 80px;
  }

  .hero-actions,
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-strip,
  .strip {
    padding: 20px 24px;
    gap: 16px;
  }

  .pillar-card,
  .pillar-item {
    padding: 40px 28px;
  }

  .pillar-letter,
  .pillar-initial {
    font-size: 64px;
  }

  footer,
  .site-footer {
    padding: 32px 24px !important;
    flex-direction: column;
    text-align: center;
  }

  .bilingual-strip {
    padding: 60px 24px;
  }

  .experience-block,
  .exp-block {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }

  .btn-primary,
  .btn-secondary,
  .button-primary,
  .button-secondary {
    width: 100%;
    text-align: center;
  }

  .who-card,
  .who-item {
    padding: 24px 20px;
  }

  .problem-card,
  .problem-item {
    padding: 20px;
  }
}