/* ============ BASE ============ */
:root {
  --navy: #1a3a5c;
  --navy-deep: #102540;
  --navy-light: #2a5d8f;
  --gold: #c89b3c;
  --gold-deep: #a17d2b;
  --ink: #1c1c1c;
  --ink-soft: #444;
  --ink-muted: #6b6b6b;
  --paper: #fafaf7;
  --paper-tint: #f0ebe0;
  --border: #e3ddd0;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold-deep); }

strong { color: var(--navy); font-weight: 600; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow { max-width: 800px; }
.center { text-align: center; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 9px;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 560px) { .nav-logo-img { height: 60px; } }

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--gold-deep);
  color: var(--white) !important;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--paper);
}

.btn-large {
  padding: 18px 38px;
  font-size: 17px;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-tint) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.hero-copy h1 .accent {
  color: var(--navy-light);
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 8px;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(26, 58, 92, 0.22), 0 4px 12px rgba(26, 58, 92, 0.08);
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle vignette to soften busy background in the source image */
.photo-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px 16px rgba(20, 30, 50, 0.28);
  background: radial-gradient(ellipse 80% 100% at 50% 45%, transparent 55%, rgba(20, 30, 50, 0.18) 100%);
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.section-title.white { color: var(--white); }

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 720px;
}

.lead.white { color: var(--paper); opacity: 0.92; }

/* ============ ABOUT ============ */
.section-about { background: var(--white); }

.about-feature {
  background: var(--paper-tint);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 4px 0 8px;
}

.about-feature h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-feature p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  margin-top: 36px;
}

.about-block h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.about-block p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ APPROACH / BUCKETS ============ */
.section-approach { background: var(--paper); }

.buckets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.bucket {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bucket:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 58, 92, 0.08);
}

.bucket-emphasis {
  border-color: var(--gold);
  border-width: 2px;
  position: relative;
}

.bucket-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 50%;
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bucket-emphasis .bucket-num {
  background: var(--gold);
  color: var(--ink);
}

.bucket h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.bucket-examples {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.bucket p {
  font-size: 15px;
  color: var(--ink-soft);
}

.callout {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 8px;
}

/* ============ SPECIALTIES ============ */
.section-specialties { background: var(--white); }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  margin-top: 16px;
}

.specialty {
  padding: 24px 28px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.specialty h4 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
}

.specialty p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ PROCESS ============ */
.section-process { background: var(--paper); }

.process-list {
  list-style: none;
  margin-top: 24px;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.process-list li:last-child { border-bottom: none; }

.process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
}

.process-list h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-list p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ FAQ ============ */
.section-faq { background: var(--white); }

.faq-list { margin-top: 24px; }

.faq {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq summary {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-deep);
  transition: transform 0.2s;
}

.faq[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-right: 36px;
}

/* ============ CTA ============ */
.section-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 110px 0;
  border-bottom: none;
}

.cta-secondary {
  margin-top: 32px;
  color: var(--paper);
  opacity: 0.85;
  font-size: 15px;
  line-height: 1.8;
}

.cta-secondary a {
  color: var(--gold);
  font-weight: 500;
}

.cta-secondary a:hover { color: var(--white); }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo .logo-mark { background: var(--gold); color: var(--ink); }
.footer-logo .logo-text { color: var(--paper); }

.footer-tagline {
  color: var(--paper);
  opacity: 0.7;
  font-size: 14px;
  font-style: italic;
}

.footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer p {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.7;
}

.footer a { color: var(--paper); opacity: 0.85; }
.footer a:hover { color: var(--gold); opacity: 1; }

.footer-fine {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-fine p { font-size: 12px; margin-bottom: 12px; }
.footer-fine p:last-child { margin-bottom: 0; opacity: 0.8; }

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--navy-deep);
  color: var(--paper);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.trust-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.92;
  white-space: nowrap;
}

.trust-mark { color: var(--gold); }

.trust-divider {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.22);
}

/* ============ NAV TOGGLE (mobile hamburger) ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ QUOTE BAND ============ */
.section-quote {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: none;
  padding: 84px 0;
}
.pullquote {
  font-family: 'Lora', serif;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 600;
  font-style: italic;
  color: var(--paper);
}
.pullquote-src {
  display: block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pullquote-take {
  margin: 26px auto 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.85;
}
@media (max-width: 560px) { .pullquote { font-size: 25px; } }

/* ============ LEAD CAPTURE ============ */
.section-reach { background: var(--paper-tint); }
.leadform { max-width: 620px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em;
}
.leadform input, .leadform select, .leadform textarea {
  width: 100%; padding: 12px 14px; font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--ink); background: var(--white);
  border: 1px solid var(--border); border-radius: 6px; transition: border-color 0.15s, box-shadow 0.15s;
}
.leadform input:focus, .leadform select:focus, .leadform textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.18);
}
.leadform textarea { resize: vertical; }
.leadform .btn-large { margin-top: 4px; }
.form-fine { font-size: 13px; color: var(--ink-muted); font-style: italic; margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 15px; font-weight: 600; }
.form-status.ok { color: #1f7a4d; }
.form-status.err { color: #b0202a; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .photo-frame { max-width: 300px; margin: 0 auto; }

  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .lead { font-size: 17px; }

  .about-grid,
  .specialty-grid { grid-template-columns: 1fr; }

  .buckets { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-inner { gap: 16px; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 6px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(26, 58, 92, 0.10);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 32px;
    font-size: 16px;
  }

  .trust-inner { gap: 14px; }
  .trust-item { font-size: 11.5px; letter-spacing: 0.03em; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 48px 0 64px; }
  .hero-copy h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .section-title { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
