/* =========================================================
   UK Mobile Car Wash — Global Styles
   Brand foundation: Black · White · Luxury Gold
   Edit colour tokens below to rebrand quickly.
   ========================================================= */

:root {
  /* Brand colours — editable */
  --color-black: #09090b;
  --color-black-soft: #18181b;
  --color-white: #fafafa;
  --color-white-muted: rgba(255, 255, 255, 0.8);
  --color-white-faint: rgba(255, 255, 255, 0.7);
  --color-gold: #FFA800;
  --color-gold-soft: #FFC24D;
  --color-gold-deep: #E69500;

  /* Surfaces on dark hero */
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --ring: rgba(255, 255, 255, 0.14);
  --ring-strong: rgba(255, 255, 255, 0.2);

  /* Typography — modern minimal, symmetrical sans */
  --font-display: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --font-ui: "Outfit", "Avenir Next", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 80rem;
  --header-offset: 1rem;
  --radius-full: 9999px;
  --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;
  overflow-x: clip;
}

body {
  font-family: var(--font-ui);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 5.5rem;
  overflow-x: clip;
  max-width: 100%;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.section-anchor {
  height: 0;
  scroll-margin-top: 5rem;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark wash + subtle gold rim for premium automotive feel */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.72) 0%, rgba(9, 9, 11, 0.55) 40%, rgba(9, 9, 11, 0.82) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 168, 0, 0.18), transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

/* ----- Header ----- */

.hero__header {
  position: relative;
  z-index: 20;
  padding-top: 1rem;
}

@media (min-width: 1280px) {
  .hero__header {
    padding-top: 1.25rem;
  }
}

.hero__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: 1.5rem;
  padding-top: 0.25rem;
}

/* Brand logo — left nav */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: 3.25rem;
  object-fit: contain;
  background: transparent;
}

@media (min-width: 768px) {
  .brand__logo {
    height: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .brand__logo {
    height: 4.25rem;
  }
}

/* Desktop nav pill */
.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
  }
}

.nav__pill {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  border-radius: var(--radius-full);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--ring);
}

.nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: rgba(255, 255, 255, 0.95);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s var(--ease-out);
}

.nav__cta:hover {
  background: var(--color-gold-soft);
}

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

/* Mobile toggle */
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--glass-strong);
  box-shadow: inset 0 0 0 1px var(--ring-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__toggle .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.75rem 1.5rem 0;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px var(--ring);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__link {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0.65rem;
  transition: background 0.2s ease;
}

.mobile-menu__link:hover {
  background: var(--glass);
}

.mobile-menu__cta {
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-black);
}

/* ----- Hero body ----- */

.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__content-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero__content-inner {
    padding-top: 6.5rem;
  }
}

@media (min-width: 768px) {
  .hero__content-inner {
    padding-top: 7rem;
  }
}

@media (min-width: 1024px) {
  .hero__content-inner {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.55rem 0.4rem 0.4rem;
  border-radius: var(--radius-full);
  background: var(--glass-strong);
  box-shadow: inset 0 0 0 1px var(--ring-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__badge-label {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__badge-text {
  padding-right: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Title */
.hero__title {
  max-width: 54rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.1rem, 9.5vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero__title-main {
  display: block;
  /* Upper whiter → bottom darker (black & white gradient) */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafa 28%,
    #d4d4d8 58%,
    #71717a 82%,
    #18181b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__title-line {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.hero__description {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white-muted);
}

@media (min-width: 640px) {
  .hero__description {
    font-size: 1.125rem;
  }
}

/* Buttons */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  min-width: 2.85rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

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

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 0 1px rgba(255, 168, 0, 0.45);
}

.btn--primary:hover {
  background: var(--color-gold-soft);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px transparent;
}

.btn--ghost:hover {
  color: var(--color-white);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--ring);
}

/* Brands row — single line on all breakpoints */
.hero__brands {
  margin-top: 3.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__brands {
    margin-top: 4rem;
  }
}

.hero__brands-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white-faint);
  text-align: center;
}

.hero__brands-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
  margin-top: 1.15rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero__brands-list {
    justify-content: center;
    gap: 0.75rem;
  }
}

.hero__brands-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
}

@media (min-width: 640px) {
  .hero__brands-list li {
    flex: 0 1 auto;
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 9.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.25rem;
  border-radius: 0.85rem;
  transition:
    transform 0.28s var(--ease-out),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

@media (min-width: 640px) {
  .brand-logo {
    min-height: 3.25rem;
    padding: 0.65rem 0.85rem;
  }
}

.brand-logo img {
  width: auto;
  max-width: 100%;
  height: 1.55rem;
  object-fit: contain;
  opacity: 0.82;
  filter: drop-shadow(0 0 0 transparent);
  transition:
    opacity 0.28s ease,
    transform 0.28s var(--ease-out),
    filter 0.28s ease;
}

@media (min-width: 480px) {
  .brand-logo img {
    height: 1.85rem;
  }
}

@media (min-width: 640px) {
  .brand-logo img {
    max-width: 8.25rem;
    height: 2.65rem;
  }
}

.brand-logo:hover,
.brand-logo:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.brand-logo:hover img,
.brand-logo:focus-visible img {
  opacity: 1;
  transform: scale(1.12);
}

.brand-logo:active {
  transform: translateY(-1px) scale(0.98);
}

/* =========================================================
   Animations — smooth staggered hero entrance
   ========================================================= */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.35rem) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroFadeSoft {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   PAGE LOADER — white line 0–100%, then lifts
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09090b;
  transform: translateY(0);
  transition: transform 0.95s var(--ease-out), opacity 0.95s var(--ease-out);
  will-change: transform, opacity;
}

.page-loader.is-lifting {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

.page-loader.is-gone {
  display: none;
}

.page-loader__inner {
  width: min(18rem, 78vw);
  text-align: center;
}

.page-loader__brand {
  margin-bottom: 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-loader__track {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.page-loader__bar {
  width: 0%;
  height: 100%;
  background: #ffffff;
  transform-origin: left center;
  transition: width 0.08s linear;
}

.page-loader__percent {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
}

body.is-loading {
  overflow: hidden;
}

/* Hero entrance only after loader finishes */
.animate-in {
  opacity: 0;
  animation: none;
}

body.is-hero-ready .animate-in {
  animation: heroFadeUp 0.95s var(--ease-out) forwards;
  will-change: opacity, transform, filter;
}

body.is-hero-ready .hero__header.animate-in,
body.is-hero-ready .hero__title-line.animate-in {
  animation-name: heroFadeSoft;
  animation-duration: 0.85s;
}

body.is-hero-ready .animate-in--1 { animation-delay: 0.08s; }
body.is-hero-ready .animate-in--2 { animation-delay: 0.22s; }
body.is-hero-ready .animate-in--3 { animation-delay: 0.38s; }
body.is-hero-ready .animate-in--4 { animation-delay: 0.52s; }
body.is-hero-ready .animate-in--5 { animation-delay: 0.66s; }
body.is-hero-ready .animate-in--6 { animation-delay: 0.82s; }
body.is-hero-ready .animate-in--7 { animation-delay: 0.94s; }
body.is-hero-ready .animate-in--8 { animation-delay: 1.04s; }
body.is-hero-ready .animate-in--9 { animation-delay: 1.14s; }
body.is-hero-ready .animate-in--10 { animation-delay: 1.24s; }
body.is-hero-ready .animate-in--11 { animation-delay: 1.34s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-loader {
    transition: opacity 0.35s ease;
  }

  .page-loader.is-lifting {
    transform: none;
    opacity: 0;
  }

  body.is-hero-ready .animate-in {
    opacity: 1;
    animation: none;
    filter: none;
    will-change: auto;
  }

  .brand-logo,
  .brand-logo img,
  .btn,
  .nav__cta {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =========================================================
   HOW IT WORKS — light section after dark hero
   ========================================================= */

.how-it-works {
  position: relative;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(255, 168, 0, 0.1), transparent 55%),
    linear-gradient(180deg, #141416 0%, #09090b 48%, #050505 100%);
  color: var(--color-white);
  padding: 4.5rem 1.5rem 5rem;
  scroll-margin-top: 1rem;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 6rem 1.5rem 6.5rem;
  }
}

.how-it-works__inner {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
}

.how-it-works__intro {
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .how-it-works__intro {
    margin-bottom: 3.5rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-it-works__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-white);
}

.how-it-works__lead {
  margin-top: 0.85rem;
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.how-it-works__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .how-step {
    gap: 1.5rem;
  }
}

.how-step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.how-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.how-step__icon svg {
  width: 1rem;
  height: 1rem;
}

.how-step__line {
  width: 1px;
  flex: 1;
  min-height: 1.5rem;
  margin-top: 0.25rem;
  background: rgba(255, 255, 255, 0.14);
}

.how-step__body {
  padding-bottom: 2.35rem;
  min-width: 0;
}

.how-step--last .how-step__body {
  padding-bottom: 0;
}

.how-step__number {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.how-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.how-step__copy {
  margin-top: 0.4rem;
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.how-it-works__cta {
  margin-top: 2.75rem;
}

/* Scroll reveal for sections below the hero */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }
.reveal--delay-6 { transition-delay: 0.48s; }

/* =========================================================
   SERVICES — white theme + coming soon
   ========================================================= */

.services {
  position: relative;
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(255, 168, 0, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  color: var(--color-black);
  padding: 4.5rem 1.5rem 5rem;
  scroll-margin-top: 1rem;
}

@media (min-width: 768px) {
  .services {
    padding: 6rem 1.5rem 6.5rem;
  }
}

.services__inner {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}

.services__intro {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .services__intro {
    margin-bottom: 3.5rem;
  }
}

.section-badge--light {
  border-color: rgba(9, 9, 11, 0.12);
  background: rgba(9, 9, 11, 0.03);
  color: rgba(9, 9, 11, 0.72);
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-black);
}

.services__lead {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(9, 9, 11, 0.55);
}

.services__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .services__grid {
    gap: 1rem;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem 1rem;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    background 0.35s ease;
}

@media (min-width: 640px) {
  .service-item {
    padding: 1.5rem 1.4rem;
  }
}

.service-item:hover {
  border-color: rgba(9, 9, 11, 0.16);
  background: #ffffff;
  transform: translateY(-2px);
}

.service-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(9, 9, 11, 0.1);
  background: #f4f4f5;
  color: var(--color-black);
  flex-shrink: 0;
}

.service-item__icon svg {
  width: 1rem;
  height: 1rem;
}

.service-item__title {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.service-item__copy {
  margin-top: 0.4rem;
  font-size: clamp(0.8rem, 2.2vw, 0.925rem);
  line-height: 1.55;
  color: rgba(9, 9, 11, 0.55);
}

/* Coming Soon block */
.coming-soon {
  margin-top: 2.25rem;
  padding: 1.5rem 1.25rem;
  border: 1px dashed rgba(9, 9, 11, 0.16);
  background: rgba(9, 9, 11, 0.02);
}

@media (min-width: 640px) {
  .coming-soon {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.75rem 1.75rem;
    margin-top: 2.75rem;
  }
}

.coming-soon__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coming-soon__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.coming-soon__lead {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(9, 9, 11, 0.52);
}

.coming-soon__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .coming-soon__list {
    margin-top: 0;
  }
}

.coming-soon__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(9, 9, 11, 0.72);
}

.coming-soon__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.services__cta {
  margin-top: 2.5rem;
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: none;
}

.btn--dark:hover {
  background: #27272a;
}

/* =========================================================
   ABOUT US — white theme
   ========================================================= */

.about {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(255, 168, 0, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: var(--color-black);
  padding: 4.5rem 1.5rem 5rem;
  scroll-margin-top: 1rem;
}

@media (min-width: 768px) {
  .about {
    padding: 6rem 1.5rem 6.5rem;
  }
}

.about__inner {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}

.about__intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-black);
}

.about__content {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about__content {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.about__founder {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(9, 9, 11, 0.5);
}

.about__founder strong {
  color: var(--color-gold-deep);
  font-weight: 700;
}

.about__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--color-black);
}

.about__copy {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(9, 9, 11, 0.55);
}

.about__cta {
  margin-top: 1.75rem;
}

.about__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(9, 9, 11, 0.08);
}

.about__point {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(9, 9, 11, 0.08);
}

.about__point-num {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold-deep);
}

.about__point-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.about__point-copy {
  margin-top: 0.3rem;
  font-size: 0.925rem;
  line-height: 1.5;
  color: rgba(9, 9, 11, 0.55);
}

/* =========================================================
   SERVICE AREAS — dark theme
   ========================================================= */

.areas {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 168, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #121214 0%, #09090b 55%, #050505 100%);
  color: var(--color-white);
  padding: 4.5rem 1.5rem 5rem;
  scroll-margin-top: 1rem;
}

@media (min-width: 768px) {
  .areas {
    padding: 6rem 1.5rem 6.5rem;
  }
}

.areas__inner {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}

.areas__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .areas__intro {
    margin-bottom: 3.25rem;
  }
}

.areas__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-white);
}

.areas__lead {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.areas__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .areas__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.areas__item {
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.35s var(--ease-out),
    background 0.35s ease,
    transform 0.35s var(--ease-out);
}

@media (min-width: 640px) {
  .areas__item {
    padding: 1.5rem 1.25rem;
  }
}

.areas__item:hover {
  border-color: rgba(255, 168, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.areas__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  color: var(--color-gold);
}

.areas__pin svg {
  width: 1.15rem;
  height: 1.15rem;
}

.areas__name {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.areas__note {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.areas__suburbs {
  margin-top: 1.75rem;
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   CTA BANNER — after service areas
   ========================================================= */

.cta-banner {
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f3f4 55%, #ebebec 100%);
  color: var(--color-black);
  padding: 3.5rem 1.5rem;
  border-block: 1px solid rgba(9, 9, 11, 0.06);
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 4.5rem 1.5rem;
  }
}

.cta-banner__inner {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  gap: 1.75rem;
  align-items: end;
}

@media (min-width: 900px) {
  .cta-banner__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
  }
}

.cta-banner__eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--color-black);
}

.cta-banner__title span {
  display: block;
  color: rgba(9, 9, 11, 0.55);
}

.cta-banner__lead {
  margin-top: 0.85rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(9, 9, 11, 0.55);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--whatsapp-outline {
  background: transparent;
  color: #128c7e;
  box-shadow: inset 0 0 0 1px rgba(18, 140, 126, 0.45);
}

.btn--whatsapp-outline:hover {
  background: rgba(37, 211, 102, 0.12);
}

/* =========================================================
   BOOKING / INQUIRY — wide layout
   ========================================================= */

.booking {
  position: relative;
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(255, 168, 0, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%);
  color: var(--color-black);
  padding: 4.5rem 1.25rem 5.5rem;
  scroll-margin-top: 1rem;
}

.booking__anchor {
  position: absolute;
  top: 0;
  height: 0;
  scroll-margin-top: 1rem;
}

@media (min-width: 768px) {
  .booking {
    padding: 6rem 2rem 6.5rem;
  }
}

.booking__inner {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}

.booking__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
  max-width: none;
}

@media (min-width: 900px) {
  .booking__intro {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.25rem;
  }
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-black);
  max-width: 16ch;
}

.booking__lead {
  margin-top: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(9, 9, 11, 0.55);
  max-width: 34rem;
}

@media (min-width: 900px) {
  .booking__lead {
    justify-self: end;
    text-align: left;
    padding-bottom: 0.25rem;
  }
}

.booking__layout {
  display: block;
  width: 100%;
}

.booking-form {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background: #ffffff;
}

@media (min-width: 640px) {
  .booking-form {
    padding: 1.85rem 1.75rem;
  }
}

.booking-form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .booking-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(9, 9, 11, 0.65);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(9, 9, 11, 0.14);
  border-radius: 0;
  background: #fafafa;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 168, 0, 0.7);
  background: #ffffff;
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #b42318;
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(9, 9, 11, 0.45);
}

.booking-form__notice {
  margin: 0.25rem 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(9, 9, 11, 0.5);
}

.btn[disabled],
.btn[aria-busy="true"] {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-form__status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(9, 9, 11, 0.65);
}

.booking-form__status.is-error {
  color: #b42318;
}

.booking-form__status.is-success {
  color: #067647;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 168, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #121214 0%, #050505 100%);
  color: var(--color-white);
  padding: 4rem 1.5rem 2rem;
}

.site-footer__inner {
  max-width: 64rem;
  margin-inline: auto;
}

.site-footer__brand {
  max-width: 28rem;
  margin-bottom: 2.5rem;
}

.site-footer__logo-link {
  display: inline-flex;
  line-height: 0;
}

.site-footer__logo {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
}

.site-footer__tagline {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .site-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.site-footer__heading {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a,
.site-footer__links li {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__credit a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  color: var(--color-gold-soft);
}

/* =========================================================
   FIXED CALL + WHATSAPP DOCK (bottom right)
   ========================================================= */

.float-dock {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

@media (min-width: 640px) {
  .float-dock {
    right: 1.35rem;
    bottom: 1.35rem;
  }
}

.float-dock__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #ffffff;
  isolation: isolate;
  transition: transform 0.25s var(--ease-out);
}

.float-dock__btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.float-dock__btn:active {
  transform: scale(0.98);
}

.float-dock__glow {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.85;
  animation: floatGlow 2.2s ease-in-out infinite;
}

.float-dock__btn--call {
  background: linear-gradient(135deg, #FFA800 0%, #E69500 100%);
  color: #18181b;
  box-shadow: 0 10px 28px rgba(255, 168, 0, 0.35);
}

.float-dock__btn--call .float-dock__glow {
  background: rgba(255, 168, 0, 0.55);
  filter: blur(10px);
}

.float-dock__btn--wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.float-dock__btn--wa .float-dock__glow {
  background: rgba(37, 211, 102, 0.5);
  filter: blur(10px);
}

.float-dock__icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.float-dock__label {
  line-height: 1;
}

@keyframes floatGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-dock__glow {
    animation: none;
    opacity: 0.55;
  }
}
