@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:wght@500;600;700&display=swap');

:root {
  --cream: #fbfaf6;
  --ivory: #fffdf8;
  --ink: #173844;
  --muted: #52686c;
  --sage: #7f9667;
  --sage-dark: #617b4f;
  --line: #e9e0d4;
  --shadow: 0 28px 70px rgba(23, 56, 68, 0.14);
  --soft-shadow: 0 14px 35px rgba(23, 56, 68, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

h1, h2, h3 {
  font-family: Lora, Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 1.08;
  max-width: 650px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.1;
}

h3 { font-size: 1.15rem; }

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  min-height: 108px;
}

.logo-link img {
  width: 315px;
  max-width: 32vw;
  display: block;
}

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

.main-nav a {
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
}

.nav-cta, .primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 14px 30px rgba(127, 150, 103, 0.28);
}

.nav-cta { padding: 17px 30px; }

.button {
  padding: 16px 28px;
  font-size: 1rem;
}

.secondary {
  background: white;
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  font-size: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 5vw;
  align-items: start;
  padding: 82px 5vw 86px;
  min-height: 690px;
}

.hero-text { max-width: 680px; }

.lead {
  max-width: 1000px;
  margin: 0 auto;
  text-align: justified;
}

.service-area {
  color: var(--sage-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 28px;
}

.button-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.trust-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 24px;
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.hero-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 520px;
  margin-top: -10px;
}

.hero-image img, .service-photo-grid img, .service-card img, .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-section {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 5vw 56px;
  text-align: center;
}

.help-section h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-photo-grid article { text-align: center; }

.service-photo-grid img {
  height: 135px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  display: block;
}

.service-photo-grid h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-top: 12px;
}

.section { padding: 88px 5vw; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-grid.six { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.service-card img {
  height: 230px;
  display: block;
}

.service-card h3, .service-card p { padding-inline: 26px; }
.service-card h3 { margin-top: 22px; }
.service-card p { padding-bottom: 24px; }

.feature-section, .contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  padding: 88px 5vw;
  background: linear-gradient(90deg, var(--cream), #eef4ee);
}

.feature-image {
  height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero {
  text-align: center;
  padding: 88px 5vw 54px;
}

.page-hero h1 { margin: 0 auto 35px auto; }
max-width: none;
font-size: clamp(2.9rem, 5vw, 4.8rem);
line-height: 1.08;
}
.eyebrow {
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 0.8rem;
}

.family-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 26px;
}

.family-points div, .notice, details, .contact-card, .form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.family-points span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.notice {
  max-width: 900px;
  margin: 34px auto 0;
  line-height: 1.7;
  color: var(--muted);
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 5vw 90px;
  display: grid;
  gap: 14px;
}

summary {
  cursor: pointer;
  font-family: Lora, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-card p {
  margin: 10px 0;
  color: var(--ink);
  font-weight: 800;
}

input, textarea {
  width: 100%;
  padding: 15px 16px;
  margin: 8px 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

button { width: 100%; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(90deg, #86afbf, var(--sage));
  color: white;
  padding: 34px 5vw;
}

.site-footer span {
  display: block;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.mobile-call { display: none; }
.center { text-align: center; margin-top: 34px; }

@media (max-width: 980px) {
  .menu-button { display: block; }

  .logo-link img {
    width: 220px;
    max-width: 62vw;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 24px 5vw;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open { display: flex; }

  .hero, .feature-section, .contact-section {
    grid-template-columns: 1fr;
    padding: 56px 5vw;
  }

  .hero-image { height: 420px; }

  .service-photo-grid, .card-grid, .card-grid.six, .family-points {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-top: 14px;
  }

  .mobile-call {
    display: block;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99;
    background: var(--sage);
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: var(--shadow);
  }
}
