:root {
  --navy: #2d4a5c;
  --navy-deep: #213847;
  --navy-soft: #3d5d72;
  --accent: #c97a5d;
  --accent-soft: #e8b8a3;
  --ink: #2a2723;
  --muted: #6b6962;
  --line: #ece8e0;
  --bg: #fdfbf6;
  --bg-alt: #f5efe4;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(45, 74, 92, 0.03), 0 12px 28px rgba(45, 74, 92, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); line-height: 1.1; font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.2rem; line-height: 1.3; }

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-soft); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}
.site-nav a:hover { color: var(--navy); }
.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy) !important;
}
.nav-cta:hover {
  background: var(--navy);
  color: #fff !important;
}
@media (max-width: 640px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201,122,93,0.14), transparent 60%),
    radial-gradient(900px 400px at 10% 110%, rgba(45,74,92,0.06), transparent 60%),
    linear-gradient(180deg, #faf5ec 0%, #fdfbf6 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 820px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin-top: 18px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--navy);
  color: var(--navy) !important;
  background: transparent;
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff !important;
}
.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-title {
  margin-bottom: 12px;
}
.section-lede {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 1.08rem;
}

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(15, 39, 64, 0.05), 0 14px 32px rgba(15, 39, 64, 0.08);
}
.card p { color: var(--muted); margin: 0; }

.who-item h3 { margin-bottom: 8px; }
.who-item p { color: var(--muted); }

/* Process */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process li {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}
.step-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.process p { color: var(--muted); margin: 0; }
@media (max-width: 800px) {
  .process { grid-template-columns: 1fr; gap: 24px; }
}

/* Contact */
.section-contact {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.section-contact .section-title { color: #fff; }
.section-contact .section-lede {
  color: rgba(255,255,255,0.78);
  margin-left: auto;
  margin-right: auto;
}
.section-contact .btn-primary {
  background: var(--accent);
  color: var(--navy) !important;
}
.section-contact .btn-primary:hover {
  background: #d8b97a;
}
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-note {
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-tag {
  font-family: 'Fraunces', serif;
  color: rgba(255,255,255,0.5);
}
