/* Shared styles for the five service pages. The home page and blog keep their own inline styles. */
@font-face { font-family: 'Fraunces'; src: url('/fonts/fraunces-v38-latin-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins-v24-latin-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --terracotta: #C4643B;
  --charcoal: #35302A;
  --cream: #FAF4EC;
  --sage: #7E8F71;
  --peach: #F0DCC8;
  --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; }
body {
  font-family: 'Poppins', 'Avenir Next', Verdana, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 1.05rem;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 22px; }

header.top { padding: 22px 0 0; }
header.top a.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--charcoal); }
header.top img { height: 44px; width: auto; }
header.top span { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; font-weight: 600; }
nav.services { padding: 14px 0 18px; }
nav.services ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
nav.services a { color: var(--sage); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
nav.services a:hover, nav.services a[aria-current="page"] { color: var(--terracotta); }

section { padding: 50px 0; }
@media (max-width: 640px) { section { padding: 36px 0; } }
.hero { text-align: center; padding-top: 20px; }
.hero p.sub { margin: 18px auto 24px; max-width: 34em; color: var(--sage); font-size: 1.12rem; }
.anchor-link {
  display: inline-block; font-weight: 600; color: var(--terracotta);
  text-decoration: none; border-bottom: 2px solid var(--terracotta); padding-bottom: 2px;
}
.lead-shot { margin-top: 30px; border-radius: 10px; overflow: hidden; }
.lead-shot img { width: 100%; }
.band { background: var(--white); }
.peach { background: var(--peach); }

.steps { display: grid; gap: 26px; margin-top: 30px; }
@media (min-width: 620px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta);
  color: var(--cream); font-weight: 600; display: grid; place-items: center;
  font-size: 1.15rem; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--sage); font-size: 0.98rem; }

.offer-list { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 20px; }
@media (min-width: 620px) { .offer-list { grid-template-columns: 1fr 1fr; gap: 22px 30px; } }
.offer-list strong { display: block; }
.offer-list span { color: var(--sage); font-size: 0.95rem; }

.gallery { display: grid; gap: 18px; margin-top: 28px; }
@media (min-width: 620px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery .shot { aspect-ratio: 4 / 3; background: var(--peach); border-radius: 10px; overflow: hidden; }
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; }
.gallery.tall .shot { aspect-ratio: 3 / 4; }
.gallery-note { margin-top: 14px; color: var(--sage); font-size: 0.95rem; text-align: center; }

.whole-home p { margin-top: 12px; }
.whole-home ul { list-style: none; padding: 0; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.whole-home a { color: var(--terracotta); font-weight: 500; }

.reassure ul { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 18px; }
.reassure li { display: flex; gap: 14px; align-items: flex-start; }
.reassure .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--sage); color: var(--cream); display: grid; place-items: center;
  font-size: 0.9rem; margin-top: 3px;
}
.reassure strong { display: block; }
.reassure span { color: var(--sage); font-size: 0.95rem; }

.faq .faq-list { margin-top: 26px; display: grid; gap: 22px; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.faq-item p { color: var(--sage); font-size: 0.98rem; }
.faq-item a { color: var(--terracotta); }

.cta { text-align: center; }
.btn-wa {
  display: inline-block; background: var(--terracotta); color: var(--cream);
  font-weight: 600; font-size: 1.15rem; text-decoration: none;
  padding: 18px 34px; border-radius: 999px; margin-top: 22px;
}
.btn-wa:hover { background: #A94F2C; }
.cta p.small { margin-top: 14px; color: var(--sage); font-size: 0.9rem; }

footer {
  background: var(--charcoal); color: var(--cream); padding: 34px 0;
  font-size: 0.9rem; text-align: center;
}
footer a { color: var(--cream); }
footer p { margin-bottom: 6px; }

#consent {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal);
  color: var(--cream); padding: 16px 20px; display: none; z-index: 10;
}
#consent .wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; max-width: 900px; }
#consent p { font-size: 0.85rem; max-width: 34em; }
#consent a { color: var(--cream); }
#consent button {
  font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: 0; border-radius: 999px; padding: 10px 20px;
}
#consent .yes { background: var(--terracotta); color: var(--cream); }
#consent .no { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
