/* ============================================
   PK Wellness — Design Tokens
============================================ */
:root {
  --gold: #b8912f;
  --gold-light: #d9b45c;
  --gold-dark: #8f6f1f;
  --black: #0d0d0d;
  --charcoal: #17171a;
  --charcoal-2: #1f1f23;
  --cream: #faf7f0;
  --ivory: #fffdf8;
  --text-dark: #1c1a16;
  --text-muted: #6b6558;
  --text-light: #f4efe2;
  --text-light-muted: #cfc6b0;
  --border-soft: #e9e2d0;
  --shadow: 0 20px 40px rgba(13, 13, 13, 0.12);
  --radius: 6px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", Arial, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.6em;
  display: block;
}
.eyebrow-light { color: var(--gold-light); }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; }
.hero-brand-line { font-size: 0.9rem; color: var(--gold-dark); max-width: 640px; margin-top: -0.6em; }
.lead-light { color: var(--text-light-muted); }
.section-title { text-align: center; margin-bottom: 0.3em; }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 2.2em; }
.wrap > .section-title, section .section-title { text-align: center; }

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1508;
}
.btn-gold:hover { filter: brightness(1.08); color: #1a1508; transform: translateY(-1px); }
.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline:hover { background: var(--black); color: var(--ivory); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--text-light);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6em 0; }
.cta-row-center { justify-content: center; text-align: center; }

.link-arrow {
  display: inline-block;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================
   Header
============================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ivory); box-shadow: 0 1px 0 var(--border-soft); }
.topbar { background: var(--black); color: var(--text-light-muted); font-size: 0.78rem; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 7px 24px;
  flex-wrap: wrap;
}
.topbar-phone { color: var(--gold-light); font-weight: 500; }
.topbar-areas { flex: 1; text-align: center; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.brand-logo { height: 58px; width: auto; }

.main-nav > ul { display: flex; align-items: center; gap: 28px; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
}
.main-nav > ul > li > a:hover { color: var(--gold-dark); }
.has-dropdown > a::after { content: " \25BE"; font-size: 0.7em; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 10px 0;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a { display: block; padding: 8px 20px; font-weight: 400; font-size: 0.9rem; }
.dropdown li a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--black); display: block; }

/* ============================================
   Hero
============================================ */
.hero { position: relative; color: var(--text-light); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.88) 20%, rgba(10,10,10,0.55) 65%, rgba(10,10,10,0.35) 100%);
}
.hero-content { position: relative; padding: 100px 24px 90px; max-width: 720px; }
.hero-content h1 { color: #fff; margin-bottom: 0.35em; }
.hero-rating {
  color: var(--gold-light);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  margin: 1.1em 0 0;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 0.9em;
  padding-top: 1.1em;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}
.trust-badges li svg { color: var(--gold-light); flex-shrink: 0; }

/* ============================================
   Sections & Layout Grids
============================================ */
.section { padding: 78px 0; }
.section-alt { background: var(--cream); }
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('/images/ambiance-3-sm.webp') center 30%/cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0.78));
  z-index: -1;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #fff; }
.page-hero .lead { margin: 0 auto; color: var(--text-light-muted); }

.intro-grid, .two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.two-col-media .intro-media { order: -1; }
.intro-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 3/2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 0.4em; font-size: 1.2rem; }
.card-body h3 a { color: var(--black); }
.card-body p { font-size: 0.92rem; margin-bottom: 0.9em; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-from { font-weight: 600; color: var(--gold-dark); font-size: 0.88rem; }
.card-link { font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.area-response { font-size: 0.85rem; color: var(--gold-dark); font-weight: 500; }
.post-date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 0.4em; }

.check-list li {
  position: relative;
  padding: 8px 0 8px 38px;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1508;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(184, 145, 47, 0.35);
}

/* ============================================
   Decorative components
============================================ */
.section-divider {
  display: flex;
  justify-content: center;
  color: var(--gold);
  width: 160px;
  margin: 0 auto 2.2em;
}
.section-divider svg { width: 100%; height: auto; display: block; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 2.4em auto;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--black);
  max-width: 640px;
}
.pull-quote cite {
  display: block;
  margin-top: 0.5em;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.callout-box {
  background: linear-gradient(135deg, rgba(184, 145, 47, 0.09), rgba(184, 145, 47, 0.02));
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2em 0;
}
.callout-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5em;
  display: block;
}
.callout-box p:last-child { margin-bottom: 0; }

.framed-image { position: relative; }
.framed-image::before,
.framed-image::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}
.framed-image::before {
  top: -12px; left: -12px;
  border-width: 2px 0 0 2px;
}
.framed-image::after {
  bottom: -12px; right: -12px;
  border-width: 0 2px 2px 0;
}

.section-alt {
  background-image: radial-gradient(circle, rgba(184, 145, 47, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Process steps */
.process-steps { display: grid; gap: 22px; counter-reset: step; }
.process-steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem;
}
.process-steps li p { margin: 0; padding-top: 6px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 2em;
}
.step-card { text-align: center; padding: 20px; }
.step-card .step-num { margin: 0 auto 14px; }
.step-card p { font-size: 0.9rem; }

/* Feature grid (about page) */
.stats-section { padding: 50px 0; background: var(--black); }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold-light); }
.stat-item span { font-size: 0.82rem; color: var(--text-light-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-item {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,145,47,0.14), rgba(184,145,47,0.03));
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-item h3 { color: var(--gold-dark); font-size: 1.1rem; }
.feature-item p { font-size: 0.92rem; margin: 0; }

/* Area pills */
.area-pill-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-pill {
  padding: 10px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--ivory);
}
.area-pill:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }

/* Offers */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card { background: var(--ivory); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.offer-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.offer-body { padding: 18px 20px 22px; }
.offer-body h3 { font-size: 1.1rem; color: var(--gold-dark); }
.offer-body p { font-size: 0.9rem; margin: 0; }

/* Gallery */
.gallery-carousel { display: flex; align-items: center; gap: 22px; margin-top: 2em; }
.gallery-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 18px;
  scrollbar-width: none;
  flex: 1;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 auto; width: min(380px, 68vw); scroll-snap-align: start; }
.gallery-slide img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-nav {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--ivory);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-nav:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }

/* Testimonials */
.testimonials { padding: 78px 0; background: var(--black); color: var(--text-light); }
.testimonials .section-title { color: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 2em; }
.testimonial { border-left: 2px solid var(--gold); padding-left: 20px; margin: 0; }
.testimonial p { color: var(--text-light-muted); font-style: italic; font-size: 0.96rem; }
.testimonial cite { color: var(--gold-light); font-style: normal; font-size: 0.85rem; font-weight: 500; }

/* Accordion */
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }
.accordion-item {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.accordion-item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--black);
  list-style: none;
  position: relative;
  padding-right: 26px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  font-size: 1.3rem; color: var(--gold-dark);
}
.accordion-item[open] summary::after { content: "\2212"; }
.accordion-item p { margin: 12px 0 0; font-size: 0.94rem; }

/* Map section */
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 360px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--black), var(--charcoal-2));
  color: var(--text-light);
  padding: 66px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--text-light-muted); max-width: 560px; margin: 0 auto; }
.cta-banner .cta-row { justify-content: center; }
.cta-banner-inline { border-radius: var(--radius); margin-top: 3em; padding: 46px 30px; }

/* Service / Area hero */
.service-hero { padding: 60px 0 20px; background: var(--cream); }
.service-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.service-facts { display: flex; gap: 28px; margin: 1.4em 0; flex-wrap: wrap; }
.service-facts strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold-dark); }
.service-facts span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.fact-item { display: flex; align-items: center; gap: 12px; }
.fact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,145,47,0.14), rgba(184,145,47,0.03));
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fact-text { display: block; }
.service-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* Breadcrumbs */
.breadcrumbs { padding: 14px 24px; font-size: 0.82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; max-width: var(--container); margin: 0 auto; padding: 0 0; }
.breadcrumbs li { color: var(--text-muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--border-soft); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold-dark); }

/* Blog post */
.post-wrap { max-width: 780px; }
.post-header { text-align: center; padding: 20px 0 30px; }
.post-meta { font-size: 0.85rem; color: var(--text-muted); }
.post-media { margin-bottom: 2em; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.post-media img { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.post-body h2 { margin-top: 1.4em; font-size: 1.5rem; }
.post-body ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.post-body ul li { margin-bottom: 0.4em; color: var(--text-muted); }
.post-body p { font-size: 1.02rem; }
.post-body a { text-decoration: underline; text-underline-offset: 2px; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 1.8em 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--black);
}
.post-body blockquote p { margin-bottom: 0; font-size: inherit; }
.post-body .callout-box { font-family: var(--font-sans); }
.post-body .callout-box p { font-size: 0.94rem; }

.related-services { margin-top: 3em; }
.related-services-grid { margin-top: 1.4em; grid-template-columns: repeat(2, 1fr); }

/* Legal pages */
.legal-page { max-width: 800px; margin: 0 auto; }
.legal-page h2 { font-size: 1.3rem; margin-top: 1.4em; }
.legal-page ul { list-style: disc; padding-left: 1.4em; }
.legal-page ul li { color: var(--text-muted); margin-bottom: 0.4em; }

/* 404 */
.not-found-section { text-align: center; padding: 130px 0; }

/* Contact page */
.contact-card, .contact-info { background: var(--ivory); }
.enquiry-form { display: grid; gap: 4px; }
.enquiry-form label { font-size: 0.82rem; font-weight: 500; margin-top: 12px; color: var(--text-dark); }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-dark);
}
.enquiry-form button { margin-top: 20px; }
.contact-info-list li { padding: 8px 0; border-bottom: 1px dashed var(--border-soft); font-size: 0.95rem; }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info .map-embed { margin: 1.4em 0 0.6em; }

/* ============================================
   Footer
============================================ */
.site-footer { background: var(--black); color: var(--text-light-muted); padding: 44px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col { min-width: 0; overflow-wrap: anywhere; }
.footer-logo { height: 40px; width: auto; margin-bottom: 10px; }
.footer-col h3 { color: var(--gold-light); font-size: 0.92rem; margin-bottom: 0.7em; }
.footer-accordion summary { cursor: pointer; list-style: none; position: relative; padding-right: 20px; }
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary h3 { display: inline; margin-bottom: 0; }
.footer-accordion summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  color: var(--gold-light); font-size: 1rem; display: none;
}
.footer-accordion[open] summary::after { content: "\2212"; }
.footer-col ul li { margin-bottom: 6px; font-size: 0.84rem; line-height: 1.3; }
.footer-col a { color: var(--text-light-muted); }
.footer-col a:hover { color: var(--gold-light); }
.footer-about p { font-size: 0.85rem; color: var(--text-light-muted); margin-bottom: 0.8em; }
.footer-view-all { display: inline-block; margin-top: 4px; font-size: 0.82rem; font-weight: 500; color: var(--gold-light); }
.footer-social { display: flex; gap: 8px; margin-top: 8px; }
.footer-social a {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.footer-contact-list li { margin-bottom: 6px; font-size: 0.84rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 16px 24px;
  font-size: 0.78rem;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--text-light-muted); }

/* ============================================
   Sticky mobile CTA bar
============================================ */
.sticky-cta { display: none; }

/* ============================================
   Responsive
============================================ */
@media (max-width: 980px) {
  .intro-grid, .two-col, .service-hero-grid, .map-grid { grid-template-columns: 1fr; }
  .two-col-media .intro-media { order: 0; }
  .card-grid, .feature-grid, .offers-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar-areas { display: none; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    background: var(--ivory);
    padding: 90px 26px 26px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    z-index: 90;
  }
  .main-nav.is-open { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.2); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a { display: block; padding: 12px 0; width: 100%; }
  .has-dropdown .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 14px;
    width: 100%;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-toggle { display: flex; }

  .card-grid, .feature-grid, .offers-grid, .testimonial-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-nav { display: none; }
  .gallery-slide { width: 82vw; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .hero-content { padding: 70px 20px 130px; }
  .section { padding: 54px 0; }

  .site-footer { padding-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; padding-bottom: 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-accordion summary::after { display: block; }
  .footer-accordion:not([open]) ul,
  .footer-accordion:not([open]) .footer-view-all { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 14px 24px; }

  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 80;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }
  .sticky-cta-btn {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }
  .sticky-call { background: var(--black); color: #fff; }
  .sticky-whatsapp { background: #25D366; color: #fff; }

  body { padding-bottom: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}
