:root {
  --bg:           #faf8f4;
  --surface:      #f0ebe2;
  --border:       #e3dbd0;
  --navy:         #1e2d4a;
  --navy-lt:      #2d4266;
  --text:         #3d3830;
  --muted:        #7a7268;
  --accent:       #b5863a;
  --accent-lt:    #f7edd8;
  --accent-dk:    #8a6428;
  --white:        #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-wordmark .w-well { color: var(--navy); }
.nav-wordmark .w-led  { color: var(--accent); }
.nav-mark { flex-shrink: 0; }

/* SVG logo mark elements — fill/stroke via CSS so theme vars apply */
.mark-el {
  fill: var(--accent);
  stroke: var(--navy);
  stroke-linejoin: round;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--navy-lt); }

/* ── Hero ── */
#hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, var(--bg) 55%, var(--accent-lt) 100%);
}

.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
}

.hero-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30,45,74,0.18);
  aspect-ratio: 1 / 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: filter 0.15s, transform 0.1s;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 2px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Sections ── */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Approach / Pillars ── */
#approach { background: var(--surface); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 2rem 1.75rem;
}

.pillar-icon {
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Services ── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.service:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(181,134,58,0.1);
}

.service-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Stats ── */
#stats {
  background: var(--navy);
  padding: 4rem 2rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat:first-child { border-left: none; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.stat-note {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-style: italic;
  opacity: 0.8;
}

/* ── Testimonials ── */
#testimonials { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; color: var(--accent); }
.testimonial-quote::after  { content: '\201D'; color: var(--accent); }

.testimonial-attr {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ── About ── */
#about { background: var(--navy); color: var(--white); }
#about .section-label { color: var(--accent); }
#about .section-heading { color: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }

.about-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.about-text p strong {
  color: var(--white);
  font-weight: 600;
}

.about-text p em {
  color: var(--accent);
  font-style: normal;
}

.belief-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0 4px 4px 0;
}

.about-credential {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.credential-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.credential-item strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* ── Contact ── */
#contact {
  background: linear-gradient(160deg, var(--accent-lt) 0%, var(--bg) 60%);
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

#contact .section-heading { margin-bottom: 1rem; }
#contact .section-intro { margin: 0 auto 2.5rem; text-align: center; }

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

footer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
footer a:hover { color: var(--accent); }

.footer-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-wordmark span { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 780px) {
  nav { padding: 0 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  #hero { padding: 3.5rem 1.25rem 3rem; }
  #stats { padding: 3rem 1.25rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-photo {
    max-width: 320px;
    aspect-ratio: 1 / 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }
}

@media (max-width: 460px) {
  .nav-cta { display: none; }
}
