@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #14243A;
  --navy: #1C3A5E;
  --brass: #A9824C;
  --paper: #FAFAF7;
  --paper-dim: #F0EFEA;
  --charcoal: #2A2E35;
  --slate: #646B75;
  --line: #E1DFD6;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1080px;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .wrap { padding: 0 20px; } }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

p.lede { font-size: 18px; color: var(--slate); max-width: 52ch; }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn-primary { background: var(--brass); color: #fff; }
.btn-primary:hover { opacity: 0.88; }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }

/* Header */
header.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }

nav.primary-nav ul { display: flex; gap: 30px; }
nav.primary-nav a { font-size: 14.5px; font-weight: 500; color: var(--charcoal); }
nav.primary-nav a:hover, nav.primary-nav a.active { color: var(--brass); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--navy); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 820px) {
  nav.primary-nav { display: none; }
  .nav-phone { display: none; }
  .menu-toggle { display: block; }
  nav.primary-nav.open {
    display: block; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 6px 20px 22px;
  }
  nav.primary-nav.open ul { flex-direction: column; gap: 2px; }
  nav.primary-nav.open a { display: block; padding: 10px 0; }
}

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 { font-size: clamp(32px, 4.4vw, 48px); max-width: 18ch; margin: 16px auto 18px; }
.hero p.lede { margin: 0 auto 30px; }
.hero-photo {
  margin-top: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-photo img { width: 100%; height: auto; max-height: 460px; object-fit: cover; }

/* Stats */
.stat-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.stat-row .wrap { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--brass); }
.stat-item .label { font-size: 14px; color: var(--slate); margin-top: 4px; }

.page-photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 40px;
}
.page-photo img { width: 100%; height: 340px; object-fit: cover; display: block; }
@media (max-width: 700px) { .page-photo img { height: 220px; } }

/* Sections */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
section.on-dim { background: var(--paper-dim); }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 12px; }
.section-head p { margin: 0 auto; }

/* Feature blocks (simple, no cards) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-media svg { width: 46%; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-text h3 { font-size: 22px; margin-bottom: 10px; }
.feature-text p { color: var(--slate); }

@media (max-width: 760px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
}

/* Simple 3-up list (no card borders) */
.simple-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 760px) { .simple-3 { grid-template-columns: 1fr; } }
.simple-3 h3 { font-size: 19px; margin: 14px 0 8px; }
.simple-3 p { color: var(--slate); font-size: 15px; }
.simple-3 .icon { width: 34px; height: 34px; }

/* Values / list rows */
.list-row { padding: 24px 0; border-top: 1px solid var(--line); }
.list-row:last-child { border-bottom: 1px solid var(--line); }
.list-row h3 { font-size: 18px; margin-bottom: 6px; }
.list-row p { color: var(--slate); font-size: 15px; max-width: 62ch; }

/* CTA */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 22px; }
.cta-band .wrap { padding: 60px 32px; }

/* Footer */
footer.site-footer { border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-bottom: 30px;
}
.footer-contact p, .footer-contact a { font-size: 14.5px; color: var(--slate); }
.footer-contact a:hover { color: var(--brass); }
.footer-nav ul { display: flex; gap: 24px; }
.footer-nav a { font-size: 14.5px; color: var(--charcoal); }
.footer-nav a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--slate);
}
@media (max-width: 600px) { .footer-top { flex-direction: column; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list .list-row { display: flex; gap: 14px; }
.info-list .icon { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; }
.info-list h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); margin-bottom: 4px; }
.info-list p, .info-list a { font-size: 16px; color: var(--ink); font-weight: 500; }

form.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; background: var(--paper); color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass);
}
.field textarea { resize: vertical; min-height: 110px; }

.map-embed { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
