/* =============================================================
   Super Shine Cleaning — stylesheet
   Brand tokens from the Super Shine design system.
   Layout/structure pattern inspired by CNC / Cherries & Cream
   local-service-business builds. Standalone, no framework.
   ============================================================= */

:root {
  /* Color */
  --porcelain: #FDFCFB;
  --soft-gray: #F4F1F3;
  --ink: #221A1F;
  --ink-soft: #5C525A;
  --raspberry: #D0245E;
  --raspberry-deep: #A91A4C;
  --pink-tint: #FBE9F0;
  --plum: #2B1B23;
  --line: #E8E2E6;
  --paper: #FFFFFF;
  --green: #2F9E5E;
  --green-tint: #E7F6EE;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1100px;
  --radius: 14px;
  --radius-feature: 18px;
  --radius-input: 10px;
  --radius-pill: 999px;

  /* Spacing scale */
  --gap: 1rem;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(34, 26, 31, 0.06);
  --shadow-md: 0 14px 40px rgba(34, 26, 31, 0.10);
  --shadow-lg: 0 26px 70px rgba(43, 27, 35, 0.16);
  --ring: 0 0 0 3px rgba(208, 36, 94, 0.28);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--raspberry-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--raspberry); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.35rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--pink-tint); }
.section--gray { background: var(--soft-gray); }
.section--paper { background: var(--paper); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.75rem; } .mt-4 { margin-top: 2.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--raspberry-deep);
  background: var(--pink-tint);
  padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
  max-width: 100%; flex-wrap: wrap;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* Skip link */
.skip-link {
  position: absolute; left: 0.5rem; top: -3rem;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 8px;
  z-index: 200; transition: top 0.2s ease;
}
.skip-link:focus { top: 0.5rem; color: #fff; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Brand flourishes ---------- */
/* organic blob highlight sitting behind key words */
.blob { position: relative; z-index: 0; display: inline; white-space: nowrap; }
.blob::before {
  content: ""; position: absolute; inset: 6% -6% 4% -6%;
  background: var(--pink-tint);
  border-radius: 38% 72% 55% 45% / 70% 45% 55% 30%;
  transform: rotate(-1.4deg);
  z-index: -1;
}
.blob--raspberry::before { background: rgba(208, 36, 94, 0.16); }

/* hand-drawn wipe underline highlight */
.wipe { position: relative; z-index: 0; display: inline; }
.wipe::before {
  content: ""; position: absolute; inset: 8% -4% 7% -3%;
  background: var(--pink-tint);
  border-radius: 38% 72% 55% 45% / 70% 45% 55% 30%;
  transform: rotate(-1.2deg);
  z-index: -1;
}

/* sparkle mark */
.sparkle { color: var(--raspberry); display: inline-block; line-height: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--raspberry); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--raspberry-deep); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--raspberry-deep); border-color: var(--raspberry); }
.btn--outline:hover { background: var(--raspberry); color: #fff; }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--raspberry); color: var(--raspberry-deep); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--light { background: #fff; color: var(--raspberry-deep); }
.btn--light:hover { background: var(--pink-tint); color: var(--raspberry-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 251, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand .sparkle { font-size: 1.15rem; }
.brand b { color: var(--raspberry); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.nav a.nav-link {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem;
  padding: 0.5rem 0.7rem; border-radius: 8px; transition: color 0.15s ease, background 0.15s ease;
}
.nav a.nav-link:hover, .nav a.nav-link[aria-current="page"] { color: var(--raspberry-deep); background: var(--pink-tint); }

/* dropdown */
.has-menu { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 244px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 0.4rem; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 0.55rem 0.75rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.submenu a:hover { background: var(--pink-tint); color: var(--raspberry-deep); }
.caret { font-size: 0.7em; opacity: 0.7; }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.header-cta .btn { white-space: nowrap; }
.header-cta .btn { padding: 0.6rem 1.15rem; font-size: 0.95rem; }
.header-phone { font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--raspberry-deep); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--paper);
  border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(208,36,94,0.08), transparent 60%),
    radial-gradient(50% 50% at 6% 96%, rgba(208,36,94,0.06), transparent 60%),
    var(--porcelain);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 0.75rem; }
.hero .lede { margin-top: 1.25rem; max-width: 46ch; }
.hero-cta { margin-top: 1.9rem; }
.hero-trust { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: center; color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; }
.hero-trust .dot { color: var(--raspberry); }

/* ---------- Placeholder media ---------- */
.ph {
  position: relative; background:
    repeating-linear-gradient(45deg, rgba(208,36,94,0.05) 0 14px, rgba(208,36,94,0.09) 14px 28px);
  border: 2px dashed rgba(208,36,94,0.35); border-radius: var(--radius-feature);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--raspberry-deep); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  padding: 1rem; min-height: 180px; min-width: 0; overflow: hidden;
}
.ph small { display: block; font-weight: 600; color: var(--ink-soft); margin-top: 0.35rem; font-size: 0.78rem; letter-spacing: 0; }
/* aspect placeholders drop min-height so aspect-ratio derives height from the
   available width (no forced min-width, no grid blowout on small screens) */
.ph--hero { aspect-ratio: 4 / 3.2; min-height: 0; box-shadow: var(--shadow-md); }
.ph--wide { aspect-ratio: 16 / 9; min-height: 0; }
.ph--square { aspect-ratio: 1 / 1; min-height: 0; }
.ph--portrait { aspect-ratio: 3 / 4; min-height: 0; max-width: 460px; margin-inline: auto; width: 100%; }
.ph--video::after {
  content: "▶"; position: absolute; width: 62px; height: 62px; display: grid; place-items: center;
  background: rgba(255,255,255,0.92); color: var(--raspberry); border-radius: 999px; font-size: 1.3rem; box-shadow: var(--shadow-md);
}
.ph-tag {
  position: absolute; top: 0.6rem; left: 0.6rem; background: var(--ink); color: #fff;
  font-size: 0.68rem; padding: 0.2rem 0.55rem; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--plum); color: #fff; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 2rem; }
.trust-item { text-align: center; }
.trust-item b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1; }
.trust-item span { color: rgba(255,255,255,0.72); font-size: 0.88rem; font-weight: 600; }

/* ---------- Section head ---------- */
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: 0.9rem; }

/* ---------- Cards / grids ---------- */
/* prevent grid/flex blowout: let tracks shrink to the container instead of
   being pushed wider by aspect-ratio media or long inline content */
.hero-grid > *, .split > *, .grid > *, .contact-grid > * { min-width: 0; }

.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-feature);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(208,36,94,0.35); }
.card h3 { margin-top: 0.9rem; }
.card p { margin-top: 0.55rem; font-size: 1rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-weight: 700; text-decoration: none; color: var(--raspberry-deep); }
.card .card-link:hover { gap: 0.6rem; color: var(--raspberry); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--pink-tint); color: var(--raspberry); font-size: 1.5rem;
}

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.feature-list { list-style: none; padding: 0; margin-top: 1.5rem; display: grid; gap: 0.85rem; }
.feature-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--green-tint); color: var(--green);
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 800; margin-top: 2px;
}

/* steps / process */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-feature); padding: 1.6rem; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.4rem; color: var(--raspberry); font-weight: 600;
  display: inline-block; margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.2rem; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery .ph { min-height: 210px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ba-pair .ph { min-height: 220px; }

/* testimonials */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-feature); padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { color: var(--raspberry); letter-spacing: 0.12em; font-size: 1rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; color: var(--ink); margin-top: 0.8rem; }
.quote-card .who { margin-top: auto; padding-top: 1.1rem; font-weight: 700; color: var(--ink); }
.quote-card .who span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.9rem; }
.placeholder-note {
  background: var(--pink-tint); border: 1px dashed rgba(208,36,94,0.4); border-radius: var(--radius);
  padding: 1rem 1.25rem; color: var(--raspberry-deep); font-weight: 600; font-size: 0.95rem;
}

/* service-area chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.5rem 1rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.chip b { color: var(--raspberry-deep); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--raspberry) 0%, var(--raspberry-deep) 100%); color: #fff; border-radius: var(--radius-feature); padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: 0.8rem; }
.cta-band .btn-row { margin-top: 1.7rem; }
.cta-band .sparkle { color: #fff; }

/* FAQ */
.faq { display: grid; gap: 0.85rem; max-width: 820px; margin-inline: auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.25rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 0; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--raspberry); font-size: 1.5rem; font-weight: 400; flex: none; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: 1.2rem; margin-top: -0.2rem; }

/* page hero (interior) */
.page-hero { background: var(--pink-tint); padding-block: clamp(2.5rem, 6vw, 4rem); position: relative; }
.page-hero .breadcrumb { font-size: 0.88rem; color: var(--ink-soft); font-weight: 600; }
.page-hero .breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--raspberry-deep); }
.page-hero h1 { margin-top: 0.7rem; }
.page-hero p { margin-top: 0.9rem; max-width: 58ch; }

/* prose (blog / legal) */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p { margin-top: 1rem; color: var(--ink-soft); }
.prose ul, .prose ol { margin-top: 1rem; padding-left: 1.3rem; color: var(--ink-soft); }
.prose li { margin-top: 0.5rem; }
.prose a { font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--line); margin-block: 2.2rem; }
.post-meta { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }

/* blog cards */
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-feature); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card .ph { border: none; border-radius: 0; min-height: 190px; }
.post-card .post-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.25rem; }
.post-card .post-body p { margin-top: 0.5rem; font-size: 0.98rem; }
.post-card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 700; text-decoration: none; color: var(--raspberry-deep); }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-detail { display: flex; gap: 0.9rem; align-items: flex-start; margin-top: 1.3rem; }
.contact-detail .ci { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--pink-tint); color: var(--raspberry); display: grid; place-items: center; font-size: 1.15rem; }
.contact-detail b { display: block; color: var(--ink); }
.contact-detail a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { color: var(--raspberry-deep); }

/* form */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-feature); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.field { margin-top: 1.05rem; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.4rem; }
.field .req { color: var(--raspberry); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-input); background: var(--porcelain);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--raspberry); box-shadow: var(--ring); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field-hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }
.form-consent a { font-weight: 600; }
.grid-2-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: var(--raspberry); }
.footer-about { margin-top: 1rem; max-width: 34ch; color: rgba(255,255,255,0.66); font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin-top: 0.9rem; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--pink-tint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; }

/* ---------- Reveal animation ---------- */
/* Content is visible by default. It only starts hidden when JS is present
   (html.js), so no-JS users and crawlers always see everything. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn--outline { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0.15rem;
    background: var(--porcelain); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform 0.25s ease; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a.nav-link { padding: 0.8rem 0.7rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .has-menu { display: block; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0.5rem 0.75rem; min-width: 0; }
  .submenu a { font-size: 0.98rem; padding: 0.5rem; }
  .caret { display: none; }
}

@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .grid-2-fields { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { width: 100%; }
  .header-cta .btn { padding: 0.5rem 0.85rem; font-size: 0.9rem; }
  .header-phone { display: none; } /* phone lives in hero, menu, and footer; declutter small header */
}
@media (max-width: 400px) {
  /* very small screens: drop the header quote button, hamburger + hero CTAs carry it */
  .header-cta .btn--primary { display: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { background: #fff; }
}
