/* ============================================================
   LT Property Services — styles.css
   Premium property management website
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #1a2744;
  --navy-dark:   #0f1e38;
  --navy-light:  #243660;
  --gold:        #b8963e;
  --gold-light:  #d4af5a;
  --cream:       #faf8f4;
  --off-white:   #f4f2ee;
  --border:      #e0dbd0;
  --text:        #1c1c1c;
  --text-muted:  #5c5c5c;
  --white:       #ffffff;
  --header-h:    88px;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 2px 16px rgba(26,39,68,0.10);
  --shadow-lg:   0 8px 40px rgba(26,39,68,0.18);
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

strong { font-weight: 600; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { /* intentional */ }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.0625rem;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,39,68,0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 66px;
  width: auto;
  display: block;
}

/* Main nav */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  display: block;
  padding: 6px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: var(--off-white);
}

/* ── Nav dropdown ───────────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-label {
  display: block;
  padding: 6px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: default;
  border-radius: var(--radius);
  user-select: none;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-wrap:hover .nav-dropdown-label {
  color: var(--navy);
  background: var(--off-white);
}
.main-nav .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(26,39,68,0.12);
  padding: 6px 0;
  z-index: 150;
  list-style: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav-dropdown-wrap:hover .main-nav .nav-dropdown,
.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text);
  background: none;
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--cream);
  color: var(--navy);
}

/* Phone number — gold button */
.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-portal-btn:hover { background: #a07832; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 14px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.header-phone:hover {
  background: var(--navy);
  color: var(--white);
}
.phone-icon { font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--off-white); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Mobile Nav Overlay ─────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-nav-overlay nav a {
  display: block;
  padding: 12px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav-overlay nav a:hover { color: var(--white); }

.mobile-nav-phone {
  display: block;
  margin-top: 32px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.mobile-nav-hours {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ── Pages container ────────────────────────────────────────── */
#pages {
  padding-top: var(--header-h);
}

.page { display: none; }
.page.active {
  display: block;
  animation: pageFadeIn 0.35s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      160deg,
      rgba(12,24,40,0.78) 0%,
      rgba(26,39,68,0.68) 45%,
      rgba(15,30,56,0.72) 100%
    ),
    url('https://images.pexels.com/photos/2561281/pexels-photo-2561281.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1');
  background-size: cover;
  background-position: center 40%;
}

/* Subtle architectural grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px),
    repeating-linear-gradient(90deg,  transparent, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px);
}

/* Gold accent line at bottom of hero */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 24px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg { width: 16px; height: 16px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.trust-middle-group {
  display: contents;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 12px 16px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-item {
    flex: 0 0 45%;
    padding: 14px 8px;
  }
  .trust-divider {
    display: none;
  }
}

/* ── Home Intro ─────────────────────────────────────────────── */
.home-intro {
  padding: 96px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 24px;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.intro-text .btn { margin-top: 12px; }

/* Building image placeholder */
.building-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.building-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  background-size: cover;
  background-position: center;
}

.building-img-1 {
  /* White terraced houses, London */
  background-image: url('https://images.pexels.com/photos/20703514/pexels-photo-20703514.jpeg?auto=compress&cs=tinysrgb&w=900&h=680&dpr=1');
  background-position: center top;
}

.building-img-2 {
  /* Aerial view of Central London from the London Eye, Thames and bridges */
  background-image: url('https://images.pexels.com/photos/10227346/pexels-photo-10227346.jpeg?auto=compress&cs=tinysrgb&w=900&h=680&dpr=1');
  background-position: center;
}

/* ── Pain Points ────────────────────────────────────────────── */
.pain-points {
  background: var(--off-white);
  padding: 96px 0;
}

.section-header.center { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pain-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pain-cta {
  text-align: center;
}
.pain-cta p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── Home Services ──────────────────────────────────────────── */
.home-services {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

.service-img-residential {
  /* Row of red brick Victorian townhouses, London */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('https://images.pexels.com/photos/18729246/pexels-photo-18729246.jpeg?auto=compress&cs=tinysrgb&w=800&h=450&dpr=1');
}
.service-img-commercial {
  /* Street in the City of London */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('https://images.pexels.com/photos/18191325/pexels-photo-18191325.jpeg?auto=compress&cs=tinysrgb&w=800&h=450&dpr=1');
}
.service-img-project {
  /* Low angle modern buildings */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('https://images.pexels.com/photos/2467651/pexels-photo-2467651.jpeg?auto=compress&cs=tinysrgb&w=800&h=450&dpr=1');
}
.service-img-consultancy {
  /* Facade of white concrete buildings */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('https://images.pexels.com/photos/2705436/pexels-photo-2705436.jpeg?auto=compress&cs=tinysrgb&w=800&h=450&dpr=1');
}
.service-img-rtm {
  /* Old brick buildings, London */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('https://images.pexels.com/photos/17762858/pexels-photo-17762858.jpeg?auto=compress&cs=tinysrgb&w=800&h=450&dpr=1');
}
.service-img-case-studies {
  /* Premium Marylebone residential terrace — case studies */
  background-image:
    linear-gradient(to bottom, rgba(26,39,68,0.08) 0%, rgba(26,39,68,0.35) 100%),
    url('marylebone-residential-block-case-study.png');
  background-position: center top;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: gap var(--transition);
}
.card-link:hover { text-decoration: underline; }

/* ── Why LTPS ───────────────────────────────────────────────── */
.why-ltps {
  background: var(--cream);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.why-content h2 { margin-bottom: 36px; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--navy);
}

.why-point p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Home Final CTA ─────────────────────────────────────────── */
.home-final-cta {
  background: var(--navy);
  padding: 96px 24px;
  text-align: center;
}

.home-final-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.home-final-cta > p {
  color: var(--white);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-hours {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

.cta-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════ */

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero.page-hero-short {
  min-height: 260px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background: linear-gradient(150deg, #0c1828 0%, #1a2744 50%, #1e3058 100%);
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 70px, rgba(255,255,255,0.02) 70px, rgba(255,255,255,0.02) 71px),
    repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(255,255,255,0.02) 70px, rgba(255,255,255,0.02) 71px);
}

/* Individual page hero images */
.page-hero-residential {
  /* Historic red brick building, London */
  background-image:
    linear-gradient(150deg, rgba(12,24,40,0.78) 0%, rgba(26,39,68,0.62) 100%),
    url('https://images.pexels.com/photos/28870933/pexels-photo-28870933.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-commercial {
  /* London city skyline at night with the Shard */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.78) 0%, rgba(20,32,55,0.62) 100%),
    url('https://images.pexels.com/photos/28056041/pexels-photo-28056041.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-project {
  /* London skyline from the River Thames */
  background-image:
    linear-gradient(150deg, rgba(12,24,40,0.78) 0%, rgba(26,39,68,0.62) 100%),
    url('https://images.pexels.com/photos/11274364/pexels-photo-11274364.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-consultancy {
  /* Westminster, London */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.80) 0%, rgba(24,38,60,0.65) 100%),
    url('https://images.pexels.com/photos/19955275/pexels-photo-19955275.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-investments {
  /* Modern glass office tower — commercial investment property */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.78) 0%, rgba(20,34,58,0.62) 100%),
    url('https://images.pexels.com/photos/269077/pexels-photo-269077.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center 50%;
}
.page-hero-rtm {
  /* Westminster Bridge at night, London */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.80) 0%, rgba(22,36,56,0.65) 100%),
    url('https://images.pexels.com/photos/9998420/pexels-photo-9998420.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-cases {
  /* London skyline, stunning night cityscape */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.80) 0%, rgba(20,34,54,0.65) 100%),
    url('https://images.pexels.com/photos/28486319/pexels-photo-28486319.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-about {
  /* Aerial view of white London houses */
  background-image:
    linear-gradient(150deg, rgba(12,24,40,0.78) 0%, rgba(26,39,68,0.62) 100%),
    url('https://images.pexels.com/photos/2793649/pexels-photo-2793649.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}
.page-hero-contact {
  /* Westminster Abbey, London */
  background-image:
    linear-gradient(150deg, rgba(10,20,36,0.80) 0%, rgba(24,38,60,0.65) 100%),
    url('https://images.pexels.com/photos/678777/pexels-photo-678777.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover; background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0;
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Page Content ───────────────────────────────────────────── */
.page-content {
  padding: 72px 0;
}

.content-intro {
  max-width: 720px;
  margin-bottom: 64px;
}

.content-intro .lead {
  margin-bottom: 20px;
}

/* ── Service Detail Grid ────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

.service-detail-main h2 {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.service-detail-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.service-detail-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-detail-block h3 {
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-detail-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-block li {
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-detail-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Sidebar ────────────────────────────────────────────────── */
.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
}

.sidebar-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1875rem;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.sidebar-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

.sidebar-highlight {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sidebar-highlight h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.sidebar-highlight p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}

/* ── Page Bottom CTA ────────────────────────────────────────── */
.page-bottom-cta {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  border: 1px solid var(--border);
}

.page-bottom-cta h2 { margin-bottom: 16px; }
.page-bottom-cta > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.page-bottom-cta .btn { margin: 0 auto; }
.page-bottom-cta p:last-child {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════ */
.case-studies-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 72px;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-study-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.case-study-img-1 {
  /* High-end Marylebone/Belgravia residential terrace — uploaded by client */
  background-image:
    linear-gradient(rgba(26,39,68,0.12), rgba(26,39,68,0.22)),
    url('marylebone-residential-block-case-study.png');
  background-position: center;
}
.case-study-img-2 {
  /* Victorian red brick mansion block — uploaded by client */
  background-image:
    linear-gradient(rgba(26,39,68,0.12), rgba(26,39,68,0.22)),
    url('victorian-mansion-block-rtm-transition.png');
  background-position: center;
}
.case-study-img-3 {
  /* West End mixed-use building at dusk — uploaded by client */
  background-image:
    linear-gradient(rgba(26,39,68,0.12), rgba(26,39,68,0.22)),
    url('west-end-mixed-use-building.png');
  background-position: center;
}
.case-study-img-4 {
  /* Victorian period building facade — uploaded by client */
  background-image:
    linear-gradient(rgba(26,39,68,0.12), rgba(26,39,68,0.22)),
    url('victorian-building-major-works.png');
  background-position: center;
}

.case-study-body {
  padding: 36px 40px;
  overflow: hidden;
}

.case-study-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.case-study-body h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-section h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}

.case-section p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-intro {
  margin-bottom: 80px;
}

.about-intro-text .lead {
  margin-bottom: 20px;
}
.about-intro-text p {
  color: var(--text-muted);
  max-width: 760px;
}

.about-values {
  margin-bottom: 80px;
}

.about-values h2 { margin-bottom: 40px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.value-card-heading h3 { margin-bottom: 0; }

.value-icon { flex-shrink: 0; }

.value-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.about-location {
  background: var(--off-white);
  padding: 56px;
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
}

.about-location h2 { margin-bottom: 20px; }
.about-location p { color: var(--text-muted); max-width: 640px; }

.about-accreditations { margin-bottom: 80px; }
.about-accreditations h2 { margin-bottom: 40px; }

.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.accred-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--navy);
}

.accred-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.accred-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.contact-block {
  margin-bottom: 48px;
}
.contact-block:last-child { margin-bottom: 0; }
.contact-block h2 { margin-bottom: 16px; }

.contact-phone-display {
  margin: 20px 0;
}

.contact-phone-display a {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-phone-display a:hover { color: var(--gold); }

.contact-hours-display {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-block address {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.contact-transport {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-note {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
}

.contact-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  justify-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-col-brand .footer-logo { margin-bottom: 20px; }
.footer-col-brand { display: flex; flex-direction: column; align-items: center; }

.footer-logo-img {
  display: block;
  height: auto;
  width: 300px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col address {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.footer-col p a {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.0625rem;
}
.footer-col p a:hover { color: var(--white); }

.footer-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.7;
  margin-top: 6px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-col li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }


.footer-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.footer-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 8px 16px;
  text-align: center;
}
.footer-trust-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-trust-item span {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
}
.footer-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer-trust-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-trust-item {
    flex: 0 0 45%;
    padding: 14px 8px;
  }
  .footer-trust-divider {
    display: none;
  }
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ── Mobile Sticky Call Button ──────────────────────────────── */
.mobile-sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: block;
  padding: 0 0 env(safe-area-inset-bottom, 0);
  background: var(--navy);
  border-top: 2px solid var(--gold);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: background var(--transition);
}

.mobile-call-btn:hover {
  background: var(--navy-light);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet (≥ 640px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .trust-divider { display: block; }

  .case-study-content {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Large Tablet / Desktop (≥ 768px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr 320px;
  }

  .case-study {
    grid-template-columns: 340px 1fr;
    height: 560px;
  }

  .case-study-img {
    aspect-ratio: auto;
    height: 100%;
  }

  .case-study-body {
    overflow: hidden;
  }

  /* Alternate case study layout — flip both column order AND column widths */
  .case-study:nth-child(even) {
    grid-template-columns: 1fr 340px;
  }
  .case-study:nth-child(even) .case-study-img { order: 2; }
  .case-study:nth-child(even) .case-study-body { order: 1; }

  .about-location {
    padding: 56px 64px;
  }

  .mobile-sticky-call {
    display: none;
  }

  body { padding-bottom: 0; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Desktop (≥ 1024px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --header-h: 80px; }

  .main-nav { display: flex; }
  .hamburger { display: none; }
  .header-phone { display: flex; }

  .logo-img { height: 72px; }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 32px;
  }

  .page-hero {
    min-height: 400px;
  }

  .page-hero-content { padding: 80px 0; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Wide Desktop (≥ 1280px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero-content { padding: 120px 24px 140px; }
}

/* ── Utility: body padding for mobile sticky bar ────────────── */
@media (max-width: 767px) {
  body { padding-bottom: 60px; }
}

@media (max-width: 1023px) {
  .nav-portal-btn { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BEHAVIOURAL REDESIGN — new sections
   ═══════════════════════════════════════════════════════════ */

/* ── Hero: outline-light button (second CTA) ──────────────── */
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ── Hero: move hours below both buttons ──────────────────── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.hero-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ── Problem recognition section ─────────────────────────── */
.problem-section {
  background: var(--off-white);
  padding: 80px 0 72px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.problem-icon { margin-bottom: 18px; }
.problem-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.problem-resolution {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.problem-resolution .lead { margin-bottom: 6px; }
.problem-resolution p { color: var(--text-muted); }

/* ── Stats bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 36px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
  display: block;
  max-width: 160px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .stat-divider { display: none; }
  .stat-item { flex-basis: 50%; padding: 16px 16px; }
}

/* ── Testimonials section ──────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 0;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}
.testimonial-role,
.testimonial-building {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.testimonial-placeholder {
  border: 2px dashed var(--border);
  box-shadow: none;
  background: var(--off-white);
}
.testimonial-placeholder .testimonial-text {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.875rem;
}

/* ── Team / people section ─────────────────────────────────── */
.team-section {
  background: var(--white);
  padding: 80px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.team-photo-box {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}
.team-photo-box p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.team-photo-note {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.team-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ── Insights section ──────────────────────────────────────── */
.insights-section {
  background: var(--off-white);
  padding: 80px 0;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(3, 1fr); }
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.insight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.insight-card-body { padding: 28px; }
.insight-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 10px;
}
.insight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
}
.insight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.insight-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.insight-read-more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 16px;
  transition: gap 0.2s ease;
}

/* ── Lead magnet section ──────────────────────────────────── */
.lead-magnet-section {
  background: var(--navy);
  padding: 80px 0;
}
.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .lead-magnet-inner { grid-template-columns: auto 1fr; gap: 72px; }
}
.guide-cover {
  width: 170px;
  height: 230px;
  background: var(--cream);
  border-radius: 2px 6px 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px 18px;
  text-align: center;
  position: relative;
  /* Gold spine left, page-stack right, drop shadow */
  box-shadow:
    -7px 0 0 0 var(--gold),
    -11px 0 0 0 #8a6e2a,
    4px 0 6px rgba(0,0,0,0.25),
    0 24px 56px rgba(0,0,0,0.55);
}
.guide-cover-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.guide-cover-label strong {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.guide-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.975rem;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  align-items: center;
}
.guide-cover-logo {
  display: block;
  width: 90px;
  height: auto;
  margin-top: 4px;
}
.guide-cover-brand {
  display: none;
}
.lead-magnet-content .page-eyebrow { color: var(--gold); font-weight: 700; }
.lead-magnet-content .page-eyebrow strong { font-weight: 900; font-size: 1.05em; }
.lead-magnet-content h2 { color: var(--white); margin-bottom: 16px; }
.lead-magnet-content p { color: rgba(255,255,255,0.78); }
.guide-bullets {
  margin: 20px 0 28px;
  list-style: none;
  padding: 0;
}
.guide-bullets li {
  padding: 6px 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
  padding-left: 24px;
  position: relative;
}
.guide-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.guide-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px !important;
}

@media (min-width: 768px) {
  .lead-magnet-inner--flip {
    grid-template-columns: 1fr auto;
  }
}

/* ── Enquiry form section ──────────────────────────────────── */
.enquiry-section {
  background: var(--cream);
  padding: 80px 0;
  scroll-margin-top: var(--header-h);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .enquiry-grid { grid-template-columns: 1fr 1.6fr; gap: 72px; }
}
.enquiry-intro .page-eyebrow { margin-bottom: 8px; }
.enquiry-intro h2 { margin-bottom: 16px; }
.enquiry-points {
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.enquiry-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.enquiry-points li:last-child { border-bottom: none; }
.enquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) {
  .enquiry-form-wrap { padding: 24px 20px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 0 20px; }
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%235c5c5c' d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.btn-full { width: 100%; justify-content: center; }
.form-privacy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px !important;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
}
.form-success h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-top: 8px;
}
.form-success p { color: var(--text-muted); font-size: 0.9375rem; }
.form-success-contact a { color: var(--navy); font-weight: 600; }
.form-error {
  color: #c0311f;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 12px;
}

/* ── Print / reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
