:root {
  --ink: #14213d;
  --muted: #65708a;
  --line: rgba(20, 33, 61, 0.12);
  --paper: #fbf8f2;
  --cream: #fffdf8;
  --gold: #b98b3f;
  --gold-dark: #8f6522;
  --blue: #18345f;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
}

* { 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(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 139, 63, 0.18), transparent 32rem),
    linear-gradient(135deg, #fffaf0 0%, #f7f1e7 46%, #eef3f8 100%);
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1160px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(20, 33, 61, 0.08);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), #2f5b94);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; margin-top: 1px; }

nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #35445f;
  font-size: 0.94rem;
}
nav a:hover { background: rgba(20, 33, 61, 0.07); }

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 66px auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: clamp(28px, 5vw, 62px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.38)),
    linear-gradient(145deg, rgba(185,139,63,.08), rgba(24,52,95,.08));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: .78rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.055em;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
h3 { margin-bottom: 10px; font-size: 1.1rem; }
.lede { max-width: 680px; color: #4e5c74; font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--blue); color: white; box-shadow: 0 14px 30px rgba(24,52,95,.25); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.55); color: var(--blue); }
.button.light { background: #fff; color: var(--blue); }

.hero-card {
  min-height: 520px;
  padding: 30px;
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(180deg, rgba(20,33,61,.1), rgba(20,33,61,.94)),
    linear-gradient(135deg, #23436f, #12233f 55%, #111827);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: -32px 34px 0 rgba(185,139,63,.22);
}
.card-label { color: #f3d7a1; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; }
.hero-card strong { display: block; margin: 16px 0 12px; font-family: Georgia, serif; font-size: 2rem; line-height: 1.08; }
.hero-card p { color: rgba(255,255,255,.76); line-height: 1.6; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.metrics span { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.metrics b, .metrics small { display: block; }
.metrics b { font-size: 1.5rem; }
.metrics small { color: rgba(255,255,255,.68); }

.section, .split-section, .contact-panel {
  width: min(1160px, calc(100% - 40px));
  margin: 24px auto;
}
.section { padding: 56px 0; }
.section-heading { max-width: 760px; margin-bottom: 26px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 44px rgba(20,33,61,.08);
}
.service-grid p, .timeline p, .contact-panel p { color: var(--muted); line-height: 1.62; }

.split-section {
  padding: 42px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 34px;
  align-items: start;
  border-radius: 34px;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.timeline { display: grid; gap: 14px; }
.timeline div { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start; }
.timeline span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f1e3c7;
  color: var(--gold-dark);
  font-weight: 900;
}

.contact-panel {
  margin-top: 50px;
  margin-bottom: 28px;
  padding: 38px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #18345f, #10223e 68%, #0d1729);
  box-shadow: var(--shadow);
}
.contact-panel .eyebrow { color: #f1cf8d; }
.contact-panel p { color: rgba(255,255,255,.76); max-width: 640px; }

footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .site-header, .contact-panel { align-items: flex-start; flex-direction: column; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-card { min-height: 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header, .hero, .section, .split-section, .contact-panel, footer { width: min(100% - 24px, 1160px); }
  .hero { margin-top: 34px; }
  .hero-copy, .split-section, .contact-panel { border-radius: 24px; padding: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  h1 { font-size: 2.65rem; }
}
