:root {
  --bg: #FAFAF9;
  --surface: #EFF5F3;
  --blush: #F0F6F4;
  --text: #1C2523;
  --text-soft: #556660;
  --muted: #96A8A3;
  --accent: #3D7E7A;
  --accent-soft: #7AACA8;
  --rule: #DAE8E5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Karla', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ── Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin-left: 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.2rem 0.4rem;
  line-height: 1;
}

/* ── Page header (non-home pages) ── */
.page-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 11rem 3rem 5rem;
  border-bottom: 1px solid var(--rule);
}

.page-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: 1.1rem;
}

.page-header h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 52ch;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 250, 249, 0.55) 0%,
    rgba(250, 250, 249, 0.15) 35%,
    rgba(250, 250, 249, 0.7) 78%,
    var(--bg) 100%
  );
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem 7rem;
}

.hero-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 16ch;
  margin-bottom: 2rem;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 2.1rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s;
}

.btn:hover, .btn:focus-visible {
  background: #2D6460;
  transform: translateY(-2px);
}

.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Section shell ── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7rem 3rem;
}

.section-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 3rem;
}

.rule {
  max-width: 1180px;
  margin: 0 auto;
  height: 1px;
  background: var(--rule);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}

.section-title em { font-style: italic; color: var(--accent); }

.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 56ch;
}

/* ── Familiar cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--blush);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}

.card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.card p {
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.closing-line {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-top: 3.5rem;
  text-align: center;
  text-wrap: balance;
}

/* ── Image band ── */
.band {
  width: 100%;
  height: clamp(280px, 42vh, 460px);
  overflow: hidden;
}

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

/* ── Who works with me ── */
.path-list {
  list-style: none;
  margin-top: 3rem;
  max-width: 62ch;
  border-left: 1px solid var(--rule);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.path-list li {
  position: relative;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.path-list li::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.62em;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent-soft);
}

/* ── Beliefs ── */
.beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.5rem;
  margin-top: 3rem;
}

.belief {
  border-top: 1px solid var(--accent-soft);
  padding-top: 1.4rem;
}

.belief p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  text-wrap: balance;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}

.step {
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-wrap: balance;
}

.step p {
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.68;
}

/* ── Testimonials ── */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.quote {
  background: var(--blush);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.75rem 2.5rem 2.25rem;
  position: relative;
}

.quote::before {
  content: '\201C';
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.5;
  position: absolute;
  top: 0.9rem;
  left: 2rem;
}

.quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-top: 1.4rem;
  position: relative;
}

.quote cite {
  font-family: 'Karla', sans-serif;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.about-body p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.about-body p:last-child { margin-bottom: 0; }

.signature {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-top: 2rem;
}

/* ── Contact ── */
.contact {
  background: var(--surface);
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}

.contact-note {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 40ch;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--text);
  font-family: 'Karla', sans-serif;
  font-size: 0.96rem;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input:focus, textarea:focus { border-color: var(--accent); }

textarea { resize: vertical; min-height: 130px; }

/* ── Footer ── */
.site-footer {
  background: #4A716D;
  color: #f0f6f5;
  padding: 2rem 0;
  margin-top: 1.5rem;
}

.site-footer h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.6rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0;
  font-size: 0.94rem;
}

.footer-contact .ci {
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover { text-decoration: underline; }

.smallprint {
  align-self: end;
  color: #c8dedd;
  font-size: 0.82rem;
  text-align: right;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  /* Mobile nav */
  .nav-inner { padding: 0 1.4rem; }
  .menu-toggle { display: block; }
  .site-header { position: relative; }

  .main-nav {
    display: none;
    flex-direction: column;
    background: var(--bg);
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  }

  .main-nav a {
    margin: 0;
    padding: 0.7rem 1.5rem;
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--rule);
    border-left: none;
  }

  .main-nav a:last-child { border-bottom: none; }
  .main-nav.open { display: flex; }

  /* Layout */
  .hero { min-height: 88vh; }
  .hero-inner { padding: 0 1.4rem 4rem; }
  .hero-headline { max-width: none; }
  .section, .section-narrow { padding: 4.5rem 1.4rem; }
  .page-header { padding: 8rem 1.4rem 3.5rem; }
  .cards { grid-template-columns: 1fr; }
  .beliefs { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; gap: 2.25rem; }
  .quotes { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 420px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.75rem; padding: 4.5rem 1.4rem; }
  .path-list { padding-left: 1.75rem; }
  .path-list li::before { left: -1.75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; padding: 0 1.4rem; }
  .smallprint { text-align: left; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.2); white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
