/* Reusable components — used by partials AND by page sections. */

:root {
  --color-secondary: #ff9b0a;
  --color-dark: #0b0816;                /* brand navy, taken almost black */
  --color-primary-deep: #0b0816;
  --color-surface: #fafafa;
  --color-line: #e9e8ee;
  --color-line-dark: rgba(255,255,255,0.1);
  --text-body: rgba(11,10,18,0.68);     /* body text, slightly lifted off black */
  --text-body-dark: rgba(255,255,255,0.66);
  --shadow-sm: 0 1px 2px rgba(11,8,22,.04);
  --shadow-card: 0 6px 22px rgba(11,8,22,.05);
  --shadow-md: 0 10px 28px rgba(11,8,22,.07);
  --shadow-lg: 0 24px 60px rgba(11,8,22,.12);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  /* near-invisible dot grid for light backgrounds */
  --dots-light: radial-gradient(circle, rgba(11,8,22,0.055) 1px, transparent 1px);
  --dots-dark: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
}

body { font-weight: 300; }
strong, b { font-weight: 600; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-out-expo), background .2s ease, color .2s ease, border-color .2s ease;
  min-height: 48px;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-dark); color: #fff; }
.btn-primary:hover { background: var(--color-primary); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-dark); border-color: rgba(11,8,22,0.25); }
.btn-secondary:hover { border-color: var(--color-dark); background: var(--color-dark); color: #fff; }
.btn-cta { background: var(--color-accent); color: #0b0816; }
.btn-cta:hover { background: var(--color-secondary); color: #0b0816; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-lg { padding: 1rem 1.9rem; font-size: 0.98rem; min-height: 54px; }
.btn-arrow svg { transition: transform .25s var(--ease-out-expo); }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.logo-invert { filter: brightness(0) invert(1); }

/* ─── Header: dark top bar + white main bar ─── */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; box-shadow: 0 1px 0 var(--color-line); }
.page-home .site-header { box-shadow: none; }
/* Home: transparent header overlaid on the sky hero */
.page-home .site-header { position: absolute; top: 0; left: 0; right: 0; background: transparent; }
.page-home .site-header__main { background: transparent; border-bottom: 0; }
.page-home .site-header__main-inner { padding-top: 2rem; }
@media (max-width: 880px) { .page-home .site-header__main-inner { padding-top: 1.5rem; } }
.site-header__bar { background: var(--color-dark); color: rgba(255,255,255,0.65); font-size: 0.8rem; }
.site-header__bar-inner { display: flex; align-items: center; justify-content: flex-end; gap: 2rem; padding: 1rem 1.5rem; flex-wrap: wrap; }
.site-header__bar-item { display: inline-flex; align-items: center; gap: 0.45rem; color: inherit; text-decoration: none; transition: color .2s ease; letter-spacing: 0.01em; }
.site-header__bar-item svg { color: var(--color-accent); }
.site-header__bar-item:hover { color: #fff; text-decoration: none; }
.site-header__bar-item--muted { color: rgba(255,255,255,0.45); }
.site-header__bar-item--muted svg { color: rgba(255,255,255,0.35); }
.site-header__main { background: #fff; position: relative; border-bottom: 1px solid var(--color-line); }
.site-header__main-inner { display: flex; align-items: center; gap: 2.5rem; padding: 3.25rem 1.5rem; }
.site-header__brand { flex-shrink: 0; display: inline-block; }
.site-header__brand img { display: block; height: 56px; width: auto; }
@media (max-width: 960px) { .site-header__brand img { height: 64px; } }
.site-header__actions { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; flex-shrink: 0; }
.site-header__phone { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--color-dark); font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: color .2s ease; letter-spacing: 0.01em; }
.site-header__phone svg { color: var(--color-accent); flex-shrink: 0; }
.site-header__phone:hover { color: var(--color-accent); text-decoration: none; }
.site-header__cta { flex-shrink: 0; }
.site-header__toggle {
  display: none; margin-left: auto; background: transparent; border: 0; padding: 0.5rem;
  width: 48px; height: 48px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.site-header__toggle span { display: block; width: 26px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* ─── Primary nav ─── */
.site-nav { display: flex; }
.site-nav__list { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list > li > a { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--color-dark); font-family: var(--font-heading); font-weight: 500; font-size: 0.92rem; text-decoration: none; padding: 0.5rem 0; position: relative; letter-spacing: 0.01em; }
.site-nav__list > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out-expo); }
.site-nav__list > li > a:hover::after { transform: scaleX(1); }
.site-nav__has-children { position: relative; }
.site-nav__submenu { position: absolute; top: 100%; left: -1rem; min-width: 280px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0.75rem; list-style: none; margin: 0.5rem 0 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s var(--ease-out-expo), transform .25s var(--ease-out-expo), visibility .25s; border: 1px solid var(--color-line); z-index: 50; }
.site-nav__has-children:hover .site-nav__submenu,
.site-nav__has-children:focus-within .site-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__submenu a { display: block; padding: 0.65rem 0.9rem; color: var(--color-dark); font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; border-radius: 6px; text-decoration: none; transition: background .15s ease, color .15s ease; }
.site-nav__submenu a:hover { background: var(--color-surface); color: var(--color-dark); }

/* ─── Mobile menu ─── */
.site-mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--color-dark); color: #fff; overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.site-mobile-menu.is-open { opacity: 1; visibility: visible; }
.site-mobile-menu[hidden] { display: none; }
.site-mobile-menu__inner { padding: 1.5rem 1.5rem 3rem; max-width: 540px; margin: 0 auto; }
.site-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.site-mobile-menu__brand img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); }
.site-mobile-menu__close { background: transparent; border: 0; color: #fff; padding: 0.5rem; cursor: pointer; }
.site-mobile-menu__list { list-style: none; margin: 0 0 2rem; padding: 0; border-top: 1px solid var(--color-line-dark); }
.site-mobile-menu__list li { border-bottom: 1px solid var(--color-line-dark); }
.site-mobile-menu__list a { display: block; padding: 1rem 0; color: #fff; font-family: var(--font-heading); font-weight: 500; font-size: 1.05rem; text-decoration: none; }
.site-mobile-menu__list a:hover { color: var(--color-accent); }
.site-mobile-menu__cta { display: grid; gap: 0.75rem; margin-bottom: 1.5rem; }
.site-mobile-menu__cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.site-mobile-menu__cta .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.site-mobile-menu__meta { font-size: 0.82rem; line-height: 1.6; opacity: 0.6; text-align: center; }

.site-header__mobile-call,
.site-header__mobile-enquire { display: none; }
@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__actions { display: none; }
  .site-header__main-inner { padding: 1.25rem 1.25rem; gap: 0.5rem; }
  .site-header__toggle { display: flex; margin-left: 0.4rem; }
  .site-header__mobile-call,
  .site-header__mobile-enquire {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-accent); color: #fff;
    text-decoration: none; flex-shrink: 0;
    transition: transform .2s ease, background-color .2s ease;
  }
  .site-header__mobile-call { margin-left: auto; }
  .site-header__mobile-enquire { margin-left: 0.4rem; }
  .site-header__mobile-call svg,
  .site-header__mobile-enquire svg { width: 18px; height: 18px; color: #fff; }
  .site-header__mobile-call:hover,
  .site-header__mobile-enquire:hover { background: var(--color-primary); color: #fff; text-decoration: none; transform: translateY(-1px); }
  .site-header__mobile-call:hover svg,
  .site-header__mobile-enquire:hover svg { color: #fff; }
  .site-header__mobile-call span { display: none; }
}
@media (max-width: 560px) {
  .site-header__bar-item span { display: none; }
  .site-header__bar-item svg { width: 16px; height: 16px; }
}

/* ─── Hero (sky banner — centred copy over blue sky, house below, fades to page bg) ─── */
.hero {
  position: relative;
  min-height: min(110vh, 1100px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #cfe2f5;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center bottom;
  image-rendering: -webkit-optimize-contrast;
}
.hero__bg--sky { background-image: url('/assets/images/hero-sky-house.jpg'); }
.hero__bg--sky::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,246,250,0.98) 0%, rgba(245,246,250,0.92) 32%, rgba(245,246,250,0.6) 52%, rgba(245,246,250,0.2) 66%, transparent 78%);
}
.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 22%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(245,246,250,0.5) 65%, #f5f6fa 100%);
}
@media (max-width: 880px) { .hero { min-height: 0; } .hero__fade { height: 28%; } }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--page-max); margin: 0 auto; padding: clamp(12rem, 20vh, 14rem) 1.5rem 4rem; }
.hero__centre { max-width: 860px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 1.4rem;
  color: var(--color-primary);
  text-wrap: balance;
}
.hero__title .accent { color: var(--color-accent); }
.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.7;
  color: #3c3a52; max-width: 620px; margin: 0 auto 2.25rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.25rem; }
.btn-hero-outline {
  background: rgba(255,255,255,0.85);
  color: var(--color-primary);
  border: 1px solid rgba(28,14,81,0.15);
  box-shadow: 0 4px 16px rgba(11,8,22,0.06);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-hero-outline:hover { background: #fff; color: var(--color-primary); border-color: rgba(28,14,81,0.3); }
.hero__trust { display: flex; align-items: center; justify-content: center; gap: 1.9rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 0.6rem; color: #3c3a52; font-size: 0.9rem; background: rgba(255,255,255,0.92); box-shadow: var(--shadow-card); border-radius: 100px; padding: 0.55rem 1.1rem; }
.hero__trust-item strong { color: var(--color-primary); font-weight: 600; }
.hero__rating { display: inline-flex; gap: 2px; }
.hero__rating svg { width: 13px; height: 13px; }

@media (max-width: 880px) {
  .hero { min-height: 0; }
  .hero__content { padding-top: 10rem; padding-bottom: 26rem; }
  .hero__title { font-size: clamp(1.9rem, 7vw, 2.25rem); }
  .hero__bg--sky::before {
    background: linear-gradient(180deg, rgba(240,243,250,0.94) 0%, rgba(240,243,250,0.85) 40%, rgba(240,243,250,0.4) 58%, transparent 72%);
  }
  .hero__trust { gap: 0.6rem; }
  .hero__trust-item {
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-card);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.84rem;
  }
}
@media (max-width: 560px) {
  .hero__content { padding-bottom: 20rem; }
}

/* ─── Section foundations ─── */
.section {
  padding: var(--section-y) 0; position: relative;
  background-color: #f5f6fa;
}
.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }
.section-alt { background-color: #f5f6fa; }
.section-dark {
  background-color: var(--color-dark); color: var(--text-body-dark);
  background-image: var(--dots-dark);
  background-size: 28px 28px;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-primary { background: var(--color-dark); color: var(--text-body-dark); }
.section-primary h2, .section-primary h3 { color: #fff; }

.container { max-width: var(--page-max); margin: 0 auto; padding: 0 1.5rem; }
.section__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section__head--left { margin-left: 0; margin-right: 0; text-align: left; max-width: 640px; }
.label { display: inline-block; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 1.1rem; }
.label--primary { color: var(--color-dark); }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 600; letter-spacing: -0.022em; line-height: 1.22; margin: 0 0 1rem; color: var(--color-ink); text-wrap: balance; }
.section-title .serif,
.hero__title .serif,
.statement__title .serif,
.site-footer__cta-heading .serif,
h3 .serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: inherit; }
.section-dark .section-title, .section-primary .section-title, .reviews-band .section-title { color: #fff; }
.section__lead { font-size: 1.05rem; line-height: 1.7; color: var(--text-body); max-width: 620px; margin: 0 auto; }
.section__head--left .section__lead, .split__content .section__lead { margin: 1rem 0 0; }
.section-dark .section__lead, .section-primary .section__lead { color: var(--text-body-dark); }

/* ─── Trust bar ─── */
.trust-bar { background: #f5f6fa; padding: 1.9rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.trust-bar__lede { font-family: var(--font-heading); font-weight: 500; color: var(--text-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.trust-bar__items { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.trust-bar__item { display: flex; align-items: center; gap: 0.65rem; color: var(--color-ink); font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; }
.trust-bar__item svg { color: var(--color-secondary); }
.trust-bar__item:nth-child(2) svg { color: #21568f; }
.trust-bar__item:nth-child(3) svg { color: #196b46; }
.trust-bar__item:nth-child(4) svg { color: #1c0e51; }

/* ─── Services grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2.1rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-out-expo), box-shadow .35s var(--ease-out-expo);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1.4rem;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .service-card__icon { background: var(--color-accent); color: var(--color-primary); }
.service-card__tag { display: inline-block; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 0.6rem; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 600; color: var(--color-ink); margin: 0 0 0.6rem; line-height: 1.3; letter-spacing: -0.01em; }
.service-card p { color: var(--text-body); margin: 0 0 1.4rem; flex-grow: 1; font-size: 0.93rem; line-height: 1.65; }
.service-card__cta { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.86rem; color: var(--color-ink); }
.service-card__cta svg { transition: transform .25s var(--ease-out-expo); }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

/* ─── Reviews band ─── */
.reviews-band {
  background-color: #f5f6fa; color: var(--text-body);
  padding: var(--section-y) 0; position: relative; overflow: hidden;
}
.reviews-band__inner { display: grid; grid-template-columns: 160px 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 880px) { .reviews-band__inner { grid-template-columns: 1fr; } }

/* Excellent badge */
.reviews-excellent { display: flex; flex-direction: column; gap: 0.65rem; flex-shrink: 0; }
.reviews-excellent__label { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-ink); margin: 0; line-height: 1; }
.reviews-excellent__stars { display: flex; gap: 3px; }
.reviews-excellent__stars svg { width: 26px; height: 26px; }
.reviews-excellent__google { width: 88px; height: auto; display: block; margin-top: 0.25rem; }
@media (max-width: 880px) {
  .reviews-excellent { flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
}

/* Review cards: 3-col row */
.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .reviews-cards { grid-template-columns: 1fr; } }
@media (min-width: 560px) and (max-width: 900px) { .reviews-cards { grid-template-columns: repeat(2, 1fr); } }

.review-card { background: #fff; border-radius: 12px; padding: 1.4rem 1.5rem 1.5rem; box-shadow: var(--shadow-card); transition: box-shadow .35s var(--ease-out-expo), transform .35s var(--ease-out-expo); display: flex; flex-direction: column; gap: 0.75rem; }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.review-card__head { display: flex; align-items: center; gap: 0.7rem; }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--av-bg, var(--color-primary)); color: #fff; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; flex-shrink: 0; }
.review-card__meta { flex: 1; min-width: 0; }
.review-card__name { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card__time { font-size: 0.78rem; color: var(--text-body); }
.review-card__g { flex-shrink: 0; margin-left: auto; }

.review-card__rating { display: flex; align-items: center; gap: 2px; }
.review-card__rating svg { width: 14px; height: 14px; }
.review-card__verified { width: 15px; height: 15px; margin-left: 4px; }

.review-card__quote { font-size: 0.9rem; line-height: 1.65; color: var(--color-ink); margin: 0; flex: 1; }

/* ─── Split (image + content) ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.split__media-tag { position: absolute; bottom: 1.5rem; left: 1.5rem; background: #fff; border-radius: 12px; padding: 1rem 1.25rem; box-shadow: var(--shadow-md); display: flex; gap: 0.85rem; align-items: center; max-width: 80%; }
.split__media-tag-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--color-dark); color: var(--color-accent); display: grid; place-items: center; flex-shrink: 0; }
.split__media-tag strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--color-ink); line-height: 1.2; }
.split__media-tag span { font-size: 0.8rem; color: var(--text-body); }
.split__check { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1rem; }
.split__check li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.97rem; color: var(--text-body); line-height: 1.6; }
.split__check li strong { color: var(--color-ink); }
.split__check svg { flex-shrink: 0; margin-top: 3px; color: var(--color-secondary); border: 1px solid var(--color-line); border-radius: 50%; padding: 4px; width: 22px; height: 22px; }

/* ─── Page intro (interior page hero) ─── */
.page-intro { padding: 6.25rem 0; background-image: linear-gradient(rgba(245,246,250,0.88), rgba(245,246,250,0.94)), url('/assets/images/about-hero-bg.jpg'); background-size: cover; background-position: center; }
.page-intro--valuation-services { background-image: linear-gradient(rgba(245,246,250,0.86), rgba(245,246,250,0.92)), url('/assets/images/svc-valuation-services.jpg'); }
.page-intro--capital-gains { background-image: linear-gradient(rgba(245,246,250,0.88), rgba(245,246,250,0.92)), url('/assets/images/svc-capital-gains.jpg'); }
.page-intro--marriage-defacto { background-image: linear-gradient(rgba(245,246,250,0.9), rgba(245,246,250,0.95)), url('/assets/images/svc-marriage-defacto.jpg'); }
.page-intro--pre-sale-purchase { background-image: linear-gradient(rgba(245,246,250,0.86), rgba(245,246,250,0.92)), url('/assets/images/svc-pre-sale-purchase.jpg'); }
.page-intro--residential { background-image: linear-gradient(rgba(245,246,250,0.86), rgba(245,246,250,0.92)), url('/assets/images/svc-residential.jpg'); }
.page-intro--commercial { background-image: linear-gradient(rgba(245,246,250,0.84), rgba(245,246,250,0.92)), url('/assets/images/svc-commercial.jpg'); }
.page-intro--smsf { background-image: linear-gradient(rgba(245,246,250,0.88), rgba(245,246,250,0.94)), url('/assets/images/svc-smsf.jpg'); }
.page-intro .btn-row { margin-top: 1.75rem; }
.page-intro__inner { max-width: 760px; }
.page-intro .label { color: var(--color-accent); }
.page-intro h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 600; color: var(--color-primary); letter-spacing: -0.025em; line-height: 1.12; margin: 0.4rem 0 1rem; text-wrap: balance; }
.page-intro p { color: #3c3a52; font-size: 1.05rem; line-height: 1.7; margin: 0; max-width: 640px; }

/* Image-with-text-overlay variant of .split__media */
.split__media--overlay { display: block; }
.split__media--overlay .split__media-overlay { position: absolute; top: 0; left: 0; right: 0; padding: 1.75rem 1.75rem 0; color: #fff; z-index: 2; }
.split__media--overlay .split__media-overlay .label { color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; }
.split__media--overlay .split__media-overlay h3 { font-family: var(--font-heading); font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 600; color: #fff; line-height: 1.2; margin: 0; letter-spacing: -0.018em; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }

/* Trust card grid (used on About) */
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .trust-cards { grid-template-columns: 1fr; } }
.trust-card { background: #fff; border-radius: 12px; padding: 1.75rem 1.6rem; box-shadow: var(--shadow-card); }
.trust-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--color-primary); color: #fff; display: grid; place-items: center; margin-bottom: 1rem; }
.trust-card h3 { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 600; color: var(--color-primary); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.trust-card p { color: #3c3a52; font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ─── Process steps ─── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process__step { position: relative; padding: 1.75rem 1.65rem 1.5rem; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); counter-increment: step; transition: transform .35s var(--ease-out-expo), box-shadow .35s var(--ease-out-expo); }
.process__step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.process__step::before { content: "0" counter(step); display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.18em; color: var(--color-secondary); margin-bottom: 0.85rem; }
.process__step h3 { font-family: var(--font-heading); font-size: 1.02rem; font-weight: 600; color: var(--color-ink); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.process__step p { color: var(--text-body); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Process layout: report mock left, steps right */
.process-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
@media (max-width: 980px) { .process-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.process--stacked { grid-template-columns: 1fr; gap: 1rem; }
@media (max-width: 980px) { .process--stacked { grid-template-columns: 1fr; } }

.report-mock-wrap { display: flex; justify-content: center; }
.report-mock {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 2 / 3;
  background: linear-gradient(175deg, #241263 0%, var(--color-primary) 40%, #170b45 100%);
  border-radius: 10px;
  padding: 2rem 1.85rem 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(28,14,81,0.45);
  display: flex;
  flex-direction: column;
}
.report-mock__photo {
  position: absolute; left: 0; right: 0; bottom: 0; height: 58%; z-index: 0;
  background-image: linear-gradient(180deg, var(--color-primary) 0%, rgba(28,14,81,0.82) 30%, rgba(28,14,81,0.78) 100%), url('/assets/images/hero-adelaide-villa.jpg');
  background-size: auto, cover;
  background-position: center, center bottom;
}
.report-mock > * { position: relative; z-index: 1; }
.report-mock__tris { position: absolute; top: -16px; right: -18px; z-index: 1; width: 190px; height: 250px; }
.report-mock__tri { position: absolute; }
.report-mock__tri--white { color: #fff; fill: #fff; }
.report-mock__tri--orange { color: var(--color-secondary); fill: var(--color-secondary); }
.report-mock__tri--outline { color: #fff; fill: none; }
.report-mock__tri--orange-outline { color: var(--color-secondary); }
.report-mock__tri:nth-child(1) { width: 110px; height: 110px; top: -18px; right: -6px; transform: rotate(14deg); }
.report-mock__tri:nth-child(2) { width: 92px; height: 92px; top: 64px; right: 64px; transform: rotate(-8deg); }
.report-mock__tri:nth-child(3) { width: 84px; height: 84px; top: 128px; right: -16px; transform: rotate(10deg); }
.report-mock__tri:nth-child(4) { width: 78px; height: 78px; top: 120px; right: 92px; transform: rotate(-18deg); }
.report-mock__tri:nth-child(5) { width: 64px; height: 64px; top: 196px; right: 36px; transform: rotate(6deg); }
.report-mock__brand img { width: 104px; height: auto; display: block; }
.report-mock__dots {
  width: 52px; height: 38px; margin: 2.4rem 0 0.7rem;
  background-image: radial-gradient(circle, var(--color-secondary) 1.6px, transparent 1.7px);
  background-size: 13px 10px;
}
.report-mock__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.report-mock__subline { display: flex; align-items: center; gap: 0; margin-right: -1.85rem; }
.report-mock__report { font-family: var(--font-heading); font-weight: 300; font-size: 1.3rem; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; margin-right: 1.25rem; }
.report-mock__line { flex: 1; height: 2px; background: #fff; }
.report-mock__line--end { flex: 0 0 26px; }
.report-mock__year { background: var(--color-secondary); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.1em; padding: 0.2rem 1.6rem; margin: 0 0 6px; }
.report-mock__body { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 1.5rem; margin-top: auto; padding-bottom: 1.6rem; align-items: start; }
.report-mock__prepared { display: grid; gap: 1.4rem; align-content: start; }
.report-mock__prepared span { display: block; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 500; color: #fff; margin-bottom: 0.3rem; }
.report-mock__prepared strong { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; color: var(--color-secondary); }
.report-mock__desc-head { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-secondary); margin: 0 0 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.3); }
.report-mock__desc p:not(.report-mock__desc-head) { font-family: var(--font-heading); font-size: 0.74rem; font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.92); margin: 0; }
.report-mock__url { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); text-align: right; margin: 0; padding-bottom: 3rem; }
.report-mock__foot { position: absolute; left: 0; right: 0; bottom: 0; height: 24px; background: var(--color-secondary); z-index: 2; }
.report-mock__foot::before { content: ""; position: absolute; left: 0; right: 0; bottom: 24px; height: 9px; background: rgba(255,155,10,0.45); }
@media (max-width: 420px) {
  .report-mock__body { grid-template-columns: 1fr; gap: 1rem; }
}

/* Layered entrance for report mock */
.report-mock__brand, .report-mock__dots, .report-mock__title, .report-mock__subline, .report-mock__body, .report-mock__url { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); }
.report-mock__tris { opacity: 0; transform: translateX(24px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.is-visible .report-mock__brand { opacity: 1; transform: none; transition-delay: .15s; }
.is-visible .report-mock__tris { opacity: 1; transform: none; transition-delay: .25s; }
.is-visible .report-mock__title { opacity: 1; transform: none; transition-delay: .3s; }
.is-visible .report-mock__dots { opacity: 1; transform: none; transition-delay: .4s; }
.is-visible .report-mock__subline { opacity: 1; transform: none; transition-delay: .45s; }
.is-visible .report-mock__body { opacity: 1; transform: none; transition-delay: .55s; }
.is-visible .report-mock__url { opacity: 1; transform: none; transition-delay: .65s; }
@media (prefers-reduced-motion: reduce) {
  .report-mock__brand, .report-mock__dots, .report-mock__title, .report-mock__subline, .report-mock__body, .report-mock__url, .report-mock__tris { opacity: 1; transform: none; transition: none; }
}

/* ─── Statement band (large title + typewriter) ─── */
.statement {
  background: #f5f6fa;
  padding: 5.5rem 0;
  text-align: center;
}
.statement__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0;
  text-wrap: balance;
}
.statement__type { color: var(--color-secondary); white-space: nowrap; }
.statement__caret { display: inline-block; width: 2px; height: 0.95em; background: var(--color-secondary); vertical-align: -0.12em; margin-left: 3px; animation: caret-blink 1s steps(1) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }
.statement__sub { max-width: 560px; margin: 1.25rem auto 0; color: var(--text-body); font-size: 1.02rem; line-height: 1.7; }
@media (prefers-reduced-motion: reduce) { .statement__caret { animation: none; } }
@media (max-width: 640px) {
  .statement { padding: 4rem 0; }
  .statement__title { font-size: clamp(1.55rem, 6.4vw, 1.9rem); }
  .statement__type { white-space: normal; }
}

/* ─── Stats band ─── */
.stats-band {
  background-color: var(--color-dark); color: var(--text-body-dark);
  padding: 4.5rem 0; position: relative; overflow: hidden;
  background-image: linear-gradient(rgba(11,8,22,0.93), rgba(11,8,22,0.93)), url('/assets/images/adelaide-suburbs-aerial.jpg');
  background-size: auto, cover; background-position: center;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; position: relative; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
.stats > div { border-left: 1px solid var(--color-line-dark); }
.stats > div:first-child { border-left: 0; }
@media (max-width: 880px) { .stats > div { border-left: 0; } }
.stat__num { font-family: var(--font-heading); font-size: clamp(2.4rem, 4.5vw, 3.2rem); font-weight: 600; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.stat__num sup { font-size: 0.5em; }
.stat__label { margin-top: 0.65rem; font-size: 0.92rem; color: var(--text-body-dark); }

/* ─── FAQ accordion ─── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-radius: 12px; padding: 0; margin-bottom: 0.75rem; background: #fff; box-shadow: var(--shadow-card); transition: box-shadow .3s var(--ease-out-expo); overflow: hidden; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; letter-spacing: -0.005em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--color-line); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b0816' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform .25s ease, background-color .25s; }
.faq details[open] summary::after { transform: rotate(180deg); background-color: var(--color-accent); border-color: var(--color-accent); }
.faq__body { padding: 0 1.5rem 1.4rem; color: var(--text-body); line-height: 1.7; font-size: 0.95rem; }
.faq__body p { margin: 0 0 0.75rem; }

/* ─── CTA band ─── */
.cta-band {
  background-color: var(--color-dark); color: var(--text-body-dark);
  background-image: var(--dots-dark); background-size: 28px 28px;
  padding: 5.5rem 0; position: relative; overflow: hidden;
}
.cta-band__inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: center; position: relative; }
@media (max-width: 880px) { .cta-band__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-band h2 { font-family: var(--font-heading); font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; color: #fff; margin: 0 0 1rem; line-height: 1.16; }
.cta-band p { color: var(--text-body-dark); font-size: 1.02rem; line-height: 1.65; margin: 0; max-width: 600px; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 880px) { .cta-band__actions { justify-content: center; } }

/* ─── Footer ─── */
.site-footer { background: linear-gradient(180deg, #241466 0%, #1c0e51 55%, #120832 100%); color: var(--text-body-dark); position: relative; }
.site-footer__cta {
  position: relative; overflow: hidden;
  padding: 4.5rem 0;
  color: var(--color-dark);
  background-image: linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)), url('/assets/images/hero-adelaide-villa.jpg');
  background-size: cover; background-position: center;
  border-top: 1px solid rgba(28,14,81,0.08);
  border-bottom: 1px solid rgba(28,14,81,0.08);
}
.site-footer__cta-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; position: relative; }
@media (max-width: 880px) { .site-footer__cta-inner { grid-template-columns: 1fr; text-align: center; } }
.site-footer__cta-label { color: var(--color-accent); margin-bottom: 0.6rem; }
.site-footer__cta-heading { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 600; color: var(--color-primary); margin: 0 0 0.6rem; line-height: 1.18; letter-spacing: -0.018em; }
.site-footer__cta-sub { color: #3c3a52; margin: 0; }
.site-footer__cta-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) { .site-footer__cta-actions { justify-content: center; } }
.site-footer__cta-actions .btn-secondary { color: var(--color-primary); border-color: rgba(28,14,81,0.25); background: rgba(255,255,255,0.7); }
.site-footer__cta-actions .btn-secondary:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.site-footer__inner { padding: 4rem 1.5rem 2rem; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 3rem; }
@media (max-width: 980px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__brand img { display: block; height: 50px; width: auto; margin-bottom: 1.25rem; }
.site-footer__tagline { font-size: 0.9rem; line-height: 1.65; color: var(--text-body-dark); margin: 0 0 1.5rem; max-width: 320px; }
.site-footer__reviews { display: flex; align-items: center; gap: 0.65rem; font-size: 0.86rem; color: rgba(255,255,255,0.8); }
.site-footer__stars { display: flex; gap: 2px; }
.site-footer__cols h4 { font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 1.25rem; }
.site-footer__cols { display: contents; }
.site-footer__cols > div ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.site-footer__cols a { color: var(--text-body-dark); font-size: 0.9rem; text-decoration: none; transition: color .2s ease; }
.site-footer__cols a:hover { color: var(--color-accent); text-decoration: none; }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-body-dark); font-size: 0.9rem; }
.site-footer__contact svg { flex-shrink: 0; margin-top: 5px; color: var(--color-accent); }
.site-footer__contact a { color: inherit; }
.site-footer__contact a:hover { color: var(--color-accent); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.5rem 2rem; flex-wrap: wrap; border-top: 1px solid var(--color-line-dark); font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.site-footer__bottom p { margin: 0; }
@media (max-width: 720px) { .site-footer__bottom { justify-content: center; text-align: center; } }

/* ─── Scroll reveal animations ─── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].is-visible { transform: scale(1); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].is-visible { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); transition-delay: var(--delay, 0ms); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Lock scroll when mobile menu is open ─── */
body.no-scroll { overflow: hidden; }

/* ─── Form (contact strip on home) ─── */
.contact-strip { background: #fff; border-radius: 16px; padding: 3rem; box-shadow: var(--shadow-card); display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: center; }
@media (max-width: 880px) { .contact-strip { grid-template-columns: 1fr; padding: 2rem; } }
.contact-strip__lede h3 { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 600; color: var(--color-ink); margin: 0 0 0.75rem; line-height: 1.18; letter-spacing: -0.018em; }
.contact-strip__lede p { color: var(--text-body); line-height: 1.65; margin: 0 0 1.5rem; }
.contact-strip__direct { display: grid; gap: 0.75rem; }
.contact-strip__direct a { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--color-ink); font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.contact-strip__direct a:hover { color: var(--color-secondary); }
.contact-strip__direct svg { color: var(--color-secondary); }
.contact-form { display: grid; gap: 1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-family: var(--font-heading); font-weight: 500; font-size: 0.8rem; color: var(--color-ink); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--color-line); border-radius: 8px; font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; background: #fff; color: var(--color-ink); transition: border-color .2s ease, box-shadow .2s ease; min-height: 50px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--color-dark); box-shadow: 0 0 0 3px rgba(11,8,22,0.08); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button { justify-self: start; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ─── Contact info chip cards (inline row) ─── */
.contact-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .contact-chips { grid-template-columns: 1fr; } }
.contact-chip { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); text-decoration: none; color: var(--color-ink); transition: transform .2s ease, box-shadow .2s ease; }
.contact-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; color: var(--color-ink); }
.contact-chip__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--color-primary); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-chip__label { display: block; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.15rem; }
.contact-chip__value { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--color-primary); line-height: 1.3; }

/* ─── Page-intro form variant (form embedded in hero) ─── */
.page-intro--form { padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-intro__inner--centre { max-width: 760px; margin: 0 auto; text-align: center; }
.page-intro__form { max-width: 680px; margin: 2.25rem auto 0; background: #fff; border-radius: 14px; padding: 2rem; box-shadow: var(--shadow-card); text-align: left; }
.page-intro__split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 980px) { .page-intro__split { grid-template-columns: 1fr; gap: 2rem; } }
.page-intro__split .page-intro__form { margin: 0; max-width: 100%; }
.page-intro__split .page-intro__inner { max-width: 100%; }
@media (max-width: 560px) { .page-intro__form { padding: 1.5rem; } }
.page-intro__form .contact-form button { justify-self: stretch; width: 100%; }

.thank-tick { width: 72px; height: 72px; border-radius: 50%; background: var(--color-accent); color: #fff; display: grid; place-items: center; margin: 0 auto 1.25rem; box-shadow: 0 12px 30px rgba(253,160,40,0.35); }

.page-intro__badge { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.55rem 1.1rem; border-radius: 999px; background: #fff; box-shadow: var(--shadow-card); margin: 0 auto 1.25rem; font-family: var(--font-heading); }
.page-intro__badge-stars { display: inline-flex; gap: 2px; }
.page-intro__badge-stars svg { width: 16px; height: 16px; }
.page-intro__badge-text { font-size: 0.9rem; color: var(--color-primary); }
.page-intro__badge-text strong { font-weight: 700; }
@media (max-width: 560px) { .contact-form button { justify-self: stretch; width: 100%; } }
.hp-field { position: absolute; left: -9999px; }

/* ─── Mobile rhythm (consistent vertical spacing under 640px) ─── */
@media (max-width: 640px) {
  .section, .reviews-band { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .section__head { margin-bottom: 2.5rem; }
  .stats-band { padding: 3.5rem 0; }
  .trust-bar { padding: 1.5rem 0; }
  .trust-bar__items { gap: 1.1rem 1.75rem; }
  .contact-strip { padding: 1.75rem 1.25rem; gap: 2rem; }
  .google-badge { padding: 1.6rem 1.5rem; }
  .btn-row { margin-top: 1.5rem; }
}
