/* ==========================================================================
   Central Ohio Cleaning and Repair Services — Stylesheet
   Design system: Flat / Material with subtle elevation
   Palette: Rose (#F43F5E) + Coral (#FB923C) on a warm light surface (#FFF1F2)
   Typography: System font stack only (no external fonts)
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --rose: #F43F5E;
  --rose-dark: #C81E3F;
  --rose-light: #FFD9DF;
  --coral: #FB923C;
  --coral-dark: #E2731E;

  /* Surfaces */
  --bg: #FFF1F2;
  --surface: #FFFFFF;
  --surface-alt: #FFE4E8;

  /* Ink */
  --ink: #2B1B20;
  --ink-soft: #6B4C53;
  --ink-faint: #9B7B82;
  --line: #F3D3D9;

  /* Elevation (flat design uses soft, low-spread shadows only) */
  --shadow-sm: 0 1px 2px rgba(43, 27, 32, 0.06), 0 1px 1px rgba(43, 27, 32, 0.08);
  --shadow-md: 0 4px 10px rgba(43, 27, 32, 0.08), 0 2px 4px rgba(43, 27, 32, 0.06);
  --shadow-lg: 0 12px 28px rgba(43, 27, 32, 0.12), 0 4px 10px rgba(43, 27, 32, 0.06);

  /* Type scale */
  --font-display: -apple-system, "Segoe UI", "Segoe UI Semibold", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Spacing rhythm */
  --section-pad: clamp(3.5rem, 6vw, 6rem);
  --container-w: 1180px;
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--section-pad);
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--ink-soft); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--rose-dark);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   5. Header + Hamburger menu (hidden nav on every breakpoint)
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 241, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--rose) 0%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small {
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  font-weight: 700;
  color: var(--rose-dark);
}

/* Hamburger button */
.hamburger {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hamburger:hover { box-shadow: var(--shadow-md); }

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--rose-dark);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full nav drawer (used at ALL screen sizes per design spec: hamburger-only nav) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer[data-open="true"] {
  visibility: visible;
  pointer-events: auto;
}

.nav-scrim {
  position: absolute;
  inset: 0;
  background: rgba(43, 27, 32, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-drawer[data-open="true"] .nav-scrim { opacity: 1; }

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.nav-drawer[data-open="true"] .nav-panel { transform: translateX(0); }

.nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.nav-close {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--rose-dark);
}
.nav-close:hover { background: var(--surface-alt); }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.85rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--rose);
  padding-left: 0.85rem;
}

.nav-panel-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.nav-panel-foot .btn { width: 100%; }

.nav-contact-line {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-contact-line strong { color: var(--ink); }

/* -------------------------------------------------------------------------
   6. Hero (split: text left / image right)
   ------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Signature element: rotated service-ticket sticker on the hero image */
.hero-sticker {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  border: 1.5px dashed var(--rose-light);
  max-width: 230px;
}

.hero-sticker .ticket-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  display: block;
  margin-bottom: 0.3rem;
}

.hero-sticker strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.hero-sticker span.sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   7. Alternating content rows
   ------------------------------------------------------------------------- */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-row + .split-row {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.split-row.reverse .split-media { order: 2; }
.split-row.reverse .split-copy { order: 1; }

.split-media img {
  width: 100%;
  height: clamp(260px, 32vw, 360px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-copy ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.split-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.check-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   8. Cards & grids
   ------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.96rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-dark);
}
.card-link:hover { color: var(--rose); }

/* -------------------------------------------------------------------------
   9. Stats strip
   ------------------------------------------------------------------------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--rose);
}
.stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   10. Testimonials
   ------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars { color: var(--coral); font-size: 0.95rem; letter-spacing: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--ink-faint); }

/* -------------------------------------------------------------------------
   11. Pricing table (service-ticket styling)
   ------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.price-card.featured {
  border-color: var(--rose);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.price-card .plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.price-card .plan-desc {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-top: 0.3rem;
}

.plan-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.4rem 0;
}
.plan-amount strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ink);
}
.plan-amount span { color: var(--ink-faint); font-size: 0.9rem; }

.plan-divider {
  border-top: 1.5px dashed var(--rose-light);
  margin: 0.25rem 0 1.4rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

/* -------------------------------------------------------------------------
   12. Process / steps
   ------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--rose-light);
  -webkit-text-stroke: 1.5px var(--rose);
  margin-bottom: 0.6rem;
  display: block;
}

/* -------------------------------------------------------------------------
   13. CTA banner
   ------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--rose) 0%, var(--coral) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); }

.cta-banner .btn-secondary {
  background: #fff;
  color: var(--rose-dark);
  border-color: #fff;
}
.cta-banner .btn-secondary:hover { background: var(--bg); }

/* -------------------------------------------------------------------------
   14. Forms
   ------------------------------------------------------------------------- */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-field .required { color: var(--rose); }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-size: 0.96rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--rose-light);
  outline: none;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--rose);
  background: #fff;
}

.error-msg {
  font-size: 0.8rem;
  color: var(--rose-dark);
  margin-top: 0.35rem;
  display: none;
  font-weight: 600;
}

.form-field.has-error .error-msg { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  color: #065F46;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.form-success.show { display: flex; }

/* -------------------------------------------------------------------------
   15. Contact info + map
   ------------------------------------------------------------------------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  line-height: 0;
}

.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* -------------------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   17. Service area list (chips)
   ------------------------------------------------------------------------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chip {
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.area-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* -------------------------------------------------------------------------
   18. Page hero (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--rose-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   19. Footer (minimal — copyright + socials on one line)
   ------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 1.75rem;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.footer-socials a:hover { background: var(--rose-light); transform: translateY(-2px); }

/* -------------------------------------------------------------------------
   20. Utility
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   21. Responsive breakpoints
   ------------------------------------------------------------------------- */
@media (min-width: 720px) {
  .header-phone { display: inline-flex; align-items: center; gap: 0.4rem; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse .split-media,
  .split-row.reverse .split-copy { order: initial; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-sticker { left: 50%; transform: translateX(-50%) rotate(-2deg); bottom: -16px; }
}
