/* ============================================================
   Kojo Construction — Global Stylesheet
   ============================================================ */

/* ─── 1. VARIABLES ──────────────────────────────────────────── */
:root {
  --yellow:        #0D0D0D;
  --yellow-dark:   #000000;
  --yellow-light:  #2A2A2A;
  --yellow-pale:   #F0F0F0;
  --black:         #474747;
  --dark:          #525252;
  --dark-mid:      #5D5D5D;
  --dark-light:    #686868;
  --text:          #111111;
  --text-body:     #444444;
  --text-muted:    #777777;
  --text-light:    #AAAAAA;
  --white:         #F5F5F5;
  --off-white:     #F9F8F6;
  --light:         #F3F1EC;
  --border:        #E8E5DF;
  --border-mid:    #D0CDC7;
  --font-head:     'Barlow Condensed', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --section-pad:   96px;
  --container:     1200px;
  --radius:        6px;
  --radius-lg:     12px;
  --radius-xl:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
  --shadow-yellow: 0 8px 28px rgba(13,13,13,0.35);
  --transition:    0.2s ease;
  --transition-md: 0.3s ease;
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
svg { display: block; flex-shrink: 0; }

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-body); }
.lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ─── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section        { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.section--no-mark::before { content: none; }
.section--sm    { padding: 64px 0; }
.section::before {
  content: 'KOJO';
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: var(--font-head);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  letter-spacing: 0.03em;
  line-height: 1;
  user-select: none;
  z-index: 0;
  pointer-events: none;
}
.section .container { position: relative; z-index: 1; }
.section--dark  {
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: 'KOJO';
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: var(--font-head);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.03em;
  line-height: 1;
  user-select: none;
  z-index: 0;
}
.section--dark .container { position: relative; z-index: 1; }
.section--dark .section-label { color: rgba(255,255,255,0.55); }
.section--dark .section-label::before { background: rgba(255,255,255,0.55); }
.section--dark .section-title { color: #fff; }
.section--black {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.section--black::before {
  content: 'KOJO';
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: var(--font-head);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  letter-spacing: 0.03em;
  line-height: 1;
  user-select: none;
  z-index: 0;
}
.section--black .container { position: relative; z-index: 1; }
.section--light { background: var(--off-white); }
.section--grey  { background: var(--light); }
.section--border{ border-top: 1px solid var(--border); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ─── 5. SECTION HEADERS ─────────────────────────────────────── */
.section-header          { margin-bottom: 56px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; max-width: 700px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-label.on-dark { color: rgba(255,255,255,0.6); }
.section-label.on-dark::before { background: rgba(255,255,255,0.6); }
.section-title { margin-bottom: 16px; }
.section-title.on-dark { color: #fff; }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.section-subtitle.on-dark { color: rgba(255,255,255,0.5); }

/* ─── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all var(--transition-md);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-sm  { padding: 10px 20px; font-size: 0.72rem; }
.btn-lg  { padding: 18px 40px; font-size: 0.88rem; }

.btn-primary {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
  font-weight: 800;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13,13,13,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: #0D0D0D;
  color: #fff;
  border-color: #0D0D0D;
}
@media (hover: hover) {
  .btn-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
  }
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-outline-dark:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
  transform: translateY(-1px);
}

/* ─── 7. HEADER & NAV ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.22);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: background var(--transition-md), backdrop-filter var(--transition-md), -webkit-backdrop-filter var(--transition-md), box-shadow var(--transition-md), border-color var(--transition-md);
}
.site-header.scrolled {
  background: #0D0D0D;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img-container {
  position: relative;
  display: inline-block;
}

.logo-img-container .logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter 0.2s ease;
}

.logo:hover .logo-img-container .logo-img {
  filter: grayscale(100%);
}
.footer-logo-link:hover .logo-img-container .logo-img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.footer-logo-link .logo-img-container .logo-img {
  height: 100px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Glass header specific text contrast */
.site-header:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.9);
}
.site-header:not(.scrolled) .nav-link svg:not(.chevron) {
  opacity: 0.9;
}
.nav-link svg:not(.chevron) { color: #C8A84B; opacity: 0.85; flex-shrink: 0; transition: opacity var(--transition); margin-left: 4px; margin-right: 1px; }
.nav-link:hover svg:not(.chevron), .nav-link.active svg:not(.chevron) { opacity: 1; }
.nav-link:hover,
.nav-link.active { color: var(--yellow); background: rgba(245,184,0,0.08); }
.nav-cta-wrap { flex-shrink: 0; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #111;
  z-index: 999;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mob-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
  text-align: left;
}
.mob-trigger-left { display: flex; align-items: center; gap: 14px; }
.mob-trigger svg:not(.mob-chevron) { color: #C8A84B; flex-shrink: 0; width: 20px; height: 20px; transition: color var(--transition); }
.mob-chevron { color: rgba(255,255,255,0.25); transition: transform 0.25s ease, color var(--transition); flex-shrink: 0; }
.mob-trigger:hover,
.mob-trigger[aria-expanded="true"] { color: var(--yellow); background: rgba(255,255,255,0.025); }
.mob-trigger[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); color: var(--yellow); }
.mob-trigger[aria-expanded="true"] svg:not(.mob-chevron) { color: var(--yellow); }
.mob-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  background: rgba(0,0,0,0.25);
}
.mob-submenu.open { max-height: 600px; }
.mob-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px 13px 62px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), background var(--transition);
}
.mob-sublink:last-child { border-bottom: none; }
.mob-sublink:hover { color: var(--yellow); background: rgba(255,255,255,0.04); }
.mob-sublink svg { flex-shrink: 0; color: #C8A84B; opacity: 1; }
.mob-subdivider { display: none; }
.mob-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.mob-direct svg { color: #C8A84B; flex-shrink: 0; width: 20px; height: 20px; transition: color var(--transition); }
.mob-direct:hover { color: var(--yellow); background: rgba(255,255,255,0.025); }
.mob-direct:hover svg { color: #C8A84B; }
.mobile-cta-wrap { position: relative; padding: 14px 28px 26px; }
.mob-cta-wordmark {
  margin-top: auto;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 47vw;
  letter-spacing: 0.03em;
  line-height: 0.74;
  text-align: center;
  color: rgba(255,255,255,0.06);
  user-select: none;
  pointer-events: none;
}
.mobile-cta { position: relative; z-index: 1; }
.mob-logo-badge {
  width: 150px; height: 150px;
  margin: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55);
  transition: border-color var(--transition);
}
.mob-logo-badge img { width: 78px; height: 78px; object-fit: contain; opacity: 0.4; transition: opacity var(--transition); }
.mob-logo-badge:hover { border-color: rgba(255,255,255,0.35); }
.mob-logo-badge:hover img { opacity: 0.65; }
.mobile-cta {
  display: block;
  background: var(--yellow);
  color: #000;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--font-body);
  text-transform: uppercase;
  transition: background var(--transition-md);
}
.mobile-cta:hover { background: var(--yellow-dark); color: #000; }

/* ─── HEADER & FOOTER: Restore original yellow accent ───────── */
.site-header,
.mobile-nav,
.mobile-cta-wrap,
.nav-dropdown-menu {
  --yellow:        #F5B800;
  --yellow-dark:   #D9A200;
  --yellow-light:  #FFCA33;
  --yellow-pale:   #FFF8E1;
  --shadow-yellow: 0 8px 28px rgba(245,184,0,0.35);
}
.site-footer {
  --yellow:        #F5B800;
  --yellow-dark:   #D9A200;
  --yellow-light:  #FFCA33;
  --yellow-pale:   #FFF8E1;
  --shadow-yellow: 0 8px 28px rgba(245,184,0,0.35);
}

/* ─── 8. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding-top: 80px;
  border-top: 3px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-name { font-size: 2rem; margin-bottom: 4px; }
.footer-brand .logo-sub { margin-bottom: 20px; display: block; }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 0.7rem; font-weight: 800; font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,184,0,0.07); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul a svg { width: 15px; height: 15px; color: #C8A84B; flex-shrink: 0; margin-top: 1px; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg { color: var(--yellow); margin-top: 1px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-contact-text a { color: var(--yellow-light); transition: color var(--transition); }
.footer-contact-text a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 20px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  padding: 5px 13px 5px 9px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.google-badge:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.25); }
.google-badge-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
.google-badge-stars { display: flex; gap: 1px; }
.google-badge-stars svg { width: 11px; height: 11px; }
.google-badge-score { font-size: 0.75rem; font-weight: 700; color: #fff; }
.google-badge-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-legal a { font-size: 0.73rem; color: rgba(255,255,255,0.22); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
/* Developer credit strip beneath the footer */
.dev-credit { background: #080808; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.06); }
/* index.html: PoshLayer is the third row under the copyright — a bit of grey, no divider */
.site-footer--home + .dev-credit { border-top: none; background: #1c1c1c; }
.dev-credit .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.dev-credit-text { font-size: 0.78rem; letter-spacing: .03em; color: rgba(255,255,255,0.42); }
.dev-credit-text strong { color: rgba(255,255,255,0.72); font-weight: 600; }
.dev-credit-text--left,
.dev-credit-text--right {
  font-family: var(--font-head);
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.dev-credit-text--left { text-align: right; }
.dev-credit-text--right { text-align: left; }
.dev-credit-logo { height: 23px; width: auto; display: block; opacity: .95; position: relative; top: 2px; }
.dev-credit-gem { height: 16px; width: auto; display: block; opacity: .9; }
.dev-credit-link { display: inline-flex; align-items: center; justify-content: center; line-height: 0; transition: opacity .2s; }
.dev-credit-link:hover { opacity: .75; }
@media (max-width: 560px) {
  .dev-credit .container { gap: 12px; }
  .dev-credit-logo { height: 22px; }
  .dev-credit-text { font-size: 0.68rem; }
  .dev-credit-text--left,
  .dev-credit-text--right { font-size: 0.8rem; }
}
/* index.html footer variant: Brand | Nav+Clients | Services (2 cols) | Get in Touch, + horizontal Projects bar below */
.site-footer--home { background: linear-gradient(to bottom, #474747 0%, #1a1a1a 100%); }
.site-footer--home .footer-grid { grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr !important; border-bottom: none; padding-bottom: 0; }
.site-footer--home .footer-col--wide { grid-column: span 2; }
.site-footer--home .footer-col--wide ul a { white-space: nowrap; }
.site-footer--home .footer-brand-contact { margin-top: 0; }
.site-footer--home .footer-subhead { margin-top: 26px; }
.site-footer--home .footer-brand .footer-logo-link { margin-top: 0; margin-bottom: 18px; display: inline-flex; align-items: center; background: #1a1a1a; border-radius: 14px; padding: 16px 22px; }
.site-footer--home .footer-logo-link .logo-img-container .logo-img { height: 82px; transition: filter .25s ease; }
.site-footer--home .footer-logo-link:hover .logo-img-container .logo-img { filter: grayscale(100%); }
.site-footer--home .footer-desc { max-width: 248px; margin: 0 auto; }
.site-footer--home .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 28px; }
.site-footer--home .footer-brand { text-align: center; }
.site-footer--home .footer-reviews { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 28px; }
.yell-mark { font-family: var(--font-head); font-weight: 800; font-size: 0.62rem; letter-spacing: .04em; text-transform: uppercase; color: #1a1a1a; background: #ffcc00; padding: 3px 6px; border-radius: 4px; line-height: 1; }
@media (max-width: 1200px) {
  .site-footer--home .footer-grid { grid-template-columns: 1fr 1fr 1fr !important; }
  .site-footer--home .footer-col--wide { grid-column: span 1; }
  .site-footer--home .footer-col--wide ul a { white-space: normal; }
}
@media (max-width: 900px)  { .site-footer--home .footer-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 640px) {
  .site-footer--home .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 42px 22px; }
  .site-footer--home .footer-grid > :nth-child(1) { grid-column: 1 / -1; order: 1; }   /* Brand */
  .site-footer--home .footer-grid > :nth-child(2) { order: 2; margin-top: 14px; }       /* Get in Touch */
  .site-footer--home .footer-grid > :nth-child(4) { order: 3; margin-top: 14px; }       /* Clients */
  .site-footer--home .footer-grid > :nth-child(3) { grid-column: 1 / -1; order: 4; }    /* KOJO */
  .site-footer--home .footer-grid > :nth-child(3) ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
  .site-footer--home .footer-col { text-align: left; }
  .site-footer--home .footer-col ul { align-items: flex-start; }
  .site-footer--home .footer-contact-item { justify-content: flex-start; text-align: left; }
}
/* index.html: PoshLayer row — left-aligned lockup, Google reviews pushed to the right */
.site-footer--home + .dev-credit { padding: 15px 0; }
.site-footer--home + .dev-credit .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 20px; }
.dev-credit-lockup { display: flex; align-items: center; gap: 14px; }
.site-footer--home + .dev-credit .dev-credit-logo { height: 21px; top: -3px; }
.site-footer--home + .dev-credit .google-badge { flex-shrink: 0; }
/* index.html: social icons sit beside the Privacy / Terms links */
.site-footer--home .footer-legal { align-items: center; }
.site-footer--home .footer-bottom .footer-social { gap: 8px; }
.site-footer--home .footer-bottom .footer-social a { width: 28px; height: 28px; }
.site-footer--home .footer-bottom .footer-social svg { width: 14px; height: 14px; }
.site-footer--home .footer-bottom .footer-social a:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }
@media (max-width: 560px) {
  .site-footer--home + .dev-credit .container { justify-content: center; }
}
/* Full-width darker-gray band wrapping the projects bar + bottom row */
.footer-lower { margin-top: 52px; }
.footer-projects-bar,
.footer-services-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 24px 0 22px;
}
.footer-projects-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-projects-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
}
.footer-projects-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-projects-links a svg { width: 14px; height: 14px; color: #C8A84B; flex-shrink: 0; }
.footer-projects-links a:hover { color: var(--yellow); }
.footer-services-bar .footer-projects-links { justify-content: center; }
/* index.html: Services & Projects as titled grids (4 per row, dark cells, separators) */
.footer-menus { padding: 0; }
.footer-menu-block + .footer-menu-block { margin-top: 44px; }
.footer-menu-title { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin: 0 0 14px; text-align: left; }
.footer-menu-block { overflow: hidden; }
.footer-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 -1px -1px 0; }
.footer-menu-grid a { display: flex; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 15px 18px; font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: background .2s, color .2s; border-right: 1px dashed rgba(255,255,255,0.16); border-bottom: 1px dashed rgba(255,255,255,0.16); }
.footer-menu-grid a svg { width: 15px; height: 15px; color: #C8A84B; flex-shrink: 0; }
.footer-menu-grid a:hover { background: rgba(255,255,255,0.05); color: #fff; }
/* index.html: no icons on footer menu links (Get in Touch keeps its icons) */
.site-footer--home .footer-col ul a svg { display: none; }
.footer-menu-grid a svg { display: none; }
/* index.html: tab-space indent in front of footer menu links (Services/Projects grids already have cell padding) */
.site-footer--home .footer-col h4 { display: flex; align-items: center; gap: 8px; }
.site-footer--home .footer-col h4 svg, .footer-menu-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-menu-title { display: flex; align-items: center; gap: 8px; }
.site-footer--home .footer-col ul { gap: 0; }
.site-footer--home .footer-col ul a { display: flex; align-items: center; padding: 11px 0 11px 22px; transition: background .2s, color .2s; }
.site-footer--home .footer-col ul a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.site-footer--home .footer-col ul li:not(:last-child) { border-bottom: 1px dashed rgba(255,255,255,0.16); }
.copy-br { display: none; }
@media (max-width: 640px) { .copy-br { display: inline; } }
@media (max-width: 700px) { .footer-menu-grid { grid-template-columns: repeat(2, 1fr); } .footer-menu-grid a { justify-content: flex-start; text-align: left; } }
@media (max-width: 420px) { .footer-menu-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .footer-projects-bar,
  .footer-services-bar { justify-content: center; text-align: center; }
  .footer-projects-links { justify-content: center; }
}

/* ─── 9. HOMEPAGE HERO ───────────────────────────────────────── */
.hero {
  background: #000;
  min-height: 100vh;
  min-height: 100svh;
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  filter: brightness(0.88) contrast(1.05);
}

/* Dark overlay for text readability over the video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.48) 35%,
    rgba(0, 0, 0, 0.60) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-accent-bar { display: none; }
.hero-content { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 15px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
  background: linear-gradient(to top, #4a4a4a 0%, #a8a8a8 30%, #ffffff 52%, #c8c8c8 68%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent {
  background: linear-gradient(to top, #4a4a4a 0%, #a8a8a8 30%, #ffffff 52%, #c8c8c8 68%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  margin-left: auto;
  margin-right: auto;
}
.hero-who {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-who::before,
.hero-who::after {
  content: '';
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; justify-content: center; }
.hero-audience-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.hero-aud-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: var(--radius-lg);
  color: #fff;
  transition: all var(--transition-md);
  flex: 1;
  min-width: 180px;
  text-align: left;
}
.hero-aud-cta:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.hero-aud-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  align-items: center;
  text-align: center;
}
.hero-aud-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}
.hero-aud-cta:hover .hero-aud-arrow { opacity: 1; transform: translateX(4px); }
.hero-aud-cta > svg:first-child { transition: color var(--transition); }
.hero-aud-cta:hover > svg:first-child { color: #C8A84B; }
.hero-aud-text { font-size: 1.02rem; font-weight: 700; line-height: 1.1; white-space: nowrap; }
.hero-aud-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.trust-chip svg { color: #C8A84B; flex-shrink: 0; }

/* ─── 10. STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--yellow); }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition-md);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,0.07); }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
  background: linear-gradient(to top, #888888 0%, #b8b8b8 40%, #efefef 72%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(to top, #686868 0%, #a8a8a8 50%, #d4d4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── 11. SERVICE CARDS ──────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #fff;
}
.svc-card--featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.svc-featured-main {
  display: flex;
  flex-direction: row;
  height: 240px;
}
.svc-card--featured .svc-image {
  width: 42%;
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}
.svc-card--featured .svc-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center 80%;
  border-radius: 0;
  display: block;
}
.svc-card--featured .svc-content {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.svc-card--featured .svc-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.svc-card--featured .svc-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.svc-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-top: 2px solid var(--border);
}
.dev-projects {
  grid-template-columns: repeat(2, 1fr);
  border-top: none;
  margin-top: 32px;
  gap: 20px;
  background: transparent;
}
.dev-projects .svc-project-wrap {
  box-shadow: 0 6px 32px rgba(0,0,0,0.5);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dev-projects .svc-project-caption {
  border-top: 3px solid #C8A84B;
  background: #1a1a1a;
}
.dev-projects .svc-scaffold-btn {
  background: #C8A84B;
  border-color: #C8A84B;
  color: #111;
}
@media (hover: hover) {
  .dev-projects .svc-scaffold-btn:hover {
    background: #cccccc;
    border-color: #cccccc;
    color: #111;
    transform: translateY(-2px);
  }
}
.dev-projects .svc-project-caption-name {
  color: #e8e8e8;
}
.svc-project-name-link { transition: color 0.2s; }
.svc-project-name-link:hover { color: #C8A84B; }
a.svc-project-location { transition: background 0.2s, color 0.2s; cursor: pointer; }
a.svc-project-location:hover { background: #cccccc; color: #111; }
.dev-projects .svc-project-tick {
  color: #999;
}
.dev-projects .svc-project-tick--featured {
  color: #ddd;
}
.dev-projects .svc-project-caption-desc {
  color: #888;
}
.dev-locations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  margin-bottom: 14px;
}
.dev-locations-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.dev-locations-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #C8A84B;
  text-decoration: none;
  transition: gap 0.2s;
}
.dev-locations-more:hover { gap: 9px; }
.dev-coverage-box {
  background: #1a1a1a;
  border-top: 3px solid #C8A84B;
  padding: 32px 30px;
  justify-content: center;
}
.dev-coverage-box .dev-locations-label {
  margin-bottom: 14px;
}
.dev-coverage-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 22px;
  max-width: 90%;
}
.dev-pill-arrow {
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
.dev-location-pill:hover .dev-pill-arrow {
  opacity: 1;
  transform: translateX(2px);
}
.dev-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.dev-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.dev-location-pill:hover {
  border-color: #C8A84B;
  color: #C8A84B;
  background: rgba(200,168,75,0.08);
}
/* Inline video play button on project tiles */
.svc-project-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(200, 168, 75, 0.92);
  color: #0D0D0D;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), background var(--transition);
}
.svc-project-play svg { width: 26px; height: 26px; margin-left: 3px; }
.svc-project-play:hover { transform: scale(1.08); background: #C8A84B; }
/* Suppress the corner "KOJO" watermark on specific sections */
.section--no-mark::before { content: none; }
/* Light variant of the projects section — homeowners.html only */
.dev-projects--light .svc-project-wrap { border-color: #e6e3dc; box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
.dev-projects--light .svc-project-caption { background: #fff; }
.dev-projects--light .svc-project-caption-name { color: #1a1a1a; }
.dev-projects--light .svc-project-tick { color: #666; }
.dev-projects--light .svc-project-tick--featured { color: #1a1a1a; }
.dev-projects--light .svc-project-caption-desc { color: #777; }
.dev-projects--light .dev-coverage-box { background: #fff; }
.dev-projects--light .dev-locations-label { color: #777; }
.dev-projects--light .dev-coverage-text { color: #666; }
.dev-projects--light .dev-location-pill { border-color: #ddd; color: #555; }
/* Loft page — narrower video column on desktop, taller video tile on mobile */
@media (min-width: 769px) {
  .loft-projects { grid-template-columns: repeat(5, 1fr); }
  .loft-projects .loft-video-wrap { grid-column: span 2; }
  .loft-projects .loft-project-wrap { grid-column: span 3; }
}
.svc-project-ticks + .svc-project-caption-desc { margin-top: 16px; }
@media (max-width: 768px) {
  .svc-project-ticks + .svc-project-caption-desc { display: none; }
}
/* "Like it?" CTA on homeowners.html — garden photo with a gradient-fade overlay */
.likeit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/photos/home_garden.jpg') center 55%/cover no-repeat;
}
.likeit-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.30) 50%, rgba(13,13,13,0.82) 100%);
}
@media (max-width: 640px) {
  .likeit-bg { transform: scale(2.1); transform-origin: center 42%; }
  .likeit { padding: 48px 0 58px; }
  .likeit .container { display: flex; flex-direction: column; min-height: 74vh; }
  .likeit h2 { margin-bottom: auto !important; font-size: 3.8rem !important; }
  .likeit .lead { margin-top: 0 !important; }
  .likeit .page-hero-label { left: 50% !important; transform: translate(-50%, -50%) !important; }
}
/* Developer CTA band (between projects on location pages) */
.devcta {
  position: relative;
  width: 100vw;
  margin: 60px calc(50% - 50vw);
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.devcta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('images/photos/developers/developer-book.jpg') center/cover no-repeat;
}
.devcta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,13,0.86) 0%, rgba(13,13,13,0.42) 50%, rgba(13,13,13,0.88) 100%);
}
.devcta .container { position: relative; z-index: 2; }
.devcta-title { font-family: var(--font-head); font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; color: #fff; margin: 0; }
.devcta-lead {
  position: relative; color: #fff; max-width: 680px;
  margin: 48px auto 34px;
  background: rgba(0,0,0,0.42); border-radius: 10px; padding: 30px 22px 18px;
}
@media (max-width: 768px) {
  .devcta { padding: 66px 0; }
  .devcta-lead { margin: 44px auto 40px; }
  .devcta-lead .page-hero-label { left: 50% !important; transform: translate(-50%, -50%) !important; }
}
.svc-project-wrap {
  display: flex;
  flex-direction: column;
}
.svc-project-caption {
  position: relative;
  padding: 14px 16px;
  background: #fff;
  flex: 1;
}
.svc-project-caption--scaffold {
  padding-right: 150px;
}
.svc-scaffold-wrap {
  position: absolute;
  right: 48px;
  top: -56px;
  width: 124px;
}
.svc-scaffold-thumb {
  position: relative;
  width: 100%;
  height: 112px;
  overflow: hidden;
  border-radius: 6px;
  border: 3px solid #C8A84B;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  cursor: zoom-in;
}
.svc-scaffold-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}
.svc-scaffold-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.svc-scaffold-thumb:hover img {
  transform: scale(1.06);
}
.svc-project-caption-foot {
  margin-top: 12px;
}
.svc-project-caption-name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 4px;
}
.svc-project-caption-desc {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
}
.svc-project-ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-top: 8px;
}
.svc-project-tick {
  font-size: 0.7rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-project-tick--featured {
  font-weight: 700;
  font-size: 0.75rem;
  color: #111;
}
.svc-project-tick--featured::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  width: 14px;
  height: 14px;
}
.svc-project-tick::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.svc-scaffold-btn svg { width: 1em; height: 1em; }
.svc-tick-icon { width: 13px; height: 13px; flex-shrink: 0; color: #C8A84B; }
.svc-project-tick--svc::before { display: none; }
.svc-project-tick--svc { transition: color 0.2s; }
/* rest = gold (icon + label), hover = muted */
.dev-projects .svc-project-tick--svc { color: #9a9a9a; }
.dev-projects .svc-project-tick--svc:hover { color: #C8A84B; }
.dev-projects--light .svc-project-tick--svc { color: #666; }
.dev-projects--light .svc-project-tick--svc:hover { color: #C8A84B; }
/* desktop: wrapper is transparent so non-featured ticks flow in the normal grid */
.svc-ticks-svc { display: contents; }
.svc-ticks-svc-title { display: none; }
.svc-ticks-svc-title:hover { text-decoration: underline; }
.svc-project-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #1c1c1c;
}
.svc-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.svc-project-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #282828 50%, #151515 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-project-placeholder svg { opacity: 0.12; }
.svc-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.svc-project-tags {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
}
.svc-project-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background: #C8A84B;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.svc-project-year {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background: #C8A84B;
  padding: 4px 10px;
  border-radius: 3px;
}
.svc-project-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}
.svc-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 32px;
  background: #F5F5F5;
}
.svc-divider::before,
.svc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.svc-divider span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .svc-featured-main { flex-direction: column; height: auto; }
  .svc-card--featured .svc-image { width: 100%; height: 200px; }
  .svc-card--featured .svc-content { padding: 28px; }
  .svc-projects { grid-template-columns: 1fr; }
  .svc-project-tile { aspect-ratio: 16 / 6; }
  .dev-projects .svc-project-wrap { border-radius: 0; }
  /* Mobile: single column of featured ticks only, so nothing sits under the
     thumbnail/More Info overlay */
  .dev-projects .svc-project-ticks { grid-template-columns: 1fr; }
  /* Mobile: show non-featured ticks as a separate full-width 2-per-row grid,
     dropped below the featured ticks (clear of the thumbnail/More Info overlay) */
  .svc-ticks-svc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 10px;
    margin-top: 11px;
    margin-right: -134px;
    padding-top: 11px;
    border-top: 1px solid rgba(200, 168, 75, 0.35);
  }
  .svc-ticks-svc-title {
    display: block;
    grid-column: 1 / -1;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
  }
  .section::before { top: 20px; }
  .section--dark::before { top: 20px; }
  .section--black::before { top: 20px; }

}

.svc-card {
  background: var(--off-white);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-md);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}
.svc-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  z-index: 2;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(0,0,0,0.07);
  color: #333;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-md);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card:hover .svc-icon { background: var(--yellow); color: #fff; }
.svc-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.svc-title-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #C8A84B;
}
.svc-title-row .svc-title {
  margin-bottom: 0;
}
.svc-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.svc-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.svc-text + .sd-list { margin-top: 18px; }
.svc-card--featured .svc-text + .sd-list { margin-top: 0; }
.svc-btn-wrap { text-align: left; margin-top: 18px; }
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #0D0D0D;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.svc-btn:hover { background: #2a2a2a; }
.svc-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.svc-image {
  margin: 14px 0 16px;
  overflow: hidden;
}
.svc-image img {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* ─── 12. WHY CHOOSE US ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: transparent;
}
.why-item {
  padding: 40px 36px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #C8A84B;
  border-radius: 4px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 0;
  align-items: start;
  transition: background var(--transition-md);
}
.why-item > .why-icon { grid-row: 1 / span 2; }
.why-item:hover { background: #222; }
.why-icon {
  width: 46px; height: 46px;
  color: #C8A84B;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e8e8e8;
  margin-bottom: 8px;
}
.why-text { font-size: 0.875rem; color: #999; line-height: 1.7; }

/* ─── 13. ABOUT SPLIT ────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 100%), url('images/photos/development-book_construction-site.jpg') center 70%/cover no-repeat;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.85;
}
.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-yellow);
  z-index: 10;
}
.about-float-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-float-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.about-points { margin-top: 32px; display: flex; flex-direction: column; gap: 13px; }
.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.about-point-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.about-point-tick {
  width: 16px; height: 16px;
  color: #C8A84B;
  flex-shrink: 0;
}

/* ─── 13b. BLOG ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.blog-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-hook {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  background: #C8A84B;
  padding: 4px 10px;
  border-radius: 3px;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-caption {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: #C8A84B; }
.blog-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C8A84B;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 9px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── 14. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--yellow);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: 'KOJO';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: var(--font-head);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  letter-spacing: 0.03em;
  line-height: 1;
  user-select: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section .lead { color: rgba(255,255,255,0.65); margin-bottom: 38px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn-dark,
.cta-section .btn-outline-dark {
  background: #fff;
  color: #0D0D0D;
  border-color: #fff;
}
.cta-section .btn-dark:hover,
.cta-section .btn-outline-dark:hover {
  background: #E0E0E0;
  border-color: #E0E0E0;
  color: #0D0D0D;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── 15. PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero-bar { display: none; }
.page-hero .container { position: relative; z-index: 3; }
.breadcrumb {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,1); }
.breadcrumb .sep { opacity: 0.55; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: fit-content;
}
.page-hero h1 { color: #fff; margin-bottom: 32px; text-shadow: 4px 7px 18px rgba(0,0,0,0.75); }
.page-hero--cta-left .hero-actions { margin-top: 32px; justify-content: flex-start; }
@media (max-width: 640px) { .page-hero--cta-left .hero-actions { justify-content: center; } }
.page-hero .lead {
  color: #fff;
  max-width: 560px;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
}

/* Tapered hero rule: thick on the left, thinning out and trailing off */
.hero-rule {
  width: clamp(190px, 26vw, 280px);
  height: 8px;
  margin: -12px 0 26px;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.9) 22%, rgba(255,255,255,0) 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* Centered, symmetric variant for centre-aligned heroes (e.g. homepage) */
.hero-rule--center {
  width: clamp(230px, 40vw, 340px);
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0) 100%);
  clip-path: polygon(0 50%, 40% 0, 60% 0, 100% 50%, 60% 100%, 40% 100%);
}
/* Legal hero (privacy/terms): keep the tapered rule clear of the heading */
.legal-hero .hero-rule { margin-top: 10px; }

/* Photo background specifically for About page hero */
.page-hero--about {
  background: url('images/photos/home_garden.jpg') center/cover no-repeat;
}
/* Dark overlay for text readability over the photo background */
.page-hero--about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.48) 35%,
    rgba(0, 0, 0, 0.60) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Photo background for Services page hero */
.page-hero--services {
  background: url('images/photos/construction-2-hero-2x.jpg') center/cover no-repeat;
}
/* Dark overlay for text readability over the photo background */
.page-hero--services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.48) 35%,
    rgba(0, 0, 0, 0.60) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Video background hero (homeowners) */
.page-hero--video { background: #0D0D0D center/cover no-repeat; }
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.page-hero--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.66) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Poster image sits behind the video as a fallback (e.g. if autoplay is blocked) */
.page-hero--video { background-image: url('images/photos/home-garden-poster.jpg'); }
@media (max-width: 768px) {
  .page-hero--video { background-image: url('images/photos/home-garden-poster-mobile.jpg'); }
}

/* Photo background for Developers page hero */
.page-hero--developers {
  background: url('images/photos/exchange_exterior_day-banner.jpg') center 58%/cover no-repeat;
}
.page-hero--steel {
  background: url('images/photos/steel/steel-hero.jpg') center 50%/cover no-repeat;
}
.page-hero--steel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.66) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--renovations {
  background: url('images/photos/automotive-house/portfolio-chosen/room1.jpeg') center 55%/cover no-repeat;
}
.page-hero--renovations::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.66) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.page-hero--kitchen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.68) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--gc {
  background: url('images/photos/construction-2-hero-2x.jpg') center 50%/cover no-repeat;
}
@media (max-width: 640px) {
  .gc-dev-cta { flex-direction: column; align-items: center; text-align: center; }
  .gc-dev-cta > div { min-width: 0; }
}
.gc-spec-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .gc-spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gc-spec-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .audience-card-cta { justify-content: center; text-align: center; }
  .audience-card-note { text-align: left; }
  .gc-feature-btn { text-align: center !important; }
}
.page-hero--gc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--interiors {
  background: url('images/photos/automotive-house/portfolio-chosen/room1.jpeg') center 55%/cover no-repeat;
}
.page-hero--interiors::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--electrical {
  background: url('images/photos/electrical.jpeg') center 50%/cover no-repeat;
}
.page-hero--electrical::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--loft {
  background: url('images/photos/loft/pimlico-work2.jpg') center 55%/cover no-repeat;
}
.page-hero--loft::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ═══ LOCATION / AREA PROJECT PAGES (London, etc.) ═══════════════ */
.page-hero--london {
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80&fit=crop') center/cover no-repeat;
}
.page-hero--london::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.70) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--hemel {
  background: url('images/photos/the-exchange/construction-1-hero-2x.jpg') center 22%/cover no-repeat;
}
.page-hero--hemel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--watford {
  background: url('images/photos/construction-2-hero-2x.jpg') center 50%/cover no-repeat;
}
.page-hero--luton {
  background: url('images/photos/cambridge-place/cambridge-wide-2x.jpg') center 50%/cover no-repeat;
}
.page-hero--harrow {
  background: url('images/photos/automotive-house/portfolio-chosen/wycombe-deck-2x.jpg') center 50%/cover no-repeat;
}
.page-hero--watford::after,
.page-hero--luton::after,
.page-hero--harrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.54) 35%, rgba(0,0,0,0.74) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--stalbans {
  background: url('images/photos/tonman/pg12overlay-hero-2x.jpg') center 55%/cover no-repeat;
}
.page-hero--stalbans::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--aylesbury {
  background: url('images/photos/sloane-house/aylesbury-hero-2x.jpg') center 50%/cover no-repeat;
}
.page-hero--aylesbury::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero--wycombe {
  background: url('images/photos/automotive-house/portfolio-chosen/wycombe-hero-2x.jpg') center 55%/cover no-repeat;
}
.page-hero--wycombe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.52) 35%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Area pills (intro) */
.loc-area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 28px; }
.loc-area-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border: 1px solid var(--border-mid); border-radius: 100px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); background: #fff;
}
.loc-area-pill svg { width: 11px; height: 11px; color: #C8A84B; }

/* In-page jump links */
.loc-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.loc-jump-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--border-mid); border-radius: 100px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--text); background: #fff; transition: all var(--transition);
}
.loc-jump-link:hover { border-color: #C8A84B; color: #C8A84B; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.loc-jump-link svg { width: 13px; height: 13px; color: #C8A84B; }
.loc-jump-link .loc-jump-arrow { width: 12px; height: 12px; margin-left: 2px; transition: transform var(--transition); }
.loc-jump-link:hover .loc-jump-arrow { transform: translateY(2px); }

/* Project block */
.loc-project { padding-top: 56px; margin-top: 56px; border-top: 1px solid var(--border); scroll-margin-top: 100px; }
.loc-project:first-of-type { padding-top: 0; margin-top: 44px; border-top: none; }
.loc-project-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 8px 24px; }
.loc-project-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #C8A84B;
}
.loc-project-eyebrow svg { width: 14px; height: 14px; }
.loc-project-title {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800; line-height: 1.04; text-transform: uppercase; margin: 8px 0 0;
}
.loc-project-year { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--text-muted); }
.loc-project-desc {
  font-family: var(--font-body); font-size: 1.02rem; line-height: 1.75;
  color: var(--text-muted); max-width: 780px; margin: 16px 0 0;
}
.loc-project-hero { margin: 24px 0 0; border-radius: 10px; overflow: hidden; line-height: 0; background: #1c1c1c; }
.loc-project-hero img { width: 100%; aspect-ratio: 16 / 5.5; object-fit: cover; display: block; }
@media (max-width: 680px) { .loc-project-hero img { aspect-ratio: 16 / 8; } }

/* Services-used chips */
.loc-services-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin: 26px 0 12px;
}
.loc-services { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-service-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; background: #fff; border: 1px solid var(--border-mid); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--text);
  transition: all var(--transition);
}
.loc-service-chip .loc-chip-icon { width: 16px; height: 16px; color: #C8A84B; }
.loc-service-chip .loc-chip-arrow { width: 12px; height: 12px; color: #bbb; margin-left: 1px; transition: transform var(--transition), color var(--transition); }
.loc-service-chip:hover { border-color: #C8A84B; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.loc-service-chip:hover .loc-chip-arrow { color: #C8A84B; transform: translateX(2px); }

/* Photo galleries (finished / on site) */
.loc-gallery-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin: 38px 0 16px;
}
.loc-gallery-label::before { content: ''; display: block; width: 34px; height: 3px; background: #C8A84B; border-radius: 2px; }
.loc-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.loc-gallery--4 { grid-template-columns: repeat(2, 1fr); }
.loc-gallery--wide { grid-template-columns: 1fr; }
.loc-fig {
  position: relative; margin: 0; border-radius: 10px; overflow: hidden;
  line-height: 0; background: #1c1c1c; cursor: zoom-in;
}
.loc-fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; pointer-events: none; transition: transform 0.5s ease; }
.loc-gallery--wide .loc-fig img { aspect-ratio: 16 / 7; }
.loc-fig:hover img { transform: scale(1.05); }
.loc-fig figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
  color: #fff; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; line-height: 1.3; text-align: left;
}
.loc-fig-zoom { position: absolute; top: 9px; right: 9px; background: rgba(0,0,0,0.55); border-radius: 5px; padding: 5px; line-height: 0; display: flex; }
.loc-fig-zoom svg { width: 13px; height: 13px; }

/* SEO services grid */
.loc-seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.loc-seo-card {
  display: flex; flex-direction: column; padding: 30px 26px 26px;
  background: #fff; border: 1px solid var(--border); border-top: 3px solid #C8A84B;
  border-radius: 0 0 10px 10px; transition: all var(--transition-md);
}
.loc-seo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.loc-seo-card--feature { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 26px; }
.loc-seo-card--feature .loc-seo-feature-text { flex: 1; }
.loc-seo-card--feature p { margin-bottom: 0; max-width: 720px; }
.loc-seo-icon {
  width: 46px; height: 46px; border-radius: 10px; background: rgba(200,168,75,0.10);
  color: #C8A84B; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.loc-seo-card--feature .loc-seo-icon { margin-bottom: 0; }
.loc-seo-icon svg { width: 23px; height: 23px; }
.loc-seo-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; line-height: 1.12; text-transform: uppercase; margin-bottom: 10px; }
.loc-seo-card p { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; }
.loc-seo-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C8A84B; white-space: nowrap;
}
.loc-seo-more svg { width: 13px; height: 13px; transition: transform var(--transition); }
.loc-seo-card:hover .loc-seo-more svg { transform: translateX(3px); }

/* Location page — dark-theme projects section overrides */
#projects.section--dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section--dark .loc-jump-link {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); color: #e8e8e8;
}
.section--dark .loc-jump-link:hover { border-color: #C8A84B; color: #C8A84B; background: rgba(255,255,255,0.07); }
.section--dark .loc-project { border-top-color: rgba(255,255,255,0.12); }
.section--dark .loc-project-title { color: #fff; }
.section--dark .loc-project-year { color: rgba(255,255,255,0.5); }
.section--dark .loc-project-desc { color: #a8a8a8; }
.section--dark .loc-services-label { color: rgba(255,255,255,0.55); }
.section--dark .loc-service-chip {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); color: #e8e8e8;
}
.section--dark .loc-service-chip .loc-chip-arrow { color: rgba(255,255,255,0.4); }
.section--dark .loc-service-chip:hover { border-color: #C8A84B; background: rgba(255,255,255,0.09); box-shadow: none; }
.section--dark .loc-gallery-label { color: #fff; }

/* Project video button + video lightbox */
.loc-video-cta { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 32px 0 0; }
.loc-video-cta::before, .loc-video-cta::after { content: ''; height: 2px; width: 48px; background: #C8A84B; border-radius: 1px; flex-shrink: 0; }
.loc-video-btn {
  display: inline-flex; align-items: center; gap: 10px; margin: 0;
  padding: 12px 22px; background: #C8A84B; color: #0D0D0D; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em;
  cursor: pointer; transition: all var(--transition);
}
.loc-video-btn svg { width: 18px; height: 18px; }
.loc-video-btn:hover { background: #d8ba5e; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200,168,75,0.30); }
.loc-video-thumb {
  display: block; position: relative; width: min(520px, 100%); margin: 16px auto 0;
  border-radius: 10px; overflow: hidden; cursor: pointer; line-height: 0; background: #000;
}
.loc-video-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; transition: transform 0.5s ease; }
.loc-video-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.28); transition: background 0.2s; }
.loc-video-thumb:hover img { transform: scale(1.05); }
.loc-video-thumb:hover::after { background: rgba(0,0,0,0.15); }
.loc-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(200,168,75,0.95);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: transform 0.2s, background 0.2s; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.loc-video-thumb:hover .loc-video-play { transform: translate(-50%, -50%) scale(1.08); background: #C8A84B; }
.loc-video-play svg { width: 26px; height: 26px; color: #0D0D0D; margin-left: 3px; }
.loc-fig--video { grid-column: 1 / -1; cursor: pointer; }
.loc-fig--video img { aspect-ratio: 16 / 9; }
.loc-fig--wide { grid-column: 1 / -1; }
.loc-fig--wide img { aspect-ratio: 16 / 6; }
.loc-casestudy-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 13px 24px; background: #C8A84B; color: #0D0D0D; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em;
  transition: all var(--transition);
}
.loc-casestudy-btn svg { width: 17px; height: 17px; }
.loc-casestudy-btn .cs-arrow { width: 14px; height: 14px; transition: transform var(--transition); }
.loc-casestudy-btn:hover { background: #d8ba5e; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200,168,75,0.30); }
.loc-casestudy-btn:hover .cs-arrow { transform: translateX(3px); }
.video-lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.video-lightbox.open { display: flex; }
.video-lightbox .lightbox-close { z-index: 3; }
.video-lightbox-inner { width: min(1000px, 100%); }
.video-lightbox video { width: 100%; max-height: 86vh; border-radius: 10px; background: #000; display: block; }

@media (max-width: 860px) {
  .loc-seo-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-gallery--4 { grid-template-columns: repeat(2, 1fr); }
  .loc-seo-card--feature { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 680px) {
  .loc-gallery, .loc-gallery--4 { grid-template-columns: 1fr; }
  .loc-seo-grid { grid-template-columns: 1fr; }
  .loc-project-title { font-size: 1.6rem; }
  .loc-gallery-label { font-size: 1.1rem; }
  /* captions sit below the image on mobile so they don't cover it */
  .loc-fig { background: transparent; overflow: visible; }
  .loc-fig img { border-radius: 10px; }
  .loc-fig figcaption {
    position: static; background: none; padding: 9px 2px 0;
    font-size: 0.85rem; line-height: 1.4; color: var(--text-muted);
  }
  .section--dark .loc-fig figcaption { color: rgba(255,255,255,0.72); }
}
@media (max-width: 430px) {
  .loc-gallery, .loc-gallery--4 { grid-template-columns: 1fr; }
}
.page-hero--developers::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.48) 35%,
    rgba(0, 0, 0, 0.62) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Photo background for Blog page hero */
.page-hero--blog {
  background: url('images/photos/development-book_construction-site.jpg') center 68%/cover no-repeat;
}
.page-hero--blog::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.64) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Photo background for Contact page hero */
.page-hero--contact {
  background: url('images/photos/development-book_construction-site.jpg') center 68%/cover no-repeat;
}
.page-hero--contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.50) 35%,
    rgba(0, 0, 0, 0.66) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Full-screen hero variant with scroll-down cue */
.page-hero--full {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroScrollBounce 2s ease-in-out infinite;
  transition: background var(--transition), border-color var(--transition);
}
.page-hero-scroll:hover { background: rgba(0, 0, 0, 0.5); border-color: #fff; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-scroll { animation: none; }
}

/* Android-only fix: Android Chrome hit-tests a transformed element against its
   pre-transform layout box, so translateX(-50%) painted the arrow ~23px left of
   its actual clickable box — tapping the visible arrow missed ("shifts left" and
   the scroll tap never fires). Center the tap target with margin instead of a
   transform so paint box == hit box, and keep the anchor static (bounce the
   chevron instead). Scoped via the .is-android class script.js adds, so iOS and
   desktop keep their original, working behaviour untouched. */
html.is-android .page-hero-scroll {
  transform: none;
  margin-left: -23px;   /* half of the 46px width — centers without a transform */
  animation: none;
  -webkit-tap-highlight-color: transparent;
}
html.is-android .page-hero-scroll svg {
  animation: heroScrollBounceY 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroScrollBounceY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  html.is-android .page-hero-scroll svg { animation: none; }
}
/* Mobile: keep the full-screen hero content + scroll cue within the viewport */
@media (max-width: 640px) {
  .hero { padding-top: 132px; padding-bottom: 74px; }
  .hero-text { margin-top: 40px !important; padding-top: 26px !important; }
  .page-hero .lead { margin-top: 40px !important; padding-top: 26px !important; }
  .page-hero-scroll { bottom: 44px; }
}

/* ─── 16. SERVICES DETAIL ────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.sd-card {
  background: var(--off-white);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-md);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  row-gap: 0;
  align-items: center;
}
.sd-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-md);
}
.sd-card:hover { background: var(--white); box-shadow: var(--shadow-md); z-index: 1; }
.sd-card:hover::before { transform: scaleY(1); }
.sd-icon {
  width: 38px; height: 38px;
  border-radius: 0;
  background: none;
  color: #C8A84B;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  transition: all var(--transition-md);
}
.sd-icon svg { width: 32px; height: 32px; }
.sd-card:hover .sd-icon { background: none; color: #C8A84B; }
.sd-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.1;
}
.sd-text { grid-column: 1 / -1; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin: 20px 0 22px; text-align: left; }
.sd-list { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 9px; text-align: left; }
.sd-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}
.sd-list li::before {
  content: '✓';
  color: #C8A84B;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1.55;
}

/* ─── 17. ABOUT PAGE ─────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.value-card {
  padding: 36px 32px;
  background: var(--off-white);
  border-bottom: 4px solid var(--yellow);
  transition: all var(--transition-md);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-md); z-index: 1; transform: translateY(-4px); }
.value-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 14px;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}
.value-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.area-chip {
  padding: 16px 15px;
  background: #0D0D0D;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  transition: all var(--transition-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.area-chip svg { color: #C8A84B; flex-shrink: 0; }
.area-chip-arrow { color: rgba(255,255,255,0.4); transition: color var(--transition), transform var(--transition); }
.area-chip:hover { border-color: #C8A84B; background: #1a1a1a; }
.area-chip:hover .area-chip-arrow { color: #C8A84B; transform: translateX(2px); }

/* ─── 18. CONTACT PAGE ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.65fr; gap: 52px; align-items: start; }
.contact-panel {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: sticky;
  top: 100px;
  border-top: 4px solid var(--yellow);
}
.contact-panel h3 { color: #fff; margin-bottom: 8px; }
.contact-panel .lead { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-bottom: 40px; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-item:last-of-type { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.contact-detail-val { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.contact-detail-val a { color: var(--yellow-light); transition: color var(--transition); }
.contact-detail-val a:hover { color: #fff; }
.form-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px;
}
.form-panel-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 6px;
}
.form-panel-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-input, .form-textarea, .form-select {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* ─── 18b. CONTACT PAGE (extended) ──────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-info-panel {
  background: #0D0D0D;
  border-radius: var(--radius-xl);
  padding: 44px;
  position: sticky;
  top: 100px;
  border-top: 4px solid var(--yellow);
}
.contact-info-panel h3 { color: #fff; margin-bottom: 8px; }
.contact-info-panel > p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-bottom: 36px; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-detail:last-of-type { margin-bottom: 0; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-detail-value a { color: var(--yellow-light); transition: color var(--transition); }
.contact-detail-value a:hover { color: #fff; }
.contact-panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 12px;
}
.contact-badge svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }
.contact-form-panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px;
}
.contact-form-panel h3 { margin-bottom: 6px; }
.contact-form-panel > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 36px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.contact-form label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.req { color: var(--yellow-dark); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  padding: 13px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,13,13,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}
.form-status--success { color: #1c6b3f; background: #e8f5ec; border: 1px solid #b7e0c4; }
.form-status--error   { color: #9a2a2a; background: #fbeaea; border: 1px solid #f0c2c2; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  padding: 13px 42px 13px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
  cursor: pointer;
}
.select-wrap select:focus {
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,13,13,0.12);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form-check-group { margin-top: 4px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--yellow);
  cursor: pointer;
}
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ─── 19. REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ─── 20. UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.divider { border: none; height: 1px; background: var(--border); }

.section-divider {
  height: 108px;
  margin: 12px 0 32px;
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: 'KOJO   KOJO   KOJO   KOJO   KOJO   KOJO   KOJO';
  position: absolute;
  top: 50%;
  left: -12%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(60px, 8vw, 92px);
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(17,17,17,0.072);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.mt-8  { margin-top:  8px; } .mt-16 { margin-top:  16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top:  32px; }
.mt-40 { margin-top: 40px; } .mt-48 { margin-top:  48px; }
.mb-8  { margin-bottom:  8px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }  .mb-32 { margin-bottom: 32px; }

/* ─── 21. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .mobile-toggle { display: flex; }
  .grid-2, .about-split { grid-template-columns: 1fr; gap: 48px; }
  .grid-3, .values-grid { grid-template-columns: 1fr 1fr; background: var(--border); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
  .contact-info-panel { position: static; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-block:last-child { border-bottom: none; }
  .stat-block:nth-child(3) { border-bottom: none; }
  .section-divider { height: 86px; margin: 8px 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .about-float-badge { right: 0; bottom: -18px; }
  .service-detail-grid { background: var(--border); }
}
@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .service-grid { grid-template-columns: 1fr; }
  .grid-3, .values-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-audience-ctas { flex-direction: column; }
  /* Centre the CTA text across the full button (icon left, arrow right, out of flow) */
  .hero-aud-cta { position: relative; }
  .hero-aud-cta > svg:first-child { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); }
  .hero-aud-cta .hero-aud-arrow { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); }
  .hero-aud-content { width: 100%; padding: 0 46px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-panel { padding: 28px 22px; }
  .contact-panel { padding: 28px 22px; }
  .contact-info-panel { padding: 28px 22px; }
  .contact-form-panel { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .nav-container { padding: 0 20px; }
  .container { padding: 0 20px; }
}
@media (max-width: 420px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ─── 22. DROPDOWN NAV ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--yellow); background: rgba(245,184,0,0.08); }
.nav-dropdown-trigger .chevron { transition: transform 0.22s ease; flex-shrink: 0; color: currentColor; }
.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
  box-shadow: 0 20px 56px rgba(0,0,0,0.7);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--yellow); background: rgba(245,184,0,0.08); }
.nav-dropdown-menu a svg { flex-shrink: 0; color: #C8A84B; opacity: 0.85; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)); }
.nav-dropdown-menu a:hover svg { opacity: 1; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.dd-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 0; }


/* ─── 23. WHO WE WORK WITH (homepage audience cards) ────────── */
.audience-section {
  background: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.audience-section::before {
  content: 'KOJO';
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: var(--font-head);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  letter-spacing: 0.03em;
  line-height: 1;
  user-select: none;
  z-index: 0;
  pointer-events: none;
}
.audience-section .container { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .audience-section::before { top: 20px; }
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.audience-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 4px,
    transparent 4px,
    transparent 10px
  );
  transform: translateX(-50%);
}

.audience-card {
  background: var(--off-white);
  padding: 0 44px 52px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.audience-card:hover { background: var(--white); }
.audience-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.audience-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: #C8A84B;
  flex-shrink: 0;
}
.audience-card-label {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.audience-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.1vw, 0.95rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
  padding: 10px 16px;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(2px);
}

.audience-card-image-bleed {
  position: relative;
  width: calc(100% + 88px);
  margin: 0 -44px 24px;
}

.audience-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: block;
}
.audience-card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 26px;
}
.audience-card-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 36px;
  flex: 1;
}
.audience-card-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #222;
  font-weight: 600;
  line-height: 1.45;
}
.audience-card-point::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.audience-card-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.audience-card-cta .btn svg { transition: stroke 0.2s; }
.audience-card-cta .btn:hover svg { stroke: #C8A84B; }

/* ─── 24. PROCESS STEPS ──────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.process-step {
  background: var(--off-white);
  padding: 44px 36px;
  transition: background var(--transition-md);
  position: relative;
}
.process-step:hover { background: var(--white); }
.process-step::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 40px;
  background: var(--yellow);
  opacity: 0.3;
}
.process-step:last-child::after { display: none; }
.process-step-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.14;
  line-height: 1;
  margin-bottom: 18px;
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ─── 25. CHALLENGE CARDS ────────────────────────────────────── */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.challenge-card {
  background: var(--dark);
  padding: 44px 36px;
  transition: background var(--transition-md);
}
.challenge-card:hover { background: var(--dark-mid); }
.challenge-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.challenge-icon svg { width: 24px; height: 24px; }
.challenge-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 10px;
}
.challenge-text { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.75; }

/* ─── 26. FOOTER 5-COL ───────────────────────────────────────── */
.footer-grid { grid-template-columns: 1.35fr 0.72fr 0.82fr 0.95fr 0.7fr 1.2fr !important; }
@media (max-width: 1200px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 32px; } }
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .site-footer { text-align: center; }
  .footer-logo-link { justify-content: center; }
  .footer-desc { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-contact-item--locations { flex-direction: column; align-items: center; }
  .footer-bottom { align-items: center; text-align: center; }
}

/* ─── 27. RESPONSIVE (new components) ───────────────────────── */
@media (max-width: 1000px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid::before { display: none; }
  .audience-card-image-bleed { width: calc(100% + 88px); margin: 0 -44px 24px; }
}
@media (max-width: 900px)  {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .challenge-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px)  {
  .process-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 0 28px 40px; }
  .audience-card-image-bleed { width: calc(100% + 56px); margin: 0 -28px 24px; }
  .audience-card-image {
    width: 100%;
    border-radius: 0;
  }
  .process-step::after { display: none; }
}

/* ─── 28. TESTIMONIAL CARDS ─────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
  position: relative;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: 12px; left: 22px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  padding-top: 12px;
}
.testimonial-stars svg { color: var(--yellow); width: 15px; height: 15px; fill: currentColor; }
.testimonial-tag {
  display: inline-flex;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(13,13,13,0.06);
  border: 1px solid rgba(13,13,13,0.15);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.testimonial-quote {
  font-size: 0.915rem;
  color: var(--text-muted);
  line-height: 1.82;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--yellow);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.placeholder-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13,13,13,0.04);
  border: 1px solid rgba(13,13,13,0.12);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.placeholder-notice svg { color: var(--yellow); flex-shrink: 0; }
@media (max-width: 1000px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }

/* ─── 29. SCROLL TO TOP ──────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(#0f0f0f, #0f0f0f) padding-box,
              linear-gradient(160deg, #5a5a5a 0%, #d8d8d8 38%, #888888 62%, #e0e0e0 100%) border-box;
  border: 2.5px solid transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
  pointer-events: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: hover) {
  .scroll-top:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  }
}
.scroll-top-arrow {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  color: #333333;
  width: 22px;
  height: 22px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.scroll-top:focus-visible .scroll-top-arrow,
.scroll-top:active .scroll-top-arrow,
.scroll-top.pressed .scroll-top-arrow {
  opacity: 1;
  color: #fff;
}
/* Hover reveal only on devices that truly hover. On touch screens a tap
   emulates :hover and keeps it, which left the arrow stuck after clicking. */
@media (hover: hover) {
  .scroll-top:hover .scroll-top-arrow {
    opacity: 1;
    color: #fff;
  }
}
body.menu-open .scroll-top { display: none; }

/* ── Touch devices: kill hover-driven movement so links/buttons fire on the
   FIRST tap ──────────────────────────────────────────────────────────────
   On a touch screen the first tap emulates :hover, so any lift/scale
   (transform) hover plays on tap one and the element only activates on tap
   two. Neutralising the transform during touch-hover removes that double-tap.
   Colour/background hovers don't block taps and are left as-is. Desktop
   (hover: hover) is unaffected. */
@media (hover: none) {
  a:hover, button:hover, .btn:hover,
  .hero-aud-cta:hover, .svc-project-play:hover,
  .dev-location-pill:hover, .loc-jump-link:hover,
  .loc-service-chip:hover, .loc-video-btn:hover,
  .loc-casestudy-btn:hover, .area-chip:hover,
  .blog-card:hover, .loc-seo-card:hover, .value-card:hover,
  .testimonial-card:hover, .svc-card:hover, .sd-card:hover,
  .audience-card:hover, .scroll-top:hover {
    transform: none !important;
  }
}
/* Scroll-progress ring (radial fill that tracks page scroll) */
.scroll-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start the arc at the top arrow, sweep clockwise */
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.scroll-top-progress {
  fill: none;
  stroke: #333333;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 219.91;   /* 2π · 35 */
  stroke-dashoffset: 219.91;  /* fully empty until JS updates it */
  transition: stroke-dashoffset 0.08s linear, stroke 0.25s ease;
}
@media (hover: hover) {
  .scroll-top:hover .scroll-top-progress { stroke: #1c1c1c; }
}
.scroll-top-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-44% - 2px));
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}
@media (max-width: 640px)  { .testimonial-grid { grid-template-columns: 1fr; } }

/* ─── Hero banner mobile centre-alignment ────────────────────── */
@media (max-width: 640px) {
  .hero .container,
  .page-hero .container { text-align: center; }
  .hero h1, .page-hero h1 { text-align: center; }
  .hero .lead, .page-hero .lead { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-rule {
    width: clamp(230px, 64vw, 320px);
    height: 4px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0) 100%);
    clip-path: polygon(0 50%, 40% 0, 60% 0, 100% 50%, 60% 100%, 40% 100%);
  }
  .breadcrumb { justify-content: center; }
  .page-hero-label { margin-left: auto; margin-right: auto; }
  /* Centre the straddling hero pill on mobile (overrides its inline left/transform) */
  .page-hero .lead > .page-hero-label { left: 50% !important; transform: translate(-50%, -50%) !important; }
  .hero-actions { justify-content: center; }
  .csx-hero-meta { justify-content: center; }
  .legal-hero .container { text-align: center; }
}

/* ─── 29. FAQ ────────────────────────────────────────────────── */
.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.faq-category { margin-bottom: 56px; }
.faq-category-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color var(--transition-md), box-shadow var(--transition-md), transform var(--transition-md);
  overflow: hidden;
}
details.faq-item:hover {
  border-color: #ccc;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}
details.faq-item[open] {
  border-color: #ddd;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
summary.faq-q {
  padding: 22px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  line-height: 1.45;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q:hover,
details[open] summary.faq-q {
  background: #0D0D0D;
  color: #fff;
}
summary.faq-q:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}
summary.faq-q::after {
  content: '›';
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform var(--transition-md), color var(--transition);
  margin-top: -2px;
}
summary.faq-q:hover::after,
details[open] summary.faq-q::after {
  color: #fff;
}
details[open] summary.faq-q::after {
  transform: rotate(90deg);
}
.faq-a {
  padding: 20px 28px 26px;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.9;
  background: #fff;
}
.faq-a a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover {
  color: var(--yellow-dark);
}

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  transform: scale(0.94);
  transition: transform 0.28s ease;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-inner {
  position: relative;
  display: inline-block;
  max-width: 92vw;
  line-height: 0;
  cursor: default;
  border-radius: 8px;
  overflow: hidden;
}
.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  text-align: left;
}
.lightbox-caption-label {
  display: none;
}
.lightbox-caption-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.lightbox-caption-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
[data-lightbox] { cursor: zoom-in; }
.lb-thumb img { transition: transform 0.35s ease; }
.lb-thumb:hover img { transform: scale(1.07); }
.lb-thumb:hover span { background: rgba(0,0,0,0.78); }


/* ROLLED-OUT LOCATION CARDS */
    /* Trial (Aylesbury): grey info icon after each on-page photo caption */
    .loc-fig:not(.loc-fig--video) figcaption::after {
      content: '';
      display: inline-block;
      width: 13px;
      height: 13px;
      margin-left: 6px;
      vertical-align: -2px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.95;
    }
    /* Trial (Aylesbury): "services used" as square icon cards */
    #projects .loc-services { gap: 14px; }
    #projects .loc-service-chip {
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      width: 150px;
      height: 150px;
      padding: 18px 13px 15px;
      border-radius: 14px;
      gap: 0;
      line-height: 1.15;
      font-family: var(--font-head);
      font-size: 0.98rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    #projects .loc-service-chip .loc-chip-icon {
      width: 31px;
      height: 31px;
      margin: 0;
    }
    #projects .loc-service-chip .loc-chip-arrow { display: none; }
    #projects .loc-service-chip::after {
      content: '';
      width: 28px;
      height: 28px;
      margin: 0;
      border-radius: 50%;
      background-color: rgba(200,168,75,0.14);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
      background-size: 14px 14px;
      background-position: center;
      background-repeat: no-repeat;
      transition: background-color var(--transition), transform var(--transition);
    }
    #projects .loc-service-chip:hover::after {
      background-color: rgba(200,168,75,0.24);
      transform: scale(1.08);
    }
    /* Trial (Aylesbury): full-bleed (100vw) project hero banners */
    #projects .loc-project-hero {
      position: relative;
      width: 100vw;
      max-width: 100vw;
      margin: 28px calc(50% - 50vw) 24px;
      border-radius: 0;
    }
    #projects .loc-hero-overlay {
      position: absolute;
      left: max(28px, calc(50vw - 572px));
      bottom: 30px;
      width: min(75%, 860px);
      padding: 20px 26px 22px;
      background: rgba(0,0,0,0.8);
      border-radius: 8px;
    }
    #projects .loc-overlay-title {
      display: block;
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #C8A84B;
      margin-bottom: 13px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }
    #projects .loc-hero-overlay .loc-project-desc {
      position: static;
      margin: 0;
      max-width: none;
      background: none;
      color: rgba(255,255,255,0.96);
      text-shadow: 0 1px 12px rgba(0,0,0,0.65);
    }
    #projects .loc-project-hero img {
      aspect-ratio: auto;
      height: clamp(240px, 32vw, 480px);
    }
    /* Trial (Aylesbury): project "Data" stat cards (same box style as services) */
    #projects .loc-data { display: flex; flex-wrap: wrap; gap: 14px; }
    #projects .loc-data-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 150px;
      height: 150px;
      padding: 16px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.16);
    }
    #projects .loc-data-icon { width: 30px; height: 30px; color: #C8A84B; margin-bottom: 12px; }
    #projects .loc-data-value {
      font-family: var(--font-head);
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.02em;
      color: #fff;
    }
    #projects .loc-data-label {
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.6);
      margin-top: 7px;
    }
    #projects .loc-ds-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }
    #projects .loc-hero-overlay .loc-casestudy-btn { margin-top: 16px; }
    @media (max-width: 900px) {
      #projects .loc-project-hero { background: transparent; }
      #projects .loc-hero-overlay {
        position: static;
        width: auto;
        background: none;
        padding: 30px 28px 0;
      }
      #projects .loc-hero-overlay .loc-project-desc { color: #a8a8a8; text-shadow: none; }
    }
    @media (max-width: 768px) {
      #projects .loc-services { justify-content: center; }
      #projects .loc-data { justify-content: center; }
      #projects .loc-ds-row { display: block; }
    }
    @media (max-width: 600px) {
      #projects .loc-service-chip {
        width: calc(50% - 7px);
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 22px 16px 18px;
        font-size: 1.06rem;
      }
      #projects .loc-service-chip .loc-chip-icon { width: 46px; height: 46px; }
      #projects .loc-service-chip::after { width: 34px; height: 34px; background-size: 17px 17px; }
      #projects .loc-data-card { width: calc(50% - 7px); height: auto; aspect-ratio: 1 / 1; }
      #projects .loc-data-icon { width: 40px; height: 40px; }
      #projects .loc-data-value { font-size: 2.4rem; }
      #projects .loc-data-label { font-size: 0.9rem; }
    }
