:root {
  --navy: #10233d;
  --navy-2: #193453;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --ink: #18212d;
  --muted: #5f6975;
  --gold: #b98a45;
  --line: #dfe3e7;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(16, 35, 61, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-light { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: white; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(16, 35, 61, 0.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--navy); color: white;
  font-family: "Libre Baskerville", serif;
  font-size: 14px; letter-spacing: .04em;
  box-shadow: inset 0 0 0 2px rgba(185, 138, 69, .35);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-family: "Libre Baskerville", serif; font-size: 18px; color: var(--navy); }
.brand-copy small { margin-top: 4px; text-transform: uppercase; letter-spacing: .19em; font-size: 10px; color: var(--gold); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button):hover { color: var(--gold); }
.menu-toggle { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 22px;
  border-radius: 8px; background: var(--navy); color: white;
  font-weight: 700; line-height: 1.2;
  box-shadow: 0 10px 24px rgba(16, 35, 61, .16);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); }
.button-small { min-height: 42px; padding: 10px 16px; }
.button-light { background: white; color: var(--navy); }
.button-light:hover { background: var(--cream); }
.text-link { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(185, 138, 69, .55); text-underline-offset: 5px; }

.hero { padding-top: 76px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 78px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-weight: 800; font-size: 12px; margin-bottom: 16px; }
.eyebrow.light { color: #e5c38b; }
h1, h2 { font-family: "Libre Baskerville", serif; color: var(--navy); line-height: 1.14; letter-spacing: -.02em; margin: 0; }
h1 { font-size: clamp(45px, 5.6vw, 72px); max-width: 780px; }
h2 { font-size: clamp(33px, 4vw, 50px); }
h3 { color: var(--navy); line-height: 1.3; }
.hero-lead { font-size: 20px; color: var(--muted); max-width: 670px; margin: 26px 0 30px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.hero-note { margin: 26px 0 0; color: var(--muted); font-size: 14px; border-left: 3px solid var(--gold); padding-left: 14px; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #f0d7ac, #dcc39c 55%, #c9a970 100%); opacity: .35; }
.portrait-frame { position: relative; width: min(470px, 100%); aspect-ratio: 1 / 1; border-radius: 38% 62% 51% 49% / 43% 40% 60% 57%; overflow: hidden; box-shadow: var(--shadow); border: 10px solid rgba(255,255,255,.78); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-card { position: absolute; right: 0; bottom: 18px; width: 270px; padding: 22px; border-radius: 18px; background: white; box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { color: var(--navy); margin-bottom: 6px; }
.floating-card span { color: var(--muted); font-size: 14px; }

.proof-strip { background: var(--navy); color: white; padding: 28px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.proof-grid div { display: flex; flex-direction: column; }
.proof-grid strong { font-size: 16px; }
.proof-grid span { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 3px; }

.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.body-copy { font-size: 18px; color: var(--muted); }
.body-copy p:first-child { margin-top: 0; }
.outcome-list { list-style: none; padding: 0; margin: 24px 0 0; }
.outcome-list li { position: relative; padding-left: 27px; margin: 12px 0; color: var(--navy); font-weight: 600; }
.outcome-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.fine-print { font-size: 14px; color: var(--muted); margin-top: 14px; }
.section-heading { max-width: 810px; margin-bottom: 45px; }
.section-heading.narrow { max-width: 690px; }
.section-heading p { color: var(--muted); font-size: 18px; }
.section-navy h2, .section-navy h3 { color: white; }

.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.service-item h3, .service-item p { margin: 0; }
.service-item h3 { font-size: 21px; }
.service-item p { color: var(--muted); }

.process-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: start; }
.section-navy .section-heading p { color: rgba(255,255,255,.72); }
.steps-list { list-style: none; counter-reset: steps; margin: 0; padding: 0; }
.steps-list li { counter-increment: steps; display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.2); }
.steps-list li::before { content: counter(steps); width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; color: #e5c38b; font-weight: 800; }
.steps-list h3, .steps-list p { margin-top: 0; }
.steps-list p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.partner-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 72px; align-items: center; }
.partner-name { min-height: 230px; display: flex; flex-direction: column; justify-content: center; padding: 40px; border: 1px solid #ded5c7; border-radius: var(--radius); background: var(--cream); }
.partner-name span { text-transform: uppercase; letter-spacing: .13em; color: var(--gold); font-size: 12px; font-weight: 800; }
.partner-name strong { margin-top: 12px; font-family: "Libre Baskerville", serif; color: var(--navy); font-size: 42px; }
.partner-grid p { color: var(--muted); font-size: 17px; }

.industries-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.industry-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.industry-columns ul { list-style: none; padding: 0; margin: 0; }
.industry-columns li { padding: 14px 0; border-bottom: 1px solid #ddd4c6; color: var(--navy); font-weight: 600; }

.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); max-width: 430px; }
.about-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about-grid p { color: var(--muted); font-size: 18px; }
.contact-inline { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; font-weight: 700; }
.contact-inline a { color: var(--gold); }

.faq-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; }
.faq-list details { border-bottom: 1px solid #d8d2c7; padding: 22px 0; }
.faq-list details:first-child { border-top: 1px solid #d8d2c7; }
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--navy); font-size: 18px; }
.faq-list p { color: var(--muted); margin-bottom: 0; }

.cta-section { padding: 42px 0 88px; background: var(--paper); }
.cta-card { border-radius: var(--radius); background: var(--navy); color: white; padding: 54px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.cta-card h2 { color: white; }
.cta-card p { color: rgba(255,255,255,.72); font-size: 18px; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
.cta-actions > a:not(.button) { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }

.site-footer { background: #0a1728; color: rgba(255,255,255,.78); padding: 68px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { color: white; }
.footer-brand .brand-copy strong { color: white; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 30px; font-size: 12px; }
.mobile-bar { display: none; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; }
  .site-nav { position: absolute; top: 78px; left: 20px; right: 20px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 20px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); display: none; }
  .site-nav.open { display: flex; }
  .hero-grid, .split-grid, .process-layout, .partner-grid, .industries-layout, .about-grid, .faq-wrap, .cta-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-visual { align-items: center; }
  .proof-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-photo { max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 33px; }
  .hero { padding-top: 52px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; text-align: center; }
  .portrait-frame { width: 330px; border-width: 6px; }
  .service-item { grid-template-columns: 1fr; gap: 8px; }
  .industry-columns { grid-template-columns: 1fr; gap: 0; }
  .cta-card { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 92px; }
  .mobile-bar { position: fixed; z-index: 99; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr 1.5fr; background: white; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(16,35,61,.12); }
  .mobile-bar a { padding: 13px 8px; text-align: center; font-weight: 800; color: var(--navy); font-size: 13px; }
  .mobile-bar a:last-child { background: var(--navy); color: white; }
}

@media (max-width: 760px) {
  .hero-visual { min-height: 390px; }
  .portrait-frame { width: 330px; border-width: 7px; }
  .hero-visual::before { width: 360px; height: 360px; }
  .floating-card { width: 245px; right: 2px; bottom: 0; }
}

/* Premium portrait treatment */
.hero-visual {
  isolation: isolate;
  padding: 24px 22px 42px;
}
.hero-visual::before {
  width: 460px;
  height: 510px;
  border-radius: 48% 52% 44% 56% / 55% 42% 58% 45%;
  background:
    radial-gradient(circle at 30% 24%, rgba(246, 224, 187, .95), rgba(216, 181, 126, .74) 52%, rgba(185, 138, 69, .28) 76%, transparent 77%);
  opacity: .82;
  transform: rotate(-6deg);
  z-index: -3;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 500px;
  border: 1px solid rgba(185, 138, 69, .55);
  border-radius: 30px;
  transform: translate(27px, 22px) rotate(2.5deg);
  z-index: -2;
}
.portrait-frame {
  width: min(390px, 88vw);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 248, .96);
  box-shadow:
    0 32px 70px rgba(16, 35, 61, .22),
    0 0 0 1px rgba(16, 35, 61, .06);
  background: #17191d;
  transform: rotate(-1.2deg);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  pointer-events: none;
}
.portrait-frame img {
  object-position: 50% 46%;
  transform: scale(1.015);
}
.floating-card {
  right: -8px;
  bottom: 12px;
  width: 265px;
  border-radius: 12px;
  border: 1px solid rgba(16, 35, 61, .09);
  border-left: 4px solid var(--gold);
  box-shadow: 0 18px 42px rgba(16, 35, 61, .16);
}

.about-photo {
  position: relative;
  overflow: visible;
  border-radius: 24px;
  box-shadow: none;
  background: var(--navy);
  padding: 10px;
  max-width: 410px;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: -12px 14px 14px -12px;
  border: 1px solid rgba(185, 138, 69, .62);
  border-radius: 26px;
  z-index: -1;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: 16px;
}

@media (max-width: 920px) {
  .hero-visual { min-height: 590px; }
  .floating-card { right: calc(50% - 225px); }
}

@media (max-width: 760px) {
  .hero-visual { min-height: 505px; padding-bottom: 52px; }
  .hero-visual::before { width: 350px; height: 420px; }
  .hero-visual::after { width: 310px; height: 395px; transform: translate(18px, 18px) rotate(2.5deg); }
  .portrait-frame { width: 305px; border-width: 6px; }
  .floating-card { width: 238px; right: 0; bottom: 2px; padding: 18px; }
}


/* Language toggle */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--navy);
  color: white;
}
.lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .language-switcher {
    justify-content: flex-start;
    margin: 4px 0 2px;
    width: fit-content;
  }
}
