@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-VF.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1a2a4a;
  --navy-deep: #0f1d38;
  --blue: #1e5fa8;
  --blue-light: #4a90c4;
  --blue-highlight: #7ab8e8;
  --text: #2d3748;
  --muted: #5c687b;
  --line: #e8ecf4;
  --bg: #f8f9fc;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 500; line-height: 1.12; margin-top: 0; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 42px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; letter-spacing: .4px; color: var(--navy); text-decoration: none; }
.nav a:hover { color: var(--blue); }
.nav .lang { color: var(--muted); border-left: 1px solid var(--line); padding-left: 20px; }
.nav .btn { padding: 10px 20px; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 6px; padding: 8px 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; }

/* Buttons */
.btn { display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .3px; text-decoration: none; border-radius: 4px; padding: 15px 30px; cursor: pointer; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #223763; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(26, 42, 74, .18); }
.btn-secondary { background: rgba(255, 255, 255, .85); color: var(--navy); border-color: #cbd5e1; }
.btn-secondary:hover { border-color: var(--navy); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--bg); isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("/assets/images/hero-cityscape.svg") center right / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(248, 249, 252, .96) 0%, rgba(248, 249, 252, .86) 38%, rgba(248, 249, 252, .58) 62%, rgba(248, 249, 252, .18) 100%); }
.hero-inner { min-height: 600px; display: flex; flex-direction: column; justify-content: center; padding: 110px 0 96px; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.hero h1 { font-size: clamp(44px, 5.2vw, 70px); max-width: 780px; margin-bottom: 24px; letter-spacing: -.02em; }
.hero .lead { max-width: 680px; color: #46566b; font-size: clamp(17px, 1.55vw, 20px); font-weight: 300; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust-line { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 14px; }
.section-head .intro { color: var(--muted); font-size: 17px; font-weight: 300; margin: 0; }
.rule-title { display: flex; align-items: center; gap: 22px; justify-content: center; margin-bottom: 16px; }
.rule-title::before, .rule-title::after { content: ""; flex: 1; max-width: 130px; height: 1px; background: var(--line); }
.rule-title h2 { margin: 0; }

/* Numbered value cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px 30px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.value-card:hover { border-color: var(--blue-light); box-shadow: 0 10px 30px rgba(30, 95, 168, .08); transform: translateY(-2px); }
.value-num { font-family: var(--serif); font-size: 15px; font-weight: 700; letter-spacing: 2px; color: var(--blue); margin-bottom: 16px; }
.value-num::after { content: ""; display: block; width: 34px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-highlight)); margin-top: 10px; }
.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Service fields */
.fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.field-card { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--navy); border-radius: 8px; padding: 32px 30px; }
.field-card .value-num { margin-bottom: 12px; }
.field-card h3 { font-size: 20px; margin-bottom: 12px; }
.field-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }
.field-card .typical { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.5px; }
.field-card .typical strong { color: var(--navy); }

/* Experience / stats */
.experience { background: var(--navy); color: #c9d4e6; }
.experience .section-head h2, .experience h2 { color: #fff; }
.experience .eyebrow { color: var(--blue-highlight); }
.experience .section-head .intro { color: #9fb0ca; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.stat { border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .05); border-radius: 8px; padding: 30px 28px; }
.stat .num { font-family: var(--serif); font-size: clamp(30px, 3vw, 40px); color: #fff; line-height: 1.1; margin-bottom: 10px; }
.stat p { font-size: 13.5px; color: #9fb0ca; margin: 0; }
.experience .note { font-size: 12.5px; color: #7e91b0; max-width: 860px; margin: 34px 0 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(30px, 3.4vw, 42px); }
.contact-info p { color: var(--muted); font-weight: 300; }
.contact-direct { margin-top: 26px; font-size: 15px; }
.contact-direct a { font-weight: 700; text-decoration: none; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 34px; box-shadow: 0 14px 40px rgba(26, 42, 74, .06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--navy); }
.field input, .field textarea { font-family: var(--sans); font-size: 15px; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 13px 14px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--blue-light); outline-offset: 1px; background: #fff; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 22px; margin-top: 14px; font-size: 14px; color: var(--navy); }
.form-note { font-size: 12.5px; color: var(--muted); margin: 16px 0 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #8fa0bd; padding: 46px 0; font-size: 13.5px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer img { height: 30px; width: auto; opacity: .92; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a { color: #aebdd8; text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* Legal pages */
.legal-main { padding: 80px 0 96px; }
.legal-main h1 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 34px; }
.legal-main h2 { font-size: 24px; margin: 38px 0 12px; }
.legal-main p, .legal-main li { font-size: 15px; color: var(--text); }
.legal-main .muted { color: var(--muted); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 920px) {
  .cards-3, .fields, .stats { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { min-height: auto; padding: 88px 0 76px; }
  .section { padding: 74px 0; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; padding: 18px 24px 22px; gap: 16px; display: none; }
  .nav.open { display: flex; }
  .nav .lang { border: 0; padding-left: 0; }
}
