/* Handy Perry — single stylesheet. No build step. Mobile-first. */

:root {
  --ink: #16191d;
  --ink-soft: #454c55;
  --paper: #ffffff;
  --paper-warm: #f6f4f0;
  --line: #d8d3ca;
  --navy: #1e2a38;
  --navy-deep: #141d27;
  --orange: #c64b16;
  --orange-dark: #a53c0f;
  --focus: #1668c6;
  --wrap: 62rem;
  --tap: 2.75rem; /* 44px */
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 7vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4.5vw, 2rem); }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1rem; }
a { color: var(--orange-dark); }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- placeholder marker ---------- */
.ph {
  background: #fff3cd;
  border-bottom: 2px dotted #8a6d1f;
  color: #5c4708;
  font-weight: 600;
  padding: 0 .15em;
  white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
  background: var(--navy);
  color: #fff;
  padding: .875rem 0;
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* single swap point for the logo: replace .wordmark contents with <img> */
.wordmark {
  display: inline-flex; align-items: baseline; gap: .4rem;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; text-decoration: none;
}
.wordmark .mark-2 { color: #f0a06a; }
.wordmark img { height: 2.25rem; width: auto; display: block; }

.header-call {
  display: inline-flex; align-items: center; min-height: var(--tap);
  padding: .5rem .9rem; border-radius: .375rem;
  background: var(--orange); color: #fff; font-weight: 700; text-decoration: none;
  font-size: .9375rem;
}
.header-call:hover { background: var(--orange-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: .75rem 1.375rem;
  border-radius: .375rem; border: 2px solid transparent;
  font-size: 1.0625rem; font-weight: 700; text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); }

/* ---------- hero ---------- */
.hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 3rem 0 2.75rem;
}
.hero h1 { margin-bottom: .25rem; }
.hero .tagline { font-size: clamp(1.125rem, 3.5vw, 1.375rem); color: #e4dfd6; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.trust {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  font-size: .9375rem; color: #cfc9be;
}
.trust li::before { content: "•"; margin-right: .5rem; color: #f0a06a; }

/* ---------- sections ---------- */
section { padding: 2.75rem 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }
.alt { background: var(--paper-warm); }
.lede { color: var(--ink-soft); max-width: 46rem; }

/* ---------- cards ---------- */
.cards { display: grid; gap: 1rem; grid-template-columns: 1fr; padding: 0; margin: 1.5rem 0 0; list-style: none; }
@media (min-width: 40rem) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60rem) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .5rem;
  padding: 1.125rem 1.25rem;
}
.card h3 { margin-bottom: .35rem; }
.card p { margin-bottom: .5rem; color: var(--ink-soft); }
.card .meta { font-size: .875rem; color: var(--ink-soft); margin: 0; }
.card.lead-svc { border-left: 4px solid var(--orange); }

.note {
  background: #fff3cd; border: 1px solid #e0c976; border-radius: .375rem;
  padding: .75rem 1rem; font-size: .9375rem; color: #4a3a0b;
}

/* ---------- service list ---------- */
.service-list {
  margin: 1.5rem 0 1.25rem; padding: 0; list-style: none;
  display: grid; gap: .25rem; grid-template-columns: 1fr;
  max-width: 34rem;
}
@media (min-width: 40rem) { .service-list { grid-template-columns: 1fr 1fr; max-width: none; } }
.service-list li {
  padding: .5rem 0 .5rem 1.5rem; border-bottom: 1px solid var(--line);
  position: relative;
}
.service-list li::before {
  content: ""; position: absolute; left: .25rem; top: 1.1rem;
  width: .5rem; height: .5rem; background: var(--orange); border-radius: 1px;
}

/* ---------- packages ---------- */
.pkg { border: 2px solid var(--navy); border-radius: .5rem; padding: 1.25rem; background: var(--paper); }
.pkg h3 { color: var(--navy); }
.pkg ul { margin: 0 0 .75rem; padding-left: 1.25rem; color: var(--ink-soft); }
.pkg li { margin-bottom: .25rem; }

/* ---------- service area ---------- */
.towns { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 48rem) { .towns { grid-template-columns: repeat(3, 1fr); } }
.towns h3 { margin-bottom: .25rem; }
.towns p { font-size: .9375rem; color: var(--ink-soft); margin: 0 0 .5rem; }
.town-list { margin: 0; padding: 0; list-style: none; font-size: .9375rem; }
.town-list li { padding: .15rem 0; border-bottom: 1px solid var(--line); }
.town-list li:last-child { border-bottom: 0; }

/* ---------- hours ---------- */
.hours-list {
  margin: 1.5rem 0 0; padding: 0; list-style: none;
  max-width: 24rem; border: 1px solid var(--line); border-radius: .5rem; overflow: hidden;
}
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .625rem 1rem; border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; }
.hours-list .time { color: var(--ink-soft); }
.hours-list .closed { background: var(--paper-warm); }
.hours-list .closed .day,
.hours-list .closed .time { color: var(--ink-soft); font-weight: 400; }

/* ---------- about ---------- */
.about { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 48rem) { .about { grid-template-columns: 14rem 1fr; } }
.photo-slot {
  aspect-ratio: 1 / 1; width: 100%;
  background: var(--paper-warm); border: 2px dashed var(--line); border-radius: .5rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ink-soft); font-size: .875rem; padding: 1rem;
}

/* ---------- empty states ---------- */
.empty {
  border: 2px dashed var(--line); border-radius: .5rem;
  padding: 2rem 1.25rem; text-align: center; color: var(--ink-soft);
  background: var(--paper);
}
.empty p:last-child { margin-bottom: 0; }

.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
@media (min-width: 48rem) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ---------- quote form ---------- */
.form-slot { margin-top: 1.5rem; }
.form-slot iframe { width: 100%; border: 0; min-height: 40rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #d9d4cb; padding: 2.5rem 0 3rem; font-size: .9375rem; }
.site-footer a { color: #f0a06a; }
.site-footer h2 { font-size: 1rem; color: #fff; margin-bottom: .35rem; }
.footer-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.legal { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); color: #b6afa4; }
.legal p { margin: 0; }
