/* Mellow Cleaning — "Crisp & Professional"
   White base, ice-blue tint, deep navy, fresh aqua accent.
   Headings: Archivo (700/800). Body: Source Sans 3. One Caveat signature. */

:root {
  --white: #FFFFFF;
  --tint: #F2F6F8;       /* ice blue-gray section band */
  --navy: #12304E;       /* headers, text, dark bands */
  --navy-deep: #0D2440;  /* navy hover */
  --aqua: #1FA9B8;       /* accent: borders, handles, badges, buttons-on-navy */
  --aqua-ink: #0E6E79;   /* darkened aqua for links/small text on white (AA) */
  --slate: #33414E;      /* body text */
  --line: #D9E2E8;       /* crisp hairline */
  --line-navy: rgba(255,255,255,0.18);

  --head: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", "Segoe Script", cursive;

  --maxw: 1200px;
  --radius: 5px;
  --shadow: 0 12px 28px -18px rgba(18, 48, 78, 0.45);
  --shadow-strong: 0 22px 46px -26px rgba(18, 48, 78, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Never allow sideways scroll; kill overscroll bounce. clip keeps sticky working. */
html, body {
  overflow-x: clip;
  overscroll-behavior: none;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3 {
  font-family: var(--head);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

a { color: var(--aqua-ink); }

a:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
  border-radius: 3px;
}
.page-hero a:focus-visible,
.final-cta a:focus-visible,
.ba-section a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--aqua);
}

.script {
  font-family: var(--script);
  color: var(--aqua-ink);
  font-weight: 600;
  font-size: 1.15em;
}

/* Eyebrow: crisp uppercase label with a short aqua rule */
.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--aqua-ink);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--aqua);
}
.eyebrow-light { color: #7FD3DD; }
.eyebrow-light::before { background: #7FD3DD; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.9rem 1.6rem;
  transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; }

/* Primary phone/CTA button: navy fill, white text (strong on light) */
.btn-call, .btn-clay {
  flex-direction: column;
  gap: 0.05rem;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.8rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-color: var(--navy);
}
.btn-call:hover, .btn-clay:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-call-top { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; opacity: 0.92; }
.btn-call-num { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.005em; }

/* Ghost button: navy outline on light */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--tint); border-color: var(--navy); }

/* On dark navy bands: aqua-filled primary with navy text, aqua-outline ghost */
.hero-copy .btn-call, .page-hero .btn-call, .final-cta .btn-call, .ba-section .btn-call,
.hero-copy .btn-clay, .page-hero .btn-clay, .final-cta .btn-clay, .ba-section .btn-clay {
  background: var(--aqua);
  color: var(--navy);
  border-color: var(--aqua);
}
.hero-copy .btn-call:hover, .page-hero .btn-call:hover, .final-cta .btn-call:hover, .ba-section .btn-call:hover,
.hero-copy .btn-clay:hover, .page-hero .btn-clay:hover, .final-cta .btn-clay:hover, .ba-section .btn-clay:hover {
  background: #33bccb; border-color: #33bccb;
}
/* Ghost buttons sitting on a navy band become light-outlined */
.hero-copy .btn-ghost, .page-hero .btn-ghost, .final-cta .btn-ghost, .ba-section .btn-ghost,
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}
.hero-copy .btn-ghost:hover, .page-hero .btn-ghost:hover, .final-cta .btn-ghost:hover, .ba-section .btn-ghost:hover,
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.brand-mark {
  font-family: var(--head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--aqua-ink);
}

.nav-menu {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--navy);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover { border-bottom-color: var(--aqua); }

.nav-book {
  background: var(--aqua);
  color: var(--navy) !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius);
  border-bottom: 0 !important;
  font-weight: 700;
}
.nav-book:hover { background: #33bccb; }

.header-call {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  line-height: 1.1;
}
.header-call-label { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.75; }
.header-call-num { font-family: var(--head); font-weight: 800; font-size: 0.98rem; }
.header-call:hover { background: var(--navy-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  order: 3;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ---------- Section rhythm ---------- */
section { padding: clamp(3rem, 6.5vw, 5.5rem) 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0;
  align-items: stretch;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.hero-copy {
  background: var(--navy);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-copy h1 { color: #fff; }
.hero-copy .eyebrow { color: #7FD3DD; }
.hero-copy .eyebrow::before { background: #7FD3DD; }
.hero-lede { font-size: 1.14rem; max-width: 40ch; color: #D6E2EC; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin: 1.5rem 0 1.4rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-row li {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #EAF3F8;
  border: 1px solid var(--line-navy);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.05);
}
.hero-image {
  position: relative;
  margin-right: calc(-1 * max(0px, (100vw - var(--maxw)) / 2) - 1.5rem);
}
.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ---------- Testimonials ---------- */
.testimonials { max-width: var(--maxw); margin: 0 auto; }
.section-quiet {
  text-align: left;
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.tst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.tst-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--aqua);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 1.8rem;
  margin: 0;
  position: relative;
}
.tst-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.3rem;
  font-family: var(--head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.14;
}
.tst-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.tst-card figcaption { font-weight: 700; color: var(--aqua-ink); font-size: 0.95rem; }
.tst-b { transform: translateY(1.75rem); }

/* ---------- Story ---------- */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.story-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
}
.signature { margin-top: 1.5rem; }
.signature .script { font-size: 2.1rem; }

/* ---------- Services ---------- */
.services { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-head { max-width: 46ch; margin: 0 auto 2.5rem; }
.svc-head .svc-intro { color: var(--slate); font-size: 1.06rem; }
.svc-list {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  border-left: 4px solid var(--aqua);
}
.svc-list h3 { margin-bottom: 0.4rem; }
.svc-list p { margin: 0; font-size: 0.97rem; }
/* non-uniform: wide navy lead card + a photo card */
.svc-card-wide {
  grid-column: span 2;
  background: var(--navy) !important;
  color: #E7EEF4;
  border-left-color: var(--aqua) !important;
  border-color: var(--navy) !important;
}
.svc-card-wide h3 { color: #fff; }
.svc-card-photo {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-left: 0 !important;
  grid-row: span 2;
}
.svc-card-photo img { width: 100%; height: 190px; object-fit: cover; }
.svc-card-photo > div { padding: 1.3rem 1.4rem; border-left: 4px solid var(--aqua); }
.svc-more { max-width: var(--maxw); margin: 2rem auto 0; }
.svc-strip { max-width: var(--maxw); margin: 2.5rem auto 0; }
.svc-strip img { width: 100%; border-radius: var(--radius); aspect-ratio: 12 / 5; object-fit: cover; }

/* ---------- Rentals / STR ---------- */
.rentals {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.rentals-points { list-style: none; padding: 0; margin: 1.3rem 0 1.8rem; }
.rentals-points li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--navy);
}
.rentals-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 11px; height: 11px;
  background: var(--aqua);
  transform: rotate(45deg);
}
.rentals-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn-call-inline { align-self: flex-start; }
.rentals-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ---------- Before / after slider (navy band) ---------- */
.ba-section {
  background: var(--navy);
  color: #fff;
}
.ba-section .eyebrow { color: #7FD3DD; }
.ba-section .eyebrow::before { background: #7FD3DD; }
.ba-head { max-width: var(--maxw); margin: 0 auto 2rem; }
.ba-section .ba-head h2 { color: #fff; }
.ba-section .ba-head p { color: #C6D6E2; }
.ba-slider {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  aspect-ratio: 8 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--tint);
  border: 1px solid var(--line-navy);
}
.ba-stack { display: grid; gap: 2rem; max-width: var(--maxw); margin: 0 auto; }
.ba-stack .ba-slider { max-width: none; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before { z-index: 1; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-handle {
  position: absolute;
  top: 0;
  left: var(--pos, 50%);
  width: 44px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle::before { content: ""; position: absolute; width: 3px; height: 100%; background: #fff; }
.ba-handle::after {
  content: "\2194";
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--aqua);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.ba-range { position: absolute; left: 0; bottom: 0; width: 100%; margin: 0; opacity: 0; height: 44px; cursor: ew-resize; z-index: 3; }
.ba-range:focus-visible { opacity: 0.2; }
.ba-vis-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ba-tag {
  position: absolute;
  bottom: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(18, 48, 78, 0.82);
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
.ba-tag-before { left: 0.9rem; }
.ba-tag-after { right: 0.9rem; }

/* ---------- How it works (tint band, stepped) ---------- */
.how { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-head { max-width: var(--maxw); margin: 0 auto 2.5rem; }
.how-steps {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.how-steps li {
  padding: 0 1.6rem;
  border-left: 1px solid var(--line);
  position: relative;
}
.how-steps li:first-child { padding-left: 0; border-left: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.how-steps h3 { margin-bottom: 0.4rem; }
.how-steps p { margin: 0; }

/* ---------- Service area ---------- */
.area {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.area-image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5 / 6; object-fit: cover; border: 1px solid var(--line); }
.area-towns { font-family: var(--head); color: var(--navy); font-weight: 600; font-size: 1.12rem; line-height: 1.8; }
.area-note { color: var(--aqua-ink); font-weight: 700; }

/* ---------- Final CTA (navy band) ---------- */
.final-cta { background: var(--navy); }
.final-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { color: #fff; }
.final-lede { color: #C6D6E2; font-size: 1.12rem; margin-bottom: 1.8rem; }
.final-actions { justify-content: center; }

/* ---------- Quote / booking forms ---------- */
.quote { max-width: 820px; margin: 0 auto; }
.quote-head { margin-bottom: 2rem; }
.quote-form, .booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.quote-form label, .booking-form label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
  display: block;
}
.quote-form input, .quote-form select, .quote-form textarea,
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
  width: 100%;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus,
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: 3px solid var(--aqua);
  outline-offset: 1px;
  border-color: var(--aqua);
}
.btn-submit { grid-column: 1 / -1; justify-self: start; }
.form-alt { grid-column: 1 / -1; margin: 0; color: var(--navy); font-weight: 600; }
.form-alt a { color: var(--aqua-ink); }
.booking-note { grid-column: 1 / -1; font-size: 0.88rem; color: var(--slate); }

/* Booking WIP block */
.form-wrap.wip { text-align: center; }
.form-wrap.wip p { max-width: 48ch; margin-left: auto; margin-right: auto; }
.form-wrap.wip .final-actions { justify-content: center; }

/* ---------- Page hero (subpages, navy) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: clamp(2.6rem, 6vw, 4.5rem) 1.5rem; }
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #C6D6E2; font-size: 1.14rem; max-width: 54ch; }
.page-hero .eyebrow { color: #7FD3DD; }
.page-hero .eyebrow::before { background: #7FD3DD; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb { max-width: var(--maxw); margin: 0 auto; padding: 1rem 1.5rem 0; font-size: 0.85rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; color: var(--slate); }
.breadcrumb a { color: var(--aqua-ink); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "\203A"; margin-left: 0.4rem; color: var(--slate); }

/* ---------- Generic content ---------- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }

.detail-block {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.detail-block:nth-child(even) { direction: rtl; }
.detail-block:nth-child(even) > * { direction: ltr; }
.detail-block img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 6 / 5; object-fit: cover; width: 100%; border: 1px solid var(--line); }
.detail-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.detail-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.5rem; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 10px; height: 10px; background: var(--aqua); transform: rotate(45deg); }

/* Service anchor cards */
.svc-detail { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 1.2rem; }
.svc-detail article {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius);
  padding: 1.8rem;
  scroll-margin-top: 90px;
}
.svc-detail article h2 { margin-bottom: 0.4rem; font-size: 1.5rem; }

/* Towns grid */
.town-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.town-grid li { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--aqua); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.town-grid h3 { font-size: 1.05rem; margin: 0 0 0.2rem; }
.town-grid p { margin: 0; font-size: 0.9rem; color: var(--slate); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 0.7rem; }
.faq summary {
  font-family: var(--head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0.1rem; top: -0.15rem; font-size: 1.6rem; color: var(--aqua); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] { border-left: 4px solid var(--aqua); }
.faq details p { margin: 0.8rem 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #E7EEF4; padding: 3.2rem 1.5rem 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.footer-brand { max-width: 40ch; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-sub { color: #7FD3DD; }
.footer-brand p { color: rgba(231, 238, 244, 0.72); margin-top: 0.6rem; }
.footer-links h3, .footer-contact h3 {
  color: #7FD3DD;
  font-family: var(--head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.8rem;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(231,238,244,0.82); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }
.footer-legal {
  max-width: var(--maxw);
  margin: 2.2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-navy);
  font-size: 0.82rem;
  color: rgba(231,238,244,0.6);
}

.learn-more { font-family: var(--head); font-weight: 700; color: var(--aqua-ink); text-decoration: none; border-bottom: 2px solid transparent; }
.learn-more:hover { border-bottom-color: var(--aqua); }

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .svc-list, .how-steps { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-radius: var(--radius) var(--radius) 0 0; }
  .hero-image { margin-right: -1.5rem; }
  .hero-image img { aspect-ratio: 16 / 10; border-radius: 0 0 var(--radius) 0; height: auto; }
  .story, .rentals, .area, .detail-block { grid-template-columns: 1fr; }
  .detail-block:nth-child(even) { direction: ltr; }
  .story-image, .area-image, .rentals-image { max-width: 480px; }
  .how-steps li { border-left: 0; padding-left: 0; }
  .svc-card-wide { grid-column: span 2; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-call-label { display: none; }
  .header-call { padding: 0.5rem 0.8rem; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-menu.open { max-height: 640px; }
  .nav-menu li { border-top: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 0.95rem 1.5rem; }
  .nav-book { border-radius: 0 !important; }

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

  .svc-list, .how-steps, .tst-grid, .quote-form, .booking-form { grid-template-columns: 1fr; }
  .svc-card-wide, .svc-card-photo { grid-column: auto; grid-row: auto; }
  .tst-b { transform: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .rentals-actions .btn, .final-actions .btn, .btn-call, .btn-clay, .btn-ghost { width: 100%; }
  .ba-slider { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
