:root {
  --ink: #211821;
  --ink-soft: #564755;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --mist: #eef2ed;
  --plum: #4b2544;
  --green: #234238;
  --rose: #a14f62;
  --brass: #b98645;
  --line: rgba(33, 24, 33, 0.14);
  --shadow: 0 18px 48px rgba(33, 24, 33, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 250, 247, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  text-decoration: none;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
}
.brand span { color: var(--rose); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--plum); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 2.5rem;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 700;
}
.hero,
.page-hero {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46vw);
  align-items: stretch;
  background: var(--plum);
  color: #fff;
}
.hero-media,
.page-hero img {
  min-height: 100%;
  order: 2;
}
.hero-media img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy,
.page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 5rem);
}
.page-hero.editorial { background: var(--green); }
.eyebrow {
  color: var(--brass);
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}
h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin: 0 0 0.75rem;
}
.hero p,
.page-hero p {
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 1.5rem;
}
.band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}
.intro-band,
.process-band,
.guide-band { background: var(--mist); }
.split,
.about-grid,
.content-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split > p,
.about-grid p,
.content-grid p,
.article-body p,
.faq-list p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-grid.small {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-card h3 a { text-decoration: none; }
.service-card p { color: var(--ink-soft); margin: 0 0 1rem; }
.price {
  margin-top: auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.15rem;
  color: var(--green);
}
.price span {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}
.hero-price { color: #fff; margin-bottom: 1.2rem; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 8px;
  background: var(--brass);
  color: #1d151c;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--brass);
}
.button.secondary {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.service-card .button.secondary {
  color: var(--plum);
  border-color: var(--line);
}
.about-grid img {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.steps {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.steps article {
  padding: 1.3rem;
  border-top: 3px solid var(--rose);
  background: var(--surface);
}
.steps span {
  color: var(--brass);
  font-weight: 900;
}
.guide-links {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.guide-links a {
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  color: var(--plum);
}
.article-body {
  max-width: 820px;
  margin: 0 auto;
}
.article-body h2 { margin-top: 2rem; }
.check-list {
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.check-list li { margin-bottom: 0.65rem; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
.narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-band {
  background: var(--green);
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,0.78); }
.text-link {
  color: var(--plum);
  font-weight: 900;
}
.footer {
  padding: 3rem 1rem;
  text-align: center;
  background: #171116;
  color: rgba(255,255,255,0.76);
}
.footer a { color: #fff; }
.footer-brand {
  display: inline-block;
  color: #fff;
  margin-bottom: 0.75rem;
}
@media (max-width: 960px) {
  .hero,
  .page-hero,
  .split,
  .about-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .page-hero img {
    order: 0;
    min-height: 38svh;
  }
  .service-grid,
  .service-grid.small,
  .steps,
  .guide-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.is-open { display: flex; }
  .hero-copy,
  .page-hero > div { padding-top: 3rem; }
  .service-grid,
  .service-grid.small,
  .steps,
  .guide-links {
    grid-template-columns: 1fr;
  }
}