@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #071A33;
  --cream: #FAF7F2;
  --copper: #A65A2A;
  --ink: #122237;
  --muted: #5E6570;
  --line: rgba(7, 26, 51, .15);
  --white: #FFFFFF;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Accessible keyboard focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}
.nav-contact:focus-visible,
.button:focus-visible {
  outline-offset: 3px;
}
p { line-height: 1.68; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy);
}
.skip-link:focus { top: 1rem; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 26, 51, .09);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand img { width: 274px; height: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none;
  font-size: .97rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.nav a:hover { color: var(--copper); }
.nav-contact {
  padding: 11px 16px;
  border: 1px solid var(--navy);
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 100px;
  align-items: end;
  padding: 110px 0 105px;
}
.hero-copy { max-width: 820px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy); font-weight: 500; margin-top: 0; }
h1 {
  margin-bottom: 30px;
  max-width: 820px;
  font-size: clamp(3.4rem, 6.1vw, 6.3rem);
  line-height: .98;
  letter-spacing: -.048em;
}
.hero-lead {
  max-width: 760px;
  margin: 0;
  color: #333d49;
  font-size: clamp(1.13rem, 1.8vw, 1.42rem);
  line-height: 1.58;
}
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.button-primary { color: var(--white); background: var(--navy); }
.button-primary:hover { background: #102a4c; }
.button-secondary { color: var(--navy); border: 1px solid var(--navy); }
.button-secondary:hover { color: var(--white); background: var(--navy); }
.text-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(7,26,51,.45);
  padding-bottom: 3px;
  font-weight: 500;
}
.text-link:hover { color: var(--copper); border-color: var(--copper); }
.text-link-light { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.45); }
.text-link-light:hover { color: #fff; border-color: #fff; }
.hero-note { padding-bottom: 3px; color: var(--muted); }
.hero-note p { margin: 4px 0; font-size: 1rem; }
.copper-rule { width: 52px; height: 2px; margin-bottom: 20px; background: var(--copper); }

.section { padding: 120px 0; }
.section-light { background: #fff; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.75); }
.section-heading { margin-bottom: 68px; }
.section-heading h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.split-heading { display: grid; grid-template-columns: 1.5fr .75fr; gap: 90px; align-items: end; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 1.07rem; }
.dark-heading h2 { color: var(--white); }
.section-navy .eyebrow { color: #D68A55; }

.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.problem-card {
  min-height: 258px;
  padding: 34px 48px 36px 0;
  border-bottom: 1px solid var(--line);
}
.problem-card:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--line); }
.card-number {
  color: var(--copper);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .10em;
  font-variant-numeric: tabular-nums;
}
.problem-card h3 { margin: 42px 0 14px; font-size: 1.58rem; }
.problem-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 1.01rem; }

.expertise-list { border-top: 1px solid rgba(255,255,255,.18); }
.expertise-list article {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 54px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.expertise-list h3 { margin: 0; color: var(--white); font-size: 1.38rem; font-weight: 500; line-height: 1.35; }
.expertise-list p { margin: 0; max-width: 620px; color: rgba(255,255,255,.74); font-size: 1.01rem; line-height: 1.68; }

.approach-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.approach-grid li { min-height: 292px; padding: 30px 26px 32px; border-right: 1px solid var(--line); }
.approach-grid li:first-child { padding-left: 0; }
.approach-grid li:last-child { border-right: 0; }
.approach-grid span {
  display: block;
  color: var(--copper);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 54px;
}
.approach-grid strong { display: block; color: var(--navy); font-size: 1.3rem; font-weight: 600; }
.approach-grid p { margin: 12px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.62; }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.about-grid h2 { font-size: clamp(2.7rem, 4.6vw, 4.8rem); line-height: 1; letter-spacing: -.035em; margin-bottom: 16px; }
.about-role { color: var(--copper); font-weight: 500; }
.about-copy { max-width: 720px; font-size: 1.08rem; }
.about-copy p:first-child { margin-top: 0; }
.about-copy .text-link { margin-top: 18px; }


.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; }
.contact-grid h2 { font-size: clamp(2.7rem, 4.8vw, 5rem); line-height: 1.03; letter-spacing: -.04em; max-width: 730px; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; padding-top: 45px; }
.contact-details a { margin-bottom: 11px; text-decoration: none; font-size: 1.1rem; border-bottom: 1px solid transparent; }
.contact-details a:hover { color: var(--copper); border-color: var(--copper); }
.contact-details p { margin: 20px 0 0; color: var(--muted); }

.site-footer { padding: 36px 0; color: rgba(255,255,255,.62); background: #041426; }
.footer-inner { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 22px; }
.footer-inner img { width: 44px; filter: brightness(0) invert(1); opacity: .9; }
.footer-inner p { margin: 0; font-size: .86rem; }

@media (max-width: 1050px) {
  .brand img { width: 246px; }
  .nav { gap: 22px; }
  .nav a { font-size: .9rem; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 34px), var(--max)); }
  .header-inner { min-height: 76px; }
  .brand img { width: 220px; }
  .nav a:not(.nav-contact):not(.lang-switch) { display: none; }
  .nav { gap: 12px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; padding: 82px 0 76px; }
  .hero-note { max-width: 360px; }
  .section { padding: 86px 0; }
  .split-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { margin-bottom: 52px; }
  .split-heading > p { max-width: 600px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card, .problem-card:nth-child(even) { padding: 32px 0; border-left: 0; min-height: auto; }
  .problem-card h3 { margin-top: 30px; }
  .expertise-list article { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid li, .approach-grid li:first-child { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .approach-grid li:last-child { border-bottom: 0; }
  .approach-grid span { margin-bottom: 25px; }
  .contact-details { padding-top: 0; }
  .footer-inner { grid-template-columns: 40px 1fr; gap: 18px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 3.05rem; }
  .section-heading h2, .about-grid h2, .contact-grid h2 { font-size: 2.55rem; }
  .brand img { width: 202px; }
  .nav-contact { padding: 9px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.lang-switch {
  margin-left: -8px;
  padding: 8px 9px;
  border: 0;
  color: var(--muted);
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
}
.lang-switch:hover { color: var(--copper) !important; }

/* Legal / privacy */
.contact-details .legal-link {
  margin-top: 8px;
  font-size: .92rem;
  color: var(--muted);
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.legal-hero { padding: 86px 0 44px; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.legal-content { padding: 72px 0 100px; }
.legal-content .legal-wrap { max-width: 860px; }
.legal-content h2 { margin-top: 48px; margin-bottom: 16px; font-size: 1.55rem; font-weight: 600; }
.legal-content p, .legal-content li { color: #333d49; line-height: 1.72; }
.legal-content ul { padding-left: 1.2rem; }
.legal-meta { display: grid; grid-template-columns: 180px 1fr; gap: 10px 28px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-meta dt { color: var(--muted); }
.legal-meta dd { margin: 0; }
@media (max-width: 700px) { .legal-meta { grid-template-columns: 1fr; gap: 4px; } .legal-meta dd { margin-bottom: 12px; } }
