/* Tuvel Plumbing & Relining — white + #114cb0 + #020351 */
:root {
  --blue-900: #020351;
  --blue-800: #020351;
  --blue-600: #114cb0;
  --blue-500: #1a56c9;
  --blue-100: #e9eef9;
  --white: #ffffff;
  --page-bg: #e5e7eb;
  --text: #1a2b3c;
  --text-muted: #4a5f72;
  --accent: #114cb0;
  --shadow: 0 4px 24px rgba(2, 3, 81, 0.1);
  --shadow-soft: 0 2px 14px rgba(2, 3, 81, 0.06);
  --divider: rgba(17, 76, 176, 0.1);
  --radius: 10px;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    sans-serif;
  /* Match home hero: white strip under sticky header + pad before title */
  --header-to-page-gap: clamp(1.75rem, 6vw, 3.25rem);
  --page-title-pad-top: clamp(2rem, 5vw, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--page-bg);
}

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

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-500);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--blue-900);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header — same navy as footer */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-900);
  color: var(--blue-100);
  box-shadow: none;
}

.site-header__inner {
  /* Shared height for logo clip + Enquire + Menu (taller bar) */
  --header-ctrl-height: clamp(54px, 12vw, 72px);
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.8rem max(1.25rem, env(safe-area-inset-right, 0px)) 0.8rem
    max(1.25rem, env(safe-area-inset-left, 0px));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.4rem;
  min-height: calc(var(--header-ctrl-height) + 1.6rem);
}

.site-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  width: auto;
  min-width: 0;
  text-decoration: none;
  line-height: 0;
  margin: 0;
}

/* Logo — flush with header left inset (matches Menu distance from right) */
.site-header .site-logo.btn.btn--header-enquire {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-left: 0;
  justify-self: start;
  height: var(--header-ctrl-height);
  min-height: var(--header-ctrl-height);
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header .site-logo.btn.btn--header-enquire:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-logo:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* Logo image inside the button */
.site-logo__frame {
  --logo-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Same height as Menu / Enquire; width hugs the wordmark */
  height: var(--header-ctrl-height);
  width: calc(var(--header-ctrl-height) * 1.5);
  max-width: min(calc(var(--header-ctrl-height) * 1.5), 50vw);
  line-height: 0;
  border-radius: var(--logo-radius);
  border: none;
  box-sizing: border-box;
  isolation: isolate;
  transform: translateZ(0);
}

.site-logo__frame img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center 45%;
  flex-shrink: 0;
  border-radius: 0;
  /* Zoom so lettering fits inside the Menu-height frame */
  transform: scale(2.55);
  transform-origin: center center;
  transition: opacity 0.2s ease;
}

.site-header .site-logo.btn:hover .site-logo__frame img {
  opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
  .site-logo__frame img,
  .site-header .btn.btn--header-enquire {
    transition: none;
  }
}

.site-header__enquire {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin: 0;
  white-space: nowrap;
}

/* Header CTA + menu — same pill, same height as logo */
.site-header .btn.btn--header-enquire {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.2;
  box-sizing: border-box;
  min-height: var(--header-ctrl-height);
  height: var(--header-ctrl-height);
  padding: 0 clamp(1rem, 3vw, 1.35rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.site-header .btn.btn--header-enquire:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.nav-toggle {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin: 0;
}

/* Nav links only when Menu is opened (all screen sizes) */
.nav {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.nav.is-open {
  max-height: min(24rem, 85vh);
}

.nav:not(.is-open) ul {
  visibility: hidden;
}

.nav.is-open ul {
  visibility: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  color: var(--blue-100);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

.nav.is-open a {
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--blue-900);
  color: var(--blue-100);
  margin-top: 2.25rem;
  padding: 1.75rem max(1.25rem, env(safe-area-inset-left, 0px))
    1.75rem max(1.25rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  text-decoration-line: none;
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem 2.5rem;
}

@media (max-width: 520px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 1.35rem;
  }
}

.site-footer .site-footer__legal {
  flex: 0 0 100%;
  width: 100%;
  margin: 0.35rem 0 0;
  padding: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b4c0d4;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  flex: 0 1 auto;
}

.site-footer__contact-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-footer__contact-icon--google {
  width: 22px;
  height: 22px;
}

.site-footer__google-g-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.site-footer a.site-footer__contact-link--google .site-footer__contact-detail {
  font-weight: 700;
}

.site-footer__contact-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  width: 100%;
}

.site-footer a.site-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  font-weight: 600;
  text-decoration: none;
  text-decoration-line: none;
  color: inherit;
}

.site-footer a.site-footer__contact-link:hover {
  text-decoration: none;
  text-decoration-line: none;
  opacity: 0.88;
}

.site-footer a.site-footer__contact-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 0.85rem;
}

.site-footer__contact-icon svg {
  display: block;
}

.site-footer__contact-detail {
  line-height: 1.3;
}

.site-footer h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.site-footer__review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
}

.site-footer a.btn.btn--footer-google-review {
  display: inline-block;
  box-sizing: border-box;
  max-width: 10.25rem;
  padding: 1.15rem 0.7rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  border-radius: var(--radius);
  text-decoration: none;
  text-decoration-line: none;
  text-align: center;
  box-shadow: none;
}

.site-footer a.btn.btn--footer-google-review:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
  text-decoration-line: none;
  opacity: 1;
}

.site-footer a.btn.btn--footer-google-review:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Main — full viewport width; gutters on children */
main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 1.25rem;
  box-sizing: border-box;
}

main > section {
  box-sizing: border-box;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

/* Home — white canvas + hairline dividers between sections */
body[data-current="home"] main > section.home-section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

/* Home hero — plain white band, blue type & buttons */
body[data-current="home"] section.home-section--hero.hero {
  position: relative;
  isolation: isolate;
  margin: clamp(0.5rem, 2vw, 1rem) 0 0;
  padding-top: clamp(0.75rem, 2.5vw, 1.35rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: none;
  background: var(--page-bg);
  background-image: none;
}

body[data-current="home"] section.home-section--hero.hero::before {
  display: none;
}

body[data-current="home"] section.home-section--hero.hero .hero__inner {
  position: relative;
  z-index: 1;
}

body[data-current="home"] section.home-section--hero.hero h1 {
  color: var(--blue-900);
  text-shadow: none;
}

body[data-current="home"] section.home-section--hero.hero p {
  color: var(--blue-600);
  text-shadow: none;
}

body[data-current="home"] section.home-section--hero.hero p strong {
  color: inherit;
  font-weight: 700;
}

body[data-current="home"] section.home-section--hero.hero .btn-row .btn {
  box-shadow: none;
}

body[data-current="home"] section.home-section--hero.hero .btn--outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: transparent;
}

body[data-current="home"] section.home-section--hero.hero .btn--outline:hover {
  background: var(--blue-100);
  color: var(--blue-900);
  border-color: var(--blue-600);
}

body[data-current="home"] section.home-section--services {
  background: var(--page-bg);
  border-top: none;
  border-bottom: none;
}

body[data-current="home"] section.home-section--reviews.testimonials {
  margin-top: 0;
  border-top: none;
  background: var(--page-bg);
  box-shadow: none;
}

main > header,
main > div,
main > article {
  box-sizing: border-box;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

body:not([data-current="home"]) main > header:first-child {
  padding-top: var(--page-title-pad-top);
}

/* Hero — page grey; colour sits in header + footer */
.hero {
  background: var(--page-bg);
  color: var(--text);
  padding-top: 1.75rem;
  padding-bottom: 1.35rem;
  margin: 0 0 1.25rem;
  border-bottom: 1px solid var(--divider);
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    margin: 0 0 1.5rem;
  }
}

.hero__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.hero .btn-row {
  justify-content: center;
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

.hero p {
  margin: 0 auto 0.9rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.hero .btn--outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.hero .btn--outline:hover {
  background: var(--blue-100);
  color: var(--blue-900);
  border-color: var(--blue-600);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(17, 76, 176, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(17, 76, 176, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  filter: brightness(1.08);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Sections */
.section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--blue-900);
  margin: 0 auto 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid transparent;
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  transition: border-color 0.2s ease;
}

.section-title:hover {
  border-bottom-color: var(--blue-500);
}

.hero h1,
.section-title,
.service-card h3,
.site-footer h2 {
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 65ch;
}

main > header {
  text-align: center;
}

main > header .lead {
  margin-inline: auto;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 560px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(17, 76, 176, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 4px 22px rgba(2, 3, 81, 0.09);
  border-color: rgba(17, 76, 176, 0.22);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.service-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-card a {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: none;
}

.reviews-heading-stars {
  margin: -0.15rem auto 1.1rem;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: #f5b400;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(17, 76, 176, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue-600);
}

.testimonial--google .testimonial__rating {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--blue-900);
}

.testimonial__stars {
  letter-spacing: 0.06em;
  color: #c9a227;
}

.testimonial__rating-num {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial__google-link {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
}

.testimonial__google-link a {
  font-weight: 700;
  color: var(--blue-600);
}

.testimonial-google-attribution {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.testimonial-google-attribution a {
  font-weight: 600;
  color: var(--blue-600);
}

/* Google reviews widget (carousel + thumbnail cards, Trustindex-style) */
.google-reviews-widget {
  width: 100%;
}

.google-reviews-widget__frame {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.google-reviews-widget__frame:focus-visible {
  outline: none;
}

.google-reviews-widget__frame:focus-visible .google-reviews-widget__viewport {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

.google-reviews-widget__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 76, 176, 0.25);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(2, 3, 81, 0.08);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.google-reviews-widget__arrow:hover:not(:disabled) {
  background: var(--blue-100);
  border-color: var(--blue-500);
  box-shadow: 0 4px 14px rgba(17, 76, 176, 0.18);
}

.google-reviews-widget__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.google-reviews-widget__arrow:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

@media (max-width: 380px) {
  .google-reviews-widget__arrow {
    width: 2.35rem;
    height: 2.35rem;
  }

  .google-reviews-widget__arrow svg {
    width: 20px;
    height: 20px;
  }
}

.google-reviews-widget__viewport {
  flex: 1;
  min-width: 0;
  width: 100%;
  container-type: inline-size;
  container-name: gr-carousel;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 76, 176, 0.35) transparent;
  padding-bottom: 0.35rem;
  border-radius: var(--radius);
}

.google-reviews-widget__track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.google-review-card {
  position: relative;
  scroll-snap-align: start;
  flex: 0 0 min(360px, calc(100cqi - 1.5rem));
  max-width: 100%;
  box-sizing: border-box;
}

/* Small screens: one centered review at a time */
@media (max-width: 719px) {
  .google-reviews-widget__viewport {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
  }

  .google-reviews-widget__track {
    gap: 0;
  }

  .google-review-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .google-review-card__inner {
    align-items: center;
    text-align: center;
  }

  .google-review-card__header {
    justify-content: center;
  }

  /* webkit-box line-clamp breaks text-align:center on short reviews */
  .google-review-card__text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-align: center;
    width: 100%;
  }

  .google-review-card__meta {
    justify-content: center;
  }
}

@container gr-carousel (min-width: 880px) {
  .google-review-card {
    flex: 0 0 calc((100cqi - 2rem) / 3);
    min-width: 0;
  }
}

/* Fallback when container queries unsupported (~one card width on small screens still works) */
@supports not (container-type: inline-size) {
  @media (min-width: 960px) {
    .google-review-card {
      flex: 0 0 calc((min(1100px, 100vw - 3rem) - 2rem) / 3);
      min-width: 0;
    }
  }
}

.google-review-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(17, 76, 176, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 16px rgba(2, 3, 81, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.google-review-card:hover .google-review-card__inner {
  box-shadow: var(--shadow);
  border-color: rgba(17, 76, 176, 0.22);
}

.google-review-card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.google-review-card__thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.google-review-card__header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

.google-review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0;
}

.google-review-card__g {
  flex-shrink: 0;
}

.google-review-card__rating-row {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.2;
}

.google-review-card__stars {
  letter-spacing: 0.05em;
  color: #f5b400;
}

.google-review-card__rating-num {
  margin-left: 0.35rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-review-card__text {
  margin: 0 0 0.65rem;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 0;
}

.google-review-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  font-style: normal;
  color: var(--blue-900);
}

.google-review-card__time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-review-card__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
}

.google-review-card__link:hover {
  color: var(--blue-500);
  text-decoration: underline;
}

/* Services page detail blocks */
.service-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--divider);
  text-align: center;
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail h2 {
  color: var(--blue-900);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

.service-detail p {
  margin: 0 auto 1rem;
  max-width: 52ch;
  color: var(--text-muted);
}

/* About */
.about-split {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr minmax(300px, 360px);
  }
}

.photo-placeholder {
  background: var(--white);
  border: 2px dashed rgba(17, 76, 176, 0.35);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-weight: 600;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.95rem;
}

.bullets {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.bullets li {
  margin-bottom: 0.5rem;
}

/* About page — one type/colour system for body copy */
body[data-current="about"] .about-page-header {
  margin-bottom: 1.25rem;
}

body[data-current="about"] .about-page-header .section-title {
  margin-bottom: 0.5rem;
}

body[data-current="about"] .about-split {
  display: block;
}

body[data-current="about"] .about-split > div {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

body[data-current="about"] .lead,
body[data-current="about"] .about-split p,
body[data-current="about"] .bullets {
  margin-inline: auto;
  max-width: 65ch;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

body[data-current="about"] .about-split p {
  margin-top: 0;
  margin-bottom: 1rem;
}

body[data-current="about"] .about-split p:last-child {
  margin-bottom: 0;
}

body[data-current="about"] .lead strong,
body[data-current="about"] .about-split strong {
  color: inherit;
  font-weight: 700;
  font-family: inherit;
}

body[data-current="about"] .section-title {
  font-family: var(--font);
  color: var(--blue-900);
}

body[data-current="about"] .about-why {
  margin-top: 1.5rem;
}

body[data-current="about"] .about-split .bullets {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
  margin-bottom: 0;
}

body[data-current="about"] .bullets li {
  margin-bottom: 0.5rem;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-hero-phone {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.contact-hero-phone a {
  color: var(--accent);
  text-decoration: none;
  text-decoration-line: none;
}

.contact-hero-phone a:hover {
  text-decoration: none;
  text-decoration-line: none;
  opacity: 0.85;
}

.contact-hero-phone a:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.95rem;
}

form.enquiry {
  display: grid;
  gap: 1rem;
}

form.enquiry label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-900);
  display: block;
  margin-bottom: 0.35rem;
}

form.enquiry input,
form.enquiry textarea,
form.enquiry select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c5d4e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

form.enquiry input:focus,
form.enquiry textarea:focus,
form.enquiry select:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
  border-color: var(--blue-500);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.form-status--success {
  color: var(--blue-900);
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: var(--blue-100);
  border-radius: var(--radius);
}
