:root {
  --primary: #0f2747;
  --primary-dark: #08192e;
  --accent: #d6a84b;
  --accent-light: #f3dfb3;
  --text: #1f2937;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --border: #dce3ec;
  --shadow: 0 18px 50px rgba(15, 39, 71, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,227,236,.8);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 200px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 650; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 2px; background: var(--accent); transition: .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-btn { display: none; border: 0; background: var(--primary); color: white; padding: 10px 13px; border-radius: 10px; font-size: 20px; }

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(214,168,75,.24), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 92px 0 84px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.03; margin: 14px 0 22px; letter-spacing: -.04em; }
.hero p { font-size: 1.12rem; color: #dbe7f6; max-width: 680px; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.hero-card h2 { margin-top: 0; }
.hero-card ul { margin: 0; padding-left: 20px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; transition: .2s ease; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-secondary { border-color: rgba(255,255,255,.55); color: white; }
.btn-secondary:hover { background: white; color: var(--primary); }

.section { padding: 82px 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading h2, .page-hero h1 { margin: 8px 0 14px; color: var(--primary); font-size: clamp(2rem, 4vw, 3.4rem); }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 30px rgba(15,39,71,.06); }
.card .icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-light); color: var(--primary); font-size: 1.4rem; font-weight: 800; }
.card h3 { margin: 18px 0 10px; color: var(--primary); }
.card p { color: var(--muted); }
.text-link { color: var(--primary); font-weight: 800; }
.text-link:hover { color: #8c681f; }

.page-hero { background: linear-gradient(180deg, #eef3f9, #fff); padding: 72px 0 48px; text-align: center; }
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--muted); }
.story-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story-panel { background: var(--primary); color: white; border-radius: 26px; padding: 38px; box-shadow: var(--shadow); }
.story-panel h2 { color: var(--accent); margin-top: 0; }
.story-panel p { color: #dbe7f6; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; text-align: center; }
.stat strong { display: block; font-size: 1.6rem; color: var(--primary); }
.stat span { color: var(--muted); font-size: .88rem; }

.service-detail { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start; }
.service-detail + .service-detail { margin-top: 24px; }
.service-number { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--accent); display: grid; place-items: center; font-weight: 900; }
.service-detail h3 { margin: 0 0 6px; color: var(--primary); }
.service-detail p { margin: 0; color: var(--muted); }

.contact-card { background: var(--primary); color: white; border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.contact-card h2 { color: var(--accent); margin-top: 0; }
.contact-card p { color: #dbe7f6; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { margin: 14px 0; }
.form { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: 0 12px 34px rgba(15,39,71,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 750; margin-bottom: 7px; color: var(--primary); }
input, select, textarea { width: 100%; border: 1px solid #cdd6e2; border-radius: 12px; padding: 13px 14px; font: inherit; background: white; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(214,168,75,.25); border-color: var(--accent); }
textarea { min-height: 150px; resize: vertical; }
.form .btn { border: 0; }
.form-status { margin-top: 14px; font-weight: 700; color: #256d3f; min-height: 24px; }

.cta { background: var(--primary); color: white; border-radius: 28px; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta p { margin: 6px 0 0; color: #dbe7f6; }

.site-footer { background: var(--primary-dark); color: #c7d4e5; padding: 34px 0; margin-top: 60px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: block; }
  .nav-links { display: none; position: absolute; top: 82px; left: 0; right: 0; background: white; padding: 20px 4%; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
}
@media (max-width: 600px) {
  .grid-3, .form-row, .stat-row { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .section { padding: 62px 0; }
  .cta, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .brand img { width: 170px; }
}
