/* ==========================================================================
   Anthony Cleaning Services Ltd — design system
   Source of truth: the hero. Deep navy / warm cream / muted gold,
   thin gold lines, botanical branch device, cinematic photography.
   Balance: ~70% cream · 20% navy · 10% gold (gold = detail only).
   ========================================================================== */

:root {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Palette (legacy names kept — privacy.html and the hero rely on them) */
  --navy:        #101A3B;
  --navy-2:      #1C2C58;
  --navy-soft:   #26365f;
  --navy-deep:   #0B1330;
  --parchment:   #F7F2E8;
  --parchment-2: #EFE7D8;
  --taupe:       #E2D6C3;
  --gold:        #AD8752;
  --gold-deep:   #8C6A3C;
  --gold-bright: #C9A06B;
  --gold-soft:   #F0E3D1;
  --ink:         #1B1815;
  --ink-soft:    #4A453D;
  --white:       #FFFFFF;
  --line:        rgba(27, 24, 21, 0.12);
  --line-light:  rgba(247, 242, 232, 0.22);

  /* System tokens */
  --cream:        var(--parchment);
  --cream-2:      #FBF8F2;           /* card surface on cream */
  --text:         var(--ink);
  --muted-text:   #5A544A;
  --border:       rgba(16, 26, 59, 0.10);
  --border-gold:  rgba(173, 135, 82, 0.55);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;
  --content-width: 1180px;
  --wrap:         var(--content-width);
  --gutter:       28px;
  --section-spacing: 96px;
  --head-gap:     48px;              /* section head → content */
  --grid-gap:     24px;

  --font-display: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 20px 50px -25px rgba(16, 26, 59, 0.35);
  --shadow-card: 0 16px 40px -22px rgba(16, 26, 59, 0.28);
  --shadow-rest: 0 1px 2px rgba(16, 26, 59, 0.04);
  --shadow-lift: 0 18px 36px -24px rgba(16, 26, 59, 0.30);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 1000px) { :root { --section-spacing: 80px; --head-gap: 40px; --grid-gap: 20px; } }
@media (max-width: 640px)  { :root { --section-spacing: 64px; --head-gap: 32px; --gutter: 20px; } }

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
svg { display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ==========================================================================
   Type scale
   ========================================================================== */

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-light);
  background: rgba(247, 242, 232, 0.06);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.85);
  margin-bottom: 22px;
}
.eyebrow-pill svg { color: var(--gold-bright); flex-shrink: 0; }
.eyebrow-pill.on-light {
  border-color: var(--line);
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.eyebrow-pill.on-light svg { color: var(--gold-deep); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(16, 26, 59, 0);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(16, 26, 59, 0.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(16,26,59,0.18);
}
.brand-mark img {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  max-width: none;
  height: 116%;
  object-fit: cover;
}
.brand-word { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.main-nav {
  display: flex;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 600;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--navy); }
.main-nav a.is-active { color: var(--gold-deep); }
.main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { display: flex; }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--navy);
}

/* Buttons — full pill */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-lg { padding: 16px 30px; font-size: 0.98rem; }

.btn-solid {
  background: var(--navy);
  color: var(--white);
}
.btn-solid:hover { background: var(--navy-2); }

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(173, 135, 82, 0.7);
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); }

.btn-outline-light {
  border: 1.5px solid var(--line-light);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-navy-on-light {
  background: var(--navy);
  color: var(--white);
}
.btn-navy-on-light:hover { background: var(--navy-2); transform: translateY(-1px); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 56px;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 45%;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 15, 36, 0.6) 0%, rgba(9, 15, 36, 0.4) 38%, rgba(9, 15, 36, 0.12) 60%, rgba(9, 15, 36, 0) 78%),
    linear-gradient(0deg, rgba(9, 15, 36, 0.45) 0%, rgba(9, 15, 36, 0) 35%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
}

.hero-copy { max-width: 620px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-title .accent { color: var(--gold-bright); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(247, 242, 232, 0.8);
  max-width: 56ch;
  margin-bottom: 30px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 34px;
}
.checklist.reveal {
  opacity: 1;
  transform: none;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(247, 242, 232, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.checklist.is-visible li { opacity: 1; transform: translateY(0); }
.checklist li:nth-child(1) { transition-delay: 0s; }
.checklist li:nth-child(2) { transition-delay: 0.08s; }
.checklist li:nth-child(3) { transition-delay: 0.16s; }
.checklist li:nth-child(4) { transition-delay: 0.24s; }
.checklist li:nth-child(5) { transition-delay: 0.32s; }
.checklist .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 160, 107, 0.18);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checklist.on-light li { color: var(--ink); }
.checklist.on-light .tick { background: var(--gold-soft); color: var(--gold-deep); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.hero-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(247, 242, 232, 0.92);
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.22);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}
.hero-trust-row li svg { color: var(--gold-bright); flex-shrink: 0; }

.hero-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 26, 59, 0.55);
  border: 1px solid rgba(247, 242, 232, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 260px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-mini-card:hover {
  background: rgba(16, 26, 59, 0.78);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.hero-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201, 160, 107, 0.2);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-mini-text { display: flex; flex-direction: column; gap: 2px; }
.hero-mini-text strong { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.hero-mini-text small { font-size: 0.76rem; color: rgba(247, 242, 232, 0.72); }

/* ==========================================================================
   Trusted by — infinite marquee (placeholder blocks pending approved client marks)
   ========================================================================== */

.trusted-by {
  background: var(--parchment);
  padding: 46px 0 64px;
  overflow: hidden;
}
.trusted-by-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-bottom: 34px;
}
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  height: 72px;
  width: 152px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Section system — one shell, two surfaces (cream / navy)
   Every section below the hero is `.section` + a surface modifier.
   Surfaces only set tokens; components read the tokens.
   ========================================================================== */

.section {
  position: relative;
  overflow: hidden;
  padding: var(--section-spacing) 0;
  background: var(--surface-bg);
  color: var(--surface-text);
  isolation: isolate;
}
.section > .wrap { position: relative; z-index: 1; }
/* Two light sections in a row: one gap, not two stacked paddings */
:is(.section--cream, .division--light) + :is(.section--cream, .division--light) { padding-top: 0; }

.section--cream, .division--light {
  --surface-bg: var(--cream);
  --surface-text: var(--text);
  --heading: var(--navy);
  --body: var(--muted-text);
  --accent-c: var(--gold-deep);
  --rule: var(--border);
  --leaf: #EAE0CD;
  --leaf-vein-c: rgba(173, 135, 82, 0.38);
}
.section--navy, .division--dark {
  --surface-bg: var(--navy);
  --surface-text: var(--white);
  --heading: var(--white);
  --body: rgba(247, 242, 232, 0.74);
  --accent-c: var(--gold-bright);
  --rule: rgba(247, 242, 232, 0.14);
  --leaf: #17224A;
  --leaf-vein-c: rgba(201, 160, 107, 0.34);
}

/* Section heading block — same hierarchy everywhere */
.section-head { max-width: 640px; margin-bottom: var(--head-gap); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-c, var(--gold-deep));
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.45rem + 2.1vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--heading, var(--navy));
  margin-bottom: 20px;
  max-width: 20ch;
}
.section-head--center .section-title { margin-left: auto; margin-right: auto; }
.section-title .accent,
.final-cta-title .accent { color: var(--accent-c); }
.section-title-light { color: var(--white); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.lede {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--body, var(--ink-soft));
  max-width: 60ch;
}
.lede-light { color: rgba(247, 242, 232, 0.78); }

/* ==========================================================================
   Brand devices — botanical branch + gold hairline curve
   Rules: top-right corner (beside left-aligned heads) or tucked beneath a
   photograph — never behind copy; max one branch per section, used on
   Cleaning (light), Why Anthony (light) and Process (dark). The gold curve
   appears three times: Logistics entry, Why Anthony, and the closing CTA.
   ========================================================================== */

.botanical {
  position: absolute;
  z-index: 0;
  width: clamp(110px, 11vw, 170px);
  height: auto;
  aspect-ratio: 1 / 2;
  color: var(--leaf);
  --leaf-vein: var(--leaf-vein-c);
  pointer-events: none;
}
.botanical--tr { top: -34px;    right: -26px;  transform: rotate(206deg); }
.botanical--tl { top: -34px;    left: -26px;   transform: scaleX(-1) rotate(206deg); }
.botanical--bl { bottom: -40px; left: -22px;   transform: rotate(22deg); }
.botanical--br { bottom: -40px; right: -22px;  transform: scaleX(-1) rotate(22deg); }

.gold-curve {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  overflow: visible;
}
.gold-curve--top { top: -14px; height: 96px; }
.gold-curve--why { bottom: 14px; height: 76px; transform: scaleY(-1); }

/* ==========================================================================
   Card grid + service card — ONE component for every division
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.card-grid--5 .svc-body { padding: 20px 18px; }
.card-grid--5 .svc-body h3 { font-size: 0.98rem; }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), opacity .6s var(--ease);
}
.division--dark .svc-card { background: var(--cream); border-color: rgba(247, 242, 232, 0.10); }

.svc-media {
  position: relative;
  aspect-ratio: 20 / 21;           /* ≈ 58% photo / 42% copy at 4-up */
  overflow: hidden;
  background: var(--navy-2);
}
.svc-card--division .svc-media { aspect-ratio: 3 / 2; }
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* unified grade: pull back orange, keep skin natural */
  filter: saturate(0.9) contrast(1.03) brightness(0.98);
  transition: transform .7s var(--ease);
}
/* cool navy shadows + warm highlight — echoes the London-dusk hero */
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 44, 88, 0) 45%, rgba(16, 26, 59, 0.30) 100%),
    linear-gradient(135deg, rgba(201, 160, 107, 0.10) 0%, rgba(28, 44, 88, 0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* Some source photos carry baked-in white rounded edges — trim them */
.svc-media img.img-trim, .why-media img.img-trim { transform-origin: 0 0; transform: scale(1.075); }

.svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 22px;
}
.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card--division .svc-body h3 { font-size: 1.2rem; }
.svc-body > p {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--muted-text);
  margin-bottom: 18px;
  flex: 1;
}

/* Text CTA + gold arrow (replaces the heavy navy pill) */
.svc-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.svc-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.svc-link:hover { border-bottom-color: var(--border-gold); }
.svc-link:hover svg { transform: translateX(4px); }
.svc-link--light { color: var(--white); }
.svc-link--light svg { color: var(--gold-bright); }

/* Whole card is clickable via the CTA's stretched hit-area */
.svc-card .svc-link::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.svc-card .svc-link:focus-visible { outline: none; }
.svc-card:focus-within { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.svc-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.svc-card:hover .svc-media img { transform: scale(1.035); }
.svc-card:hover .svc-media img.img-trim { transform: scale(1.11); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.division--dark .svc-card:hover { border-color: var(--gold); box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.55); }

/* ==========================================================================
   Division sections — Cleaning / Logistics / Staff
   ========================================================================== */

.division-head { max-width: 680px; }
.division-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--accent-c);
  margin-bottom: 22px;
}
.division--dark .division-icon { border-color: rgba(201, 160, 107, 0.5); }

/* Supporting "also covers" + CTA — full-width strip by default */
.division-foot {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px 32px;
  margin-top: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.division-foot .eyebrow { margin: 0; }
.division-foot-text { font-size: 0.92rem; color: var(--body); max-width: 70ch; }
.division--dark .division-foot .svc-link { color: var(--white); }
.division--dark .division-foot .svc-link svg { color: var(--gold-bright); }

/* ==========================================================================
   Services overview — division gateway (same card component, 3-up)
   ========================================================================== */

.services-overview { padding-top: calc(var(--section-spacing) - 64px); }   /* + trusted-by 64px = one standard gap */

/* ==========================================================================
   Why Anthony — editorial split
   ========================================================================== */

.why-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.why-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--navy-2);
}
.why-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 0; filter: saturate(0.92) contrast(1.03); }
.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 26, 59, 0) 55%, rgba(16, 26, 59, 0.45) 100%);
  pointer-events: none;
}
.why-copy .section-title { max-width: 18ch; }
.why-copy .lede { margin-bottom: 32px; }

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  border-top: 1px solid var(--rule);
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--gold-deep);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}
.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ==========================================================================
   Process — horizontal gold timeline (vertical on mobile)
   ========================================================================== */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 160, 107, 0.7), rgba(201, 160, 107, 0.7) 80%, rgba(201, 160, 107, 0));
}
.timeline li { position: relative; padding-right: 12px; }
.step-marker {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  background: var(--navy);
  color: var(--gold-bright);
  margin-bottom: 26px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.timeline li:hover .step-marker { background: var(--gold); color: var(--navy); }
.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.timeline p { font-size: 0.92rem; color: var(--body); max-width: 30ch; }

/* ==========================================================================
   Coverage — light, spacious, restrained map
   ========================================================================== */

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.coverage-copy .lede { margin-bottom: 32px; }
.coverage-list { border-top: 1px solid var(--rule); max-width: 460px; }
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--muted-text);
}
.coverage-list strong { display: block; font-size: 0.98rem; color: var(--navy); font-weight: 700; }

.coverage-map { display: block; width: 100%; max-width: 520px; height: auto; margin: 0 auto; }
.coverage-ring { fill: none; stroke: rgba(16, 26, 59, 0.22); stroke-width: 1.2; stroke-dasharray: 4 7; }
.coverage-ring-outer { stroke: rgba(16, 26, 59, 0.13); }
.coverage-route { stroke: rgba(173, 135, 82, 0.7); stroke-width: 1.2; stroke-dasharray: 3 6; }
.coverage-ring-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: rgba(16, 26, 59, 0.42);
}
.coverage-pin-main { color: var(--gold-deep); }
.coverage-pin-satellite { color: var(--navy); }
.coverage-pin-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; fill: var(--muted-text); }
.coverage-pin-label-main { font-family: var(--font-display); font-size: 18px; font-weight: 700; fill: var(--navy); letter-spacing: 0.06em; }

/* ==========================================================================
   Final CTA — cinematic close, same London dusk as the hero
   ========================================================================== */

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: calc(var(--section-spacing) + 16px) 0 var(--section-spacing);
  --accent-c: var(--gold-bright);
}
.final-cta-bg { position: absolute; inset: 0; z-index: -1; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 55%; }
.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 15, 36, 0.82) 0%, rgba(9, 15, 36, 0.62) 38%, rgba(9, 15, 36, 0.15) 62%, rgba(9, 15, 36, 0) 78%),
    linear-gradient(0deg, var(--navy) 0%, rgba(16, 26, 59, 0) 32%),
    linear-gradient(180deg, rgba(9, 15, 36, 0.35) 0%, rgba(9, 15, 36, 0) 25%);
}
.final-cta-inner { position: relative; width: 100%; }
.final-cta-inner > * { max-width: 560px; }
.final-cta .eyebrow { color: var(--gold-bright); }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem);   /* matches hero headline */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.final-cta-sub { font-size: 1.1rem; color: rgba(247, 242, 232, 0.8); margin-bottom: 34px; max-width: 48ch; }
.final-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; }

/* Contact cards — live inside the closing CTA */
.final-cta-inner > .contact-grid { max-width: 760px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 242, 232, 0.14);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid var(--line-light);
  background: rgba(9, 15, 36, 0.35);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.contact-card > div { min-width: 0; }
.contact-card .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 107, 0.5);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
a.contact-card:hover { border-color: var(--gold-bright); background: rgba(247, 242, 232, 0.04); transform: translateY(-2px); }
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.55);
  margin-bottom: 4px;
}
.contact-value { display: block; font-size: 0.98rem; font-weight: 700; overflow-wrap: anywhere; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0B1330;
  color: rgba(247,242,232,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 28px 48px;
}
.footer-mark {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}
.footer-mark img {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  max-width: none;
  height: 116%;
  object-fit: cover;
}
.footer-brand p {
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
}
.footer-tagline {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright) !important;
  margin-top: 6px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: 0.88rem; }
.footer-col a:hover { color: var(--white); }
.footer-pending { opacity: 0.6; font-size: 0.82rem; }

.footer-bottom {
  border-top: 1px solid rgba(247,242,232,0.1);
  padding: 20px 28px;
  font-size: 0.8rem;
  color: rgba(247,242,232,0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(247,242,232,0.62); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--gold);
  z-index: 400;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  animation: fab-pulse 2.8s ease-out infinite;
}
.whatsapp-fab:hover { animation-play-state: paused; }
@keyframes fab-pulse {
  0% { box-shadow: var(--shadow-soft), 0 0 0 0 rgba(173, 135, 82, 0.45); }
  70% { box-shadow: var(--shadow-soft), 0 0 0 14px rgba(173, 135, 82, 0); }
  100% { box-shadow: var(--shadow-soft), 0 0 0 0 rgba(173, 135, 82, 0); }
}
.whatsapp-fab:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards: keep the reveal fade AND the hover transitions */
.svc-card.reveal {
  transition: opacity .6s var(--ease), transform .45s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card.reveal.is-visible:hover { transform: translateY(-2px); }
.card-grid > .reveal:nth-child(2) { transition-delay: .06s; }
.card-grid > .reveal:nth-child(3) { transition-delay: .12s; }
.card-grid > .reveal:nth-child(4) { transition-delay: .18s; }
.card-grid > .reveal:nth-child(5) { transition-delay: .24s; }
.card-grid > .reveal.is-visible:hover { transition-delay: 0s; }
.timeline > .reveal:nth-child(2) { transition-delay: .08s; }
.timeline > .reveal:nth-child(3) { transition-delay: .16s; }
.timeline > .reveal:nth-child(4) { transition-delay: .24s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-copy { max-width: none; }
  .hero-mini-card { max-width: none; }
  /* Tall stacked hero: show the skyline as a band on top, fading into navy
     (a 2.5:1 photo stretched over a tall box would only show its dark edge) */
  .hero { isolation: isolate; background: var(--navy-deep); padding-top: clamp(240px, 50vw, 400px); }
  .hero-bg { bottom: auto; height: clamp(380px, 82vw, 640px); }
  .hero-bg img { object-position: 90% 50%; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(11, 19, 48, 0.25) 0%, rgba(11, 19, 48, 0) 22%, rgba(11, 19, 48, 0.55) 62%, var(--navy-deep) 100%);
  }

  .card-grid, .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--3 > :last-child { grid-column: 1 / -1; }
  .card-grid--3 > :last-child .svc-media { aspect-ratio: 16 / 7; }
  .card-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap); }
  .card-grid--5 > .svc-card:nth-child(5) { grid-column: 1 / -1; }
  .card-grid--5 > .svc-card:nth-child(5) .svc-media { aspect-ratio: 16 / 7; }
  .division-foot { grid-template-columns: 1fr; justify-items: start; gap: 12px; }

  .why-inner, .coverage-inner { grid-template-columns: 1fr; }
  .why .botanical { display: none; }   /* stacked layout puts copy in that corner */
  .why-media { aspect-ratio: 4 / 3; }
  .why-media img { object-position: 30% 15%; }
  .why-copy .section-title, .why-copy .lede { max-width: none; }
  .coverage-map { max-width: 460px; }

  .timeline { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .timeline::before { display: none; }

  .final-cta-inner > .contact-grid { max-width: 560px; }

  .final-cta { min-height: 480px; }
  .final-cta-bg img { object-position: 78% 55%; }
  .final-cta-bg::after {
    background:
      linear-gradient(100deg, rgba(9, 15, 36, 0.78) 0%, rgba(9, 15, 36, 0.5) 60%, rgba(9, 15, 36, 0.25) 100%),
      linear-gradient(0deg, var(--navy) 0%, rgba(16, 26, 59, 0) 35%);
  }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-call span { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--parchment);
    flex-direction: column;
    padding: 8px 28px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header.nav-open .main-nav a::after { display: none; }
}

@media (max-width: 640px) {
  .wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
  .header-inner { height: 72px; }
  .site-header.nav-open .main-nav { top: 72px; padding: 8px 20px 24px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 0.98rem; }
  .brand-sub { display: none; }
  /* Phone: copy starts over the sky; skyline band sits behind the headline */
  .hero { padding-top: 36px; padding-bottom: 40px; min-height: 0; }
  .hero-inner { gap: 32px; }
  .hero-bg { height: 620px; }
  .hero-bg img { object-position: 90% 60%; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(11, 19, 48, 0.55) 0%, rgba(11, 19, 48, 0.35) 28%, rgba(11, 19, 48, 0.62) 48%, rgba(11, 19, 48, 0.82) 72%, var(--navy-deep) 100%);
  }
  .hero-sub, .hero-title { text-shadow: 0 1px 12px rgba(9, 15, 36, 0.55);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-mini-cards { flex-direction: column; gap: 10px; }
  /* column flex: stop the 200px flex-basis from becoming each card's height */
  .hero-mini-card { flex: 0 0 auto; min-width: 0; padding: 12px 16px; }
  .hero-mini-icon { width: 36px; height: 36px; }
  .checklist { grid-template-columns: 1fr; }

  /* Service cards: swipeable rail with a peek of the next card */
  .division .card-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 18px;
    scrollbar-width: none;
  }
  .division .card-grid::-webkit-scrollbar { display: none; }
  .division .card-grid > * { scroll-snap-align: start; }
  .division .card-grid--5 > .svc-card:nth-child(5) { grid-column: auto; }
  .division .card-grid--5 > .svc-card:nth-child(5) .svc-media { aspect-ratio: 5 / 4; }
  .division .svc-card .svc-media { aspect-ratio: 5 / 4; }
  .division-foot {
    grid-column: auto;
    margin: 0;
    padding: 28px 24px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    align-content: center;
  }
  .division-foot-text { font-size: 0.9rem; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--3 > :last-child .svc-media { aspect-ratio: 3 / 2; }

  .trust-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; row-gap: 28px; justify-content: stretch; }

  /* Vertical timeline */
  .timeline { grid-template-columns: 1fr; row-gap: 36px; }
  .timeline::before {
    display: block;
    top: 26px;
    bottom: 26px;
    left: 26px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(201, 160, 107, 0.7), rgba(201, 160, 107, 0.7) 85%, rgba(201, 160, 107, 0));
  }
  .timeline li { padding-left: 76px; padding-right: 0; min-height: 52px; }
  .step-marker { position: absolute; left: 0; top: 0; margin: 0; }
  .timeline p { max-width: none; }

  .botanical { display: none; }   /* no free corners at phone width */
  .gold-curve--top { top: -8px; height: 56px; }
  .gold-curve--why { height: 48px; bottom: 8px; }

  .final-cta { min-height: 0; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 36px; padding-top: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; padding-bottom: 36px; }
  .footer-bottom { padding-top: 20px; padding-bottom: 20px; }
  /* keep the floating WhatsApp button from sitting on the last footer line */
  .site-footer { padding-bottom: 76px; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }

  /* Hero location pill: allow a tidy two-line wrap instead of a stretched capsule */
  .eyebrow-pill { border-radius: 20px; padding: 9px 16px; font-size: 0.7rem; letter-spacing: 0.05em; line-height: 1.45; text-wrap: balance; }

  /* Contact cards: tighter so the email address wraps at its natural break points */
  .contact-card { padding: 16px; gap: 12px; }
  .contact-card .contact-icon { width: 38px; height: 38px; }
  .contact-value { font-size: 0.86rem; }

  /* Coverage map: SVG text scales with the viewBox, so bump it to stay legible */
  .coverage-map { max-width: 100%; }
  .coverage-ring-label { font-size: 12px; }
  .coverage-pin-label { font-size: 16px; }
  .coverage-pin-label-main { font-size: 21px; }
}

@media (max-width: 460px) {
  .brand { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 0.92rem; }
}

@media (max-width: 360px) {
  .header-inner { gap: 10px; }
  .brand-name { font-size: 0.82rem; }
}

/* ==========================================================================
   Legal pages (privacy policy)
   ========================================================================== */

.legal {
  background: var(--parchment);
  padding: 132px 0 88px;
}
.legal-inner {
  max-width: 780px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 18px 0 10px;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.legal-inner .lede {
  margin-bottom: 8px;
}
.legal-inner h2 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--navy);
  margin: 44px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal-inner h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy-2);
  margin: 26px 0 8px;
}
.legal-inner p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.legal-list li { margin-bottom: 9px; }
.legal-inner strong { color: var(--ink); }
.legal-inner a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-inner a:hover { color: var(--navy); }

/* Placeholders the business still needs to complete before publishing. */
.fill-in {
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 1px 7px;
  color: var(--gold-deep);
  font-size: 0.92em;
  font-weight: 600;
}
.legal-back {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-back a { text-decoration: none; }
