:root {
  --ink: #0b1c2c;
  --navy: #13293d;
  --navy-soft: #1b364d;
  --gold: #c4a35a;
  --gold-soft: #d4bc7e;
  --cream: #f4efe6;
  --cream-2: #ebe4d6;
  --paper: #fbf8f2;
  --slate: #4a5560;
  --muted: #7a8490;
  --line: rgba(196, 163, 90, 0.35);
  --shadow: 0 24px 60px rgba(11, 28, 44, 0.12);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 28, 44, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 163, 90, 0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand svg { width: 42px; height: 42px; }
.brand-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; letter-spacing: 0.04em; line-height: 1.1; }
.brand-name span { display: block; font-family: "Source Sans 3", sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--cream-2); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border: 1px solid var(--gold);
  color: var(--ink); background: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px;
  transition: 0.2s ease;
}
.btn:hover { background: var(--gold-soft); }
.btn.ghost { background: transparent; color: var(--gold); }
.btn.ghost:hover { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 22px; }

/* HERO */
.hero {
  background:
    linear-gradient(180deg, rgba(11,28,44,0.55), rgba(11,28,44,0.82)),
    radial-gradient(1200px 500px at 80% -10%, rgba(196,163,90,0.18), transparent 50%),
    var(--ink);
  color: var(--cream);
  padding: 108px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.kicker {
  color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 18px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05; max-width: 14ch; margin-bottom: 22px;
}
.hero p.lead { max-width: 560px; color: #d7d0c3; font-size: 19px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; margin-top: 72px; padding-top: 28px;
  border-top: 1px solid rgba(196,163,90,0.2);
}
.hero-meta strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--gold); font-weight: 500; }
.hero-meta span { font-size: 13px; color: #c9c2b4; letter-spacing: 0.04em; }

/* SECTIONS */
section { padding: 92px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 46px); font-weight: 500; line-height: 1.15;
}
.rule { width: 48px; height: 1px; background: var(--gold); margin: 16px 0 18px; }

/* ABOUT */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.about p + p { margin-top: 16px; color: var(--slate); }
.aside-card {
  background: var(--ink); color: var(--cream); padding: 36px 32px;
  border: 1px solid var(--line);
}
.aside-card h3 { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.aside-card p { color: #d7d0c3; font-size: 16px; }

/* SERVICES */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; padding: 28px 26px; border: 1px solid var(--cream-2);
  box-shadow: 0 8px 24px rgba(11,28,44,0.04);
}
.card .num { color: var(--gold); font-size: 12px; letter-spacing: 0.2em; }
.card h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 500; margin: 8px 0 12px; }
.card p { color: var(--slate); font-size: 16px; }

/* APPROACH */
.approach { background: var(--navy); color: var(--cream); }
.approach .section-head h2, .contact .section-head h2 { color: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 22px 18px 8px 0; border-top: 1px solid var(--line); }
.step b { display: block; color: var(--gold); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.step h3 { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.step p { color: #cfc7b8; font-size: 15px; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item { padding: 22px 0; border-bottom: 1px solid var(--cream-2); }
.why-item h3 { font-size: 18px; margin-bottom: 6px; }
.why-item p { color: var(--slate); }

/* CONTACT */
.contact { background: var(--ink); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact p { color: #cfc7b8; }
form { display: grid; gap: 14px; }
label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
input, textarea, select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(196,163,90,0.35);
  color: var(--cream); padding: 10px 0; font: inherit; outline: none;
}
input:focus, textarea:focus, select:focus { border-bottom-color: var(--gold); }
textarea { min-height: 110px; resize: vertical; }
select option { color: var(--ink); }

/* FOOTER */
footer { background: #08141f; color: #9aa3ab; padding: 28px 0; font-size: 14px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer strong { color: var(--cream); font-weight: 500; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 76px;
    background: var(--ink); padding: 20px 24px 28px; gap: 16px;
  }
  .menu-toggle { display: block; }
  .about-grid, .cards, .steps, .why-grid, .contact-grid, .hero-meta {
    grid-template-columns: 1fr;
  }
  section { padding: 68px 0; }
  .hero { padding: 80px 0 64px; }
}
