:root {
  --navy-950: #071820;
  --navy-900: #0b1f2a;
  --navy-800: #12313d;
  --ink: #10222a;
  --slate: #506168;
  --mist: #eef1ef;
  --paper: #f8f8f5;
  --white: #fff;
  --gold: #c8a55a;
  --gold-light: #dcc486;
  --line: rgba(16, 34, 42, 0.15);
  --max-width: 1180px;
  --shadow: 0 24px 60px rgba(7, 24, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, a { touch-action: manipulation; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 5vw, 4.4rem); font-weight: 600; }
h2 span, h1 em { color: var(--gold); font-style: normal; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: 120px 0; content-visibility: auto; contain-intrinsic-size: auto 800px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #80642a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 1px; content: ""; background: currentColor; }
.eyebrow-light { color: var(--gold-light); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 16px; color: var(--white); background: var(--navy-950); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; min-width: 112px; min-height: 44px; align-items: center; }
.brand-logo { display: block; width: 112px; height: auto; }
.primary-nav { display: flex; margin-left: auto; align-items: center; gap: 30px; font-size: 0.88rem; font-weight: 500; }
.primary-nav > a:not(.nav-cta) { padding: 28px 0; border-bottom: 1px solid transparent; }
.primary-nav > a:not(.nav-cta):hover { color: var(--gold-light); border-color: var(--gold); }
.nav-cta { padding: 12px 18px; border: 1px solid rgba(255, 255, 255, 0.45); }
.nav-cta:hover { color: var(--navy-950); background: var(--white); }
.nav-toggle { display: none; color: inherit; background: transparent; border: 0; }
.nav-actions { display: flex; margin-left: 22px; align-items: center; gap: 14px; }
.language-switcher { display: flex; min-height: 44px; align-items: center; gap: 2px; font-size: 0.72rem; font-weight: 700; }
.language-button { min-width: 38px; min-height: 44px; padding: 0 8px; color: rgba(255, 255, 255, 0.62); background: transparent; border: 0; cursor: pointer; }
.language-button.active { color: var(--gold-light); text-decoration: underline; text-underline-offset: 5px; }

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--navy-950);
}
.hero picture { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.88; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 20, 28, 0.97) 0%, rgba(5, 20, 28, 0.83) 38%, rgba(5, 20, 28, 0.32) 67%, rgba(5, 20, 28, 0.16) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 80px; }
.hero-content h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3.3rem, 7.8vw, 6.8rem); font-weight: 600; }
.hero-copy { max-width: 590px; margin-bottom: 38px; color: rgba(255, 255, 255, 0.78); font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 180ms ease;
}
.button-primary { color: var(--navy-950); background: var(--gold); }
.button-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.button-outline:hover { color: var(--navy-950); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 4px; color: var(--navy-800); font-weight: 700; border-bottom: 1px solid var(--gold); }
.text-link-light { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.text-link:hover { gap: 22px; }
.hero-proof { position: absolute; z-index: 1; bottom: 35px; left: 50%; display: flex; align-items: center; gap: 18px; color: rgba(255, 255, 255, 0.68); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; transform: translateX(-50%); }
.hero-proof i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

.problem-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 120px; }
.problem-grid h2 span { display: block; }
.problem-copy { padding-top: 50px; }
.problem-copy .lead { color: var(--ink); font-size: 1.35rem; font-weight: 500; }
.problem-copy p:not(.lead) { color: var(--slate); }
.problem-copy .text-link { margin-top: 16px; }

.solution { background: var(--mist); }
.section-heading { max-width: 750px; margin-bottom: 62px; }
.section-heading > p:last-child { max-width: 600px; margin: 28px 0 0; color: var(--slate); font-size: 1.08rem; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.solution-card { position: relative; min-height: 360px; padding: 42px 38px; border-right: 1px solid var(--line); }
.solution-card:last-child { border-right: 0; }
.card-number { position: absolute; top: 30px; right: 30px; color: #8b9699; font-size: 0.72rem; letter-spacing: 0.12em; }
.line-icon { height: 105px; color: var(--gold); font-family: Georgia, serif; font-size: 4.2rem; line-height: 1; }
.solution-card h3 { margin-bottom: 18px; font-size: 1.55rem; }
.solution-card p { color: var(--slate); }

.services { background: var(--paper); }
.services-intro { display: grid; grid-template-columns: 1fr 0.65fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.services-intro > p { max-width: 470px; margin-bottom: 8px; color: var(--slate); }
.services-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 55px 90px 1fr 50px; gap: 24px; align-items: start; padding: 38px 12px; border-bottom: 1px solid var(--line); transition: 200ms ease; }
.service-row:hover { padding-inline: 24px; background: var(--white); box-shadow: var(--shadow); }
.service-index { padding-top: 10px; color: #849095; font-size: 0.68rem; letter-spacing: 0.12em; }
.service-icon { display: grid; width: 60px; height: 60px; place-items: center; color: var(--gold); font-size: 2rem; border: 1px solid rgba(200, 165, 90, 0.55); border-radius: 50%; }
.service-copy h3 { margin-bottom: 10px; font-size: 1.65rem; }
.service-copy p { margin-bottom: 14px; color: var(--slate); }
.service-copy ul { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; padding: 0; color: #758287; font-size: 0.78rem; list-style: none; }
.service-copy li::before { margin-right: 8px; color: var(--gold); content: "·"; }
.service-arrow { padding-top: 8px; color: var(--gold); font-size: 1.4rem; }

.benefits { color: var(--white); background: var(--navy-900); }
.benefits-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; }
.benefits-copy { position: sticky; top: 120px; align-self: start; }
.benefits-copy h2 { margin-bottom: 28px; }
.benefits-copy > p:not(.eyebrow) { max-width: 430px; margin-bottom: 34px; color: rgba(255, 255, 255, 0.63); }
.benefit-list { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.benefit { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.benefit strong { color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.15em; }
.benefit h3 { margin-bottom: 10px; font-size: 1.45rem; }
.benefit p { margin: 0; color: rgba(255, 255, 255, 0.58); }

.process { background: var(--paper); }
.process .section-heading { margin-bottom: 70px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-steps li { position: relative; min-height: 300px; padding: 45px 42px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-steps li:last-child { border-right: 1px solid var(--line); }
.process-steps li::before { position: absolute; top: -7px; left: 0; width: 12px; height: 12px; content: ""; background: var(--gold); border-radius: 50%; transform: translateX(-50%); }
.process-steps li:first-child::before { transform: none; }
.step-number { color: #8b9699; font-size: 0.72rem; letter-spacing: 0.12em; }
.process-steps h3 { margin: 35px 0 14px; font-size: 1.75rem; }
.process-steps p { color: var(--slate); }
.process-steps small { position: absolute; bottom: 36px; color: #7a878b; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.testimonials { background: var(--mist); }
.testimonial-heading { display: grid; grid-template-columns: 0.55fr 1.45fr; align-items: start; margin-bottom: 60px; }
.testimonial-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.quote { display: flex; min-height: 280px; flex-direction: column; justify-content: space-between; margin: 0; padding: 38px; background: var(--white); }
.quote-featured { grid-row: span 2; min-height: 584px; color: var(--white); background: var(--navy-800); }
.quote blockquote { margin: 0; font-size: 1.2rem; line-height: 1.55; letter-spacing: -0.02em; }
.quote-featured blockquote { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.quote figcaption { display: flex; flex-direction: column; margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-featured figcaption { border-color: rgba(255, 255, 255, 0.18); }
.quote figcaption strong { font-size: 0.9rem; }
.quote figcaption span { color: #788589; font-size: 0.78rem; }
.quote-featured figcaption span { color: rgba(255, 255, 255, 0.55); }
.testimonial-note { margin: 18px 0 0; color: #7b878b; font-size: 0.7rem; }

.contact { color: var(--white); background: var(--navy-950); }
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 100px; align-items: start; }
.contact-copy { padding-top: 25px; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.65); }
.contact-points { display: flex; gap: 30px; margin-top: 35px; font-size: 0.82rem; }
.contact-points i { display: inline-grid; width: 19px; height: 19px; margin-right: 7px; place-items: center; color: var(--navy-950); font-style: normal; background: var(--gold); border-radius: 50%; }
.contact-form { padding: 42px; color: var(--ink); background: var(--white); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-title { margin-bottom: 5px; font-size: 1.45rem; letter-spacing: -0.025em; }
.required-note { margin-bottom: 25px; color: #6a777b; font-size: 0.72rem; }
.field { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.77rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  color: var(--ink);
  background: #fafaf8;
  border: 1px solid #d8dddb;
  border-radius: 0;
  outline: none;
}
.contact-form input, .contact-form select { height: 48px; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 165, 90, 0.18); }
.contact-form [aria-invalid="true"] { border-color: #a83a32; }
.field-error { display: block; min-height: 18px; padding-top: 3px; color: #9a302a; font-size: 0.7rem; }
.form-submit { width: 100%; margin-top: 6px; border: 0; }
.form-submit:disabled { cursor: wait; opacity: 0.7; transform: none; }
.form-honeypot { display: none; }
.form-status { min-height: 24px; margin: 14px 0 0; color: #356146; font-size: 0.85rem; font-weight: 700; text-align: center; }
.form-status.error { color: #a83a32; }
.privacy-note { margin: 4px 0 0; color: #7b878b; font-size: 0.68rem; text-align: center; }

.site-footer { padding: 70px 0 22px; color: rgba(255, 255, 255, 0.7); background: #051219; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-bottom: 55px; }
.brand-footer { color: var(--white); }
.brand-logo-footer { width: 124px; }
.footer-main > div > p { margin-top: 15px; font-size: 0.85rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; font-size: 0.84rem; }
.footer-links strong { margin-bottom: 8px; color: var(--gold-light); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 0.68rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .problem-grid, .benefits-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .problem-copy { padding-top: 0; }
  .solution-card { padding: 35px 24px; }
  .services-intro { grid-template-columns: 1fr; gap: 25px; }
  .benefits-copy { position: static; }
  .testimonial-heading { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .quote-featured { grid-column: span 2; grid-row: auto; min-height: 430px; }
}

@media (max-width: 840px) {
  html { scroll-padding-top: 70px; }
  .nav-wrap { min-height: 70px; }
  .nav-actions { margin-left: auto; }
  .nav-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 7px; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; transition: 180ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 70px 0 auto; display: none; margin-left: 0; padding: 26px 20px 34px; flex-direction: column; align-items: stretch; color: var(--white); background: var(--navy-950); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.nav-cta) { display: block; min-height: 48px; padding: 11px 4px; }
  .primary-nav .nav-cta { text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--max-width)); }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2.15rem, 11vw, 2.75rem); }
  .site-header { position: absolute; }
  .hero { min-height: 760px; align-items: end; padding-bottom: 130px; }
  .hero-image { object-position: 68% center; opacity: 0.63; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5, 20, 28, 0.58), rgba(5, 20, 28, 0.98) 68%); }
  .hero-content { padding-top: 120px; }
  .hero-content h1 { font-size: clamp(2.75rem, 14vw, 4rem); overflow-wrap: anywhere; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-proof { bottom: 30px; justify-content: center; gap: 10px; font-size: 0.57rem; }
  .problem-grid { gap: 35px; }
  .solution-grid, .process-steps { grid-template-columns: 1fr; }
  .solution-card { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-card:last-child { border-bottom: 0; }
  .service-row { grid-template-columns: 35px 1fr 25px; gap: 14px; padding: 30px 4px; }
  .service-icon { display: none; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .service-copy { grid-column: 2 / 4; }
  .service-copy ul { gap: 6px 14px; font-size: 0.72rem; }
  .benefit { grid-template-columns: 45px 1fr; }
  .process-steps li { min-height: 260px; border-right: 1px solid var(--line); }
  .process-steps li::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote-featured { grid-column: auto; min-height: 440px; }
  .contact-grid { gap: 45px; }
  .contact-points { align-items: flex-start; flex-direction: column; gap: 12px; }
  .contact-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main, .footer-links { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--max-width)); }
  .brand, .brand-logo { width: 96px; min-width: 96px; }
  .language-switcher { gap: 0; }
  .language-button { min-width: 34px; padding-inline: 5px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { width: calc(100% - 24px); }
  .contact-form { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
