:root {
  --navy: #081d33;
  --navy-soft: #102c47;
  --navy-pale: #e8edf1;
  --gold: #c5a059;
  --gold-light: #e4cf9d;
  --ivory: #f8f3e9;
  --paper: #fffdf8;
  --ink: #182432;
  --muted: #5c6670;
  --line: rgba(8, 29, 51, .14);
  --shadow: 0 22px 55px rgba(8, 29, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .86rem;
  letter-spacing: .04em;
}
.topbar .shell { display: flex; justify-content: space-between; padding: 8px 0; gap: 18px; }
.topbar span:last-child { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 58px; height: 52px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 600 1.05rem/1.1 Georgia, serif; letter-spacing: .06em; color: var(--navy); }
.brand-copy small { margin-top: 7px; font-size: .66rem; font-weight: 700; letter-spacing: .31em; color: #8c6b2e; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: #26394b; font-size: .92rem; font-weight: 600; }
.nav-links a:hover { color: #957132; }
.menu-button { display: none; border: 0; background: transparent; color: var(--navy); font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: #d0ad67; }
.button.outline { background: transparent; color: var(--navy); border-color: rgba(8, 29, 51, .4); }
.button.small { min-height: 42px; padding: 0 18px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(197, 160, 89, .20), transparent 28%),
    linear-gradient(118deg, var(--ivory) 0 63%, #ece1cc 63% 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { min-height: 675px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding: 78px 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #8b682c; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
h1, h2, h3 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.1; }
h1 { max-width: 760px; margin: 20px 0 22px; font-size: clamp(3.1rem, 6vw, 5.8rem); letter-spacing: -.045em; }
.hero-copy > p { max-width: 660px; margin: 0; color: #485765; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.hero-card {
  position: relative;
  padding: 42px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-card::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(228, 207, 157, .38); pointer-events: none; }
.bridge-art { width: 100%; height: 155px; margin-bottom: 22px; }
.hero-card h2 { color: var(--ivory); margin: 0 0 16px; font-size: 2rem; }
.hero-card p { color: #cbd5dd; margin: 0; }
.service-strip { background: var(--navy); color: white; }
.service-strip .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-strip div { padding: 22px 18px; border-left: 1px solid rgba(255,255,255,.14); text-align: center; font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-strip div:last-child { border-right: 1px solid rgba(255,255,255,.14); }

section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2 { margin: 15px 0 17px; font-size: clamp(2.45rem, 4.8vw, 4rem); letter-spacing: -.035em; }
.section-heading p { color: var(--muted); font-size: 1.07rem; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { padding: 36px; border: 1px solid var(--line); background: var(--paper); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(8,29,51,.09); }
.service-number { display: inline-block; color: #987638; font: 700 .8rem/1 Georgia, serif; letter-spacing: .14em; }
.service-card h3 { margin: 17px 0 13px; font-size: 1.65rem; }
.service-card p { color: var(--muted); margin: 0; }
.service-card .note { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); font-size: .82rem; }

.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.statement { padding: 35px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.5); color: var(--navy); font: 500 1.8rem/1.3 Georgia, serif; }
.about h2 { margin: 14px 0 24px; font-size: clamp(2.5rem, 4vw, 3.7rem); }
.about p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.values strong { display: block; color: var(--navy); }
.values span { color: var(--muted); font-size: .88rem; }

.process { background: var(--navy); color: white; }
.process .eyebrow { color: var(--gold-light); }
.process h2 { color: var(--ivory); }
.process .section-heading p { color: #c6d0d8; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { padding: 32px; border-top: 1px solid var(--gold); background: rgba(255,255,255,.04); }
.step span { color: var(--gold-light); font-weight: 800; }
.step h3 { color: white; margin: 34px 0 12px; font-size: 1.55rem; }
.step p { margin: 0; color: #c6d0d8; }

.consult { background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.consult-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.consult h2 { font-size: clamp(2.5rem, 4vw, 3.7rem); margin: 16px 0 20px; }
.contact-note { color: var(--muted); }
.contact-note strong { color: var(--navy); }
.form-card { padding: 40px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-size: .86rem; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #ccd2d7; border-radius: 2px; background: #fff; color: var(--ink); padding: 13px 14px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(197,160,89,.25); border-color: var(--gold); }
textarea { min-height: 120px; resize: vertical; }
.form-card .button { width: 100%; margin-top: 22px; }
.form-card .button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 26px; margin: 14px 0 0; color: #305f50; font-weight: 700; }

footer { background: #051524; color: #c5d0d9; padding: 55px 0 25px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
footer .brand-copy strong { color: white; }
footer p { max-width: 520px; margin: 12px 0 0; font-size: .92rem; }
.legal { margin-top: 24px; font-size: .76rem; color: #8fa0ae; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 86px; left: 0; right: 0; padding: 22px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-button { display: block; }
  .hero-grid, .about-grid, .consult-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-grid { padding: 65px 0; }
  .service-strip .shell { grid-template-columns: repeat(2,1fr); }
  .service-strip div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.14); }
  .service-strip div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1160px); }
  .topbar .shell { justify-content: center; }
  .topbar span:first-child { display: none; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .57rem; }
  h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-card, .form-card { padding: 28px; }
  section { padding: 76px 0; }
  .service-grid, .steps, .values, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .service-strip .shell { grid-template-columns: 1fr; }
  .service-strip div { border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .footer-grid { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
