/* ============================================================
   TRIPLE STAR BRISSY — Brisbane Property Clean
   Design language: clean & bright
   White base + yellow accent + neutral dark
   ============================================================ */

:root {
  /* Palette — clean white base, refined blue accent (matches logo), cool dark */
  --paper:        #FFFFFF;
  --mist:         #F4F6F9;
  --mist-dark:    #E6EBF1;
  --dark:         #16202E;
  --dark-deep:    #0E1622;
  --dark-soft:    #2A3645;
  --gold:         #1A6FD4;   /* primary accent (blue) */
  --gold-soft:    #4F97E8;   /* light accent */
  --ring:         #FFC629;   /* logo-style yellow outline */
  --ink:          #18202B;
  --ink-soft:     #5A6675;
  --white:        #FFFFFF;

  /* Type — clean, refined system stack */
  --font-display: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Malgun Gothic", sans-serif;
  --font-body:    -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Malgun Gothic", sans-serif;

  /* Rhythm */
  --radius:       20px;
  --radius-sm:    12px;
  --section-pad:  clamp(80px, 12vw, 150px);
  --gutter:       clamp(20px, 5vw, 60px);
  --max-w:        1200px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

em {
  font-style: normal;
  font-weight: inherit;
  color: var(--gold);
}

::selection { background: var(--gold); color: var(--dark-deep); }

/* ---------- Buttons (all carry the logo-style yellow ring) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 27px;
  border-radius: 999px;
  border: 2.5px solid var(--ring);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--lg { padding: 16px 34px; font-size: 16px; }

.btn--solid {
  background: var(--dark);
  color: var(--mist);
}
.btn--solid:hover {
  background: var(--dark-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(26, 111, 212, 0.6);
}

.btn--outline {
  background: var(--white);
  color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--mist);
  transform: translateY(-2px);
}

/* solid white button (used for "See Pricing" on the hero) — no yellow ring */
.btn--outline-light {
  background: var(--white);
  color: var(--dark);
  border-color: transparent;
}
.btn--outline-light:hover {
  background: var(--mist);
  color: var(--dark-deep);
  transform: translateY(-2px);
}

/* ---------- Star motif ---------- */
.star-row {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.9em;
}

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px var(--gutter);
  background: var(--gold);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 3px solid var(--ring);
}

.topbar a {
  color: var(--white);
  font-weight: 700;
  transition: opacity 0.2s;
}
.topbar a:hover { opacity: 0.8; }

/* "Get Free Quote!" sits centred; phone pinned to the right edge */
.topbar__cta { text-transform: uppercase; letter-spacing: 0.08em; }

.topbar a[href^="tel:"] {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Header (absolute, transparent, sits on top of the hero image) ---------- */
.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo__img {
  height: 130px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover { color: var(--gold-soft); }
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (full-bleed image background, fits exactly one screen) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* top bar (~41px) + hero = exactly one viewport height */
  height: calc(100vh - 41px);
  height: calc(100dvh - 41px);
  min-height: 520px;
  padding: 165px var(--gutter) 48px;
  overflow: hidden;
  background: url("../assets/images/hero.png") center / cover no-repeat;
}

/* light overlay — just enough for the white text to stay readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__inner {
  position: relative;
  width: 100%;
  min-width: 0; /* let the flex item shrink on narrow screens */
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__content {
  max-width: 740px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__title span { display: block; }

/* mixed weights: light line → big bold line → light line */
.hero__title .t-soft {
  font-weight: 300;
}

.hero__title .t-strong {
  font-weight: 800;
  font-size: 1.16em;
  line-height: 0.98;
  margin: 0.02em 0 0.06em;
}

.hero__title .t-sub {
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.4em;
}

.hero__title em {
  font-weight: 800;
  color: var(--white);
  position: relative;
}

.hero__sub {
  max-width: 540px;
  margin-bottom: 32px;
  font-size: clamp(17px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* hero call button keeps an extra drop shadow for depth on the photo */
.hero__actions .btn--gold {
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.45);
}

.hero__badges {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}

.hero__badges li {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.hero__badges strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero__badges span {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections (shared) ---------- */
.section { padding: var(--section-pad) var(--gutter); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__head { margin-bottom: clamp(48px, 7vw, 80px); }

.section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--dark);
}

.section__title em { color: var(--gold); font-weight: 560; }

.section__sub {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.22);
}

/* Photo on top of each service card */
.service-card__media {
  position: relative;
  margin: -40px -34px 28px;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 22px;
}

.service-card ul {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 14.5px;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}

.service-card ul li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.service-card__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: gap 0.3s var(--ease-out), color 0.2s;
}

.service-card__link:hover { gap: 14px; color: var(--gold); }

/* ---------- Work gallery (horizontal scroller) ---------- */
.gallery {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.gallery__head-wrap { padding-inline: var(--gutter); }

.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery__hint {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.gallery__hint span { color: var(--gold); }

.gallery__scroller {
  display: flex;
  gap: 24px;
  /* comfortable margin on both sides; cards snap inset from the edge */
  padding: 0 var(--gutter) 8px;
  scroll-padding-left: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

/* spacer keeps an equal margin after the last card */
.gallery__scroller::after {
  content: "";
  flex: 0 0 1px;
}

.gallery__scroller::-webkit-scrollbar { display: none; }

.gallery__scroller.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery__item {
  position: relative;
  flex: 0 0 clamp(260px, 32vw, 380px);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.3);
}

.gallery__item img {
  width: 100%;
  height: clamp(300px, 38vw, 440px);
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.gallery__item img { user-select: none; -webkit-user-drag: none; }

/* ---------- Scroller arrows (shared by gallery + reviews) ---------- */
.gallery__scroll,
.reviews__scroll { position: relative; }

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}

.reviews__arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.reviews__arrow:active { transform: translateY(-50%) scale(0.94); }

.reviews__arrow--prev { left: 6px; }
.reviews__arrow--next { right: 6px; }

/* hidden when there's nothing more to scroll that way */
.reviews__arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Why us ---------- */
.why {
  background: var(--mist);
  color: var(--ink);
  border-radius: clamp(24px, 4vw, 48px);
  margin: 0 clamp(12px, 2vw, 32px);
}

.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.why__quote { position: sticky; top: 120px; }

.why__mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.why__quote blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.why__quote blockquote em { color: var(--gold); }

.why__sign {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.why__points {
  display: flex;
  flex-direction: column;
}

.why__points li {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.why__points li:first-child { padding-top: 0; }

.why__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
}

.why__points h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why__points p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }

.pricing .section__head { text-align: center; }
.pricing .section__sub { margin-left: auto; margin-right: auto; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2);
}

.price-card--featured {
  background: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 30px 60px -28px rgba(26, 111, 212, 0.4);
  transform: scale(1.03);
}

.price-card--featured:hover { transform: scale(1.03) translateY(-6px); }

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card__head {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-card--featured .price-card__head {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

.price-card__head h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-card__head p {
  font-size: 14px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card--featured .price-card__head p { color: rgba(0, 0, 0, 0.6); }

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.price-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 15.5px;
}

.price-card__list li span { color: var(--ink-soft); }
.price-card--featured .price-card__list li span { color: rgba(0, 0, 0, 0.7); }

.price-card__list li strong {
  font-weight: 700;
  white-space: nowrap;
}

.price-card--featured .price-card__list li strong { color: var(--dark-deep); }

.price-card__cta {
  justify-content: center;
  width: 100%;
}

.pricing__note {
  text-align: center;
  margin-top: 56px;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.pricing__note strong { color: var(--dark); }

/* ---------- Process ---------- */
.process { padding-top: 0; }

.process .section__head { text-align: center; }
.process .section__sub { margin-left: auto; margin-right: auto; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 56px);
}

/* step cards */
.process__steps li {
  position: relative;
  background: var(--mist);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.process__steps li:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.16);
}

/* short accent bar above each step heading */
.process__steps h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  padding-top: 22px;
}

.process__steps h3::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 34px;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
}

.process__steps p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Google Reviews ---------- */
.reviews { background: var(--mist); }

.reviews .section__head { text-align: center; }

.reviews__rating {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.12);
}

.reviews__rating strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.reviews__rating .star-row { font-size: 17px; }

.reviews__count {
  font-size: 13px;
  color: var(--ink-soft);
}

/* horizontal scroller with comfortable side margins (cards inset both sides) */
.reviews__grid {
  display: flex;
  gap: 24px;
  padding: 4px 0 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.reviews__grid::-webkit-scrollbar { display: none; }

.reviews__grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reviews__grid::after {
  content: "";
  flex: 0 0 1px;
}

/* authentic Google-review card — reviewer on top, gold stars, quote below */
.review-card {
  flex: 0 0 clamp(280px, 26vw, 340px);
  min-height: 360px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px -22px rgba(0, 0, 0, 0.35);
}

.review-card img { -webkit-user-drag: none; user-select: none; }

/* header: avatar + name/suburb, Google mark top-right */
.review-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

/* avatar circle removed per request */
.review-card__avatar { display: none; }

.review-card__who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-card__who strong {
  font-size: 15.5px;
  color: var(--ink);
}

.review-card__who span {
  font-size: 13px;
  color: var(--ink-soft);
}

.review-card__g { margin-left: auto; flex-shrink: 0; }

/* gold stars, like real Google reviews */
.review-card__stars {
  color: var(--ring);
  font-size: 17px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.review-card p {
  flex: 1;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0;
}

.reviews__cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- FAQ ---------- */
.faq__inner { max-width: 820px; }

.faq .section__head { text-align: center; }

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--gold); }

/* plus / minus indicator */
.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(var(--dark), var(--dark)) center / 14px 2px no-repeat,
    linear-gradient(var(--dark), var(--dark)) center / 2px 14px no-repeat,
    var(--mist);
  transition: transform 0.35s var(--ease-out), background-color 0.3s;
}

.faq__item[open] summary { color: var(--gold); }

.faq__item[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--dark-deep), var(--dark-deep)) center / 14px 2px no-repeat,
    linear-gradient(var(--dark-deep), var(--dark-deep)) center / 2px 14px no-repeat,
    var(--gold);
}

.faq__item p {
  padding: 0 56px 28px 4px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ---------- Contact (refined dark CTA band, two columns) ---------- */
.contact {
  background: var(--dark-deep);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 80px);
}

.contact__text { padding-top: 8px; }

.contact__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
  margin-bottom: 32px;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.2s;
}

.contact__phone svg { color: var(--gold-soft); }
.contact__phone:hover { color: var(--gold-soft); }

.contact__hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* enquiry form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 40px);
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}

.field label span { color: rgba(255, 255, 255, 0.45); font-weight: 500; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, background 0.2s;
}

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

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.field select { appearance: none; cursor: pointer; }
.field select option { color: var(--ink); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.1);
}

.contact__submit {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.contact__formnote {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.contact__formstatus {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--gold-soft);
}
.contact__formstatus:empty { display: none; }

/* ---------- Footer (dark so the logo pops) ---------- */
.footer {
  background: var(--dark-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px var(--gutter) 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.logo--footer .logo__img { height: 120px; }

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__meta {
  font-size: 14px;
  line-height: 1.8;
}

.footer__meta a {
  color: var(--gold);
  font-weight: 700;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Sticky mobile call button ---------- */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  border: 2.5px solid var(--ring);
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-call.is-visible { transform: translateY(0); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .services__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }

  .why__inner { grid-template-columns: 1fr; }
  .why__quote { position: static; }

  .contact__inner { grid-template-columns: 1fr; }

  .process__steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 20px;
  }

  /* no connector arrows when steps are stacked */
  .process__steps li:not(:last-child)::after { display: none; }
}

@media (max-width: 820px) {
  .topbar { justify-content: center; }
  .topbar p { display: none; }

  .header__cta { display: none; }

  .nav-toggle { display: flex; }

  .logo__img { height: 92px; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    max-height: 0;
    overflow: hidden;
    visibility: hidden; /* fully hidden when closed — no stray line/shadow */
    transition: max-height 0.4s var(--ease-out), visibility 0.4s;
  }

  .nav.is-open {
    max-height: 400px;
    visibility: visible;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.2);
  }

  .nav a {
    padding: 18px var(--gutter);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 16px;
    color: var(--ink);
  }

  .nav a::after { display: none; }

  /* ----- Hero on phones: minimal — just the title and call buttons ----- */
  .hero {
    min-height: 480px;
    padding-top: 150px;
    padding-bottom: 44px;
    background-image: url("../assets/images/hero-mobile.png");
    background-position: center top;
  }

  /* clean, minimal hero on phones — headline does the work */
  .hero__eyebrow,
  .hero__sub,
  .hero__badges {
    display: none;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
  }
  .hero__title .t-strong { font-size: 1.22em; }
  .hero__title .t-sub { font-size: 0.42em; margin-top: 0.5em; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    margin-bottom: 0;
    gap: 12px;
  }
  .hero__actions .btn {
    justify-content: center;
    font-size: 16px;
    padding: 16px 24px;
    white-space: normal;
  }

  .sticky-call { display: flex; }

  .footer { padding-bottom: 110px; }

  /* zip the marquee along much faster on phones */
  .marquee__track { animation-duration: 3s; }

  /* keep the rating badge inside the screen */
  .reviews__rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 12px 18px;
    max-width: 100%;
  }
  .reviews__rating .reviews__g { width: 28px; height: 28px; }
  .reviews__rating strong { font-size: 20px; }
  .reviews__rating .star-row { font-size: 15px; }
  .reviews__count { width: 100%; text-align: center; }

  /* one review centred per screen, with a thin peek of the next on each side */
  .reviews__grid { gap: 14px; }
  .review-card {
    flex: 0 0 89%;
    scroll-snap-align: center;
  }
  /* leading + trailing spacers so the first/last card can sit dead-centre */
  .reviews__grid::before,
  .reviews__grid::after {
    content: "";
    flex: 0 0 5.5%;
  }

  /* enquiry form stacks to one column on phones */
  .contact__form { grid-template-columns: 1fr; }
}

/* Extra-small phones */
@media (max-width: 400px) {
  body { font-size: 16px; }

  .btn--lg { padding: 16px 24px; font-size: 15px; }

  .section { padding-left: 16px; padding-right: 16px; }

  .service-card,
  .price-card { padding: 32px 24px; }

  .service-card__media { margin: -32px -24px 40px; }
  .service-card__icon { left: 20px; }

  .why { margin: 0 8px; }

  .why__points li { gap: 18px; }
}
