:root {
  --navy: #0f172a;
  --navy-2: #172033;
  --slate: #334155;
  --ink: #1f2937;
  --cream: #f7f3ec;
  --ivory: #fbfaf7;
  --warm: #eee7dc;
  --gold: #c99545;
  --gold-dark: #a9762f;
  --line: rgba(15, 23, 42, 0.12);
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3rem, 6vw, 6.1rem); line-height: 0.98; margin: 0 0 1.5rem; }
h1 em, h2 em { font-weight: 400; color: var(--gold-dark); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.08; margin: 0; }
h3 { font-size: 1.4rem; line-height: 1.2; margin: 0 0 0.8rem; }
p { margin-top: 0; }
a { color: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.45rem; }
.brand-role { margin-top: 7px; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.site-nav a { text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; white-space: nowrap; }
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.site-nav a:hover { color: var(--gold-dark); }
.nav-cta { border: 1px solid var(--navy); padding: 11px 16px; white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  background: linear-gradient(135deg, #f8f4ed 0%, #f4eee4 58%, #eee5d8 100%);
  overflow: hidden;
}
.hero-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
  padding: 90px 0 100px;
}
.eyebrow, .section-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.hero-lead { font-size: 1.22rem; max-width: 700px; color: var(--navy); line-height: 1.55; }
.hero-body { max-width: 690px; color: var(--slate); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.73rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { border: 1px solid var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-gold { width: fit-content; border: 1px solid var(--gold); background: var(--gold); color: #fff; }
.location-line { margin-top: 26px; font-size: 0.9rem; color: var(--slate); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-card { background: rgba(255,255,255,0.88); border: 1px solid rgba(15, 23, 42, .08); box-shadow: var(--shadow); }
.visual-card-main { width: min(100%, 470px); padding: 34px; position: relative; z-index: 2; }
.visual-label { font-size: .68rem; letter-spacing: .17em; font-weight: 800; color: var(--slate); }
.workflow { display: flex; align-items: center; margin: 40px 0 32px; }
.node { flex: 0 0 auto; padding: 10px 11px; border: 1px solid rgba(15, 23, 42, .18); background: #fff; font-size: .72rem; font-weight: 800; }
.node.accent { background: var(--navy); color: #fff; border-color: var(--navy); }
.line { height: 1px; flex: 1; min-width: 10px; background: rgba(15, 23, 42, .2); }
.visual-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid var(--line); padding-top: 24px; }
.visual-pill-grid span { border: 1px solid var(--line); padding: 9px 8px; text-align: center; font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--slate); }
.floating-card { position: absolute; z-index: 3; padding: 14px 17px; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.top-card { right: -10px; top: 70px; }
.bottom-card { left: 0; bottom: 65px; }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(1px); }
.orb-one { width: 250px; height: 250px; background: rgba(201,149,69,.18); top: 12px; right: 20px; }
.orb-two { width: 190px; height: 190px; border: 1px solid rgba(15,23,42,.12); bottom: 10px; left: 30px; }

section { padding: 105px 0; }
.section-light { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.78); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-kicker.light { color: #e2b76f; }

.localization-grid, .principles-grid, .about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.l10n-mark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.l10n-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: lowercase;
}
.l10n-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--slate); font-weight: 800; }
.localization-copy { padding-top: 20px; color: var(--slate); font-size: 1.05rem; }
.localization-copy blockquote {
  margin: 34px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.25;
}
.closing-line { color: var(--navy); font-weight: 800; }

.section-heading { max-width: 800px; margin-bottom: 55px; }
.section-heading > p:last-child { margin-top: 20px; color: var(--slate); font-size: 1.05rem; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.help-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.36);
}
.help-grid article:nth-child(-n+3) {
  grid-column: span 4;
}
.help-grid article:nth-child(n+4) {
  grid-column: span 3;
}
.help-grid article span, .process-grid article span, .service-number {
  display: inline-block;
  font-size: .75rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 28px;
  font-weight: 800;
}
.help-grid p { color: var(--slate); font-size: .92rem; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  min-height: 440px;
}
.service-card p { color: var(--slate); }
.service-card .service-intro { color: var(--navy); font-weight: 800; margin-bottom: 12px; }
.service-card ul { margin: 20px 0 0; padding-left: 18px; color: var(--slate); }
.service-card li { margin-bottom: 6px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.process-grid article { padding: 34px 24px 12px; border-right: 1px solid var(--line); min-height: 285px; }
.process-grid article:last-child { border-right: 0; }
.process-grid p { color: var(--slate); font-size: .91rem; }

.principles { background: #fff; }
.principle-list { border-top: 1px solid var(--line); }
.principle-list div { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principle-list strong { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 500; }
.principle-list span { color: var(--slate); }

.impact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.impact-stat { border-top: 1px solid rgba(255,255,255,.2); padding-top: 24px; }
.impact-stat strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 6vw, 5.4rem); font-weight: 500; color: #fff; line-height: 1; margin-bottom: 18px; }
.impact-stat span { display: block; color: rgba(255,255,255,.75); }

.about-copy { font-size: 1.02rem; color: var(--slate); padding-top: 24px; }
.about-copy strong { color: var(--navy); }


.insights-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 50px;
}
.insights-intro {
  padding-top: 18px;
  color: var(--slate);
  font-size: 1.02rem;
}
.insights-note {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 800;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insight-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  min-height: 260px;
}
.insight-status {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.insight-card h3 {
  font-size: 1.55rem;
}
.insight-card p {
  color: var(--slate);
  font-size: .94rem;
}

.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: start; }
.contact-grid > div > p { color: rgba(255,255,255,.74); max-width: 600px; }
.contact-services { margin-top: 26px; font-size: .92rem; line-height: 1.8; }
.contact-note { margin-top: 30px; font-size: .9rem; }
.contact-form { background: #fff; padding: 34px; color: var(--ink); display: grid; gap: 9px; }
.contact-form label { font-size: .76rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; color: var(--slate); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(15,23,42,.18); padding: 13px 14px; font: inherit; background: var(--ivory); margin-bottom: 11px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(201,149,69,.45); border-color: var(--gold); }
.contact-form textarea::placeholder { color: #7c8798; }
.form-privacy { margin: 7px 0 0; color: var(--slate); font-size: .78rem; }
.hidden { display: none; }

.site-footer { background: #09101f; color: rgba(255,255,255,.65); padding: 40px 0 20px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.footer-brand { display: block; color: #fff; font-size: 1.35rem; }
.footer-small { display: block; margin-top: 5px; font-size: .68rem; text-transform: uppercase; letter-spacing: .11em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { font-size: .78rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 35px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

.privacy-page { min-height: 100vh; background: var(--ivory); }
.privacy-header { padding: 26px 0; border-bottom: 1px solid var(--line); }
.privacy-content { max-width: 820px; padding: 80px 0 100px; }
.privacy-content h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.privacy-content h2 { font-size: 1.8rem; margin: 42px 0 14px; }
.privacy-content p, .privacy-content li { color: var(--slate); }
.privacy-content a { color: var(--gold-dark); }

.thanks-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--cream); padding: 30px; }
.thanks-card { max-width: 680px; background: #fff; border: 1px solid var(--line); padding: 55px; box-shadow: var(--shadow); text-align: center; }
.thanks-card h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }

@media (max-width: 1280px) and (min-width: 1121px) {
  .site-nav { gap: 12px; }
  .site-nav a { font-size: .68rem; letter-spacing: .055em; }
  .nav-cta { padding: 10px 12px; }
  .nav-wrap { gap: 18px; }
  .brand-role { font-size: .58rem; letter-spacing: .12em; }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ivory);
    padding: 24px 20px 30px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .localization-grid, .principles-grid, .impact-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 60px; gap: 20px; }
  .hero-visual { min-height: 440px; }
  .help-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .help-grid article,
  .help-grid article:nth-child(-n+3),
  .help-grid article:nth-child(n+4) { grid-column: span 1; }
  .insights-head { grid-template-columns: 1fr; gap: 28px; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { border-bottom: 1px solid var(--line); min-height: 230px; }
  .process-grid article:nth-child(2n) { border-right: 0; }
  .process-grid article:last-child { border-right: 1px solid var(--line); }
  .impact-grid, .about-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand-role { max-width: 240px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.5rem); }
  section { padding: 78px 0; }
  .hero-grid { min-height: unset; padding-bottom: 75px; }
  .hero-visual { min-height: 390px; }
  .visual-card-main { padding: 24px; }
  .workflow { margin: 30px 0; }
  .node { padding: 8px 7px; font-size: .62rem; }
  .top-card { right: 0; top: 20px; }
  .bottom-card { left: 0; bottom: 20px; }
  .visual-pill-grid { grid-template-columns: 1fr; }
  .help-grid, .service-grid, .impact-stats, .process-grid, .insight-grid { grid-template-columns: 1fr; }
  .help-grid article,
  .help-grid article:nth-child(-n+3),
  .help-grid article:nth-child(n+4) { grid-column: span 1; min-height: unset; }
  .service-card { min-height: unset; padding: 28px; }
  .process-grid article { border-right: 0 !important; min-height: unset; }
  .principle-list div { grid-template-columns: 1fr; gap: 6px; }
  .contact-form { padding: 24px; }
  .footer-grid { flex-direction: column; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
}


.insights-note a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.insight-card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.insight-card-link:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(15,23,42,.08); border-color: rgba(201,149,69,.55); }
.insight-card-link .read-more { margin-top: auto; padding-top: 22px; color: var(--gold-dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.insights-page-header { background: var(--cream); padding: 78px 0 62px; border-bottom: 1px solid var(--line); }
.insights-page-header .lede { max-width: 760px; color: var(--slate); font-size: 1.08rem; margin-top: 20px; }
.article-list { padding: 70px 0 100px; }
.article-list .insight-grid { margin-top: 0; }

.article-shell { background: var(--ivory); min-height: 100vh; }
.article-header { background: var(--cream); padding: 72px 0 58px; border-bottom: 1px solid var(--line); }
.article-header .article-meta { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; margin-bottom: 18px; }
.article-header h1 { max-width: 920px; font-size: clamp(2.7rem, 5.8vw, 5.4rem); line-height: 1.02; }
.article-header .article-deck { max-width: 780px; color: var(--slate); font-size: 1.15rem; margin-top: 24px; }
.article-body { max-width: 780px; padding: 72px 0 100px; }
.article-body h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); margin: 50px 0 18px; }
.article-body h3 { margin-top: 34px; }
.article-body p, .article-body li { color: var(--slate); font-size: 1.02rem; }
.article-body ul { padding-left: 22px; }
.article-body blockquote { margin: 38px 0; padding-left: 22px; border-left: 3px solid var(--gold); font-family: Georgia, 'Times New Roman', serif; color: var(--navy); font-size: 1.55rem; line-height: 1.35; }
.article-body .article-cta { margin-top: 62px; padding: 30px; background: var(--cream); border: 1px solid var(--line); }
.article-body .article-cta h3 { margin-top: 0; }
.article-back { display: inline-block; margin-bottom: 30px; color: var(--gold-dark); text-decoration: none; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }

/* V8 bilingual navigation */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--slate);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.lang-switcher a {
  text-decoration: none;
  color: var(--slate);
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--gold-dark);
}
.lang-switcher a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.privacy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1120px) {
  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ivory);
    padding: 24px 20px 30px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .site-nav .lang-switcher { padding: 4px 0; }
}

@media (max-width: 640px) {
  .privacy-nav { align-items: flex-start; }
  .privacy-nav .lang-switcher { margin-top: 4px; }
}


/* V10: SEO landing page */
.text-link { text-decoration: underline; text-underline-offset: 0.18em; }
.section-link { margin-top: 1rem; }
.faq-list { display: grid; gap: 0.8rem; margin-top: 2rem; }
.faq-list details { border-top: 1px solid rgba(17, 28, 46, 0.18); padding: 1rem 0; }
.faq-list details:last-child { border-bottom: 1px solid rgba(17, 28, 46, 0.18); }
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list details p { margin: 0.75rem 0 0; max-width: 70ch; }
