:root {
  --ink: #13283a;
  --muted: #5c6c75;
  --paper: #f7f4ed;
  --white: #ffffff;
  --green: #6e887a;
  --green-dark: #314f46;
  --rose: #b05b7d;
  --line: rgba(19, 40, 58, .14);
  --shadow: 0 24px 70px rgba(20, 42, 55, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(247, 244, 237, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.brand span { color: var(--rose); }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { text-decoration: none; font-size: .95rem; font-weight: 650; }
.site-nav a:hover { color: var(--rose); }
.nav-cta { padding: .68rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }
.menu-button { display: none; border: 0; background: none; font: inherit; font-weight: 700; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  background: var(--white);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vw, 9rem) 7vw;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 12ch; margin-bottom: 1.5rem; font-size: clamp(3rem, 6.6vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
.lead { font-size: clamp(1.18rem, 1.5vw, 1.55rem); line-height: 1.5; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; }
.hero-image-wrap { min-height: 620px; overflow: hidden; background: var(--green); }
.hero-image { height: 100%; object-fit: cover; object-position: 50% 28%; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-flex; text-decoration: none; padding: .95rem 1.3rem; border-radius: 999px; font-weight: 750; }
.button.primary { color: white; background: var(--ink); }
.button.secondary { border: 1px solid var(--ink); }
.button:hover { transform: translateY(-2px); }

.section, .band { padding: clamp(5rem, 9vw, 9rem) 7vw; }
.band { background: var(--green-dark); color: white; }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 4rem; align-items: start; }
.section-heading h2 { max-width: 18ch; }
.section-heading.narrow { display: block; max-width: 950px; margin-bottom: 3rem; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1100px; margin: 4rem 0 0 auto; }
.intro-grid > p { font-size: 1.25rem; }
.question-list p { margin: 0; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.25); font-weight: 650; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-image-wrap { box-shadow: var(--shadow); }
.about-image-wrap img { width: 100%; height: auto; object-fit: contain; object-position: center top; }
.about-copy { max-width: 760px; }
.about-copy p { font-size: 1.05rem; }

.services { background: #e8ece7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 320px; padding: 2rem; background: rgba(255,255,255,.78); border: 1px solid rgba(19,40,58,.09); }
.service-card.featured { grid-column: span 2; min-height: 420px; color: white; background: var(--ink); }
.service-number { display: block; margin-bottom: 4rem; color: var(--rose); font-weight: 850; letter-spacing: .12em; }
.service-card ul { padding-left: 1.2rem; }

.why { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--white); }
.why-copy { max-width: 780px; }
.quote-card { padding: clamp(2.5rem, 5vw, 5rem); color: white; background: var(--rose); box-shadow: var(--shadow); }
.quote-card p { margin: 0 0 2rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.3vw, 3.4rem); line-height: 1.12; }
.quote-card span { font-weight: 800; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; color: white; background: var(--green-dark); }
.contact h2 { margin-bottom: 1rem; font-size: clamp(3.5rem, 8vw, 8rem); }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.contact-links a { font-size: clamp(1.3rem, 2.2vw, 2rem); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: .22em; }
.contact-links span { margin-top: 1rem; color: rgba(255,255,255,.68); }
.site-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 5vw; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5vw 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 70vh; }
  .hero-image-wrap { min-height: 65vh; }
  .section-heading, .intro-grid, .about, .why, .contact { grid-template-columns: 1fr; }
  .section-heading { gap: 1rem; }
  .intro-grid { margin-top: 2rem; gap: 2rem; }
  .about-image-wrap { max-width: 580px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { min-height: 68px; }
  .site-nav { top: 67px; }
  .hero { min-height: auto; }
  .hero-copy { min-height: auto; padding: 5rem 6vw; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero-image-wrap { min-height: 520px; }
  .section, .band { padding: 4.5rem 6vw; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .service-number { margin-bottom: 2.5rem; }
  .site-footer { flex-direction: column; gap: 0; }
}
