:root {
  --ink: #10192B;
  --ink-soft: #1C2A44;
  --paper: #FAF8F3;
  --slate: #4A5568;
  --slate-light: #8892A0;
  --amber: #B8863B;
  --amber-soft: #E8D9BE;
  --line: #D9D3C4;
  --card: #F1EEE6;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { color: var(--slate); margin: 0 0 1em; }
a { color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav */
.site-nav {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand span { color: var(--amber); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 13.5px !important;
}
.nav-cta:hover { background: var(--ink-soft); }

/* Hero */
.hero {
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 520px;
}
.hero-copy {
  padding: 72px 48px 72px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-photo-col {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: repeating-linear-gradient(135deg, var(--ink), var(--ink) 18px, var(--ink-soft) 18px, var(--ink-soft) 36px);
}
.hero-photo-placeholder .ph-inner {
  background: rgba(250,248,243,0.95);
  border: 2px dashed var(--amber);
  border-radius: 6px;
  padding: 28px 24px;
  max-width: 300px;
}
.hero-photo-placeholder .ph-inner p {
  font-size: 12.5px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}
.hero-photo-placeholder .ph-inner code {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink);
  background: var(--card);
  padding: 4px 8px;
  border-radius: 3px;
}
.hero-stat-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--amber);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin: 0 0 14px;
}
.hero-copy h1 {
  font-size: 46px;
  line-height: 1.12;
  max-width: 580px;
}
.hero-copy h1 .hl {
  background: linear-gradient(180deg, transparent 62%, var(--amber-soft) 62%);
}
.hero-copy .lede { font-size: 17.5px; max-width: 520px; margin-top: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 48px 24px; }
  .hero-photo-col img, .hero-photo-placeholder { min-height: 280px; }
  .hero-copy h1 { font-size: 32px; }
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head h2 { font-size: 28px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; margin: 0; }
.card .icon-mark {
  width: 34px; height: 34px;
  border-radius: 3px;
  background: var(--amber-soft);
  margin-bottom: 14px;
}

.divider-top { border-top: 3px solid var(--amber); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  font-size: 13px;
  color: var(--slate-light);
}
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer a { color: var(--slate-light); }

.legal-note {
  font-size: 12px;
  color: var(--slate-light);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 30px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
