/*
 * Citywide Security UK - Main Theme Stylesheet
 * Enqueued via wp_enqueue_scripts in inc/setup.php
 * Version: 1.2.21
 */

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════ */
:root {
  --navy:       #07111e;
  --navy-mid:   #0d1b2a;
  --navy-card:  #111f30;
  --navy-lift:  #162539;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   rgba(201,168,76,0.15);
  --white:      #ffffff;
  --muted:      #8fa0b4;
  --text:       #d4dde8;
  --border:     rgba(201,168,76,0.18);
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
  --max-w:      1200px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:var(--navy);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:var(--gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--gold-light)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 24px}
.section{padding:88px 0}
.section--sm{padding:56px 0}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1,h2,h3,h4{
  font-family: Georgia, 'Times New Roman', serif;
  color:var(--white);
  line-height:1.15;
  letter-spacing:-0.02em;
}
h1{font-size:clamp(2.4rem,5vw,3.8rem);font-weight:700}
h2{font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700}
h3{font-size:1.25rem;font-weight:600}
h4{font-size:1rem;font-weight:600}
p{color:var(--text);line-height:1.75}
.eyebrow{
  font-size:.6875rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold);
  display:flex;align-items:center;gap:10px;
  margin-bottom:.875rem;
}
.eyebrow::before{content:'';width:28px;height:2px;background:var(--gold);border-radius:1px;flex-shrink:0}


/* Safe hardening helpers added in v1.2.18 */
.csuk-visually-hidden,.screen-reader-text{
  position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;
  overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;
}
.csuk-hp-field{
  display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;
  position:absolute!important;left:-9999px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;
}
img[width][height]{height:auto}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:.8125rem 1.75rem;border-radius:var(--radius);
  font-size:.9375rem;font-weight:700;
  transition:all var(--transition);white-space:nowrap;
}
.btn-gold{background:var(--gold);color:var(--navy)}
.btn-gold:hover{background:var(--gold-light);color:var(--navy);transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,168,76,0.35)}
.btn-outline{background:transparent;color:var(--gold);border:2px solid var(--gold)}
.btn-outline:hover{background:var(--gold-dim);color:var(--gold-light)}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header{
  position:sticky;top:0;z-index:100;
  min-height:60px;
  background:rgba(7,17,30,0.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.nav-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  height:60px;min-height:60px;gap:24px;
}
.nav-logo{
  display:flex;align-items:center;gap:12px;
  flex-shrink:0;
}
.nav-logo-mark{
  width:38px;height:38px;
  background:var(--gold);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.nav-logo-mark svg{width:20px;height:20px}
.nav-logo-text{
  font-family:Georgia,'Times New Roman',serif;
  font-size:.9375rem;font-weight:700;
  color:var(--white);line-height:1.2;
  letter-spacing:.01em;
}
.nav-logo-text span{color:var(--gold);display:block;font-size:.6875rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase}

.nav-links{
  display:flex;align-items:center;gap:20px;white-space:nowrap;
}
.nav-links a{
  color:var(--muted);font-size:.8375rem;font-weight:500;
  transition:color var(--transition);position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;
  background:var(--gold);transition:width var(--transition);
}
.nav-links a:hover{color:var(--white)}
.nav-links a:hover::after{width:100%}

.nav-cta{
  display:flex;align-items:center;gap:16px;flex-shrink:0;
}
.nav-phone{
  display:flex;align-items:center;gap:7px;
  color:var(--gold-light);font-size:.875rem;font-weight:600;
}
.nav-phone svg{width:15px;height:15px;flex-shrink:0}

.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  width:28px;padding:4px 0;
}
.nav-toggle span{
  display:block;height:2px;background:var(--gold);
  border-radius:1px;transition:all var(--transition);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero{
  position:relative;overflow:hidden;
  padding:120px 0 100px;
  background:var(--navy);
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(13,27,42,0.8) 0%, transparent 60%);
  pointer-events:none;
}
/* Dot grid texture */
.hero::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(201,168,76,0.08) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}
/* Diagonal gold rule */
.hero-rule{
  position:absolute;top:0;right:12%;
  width:1px;height:100%;
  background:linear-gradient(to bottom,transparent,var(--gold) 30%,var(--gold) 70%,transparent);
  opacity:.18;
}

.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}
.hero-eyebrow{margin-bottom:1.25rem}
.hero-title{margin-bottom:1.25rem}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-lead{
  font-size:1.0625rem;color:var(--muted);
  margin-bottom:2rem;max-width:480px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-trust{
  display:flex;flex-wrap:wrap;gap:20px;
}
.trust-item{
  display:flex;align-items:center;gap:7px;
  font-size:.8125rem;font-weight:600;color:var(--muted);
}
.trust-item svg{width:16px;height:16px;color:var(--gold);flex-shrink:0}

.hero-visual{
  display:flex;flex-direction:column;gap:16px;
}
.stat-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px 24px;
  display:flex;align-items:center;gap:18px;
  transition:border-color var(--transition);
}
.stat-card:hover{border-color:rgba(201,168,76,0.4)}
.stat-icon{
  width:44px;height:44px;border-radius:var(--radius);
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:1.25rem;
}
.stat-num{
  font-family:Georgia,'Times New Roman',serif;
  font-size:1.625rem;font-weight:700;
  color:var(--gold);line-height:1;
}
.stat-label{font-size:.8125rem;color:var(--muted);margin-top:.2rem}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar{
  background:var(--navy-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:20px 0;
}
.trust-bar-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.trust-badge{
  display:flex;align-items:center;gap:10px;
  font-size:.875rem;font-weight:600;color:var(--white);
}
.trust-badge svg{width:20px;height:20px;color:var(--gold);flex-shrink:0}
.trust-divider{width:1px;height:28px;background:var(--border);flex-shrink:0}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services{background:var(--navy-mid)}
.section-header{text-align:center;margin-bottom:52px}
.section-header h2{margin-bottom:.75rem}
.section-header p{color:var(--muted);max-width:560px;margin:0 auto}

/* Service cards rendered by JS */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
/* ── Service cards - entire card is a clickable <a> ── */
.service-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:0;
  display:flex;flex-direction:column;gap:0;
  transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition),background var(--transition);
  position:relative;overflow:hidden;
  /* Anchor reset */
  color:inherit;text-decoration:none;
  cursor:pointer;
}

.service-card-image{
  width:100%;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,rgba(201,168,76,0.15),rgba(255,255,255,0.03));
  border-bottom:1px solid rgba(201,168,76,0.16);
  overflow:hidden;
}
.service-card-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .45s ease,filter .45s ease;
}
.service-card:hover .service-card-image img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.04);
}
.service-card-body{
  padding:22px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}

.service-card::before{
  content:'';position:absolute;
  bottom:0;left:0;width:0;height:2px;
  background:linear-gradient(to right,var(--gold),var(--gold-light));
  transition:width .35s ease;
}
.service-card:hover{
  border-color:rgba(201,168,76,0.42);
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(0,0,0,0.45);
  background:var(--navy-lift);
}
.service-card:hover::before{width:100%}
.service-card:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
.service-card-icon{
  width:40px;height:40px;
  background:var(--gold-dim);
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:background var(--transition),border-color var(--transition);
}
.service-card:hover .service-card-icon{
  background:rgba(201,168,76,0.22);
  border-color:rgba(201,168,76,0.4);
}
.service-card-icon svg{width:20px;height:20px;stroke:var(--gold);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{font-size:1.0625rem;margin-bottom:0;transition:color var(--transition)}
.service-card:hover h3{color:var(--gold-light)}
.service-card p{font-size:.875rem;color:var(--muted);flex:1}
/* Arrow badge - appears on hover */
.service-card-arrow{
  font-size:.8125rem;font-weight:700;color:var(--gold);
  display:flex;align-items:center;gap:4px;
  opacity:0;transform:translateX(-6px);
  transition:opacity var(--transition),transform var(--transition);
  margin-top:auto;padding-top:4px;
}
.service-card:hover .service-card-arrow{
  opacity:1;transform:translateX(0);
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-us{background:var(--navy)}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}
.why-content h2{margin-bottom:1rem}
.why-content p{color:var(--muted);margin-bottom:2rem}
.why-points{display:flex;flex-direction:column;gap:18px;margin-bottom:2.5rem}
.why-point{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;background:var(--navy-card);
  border:1px solid var(--border);border-radius:var(--radius);
}
.why-point-icon{
  width:36px;height:36px;border-radius:var(--radius);
  background:var(--gold-dim);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.why-point-icon svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.why-point h4{color:var(--white);margin-bottom:.2rem}
.why-point p{font-size:.875rem;color:var(--muted)}

.why-visual{
  display:grid;grid-template-columns:1fr 1fr;
  gap:14px;
}
.metric-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;text-align:center;
}
.metric-card:first-child{
  grid-column:span 2;
  background:linear-gradient(135deg,var(--navy-card),var(--navy-lift));
  border-color:rgba(201,168,76,0.3);
}
.metric-num{
  font-family:Georgia,'Times New Roman',serif;
  font-size:2.5rem;font-weight:700;
  color:var(--gold);line-height:1;
  margin-bottom:.25rem;
}
.metric-card:first-child .metric-num{font-size:3.5rem}
.metric-label{font-size:.8125rem;color:var(--muted);font-weight:500}

/* ═══════════════════════════════════════
   COVERAGE AREAS
═══════════════════════════════════════ */
.coverage{background:var(--navy-mid)}
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:12px;margin-top:40px;
}
.coverage-item{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px 18px;
  display:flex;align-items:center;gap:10px;
  font-size:.9rem;font-weight:600;color:var(--text);
  transition:all var(--transition);
}
.coverage-item:hover{border-color:var(--gold);color:var(--gold)}
.coverage-dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}

/* ═══════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════ */
.quote-section{
  background:var(--navy);
  position:relative;overflow:hidden;
}
.quote-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(201,168,76,0.05),transparent 70%);
  pointer-events:none;
}
.quote-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:start;
}
.quote-content h2{margin-bottom:.875rem}
.quote-content p{color:var(--muted);margin-bottom:1.5rem}
.quote-guarantee{
  display:flex;flex-direction:column;gap:10px;
  margin-top:2rem;
}
.guarantee-item{
  display:flex;align-items:center;gap:10px;
  font-size:.875rem;color:var(--muted);
}
.guarantee-item svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* ── Form ── */
.quote-form{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
}
.quote-form h3{
  font-size:1.25rem;margin-bottom:8px;color:var(--white);
}
.quote-form > p{font-size:.875rem;color:var(--muted);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.form-group label{font-size:.8125rem;font-weight:600;color:var(--muted)}
.form-group input,
.form-group select,
.form-group textarea{
  background:var(--navy-lift);
  border:1px solid rgba(201,168,76,0.2);
  border-radius:var(--radius);
  padding:.6875rem .875rem;
  color:var(--white);
  font-size:.9375rem;
  font-family:inherit;
  transition:border-color var(--transition);
  width:100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;border-color:var(--gold);
}
.form-group select option{background:var(--navy-card)}
.form-group textarea{resize:vertical;min-height:90px}
.form-submit{width:100%;margin-top:8px;font-size:1rem;justify-content:center}
.form-note{font-size:.75rem;color:var(--muted);text-align:center;margin-top:10px}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer{background:var(--navy-card);border-top:1px solid var(--border)}
.footer-top{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:48px;padding:64px 0 48px;
}
.footer-brand p{
  font-size:.875rem;color:var(--muted);
  margin:16px 0 20px;max-width:280px;line-height:1.7;
}
.footer-social{display:flex;gap:12px}
.social-link{
  width:36px;height:36px;border-radius:var(--radius);
  background:var(--navy-lift);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--muted);transition:all var(--transition);
}
.social-link:hover{border-color:var(--gold);color:var(--gold)}
.social-link svg{width:16px;height:16px}

.footer-col h4{
  font-size:.8125rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold);margin-bottom:18px;
}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul a{
  font-size:.875rem;color:var(--muted);
  transition:color var(--transition);
}
.footer-col ul a:hover{color:var(--white)}
.footer-contact-item{
  display:flex;align-items:flex-start;gap:8px;
  font-size:.875rem;color:var(--muted);margin-bottom:10px;
}
.footer-contact-item svg{width:16px;height:16px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;margin-top:2px}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.footer-bottom p{font-size:.8125rem;color:var(--muted)}
.footer-bottom-links{display:flex;gap:20px}
.footer-bottom-links a{font-size:.8125rem;color:var(--muted);transition:color var(--transition)}
.footer-bottom-links a:hover{color:var(--gold)}
.sia-badge{
  display:flex;align-items:center;gap:8px;
  font-size:.8125rem;font-weight:700;color:var(--gold);
  background:var(--gold-dim);border:1px solid var(--border);
  border-radius:var(--radius);padding:6px 14px;
}

/* ═══════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════ */
.mobile-nav{
  display:none;position:fixed;inset:0;z-index:200;
  background:rgba(7,17,30,0.97);
  flex-direction:column;padding:24px;
  opacity:0;pointer-events:none;transition:opacity var(--transition);
}
.mobile-nav.open{opacity:1;pointer-events:all}
.mobile-nav-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px}
.mobile-nav ul{display:flex;flex-direction:column;gap:8px}
.mobile-nav ul a{
  display:block;padding:14px 16px;
  font-size:1.125rem;font-weight:600;color:var(--text);
  border-radius:var(--radius);transition:all var(--transition);
}
.mobile-nav ul a:hover{background:var(--navy-card);color:var(--gold)}
.mobile-nav-cta{margin-top:32px;display:flex;flex-direction:column;gap:12px}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px){
  .hero-inner,.why-grid,.quote-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .hero-visual{grid-template-columns:1fr 1fr;display:grid}
}
@media(max-width:768px){
  .section{padding:64px 0}
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
  .trust-bar-inner{gap:12px}
  .trust-divider{display:none}
  .why-visual{grid-template-columns:1fr 1fr}
  .metric-card:first-child{grid-column:span 2}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
}
@media(max-width:480px){
  .hero{padding:80px 0 60px}
  .services-grid{grid-template-columns:1fr}
  .coverage-grid{grid-template-columns:1fr 1fr}
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease}
.reveal.in{opacity:1;transform:none}

/* ═══════════════════════════════════════
   FORM SUCCESS STATE
═══════════════════════════════════════ */
.form-success{
  display:none;text-align:center;padding:32px;
  color:var(--gold);font-weight:600;font-size:1rem;
}
.form-success svg{width:48px;height:48px;stroke:var(--gold);fill:none;stroke-width:1.5;margin:0 auto 16px;display:block}

/* ════════════════════════════════════════════
   WORDPRESS-SPECIFIC ADDITIONS
════════════════════════════════════════════ */

/* ── Page hero (inner pages) ─────────────── */
.csuk-page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.csuk-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(201,168,76,0.05), transparent 60%);
  pointer-events: none;
}
.csuk-page-hero .container { position: relative; z-index: 1; }
.csuk-page-hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); margin-top: .75rem; }

/* Inner location/service page hero CTAs. Added on top of v1.1.7 without changing page content. */
.csuk-page-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:clamp(22px,3vw,34px);
}
.csuk-page-hero-actions .btn{
  min-width:190px;
  justify-content:center;
}
.csuk-page-hero--has-image .csuk-page-hero-actions .btn.btn-outline,
.csuk-page-hero--location .csuk-page-hero-actions .btn.btn-outline{
  background:rgba(7,17,30,.36);
}
@media (max-width:640px){
  .csuk-page-hero-actions .btn{
    width:100%;
    min-width:0;
  }
}

/* ── Service hero ────────────────────────── */
.csuk-service-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.csuk-service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 60% 40%, rgba(201,168,76,0.06), transparent 65%);
  pointer-events: none;
}
.csuk-service-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0;
}
.csuk-service-hero-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.csuk-service-hero-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Prose content ───────────────────────── */
.csuk-prose { max-width: 720px; margin-left: 0; }
.csuk-prose p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.8; color: var(--text); }
.csuk-prose h2 { font-size: 1.625rem; margin: 2rem 0 .875rem; color: var(--white); }
.csuk-prose h3 { font-size: 1.25rem; margin: 1.5rem 0 .75rem; color: var(--white); }
.csuk-prose ul, .csuk-prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.csuk-prose li { color: var(--text); line-height: 1.75; margin-bottom: .375rem; }
.csuk-prose ul li::marker { color: var(--gold); }
.csuk-prose a { color: var(--gold); }
.csuk-prose a:hover { color: var(--gold-light); }

/* ── Blog / listing post cards ───────────── */
.csuk-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.csuk-post-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.csuk-post-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.csuk-post-body { padding: 24px; }
.csuk-post-meta { font-size: .8125rem; color: var(--muted); margin-bottom: .5rem; }
.csuk-post-title { font-size: 1.125rem; margin-bottom: .75rem; }
.csuk-post-title a { color: var(--white); text-decoration: none; transition: color var(--transition); }
.csuk-post-title a:hover { color: var(--gold); }
.csuk-btn-sm { padding: .5rem 1.125rem; font-size: .875rem; }

/* ── Testimonials grid ───────────────────── */
.testimonials { background: var(--navy-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.testimonial-rating { margin-bottom: 14px; }
.csuk-star--filled { color: var(--gold); }
.csuk-star--empty { color: var(--navy-lift); }
.testimonial-text p { font-size: .9375rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 0; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar--placeholder {
  background: var(--navy-lift);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar--placeholder svg { width: 20px; height: 20px; stroke: var(--muted); }
.testimonial-client { display: block; font-size: .9375rem; font-weight: 700; color: var(--white); font-style: normal; }
.testimonial-position { display: block; font-size: .8125rem; color: var(--muted); }

/* ── Quote form admin notice ─────────────── */
.csuk-admin-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .875rem;
  color: var(--gold-light);
}
.csuk-admin-notice a { color: var(--gold); text-decoration: underline; }

/* ── Quote call box ──────────────────────── */
.quote-call-box {
  margin-top: 2rem;
  padding: 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.quote-call-label { font-size: .875rem; font-weight: 600; color: var(--white); margin-bottom: .375rem; }
.quote-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.quote-phone-link svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.quote-call-hours { font-size: .8125rem; color: var(--muted); margin-top: .375rem; }
.guarantee-item span { color: var(--muted); font-size: .875rem; }

/* ── Coverage HQ badge ───────────────────── */
.coverage-item--hq { border-color: rgba(201,168,76,0.4); }
.coverage-hq-badge {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 2px 8px;
  margin-left: auto;
}

/* ── Navigation logo custom image ───────── */
.nav-custom-logo { max-height: 48px; width: auto; display: block; }
.nav-logo--image .nav-logo-text { line-height: 0; font-size: 0; letter-spacing: 0; }
.nav-logo--image .nav-custom-logo { max-height: 68px; max-width: min(520px, 58vw); width: auto; height: auto; object-fit: contain; }
.mobile-nav .nav-logo--image .nav-custom-logo, .footer-brand .nav-logo--image .nav-custom-logo { max-height: 58px; max-width: min(380px, 82vw); }

/* ── Metric card featured ─────────────── */
.metric-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-card), var(--navy-lift));
  border-color: rgba(201,168,76,0.3);
}
.metric-card--featured .metric-num { font-size: 3.5rem; }

/* ── No content fallback ─────────────── */
.csuk-no-content { color: var(--muted); font-style: italic; text-align: center; padding: 3rem; }

/* ── CF7 form styling override ───────── */
.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .6875rem .875rem;
  color: var(--white);
  font-size: .9375rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition);
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.wpcf7-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .8125rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
}
.wpcf7-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── WP Pagination ───────────────────── */
.csuk-pagination { margin-top: 3rem; text-align: center; }
.csuk-pagination ul { display: flex; gap: 8px; justify-content: center; list-style: none; }
.csuk-pagination ul a, .csuk-pagination ul span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .875rem;
  text-decoration: none;
  transition: all var(--transition);
}
.csuk-pagination ul a:hover { border-color: var(--gold); color: var(--gold); }
.csuk-pagination ul .current span { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── Single post layout ──────────────── */
.csuk-single-post { max-width: 720px; margin: 0 auto; }
.csuk-post-header { margin-bottom: 2rem; }
.csuk-post-featured-image { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }
.csuk-post-featured-image img { width: 100%; height: auto; display: block; }

/* ── Responsive additions ────────────── */
@media (max-width: 768px) {
  .csuk-service-hero-inner { flex-direction: column; gap: 24px; }
  .csuk-service-hero-icon { width: 56px; height: 56px; }
  .metric-card--featured { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Single service page alignment fix ────────── */
.single-security_service .csuk-prose,
.single-security_service .csuk-service-hero-inner {
  padding-left: 0;
}

/* Ensure all inner page content respects container padding */
.csuk-main .container > *:not(.services-grid):not(.section-header) {
  /* Inherits container padding - no extra override needed */
}

/* ── Dropdown nav menus ───────────────────────── */
.nav-links .menu-item-has-children { position: relative; }
.nav-links .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: .65rem;
  letter-spacing: 0;
  border: none;
  background: none;
  position: static;
  width: auto;
  height: auto;
  transition: none;
  display: inline;
}
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-links .menu-item-has-children:hover .sub-menu,
.nav-links .menu-item-has-children:focus-within .sub-menu { display: block; }
.nav-links .sub-menu li { list-style: none; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .8375rem;
  color: var(--muted);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links .sub-menu a::after { display: none !important; }
.nav-links .sub-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── Hero mini form (right column) ───────────── */
.hero-mini-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-mini-form h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-mini-form > p {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-mini-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.hero-mini-form label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-mini-form input,
.hero-mini-form select {
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .625rem .875rem;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition);
}
.hero-mini-form input:focus,
.hero-mini-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.hero-mini-form select option { background: var(--navy-card); }
.hero-mini-form .btn { width: 100%; justify-content: center; margin-top: 4px; font-size: .9375rem; }
.hero-mini-form-success {
  text-align: center;
  padding: 24px 16px;
  color: var(--gold);
  font-weight: 600;
  display: none;
}
.hero-mini-form-success svg {
  width: 40px; height: 40px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  display: block; margin: 0 auto 12px;
}

/* ── Hero image option (alternative to form) ── */
.hero-image-right {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-image-right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ═══════════════════════════════════════════════
   NAV DROPDOWN SYSTEM - csuk-nav-dropdown
   Replaces inline sub-menu from previous version
═══════════════════════════════════════════════ */
.csuk-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.csuk-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: .8375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}
.csuk-nav-dropdown > a span { font-size: .55rem; transition: transform var(--transition); }
.csuk-nav-dropdown:hover > a { color: var(--white); }
.csuk-nav-dropdown:hover > a span { transform: rotate(180deg); }
.csuk-nav-dropdown > a::after { display: none !important; } /* disable underline effect */

.csuk-sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.csuk-nav-dropdown:hover .csuk-sub-menu,
.csuk-nav-dropdown:focus-within .csuk-sub-menu { display: block; }
.csuk-sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .8125rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .18s;
}
.csuk-sub-menu a:first-child {
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  padding-bottom: 10px;
}
.csuk-sub-menu a:hover { color: var(--gold); background: rgba(201,168,76,.07); }

/* ═══════════════════════════════════════════════
   ALIGNMENT FIX - inner pages text left-edge
   Ensures .csuk-prose and all single page content
   always respects the container's side padding.
═══════════════════════════════════════════════ */
.csuk-main .container,
.single-security_service .container { padding-left: 24px; padding-right: 24px; }

.single-security_service .csuk-prose { margin: 0; }

/* Service hero inner always has side padding */
.csuk-service-hero .container { padding-left: 24px; padding-right: 24px; }

@media (max-width: 768px) {
  .csuk-main .container,
  .single-security_service .container { padding-left: 20px; padding-right: 20px; }
}

/* ── Button icon size fix - SVGs inside .btn always 18px ─── */
.btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   PAGE HERO - with featured image
═══════════════════════════════════════════════ */
.csuk-page-hero--has-image {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}
.csuk-page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.csuk-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.csuk-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,17,30,0.88) 0%,
    rgba(7,17,30,0.65) 60%,
    rgba(7,17,30,0.4) 100%
  );
}
.csuk-page-hero--has-image .container { position: relative; z-index: 1; }
.csuk-page-hero--has-image h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.csuk-page-hero--has-image .eyebrow { color: var(--gold); }

/* ── Homepage CTA section ─────────────────────── */
.csuk-quote-cta { padding: 88px 0; }


/* ═══════════════════════════════════════
   ACCESSIBILITY AND FORM FEEDBACK FIXES
═══════════════════════════════════════ */
.mobile-nav-close:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
body.csuk-nav-open { overflow: hidden; }
.csuk-form-message {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.5;
}
.csuk-form-message.is-error {
  background: rgba(192,57,43,.14);
  border: 1px solid rgba(192,57,43,.42);
  color: #ffd6d1;
}
.csuk-form-message.is-success {
  background: rgba(46,204,113,.12);
  border: 1px solid rgba(46,204,113,.36);
  color: #d7ffe6;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   CLIENT FIX PASS - Header, hero and pages
═══════════════════════════════════════ */
.site-header .container{
  max-width: min(1440px, 100%);
  padding-left: clamp(20px, 2.6vw, 40px);
  padding-right: clamp(20px, 2.6vw, 40px);
}
.nav-inner{
  min-height: 72px;
  height: auto;
  padding: 8px 0;
  gap: clamp(18px, 2.2vw, 34px);
}
.nav-logo{
  min-width: 300px;
  max-width: 420px;
  gap: 14px;
}
.nav-logo-mark{
  width: 52px;
  height: 52px;
}
.nav-logo-mark svg{width:24px;height:24px}
.nav-logo-text{
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  line-height: 1.04;
}
.nav-logo-text span{
  margin-top: 4px;
  font-size: clamp(.62rem, .82vw, .78rem);
  letter-spacing: .12em;
  line-height: 1.15;
}
.nav-links{
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  gap: clamp(22px, 3.3vw, 52px);
  flex-wrap: nowrap;
}
.nav-links > a,
.nav-links > .csuk-nav-dropdown,
.nav-links > li{
  flex: 0 0 auto;
}
.nav-links li{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-links a,
.csuk-nav-dropdown > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: clamp(.92rem, 1vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta{gap:14px;min-width:max-content}
.nav-cta .btn{padding:.72rem 1.25rem}
.nav-phone{font-size:clamp(.92rem, 1vw, 1rem);white-space:nowrap}

.hero{
  padding: clamp(84px, 9vw, 130px) 0 clamp(70px, 8vw, 110px);
}
.hero-inner{
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}
.hero-inner > div:first-child{
  max-width: 760px;
}
.hero-lead{
  max-width: 620px;
}
.hero-image-right{
  min-height: 460px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  background: linear-gradient(135deg, rgba(201,168,76,.16), rgba(17,31,48,.92));
  position: relative;
}
.hero-image-right::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(7,17,30,.04), rgba(7,17,30,.32));
  pointer-events:none;
}
.hero-image-right--placeholder{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.22), transparent 34%),
    linear-gradient(135deg, #101e30, #07111e 58%, #1a2c42);
}
.hero-image-right--placeholder::before{
  content:'';
  position:absolute;
  right:9%;
  bottom:0;
  width:42%;
  height:80%;
  background: linear-gradient(180deg, rgba(201,168,76,.34), rgba(201,168,76,.05));
  clip-path: polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  opacity:.42;
}
.hero-image-placeholder-content{
  position:relative;
  z-index:2;
  max-width:360px;
}
.hero-image-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--gold-light);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
  background:rgba(7,17,30,.55);
}
.hero-image-placeholder-content h3{
  font-size:1.55rem;
  margin-bottom:8px;
}
.hero-image-placeholder-content p{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.65;
}

.form-success,
.hero-mini-form-success{
  overflow:hidden;
}
.form-success svg,
.hero-mini-form-success svg,
.cwcsf-submit svg,
.csuk-native-form button svg,
button[type="submit"] svg{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  min-width:18px !important;
  min-height:18px !important;
  flex:0 0 18px !important;
}
.form-success svg,
.hero-mini-form-success svg{
  width:42px !important;
  height:42px !important;
  max-width:42px !important;
  max-height:42px !important;
  min-width:42px !important;
  min-height:42px !important;
}
.cwcsf-submit,
.form-submit,
.hero-mini-form .btn{
  min-height:52px;
  overflow:hidden;
}

.csuk-page-hero--location{
  min-height: 420px;
  display:flex;
  align-items:center;
  padding: 110px 0 88px;
}
.csuk-page-hero-bg--generated{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 77% 36%, rgba(201,168,76,.2), transparent 28%),
    linear-gradient(135deg, #07111e 0%, #0d1b2a 56%, #162539 100%);
}
.csuk-generated-hero-visual{
  position:absolute;
  right:8%;
  bottom:0;
  width:min(430px, 36vw);
  height:82%;
  border:1px solid rgba(201,168,76,.22);
  border-bottom:0;
  border-radius:18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(201,168,76,.16), rgba(201,168,76,.03)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.04) 45px, transparent 46px);
  opacity:.62;
  box-shadow:0 24px 80px rgba(0,0,0,.3);
}
.csuk-location-page .csuk-page-hero h1{
  max-width:760px;
}
.csuk-location-page .csuk-prose,
.csuk-location-landing{
  max-width: 980px;
}
.csuk-location-intro{
  font-size:1.15rem !important;
  color:var(--text) !important;
  padding:22px 24px;
  border:1px solid var(--border);
  border-left:4px solid var(--gold);
  border-radius:var(--radius);
  background:rgba(201,168,76,.07);
}
.csuk-check-list,
.csuk-area-list{
  list-style:none !important;
  padding-left:0 !important;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 18px;
}
.csuk-check-list li,
.csuk-area-list li{
  position:relative;
  padding-left:28px;
  margin:0 0 4px !important;
}
.csuk-check-list li::before,
.csuk-area-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
}
.csuk-location-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin:28px 0 8px;
}
.csuk-location-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
}
.csuk-location-card h3{
  font-size:1.12rem;
  margin:0 0 12px;
  color:var(--gold-light);
}
.csuk-location-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.csuk-location-card a{
  color:var(--text);
  font-weight:650;
}
.csuk-location-card a:hover{color:var(--gold-light)}
.csuk-prose .wp-block-buttons{margin-top:28px;display:flex;gap:14px;flex-wrap:wrap}
.csuk-prose .wp-block-button__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8125rem 1.45rem;
  border-radius:var(--radius);
  background:var(--gold);
  color:var(--navy);
  font-weight:800;
  text-decoration:none;
}
.csuk-prose .is-style-outline .wp-block-button__link{
  background:transparent;
  color:var(--gold);
  border:2px solid var(--gold);
}

@media (max-width: 1240px){
  .nav-logo{min-width:260px;max-width:360px}
  .nav-links{gap:24px}
  .nav-cta .btn{padding:.68rem 1rem}
}
@media (max-width: 1120px){
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
}
@media (max-width: 1024px){
  .hero-inner{grid-template-columns:1fr;gap:42px}
  .hero-visual{display:block}
  .hero-image-right{min-height:380px;aspect-ratio:16/9}
}
@media (max-width: 768px){
  .nav-inner{min-height:68px}
  .nav-logo{min-width:0;max-width:calc(100% - 54px)}
  .nav-logo-mark{width:44px;height:44px}
  .nav-logo-text{font-size:1rem}
  .nav-logo-text span{font-size:.58rem;letter-spacing:.09em}
  .hero-image-right{min-height:300px}
  .csuk-check-list,.csuk-area-list,.csuk-location-grid{grid-template-columns:1fr}
  .csuk-page-hero--location{min-height:340px;padding:86px 0 64px}
  .csuk-generated-hero-visual{opacity:.28;right:-10%;width:72vw}
}

/* ═══════════════════════════════════════
   CLIENT FIX PASS 2 - tighter hero and lead form
═══════════════════════════════════════ */
.hero{
  padding-top: clamp(46px, 5.5vw, 76px) !important;
  padding-bottom: clamp(58px, 6vw, 86px) !important;
}
.hero-eyebrow{margin-bottom: .95rem !important;}
.hero-title{margin-bottom: 1rem !important;}
.hero-lead{margin-bottom: 1.55rem !important;}
.hero-actions{margin-bottom: 1.7rem !important;}
.hero-inner{
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr) !important;
  gap: clamp(34px, 4vw, 58px) !important;
}
.hero-mini-form{
  max-width: 460px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(17,31,48,.98), rgba(7,17,30,.96));
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  border-color: rgba(201,168,76,.24);
}
.hero-mini-form textarea{
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .625rem .875rem;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  resize: vertical;
  min-height: 82px;
  transition: border-color var(--transition);
}
.hero-mini-form textarea:focus{outline:none;border-color:var(--gold)}
.trust-bar{padding: 16px 0 !important;}
.trust-bar-inner--compact{
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
}
.trust-bar-inner--compact .trust-badge{font-size: .95rem;}
@media (max-width: 1024px){
  .hero-mini-form{margin-left:0;max-width:100%;}
}
.csuk-home-editable{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}

/* ── Footer final layout: four equal columns on one desktop row ── */
.footer-top{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  align-items:start;
  column-gap:40px;
  row-gap:32px;
}
.footer-top > .footer-brand,
.footer-top > .footer-col{
  min-width:0;
  width:100%;
}
.footer-brand p{
  max-width:100%;
}
.footer-col ul{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin:0;
  padding:0;
}
.footer-col li{
  display:block;
  width:100%;
  margin:0;
  padding:0;
}
.footer-col ul a,
.footer-contact-item a,
.footer-contact-item span{
  display:inline-block;
  max-width:100%;
  overflow-wrap:break-word;
  word-break:normal;
}
.footer-widgets{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:32px;
}
.footer-widgets > *{
  min-width:0;
}
@media (max-width:1024px){
  .footer-top,
  .footer-widgets{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:640px){
  .footer-top,
  .footer-widgets{
    grid-template-columns:1fr !important;
  }
}

/* ── Final client tidy pass: header logo, no hamburger, footer one-row columns ── */
.site-header .nav-custom-logo,
.site-header .nav-logo--image .nav-custom-logo{
  width:clamp(210px, 16vw, 275px) !important;
  max-width:none !important;
  max-height:none !important;
  height:auto !important;
  object-fit:contain !important;
}
.footer-brand .nav-logo--image .nav-custom-logo{
  width:clamp(170px, 12vw, 220px) !important;
  max-width:100% !important;
  max-height:none !important;
  height:auto !important;
  object-fit:contain !important;
}
.nav-toggle,
.mobile-nav{
  display:none !important;
}
.nav-links,
.nav-cta{
  display:flex !important;
}
.site-header .nav-inner{
  min-height:76px;
  align-items:center;
}
@media (max-width:1120px){
  .site-header .nav-inner{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 20px;
    padding:12px 0;
  }
  .site-header .nav-logo{
    flex:0 0 auto;
    min-width:0;
    max-width:none;
    justify-content:center;
  }
  .site-header .nav-links{
    order:2;
    flex:1 1 100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px 24px;
  }
  .site-header .nav-cta{
    order:3;
    flex:0 1 auto;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }
  .nav-toggle{display:none !important;}
}
@media (max-width:720px){
  .site-header .nav-custom-logo,
  .site-header .nav-logo--image .nav-custom-logo{
    width:clamp(190px, 58vw, 245px) !important;
  }
  .site-header .nav-links{
    gap:10px 16px;
  }
  .site-header .nav-links a,
  .site-header .csuk-nav-dropdown > a{
    font-size:.88rem;
  }
  .site-header .nav-cta .btn,
  .site-header .nav-phone{
    font-size:.86rem;
  }
}

.footer-top{
  display:grid !important;
  grid-template-columns:minmax(250px,1.1fr) minmax(210px,1fr) minmax(210px,1fr) minmax(250px,1.1fr) !important;
  align-items:start !important;
  column-gap:clamp(30px, 4.5vw, 72px) !important;
  row-gap:24px !important;
}
.footer-top > .footer-brand,
.footer-top > .footer-col{
  grid-row:1 !important;
  min-width:0 !important;
  width:100% !important;
}
.footer-top > :nth-child(1){grid-column:1 !important;}
.footer-top > :nth-child(2){grid-column:2 !important;}
.footer-top > :nth-child(3){grid-column:3 !important;}
.footer-top > :nth-child(4){grid-column:4 !important;}
.footer-brand p{
  max-width:330px !important;
}
.footer-col h4{
  margin-top:0;
}
@media (max-width:1180px){
  .footer-top{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .footer-top > .footer-brand,
  .footer-top > .footer-col{
    grid-row:auto !important;
    grid-column:auto !important;
  }
}
@media (max-width:640px){
  .footer-top{
    grid-template-columns:1fr !important;
  }
}

/* ═══════════════════════════════════════
   VERIFIED HEADER + FOOTER FIX, final override
   Purpose: remove hamburger, keep desktop menu visible, stretch logo naturally,
   and place footer sections in one clean four-column row.
═══════════════════════════════════════ */
.site-header .container{
  max-width: min(1480px, 100%) !important;
  padding-left: clamp(18px, 2.4vw, 42px) !important;
  padding-right: clamp(18px, 2.4vw, 42px) !important;
}
.site-header .nav-inner{
  display: grid !important;
  grid-template-columns: minmax(250px, 360px) minmax(280px, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 2.2vw, 34px) !important;
  min-height: 86px !important;
  height: auto !important;
  padding: 10px 0 !important;
  flex-wrap: nowrap !important;
}
.site-header .nav-logo{
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
.site-header .nav-custom-logo,
.site-header .nav-logo--image .nav-custom-logo{
  display: block !important;
  width: clamp(255px, 21vw, 350px) !important;
  min-width: 255px !important;
  max-width: 350px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}
.site-header .nav-links{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(18px, 2.6vw, 42px) !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}
.site-header .nav-links a,
.site-header .csuk-nav-dropdown > a{
  white-space: nowrap !important;
  font-size: clamp(.9rem, .9vw, 1rem) !important;
  line-height: 1.2 !important;
}
.site-header .nav-cta{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  min-width: max-content !important;
  white-space: nowrap !important;
}
.site-header .nav-toggle,
.site-header button.nav-toggle,
.nav-toggle,
.mobile-nav{
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
@media (max-width: 1040px){
  .site-header .nav-inner{
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 10px !important;
    min-height: auto !important;
    padding: 12px 0 !important;
  }
  .site-header .nav-logo{
    justify-content: center !important;
  }
  .site-header .nav-custom-logo,
  .site-header .nav-logo--image .nav-custom-logo{
    width: clamp(235px, 46vw, 315px) !important;
    min-width: 0 !important;
    max-width: 92vw !important;
  }
  .site-header .nav-links{
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px 22px !important;
  }
  .site-header .nav-cta{
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}
@media (max-width: 560px){
  .site-header .nav-links,
  .site-header .nav-cta{
    gap: 8px 14px !important;
  }
  .site-header .nav-links a,
  .site-header .csuk-nav-dropdown > a,
  .site-header .nav-phone,
  .site-header .nav-cta .btn{
    font-size: .82rem !important;
  }
  .site-header .nav-cta .btn{
    padding: .62rem .86rem !important;
  }
}

footer .footer-top{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: start !important;
  column-gap: clamp(22px, 3vw, 52px) !important;
  row-gap: 24px !important;
}
footer .footer-top > .footer-brand,
footer .footer-top > .footer-col{
  grid-row: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
}
/* Footer order: Brand | Company | Services | Contact */
footer .footer-top > :nth-child(1){ grid-column: 1 !important; order: 1 !important; }
footer .footer-top > :nth-child(2){ grid-column: 3 !important; order: 3 !important; }
footer .footer-top > :nth-child(3){ grid-column: 2 !important; order: 2 !important; }
footer .footer-top > :nth-child(4){ grid-column: 4 !important; order: 4 !important; }
footer .footer-brand p{
  max-width: 100% !important;
}
footer .footer-brand .nav-logo--image .nav-custom-logo{
  width: clamp(190px, 14vw, 255px) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}
footer .footer-col h4{
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
footer .footer-col ul{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
}
footer .footer-contact-item{
  align-items: flex-start !important;
  gap: 10px !important;
}
footer .footer-contact-item a,
footer .footer-contact-item span,
footer .footer-col ul a{
  overflow-wrap: anywhere !important;
}
@media (max-width: 900px){
  footer .footer-top{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  footer .footer-top > .footer-brand,
  footer .footer-top > .footer-col{
    grid-row: auto !important;
    grid-column: auto !important;
  }
}
@media (max-width: 560px){
  footer .footer-top{
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════
   CSUK v4.3 HEADER + LOCATION CARD REPAIR
   Keeps the latest baseline, but fixes the oversized stacked header and makes
   location cards behave as direct links.
═══════════════════════════════════════ */
.site-header .container{
  max-width: min(1480px, 100%) !important;
  padding-left: clamp(18px, 2.4vw, 40px) !important;
  padding-right: clamp(18px, 2.4vw, 40px) !important;
}
.site-header .nav-inner{
  display: grid !important;
  grid-template-columns: minmax(190px, 250px) minmax(300px, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(16px, 2vw, 30px) !important;
  min-height: 76px !important;
  padding: 8px 0 !important;
  height: auto !important;
}
.site-header .nav-logo{
  justify-content: flex-start !important;
  width: auto !important;
}
.site-header .nav-custom-logo,
.site-header .nav-logo--image .nav-custom-logo{
  width: clamp(190px, 16vw, 245px) !important;
  min-width: 0 !important;
  max-width: 245px !important;
  max-height: 76px !important;
  height: auto !important;
  object-fit: contain !important;
}
.site-header .nav-links{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(18px, 2.2vw, 36px) !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
  width: 100% !important;
}
.site-header .nav-links a,
.site-header .csuk-nav-dropdown > a{
  white-space: nowrap !important;
  font-size: clamp(.9rem, .86vw, .98rem) !important;
  line-height: 1.2 !important;
}
.site-header .nav-cta{
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: max-content !important;
  white-space: nowrap !important;
}
.site-header .nav-phone{
  font-size: clamp(.88rem, .9vw, 1rem) !important;
}
.site-header .nav-cta .btn{
  padding: .7rem 1rem !important;
}
.site-header .nav-toggle,
.site-header button.nav-toggle,
.nav-toggle,
.mobile-nav{
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.coverage-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
a.coverage-item{
  text-decoration: none !important;
  color: var(--text) !important;
  min-height: 72px !important;
}
a.coverage-item:hover,
a.coverage-item:focus-visible{
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  outline: none !important;
}
a.coverage-item:focus-visible{
  box-shadow: 0 0 0 3px rgba(201,168,76,.22) !important;
}
@media (max-width: 1120px){
  .site-header .nav-inner{
    grid-template-columns: minmax(170px, 220px) minmax(250px, 1fr) auto !important;
    gap: 14px !important;
  }
  .site-header .nav-custom-logo,
  .site-header .nav-logo--image .nav-custom-logo{
    width: clamp(175px, 18vw, 220px) !important;
    max-width: 220px !important;
    max-height: 70px !important;
  }
  .site-header .nav-links{
    gap: 18px !important;
  }
  .site-header .nav-cta{
    gap: 8px !important;
  }
  .site-header .nav-cta .btn{
    padding: .64rem .86rem !important;
  }
}
@media (max-width: 900px){
  .site-header .nav-inner{
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 10px 0 !important;
  }
  .site-header .nav-logo{
    justify-content: center !important;
  }
  .site-header .nav-custom-logo,
  .site-header .nav-logo--image .nav-custom-logo{
    width: clamp(190px, 44vw, 250px) !important;
    max-width: 78vw !important;
  }
  .site-header .nav-links,
  .site-header .nav-cta{
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .coverage-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px){
  .coverage-grid{
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 420px){
  .coverage-grid{
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════
   CSUK v4.3.1 DROPDOWN + SILO LINK FIX
   Keeps the latest visual baseline, repairs menu hover timing and strengthens
   internal linking blocks for the location silo.
═══════════════════════════════════════ */
.site-header,
.site-header .container,
.site-header .nav-inner,
.site-header .nav-links,
.site-header .csuk-nav-dropdown{
  overflow: visible !important;
}
.site-header{
  z-index: 9999 !important;
}
.site-header .nav-links{
  position: relative !important;
}
.site-header .csuk-nav-dropdown{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}
.site-header .csuk-nav-dropdown::after,
.site-header .nav-links .menu-item-has-children::after{
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 18px;
  display: block;
}
.site-header .csuk-sub-menu,
.site-header .nav-links .sub-menu{
  display: block !important;
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(8px) !important;
  min-width: 290px !important;
  max-width: min(360px, 92vw) !important;
  max-height: min(70vh, 540px) !important;
  overflow-y: auto !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  background: rgba(13, 29, 47, .985) !important;
  border: 1px solid rgba(201,168,76,.35) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.52) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  z-index: 10050 !important;
}
.site-header .csuk-nav-dropdown:hover > .csuk-sub-menu,
.site-header .csuk-nav-dropdown:focus-within > .csuk-sub-menu,
.site-header .csuk-nav-dropdown.is-open > .csuk-sub-menu,
.site-header .nav-links .menu-item-has-children:hover > .sub-menu,
.site-header .nav-links .menu-item-has-children:focus-within > .sub-menu,
.site-header .nav-links .menu-item-has-children.is-open > .sub-menu{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
.site-header .csuk-nav-dropdown:hover > a span,
.site-header .csuk-nav-dropdown:focus-within > a span,
.site-header .csuk-nav-dropdown.is-open > a span{
  transform: rotate(180deg) !important;
}
.site-header .csuk-sub-menu a,
.site-header .nav-links .sub-menu a{
  display: block !important;
  width: 100% !important;
  padding: 11px 18px !important;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: .9rem !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  text-align: left !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.site-header .csuk-sub-menu a::after,
.site-header .nav-links .sub-menu a::after{
  display: none !important;
}
.site-header .csuk-sub-menu a:hover,
.site-header .csuk-sub-menu a:focus-visible,
.site-header .nav-links .sub-menu a:hover,
.site-header .nav-links .sub-menu a:focus-visible{
  color: var(--gold) !important;
  background: rgba(201,168,76,.10) !important;
  outline: none !important;
}
.site-header .csuk-sub-menu a:first-child,
.site-header .nav-links .sub-menu li:first-child > a{
  color: var(--gold-light) !important;
  font-weight: 800 !important;
  border-bottom: 1px solid rgba(201,168,76,.24) !important;
  margin-bottom: 5px !important;
}
@media (max-width: 900px){
  .site-header .csuk-sub-menu,
  .site-header .nav-links .sub-menu{
    left: 50% !important;
    min-width: min(320px, 92vw) !important;
  }
}
.csuk-silo-note{
  margin-top: 1rem !important;
  padding: 1rem 1.15rem !important;
  background: rgba(201,168,76,.08) !important;
  border: 1px solid rgba(201,168,76,.22) !important;
  border-radius: 14px !important;
}
.csuk-silo-links{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 1rem 0 1.8rem !important;
  padding: 0 !important;
  list-style: none !important;
}
.csuk-silo-links li{
  margin: 0 !important;
}
.csuk-silo-links a{
  display: block !important;
  padding: 13px 15px !important;
  border: 1px solid rgba(201,168,76,.25) !important;
  border-radius: 12px !important;
  background: rgba(13,29,47,.72) !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}
.csuk-silo-links a:hover,
.csuk-silo-links a:focus-visible{
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  outline: none !important;
}
@media (max-width: 900px){
  .csuk-silo-links{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px){
  .csuk-silo-links{ grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   CSUK v4.4 MOBILE, PAGE SKIN AND CONTACT FIX
   Keeps v4.3 as baseline while fixing phone overflow, form stacking and missing page styling.
═══════════════════════════════════════ */
html,
body{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}
body.csuk-nav-open{overflow:hidden !important;}
.site-header,
.csuk-main,
.hero,
.section,
footer{
  max-width:100vw !important;
  overflow-x:clip !important;
}
.container,
.site-header .container,
.hero-inner,
.hero-inner > *,
.quote-inner,
.quote-inner > *,
.csuk-page-content,
.csuk-prose,
.csuk-form-page-shell,
.csuk-form-page-shell > *,
.quote-form,
.hero-mini-form,
.wp-block-group,
.wp-block-columns,
.wp-block-buttons,
.wp-block-button,
.wp-block-button__link,
.csuk-location-grid,
.services-grid,
.coverage-grid{
  min-width:0 !important;
  max-width:100% !important;
}
img,
svg,
iframe,
video,
table,
input,
select,
textarea,
button{
  max-width:100% !important;
}
.wp-block-button__link,
.btn{
  white-space:normal !important;
  text-align:center !important;
}
.csuk-page-content,
.csuk-prose{
  background:linear-gradient(180deg, rgba(17,31,48,.72), rgba(7,17,30,.58)) !important;
  border:1px solid rgba(201,168,76,.18) !important;
  border-radius:24px !important;
  padding:clamp(24px,4vw,52px) !important;
  box-shadow:0 22px 70px rgba(0,0,0,.22) !important;
}
.csuk-prose > *:first-child{margin-top:0 !important;}
.csuk-prose > *:last-child{margin-bottom:0 !important;}
.csuk-prose h2,
.csuk-prose h3,
.csuk-prose h4{
  margin-top:1.65em !important;
  margin-bottom:.65em !important;
}
.csuk-prose p{
  margin-bottom:1rem !important;
  overflow-wrap:break-word !important;
}
.csuk-prose ul{
  margin:1rem 0 1.25rem !important;
  padding:0 !important;
}
.csuk-check-list,
.csuk-area-list{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:12px !important;
  list-style:none !important;
}
.csuk-check-list li,
.csuk-area-list li{
  position:relative !important;
  margin:0 !important;
  padding:14px 16px 14px 42px !important;
  background:rgba(13,29,47,.72) !important;
  border:1px solid rgba(201,168,76,.20) !important;
  border-radius:14px !important;
  color:var(--text) !important;
  line-height:1.45 !important;
}
.csuk-check-list li::before,
.csuk-area-list li::before{
  content:'✓' !important;
  position:absolute !important;
  left:16px !important;
  top:14px !important;
  color:var(--gold) !important;
  font-weight:900 !important;
}
.csuk-location-intro{
  font-size:clamp(1.02rem,1.45vw,1.18rem) !important;
  color:var(--text) !important;
  padding:18px 20px !important;
  border-left:4px solid var(--gold) !important;
  background:rgba(201,168,76,.07) !important;
  border-radius:14px !important;
}
.csuk-location-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
  margin:1.2rem 0 1.8rem !important;
}
.csuk-location-card{
  background:rgba(13,29,47,.82) !important;
  border:1px solid rgba(201,168,76,.22) !important;
  border-radius:18px !important;
  padding:22px !important;
  min-width:0 !important;
  overflow:hidden !important;
}
.csuk-location-card h3{margin-top:0 !important;}
.csuk-location-card a{overflow-wrap:anywhere !important;}
.csuk-form-page-shell{
  display:grid !important;
  grid-template-columns:minmax(0,.86fr) minmax(320px,1.14fr) !important;
  gap:clamp(24px,4vw,52px) !important;
  align-items:start !important;
  margin-top:2rem !important;
}
.csuk-form-page-info{
  padding:clamp(22px,3vw,34px) !important;
  border:1px solid rgba(201,168,76,.18) !important;
  border-radius:22px !important;
  background:rgba(7,17,30,.48) !important;
}
.csuk-form-page-info h3{
  font-size:clamp(1.55rem,2.5vw,2.15rem) !important;
  margin-bottom:.75rem !important;
}
.csuk-form-card{
  border-radius:22px !important;
  width:100% !important;
}
.csuk-form-email-link{
  display:inline-block !important;
  margin-top:8px !important;
  color:var(--gold-light) !important;
  overflow-wrap:anywhere !important;
}
.quote-call-box{
  margin-top:24px !important;
  padding:20px !important;
  background:rgba(201,168,76,.08) !important;
  border:1px solid rgba(201,168,76,.22) !important;
  border-radius:18px !important;
}
.quote-phone-link{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  font-size:clamp(1.05rem,1.6vw,1.25rem) !important;
  font-weight:800 !important;
  color:var(--gold-light) !important;
  overflow-wrap:anywhere !important;
}

/* Header dropdowns stay usable on touch screens without causing sideways scroll. */
.site-header .csuk-sub-menu,
.site-header .nav-links .sub-menu{
  overscroll-behavior:contain !important;
}
.site-header .csuk-sub-menu a,
.site-header .nav-links .sub-menu a{
  white-space:normal !important;
}

@media (max-width:1180px){
  .csuk-location-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media (max-width:900px){
  .hero-inner,
  .quote-inner,
  .csuk-form-page-shell{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:28px !important;
  }
  .hero-inner > div:first-child,
  .hero-visual,
  .hero-mini-form,
  .quote-form-wrap,
  .quote-form,
  .csuk-form-card{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }
  .hero-visual{display:block !important;}
  .hero-mini-form{padding:28px !important;}
  .csuk-check-list,
  .csuk-area-list{grid-template-columns:1fr !important;}
  .site-header .csuk-sub-menu,
  .site-header .nav-links .sub-menu{
    left:50% !important;
    min-width:min(340px,calc(100vw - 32px)) !important;
    max-width:calc(100vw - 32px) !important;
  }
}
@media (max-width:640px){
  .container,
  .site-header .container{
    padding-left:16px !important;
    padding-right:16px !important;
  }
  .site-header .nav-inner{
    grid-template-columns:1fr !important;
    justify-items:center !important;
    gap:8px !important;
    padding:12px 0 !important;
  }
  .site-header .nav-custom-logo,
  .site-header .nav-logo--image .nav-custom-logo{
    width:min(250px,72vw) !important;
    max-width:72vw !important;
    max-height:76px !important;
  }
  .site-header .nav-links{
    width:100% !important;
    justify-content:center !important;
    gap:8px 18px !important;
  }
  .site-header .nav-cta{
    width:100% !important;
    justify-content:center !important;
    gap:10px !important;
  }
  .site-header .nav-phone{
    flex:0 1 auto !important;
  }
  .site-header .nav-cta .btn{
    flex:0 1 auto !important;
  }
  .hero{
    padding-top:48px !important;
    padding-bottom:56px !important;
  }
  .hero-title,
  h1{
    font-size:clamp(2rem,10vw,2.65rem) !important;
    overflow-wrap:break-word !important;
  }
  .hero-lead{font-size:1rem !important;}
  .hero-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
  }
  .hero-actions .btn,
  .wp-block-buttons .wp-block-button,
  .wp-block-buttons .wp-block-button__link{
    width:100% !important;
    justify-content:center !important;
  }
  .hero-mini-form,
  .quote-form,
  .csuk-form-page-info,
  .csuk-page-content,
  .csuk-prose{
    padding:22px !important;
    border-radius:18px !important;
  }
  .form-row{grid-template-columns:1fr !important;gap:0 !important;}
  .form-group input,
  .form-group select,
  .form-group textarea,
  .hero-mini-form input,
  .hero-mini-form select,
  .hero-mini-form textarea{
    font-size:16px !important;
    min-height:48px !important;
  }
  .csuk-location-grid,
  .services-grid,
  .coverage-grid,
  .footer-top,
  footer .footer-top{
    grid-template-columns:1fr !important;
  }
  .csuk-page-hero{
    padding:56px 0 42px !important;
  }
}
@media (max-width:420px){
  .site-header .nav-links a,
  .site-header .csuk-nav-dropdown > a,
  .site-header .nav-phone,
  .site-header .nav-cta .btn{
    font-size:.8rem !important;
  }
  .site-header .nav-cta .btn{
    padding:.58rem .8rem !important;
  }
  .site-header .nav-links{gap:8px 14px !important;}
  .site-header .nav-cta{gap:8px !important;}
}


/* ── Blog silo and article CTA refinements ───────── */
.csuk-blog-posts-list{margin-top:30px;}
.csuk-single-post{max-width:920px;margin:0 auto;}
.csuk-post-header{margin-bottom:34px;}
.csuk-post-header h1{max-width:940px;}
.csuk-prose{max-width:860px;}
.csuk-prose .csuk-post-cta{
  margin:48px 0 0;
  padding:34px;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(201,168,76,.12),rgba(17,31,48,.96));
  box-shadow:var(--shadow);
}
.csuk-prose .csuk-post-cta h2{margin-top:0;}
.csuk-prose .csuk-post-cta .btn,.csuk-prose .csuk-post-cta p:last-child{margin-bottom:0;}
.csuk-prose .csuk-post-cta p:last-child{display:flex;gap:14px;flex-wrap:wrap;}
.csuk-source-note{font-size:.95rem;color:var(--muted);}
@media (max-width:700px){
  .csuk-prose .csuk-post-cta{padding:24px;}
  .csuk-prose .csuk-post-cta p:last-child{display:grid;grid-template-columns:1fr;}
  .csuk-prose .csuk-post-cta .btn{justify-content:center;}
}


/* ═══════════════════════════════════════
   Godmode Polish v1.1.5 - usability, blog images and footer cleanup
═══════════════════════════════════════ */
/* Keep the homepage callback form in the hero. These rules only fix overflow and visibility. */
.why-us,
.why-grid,
.why-content,
.why-visual,
.section,
.csuk-page-content,
.csuk-prose{
  overflow:visible !important;
  height:auto !important;
  max-height:none !important;
}
.why-us{padding-block:clamp(58px,7vw,96px) !important;}
.why-grid{align-items:start !important;}
.why-point p,
.why-content p{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  max-height:none !important;
}
/* The blog link belongs in the footer, not in the main navigation. */
.site-header .nav-links a[href$="/blog/"],
.site-header .nav-links a[href*="/blog/"]{
  display:none !important;
}
.footer-widgets,
.widget_archive,
.widget_categories,
.wp-block-archives,
.wp-block-categories{
  display:none !important;
}
.footer-col a[href$="/blog/"],
.footer-col a[href*="/blog/"]{
  color:var(--gold-light) !important;
  font-weight:700 !important;
}
/* Blog / Security Insights cards should always show a clean image area. */
.csuk-post-card-image,
.csuk-post-card > a:first-child{
  display:block !important;
  width:100% !important;
  aspect-ratio:12/5 !important;
  min-height:150px !important;
  overflow:hidden !important;
  border-radius:18px 18px 0 0 !important;
  background:linear-gradient(135deg, rgba(201,168,76,.16), rgba(13,29,47,.94)) !important;
  border-bottom:1px solid rgba(201,168,76,.18) !important;
}
.csuk-post-card-image img,
.csuk-post-card > a:first-child img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
}
.csuk-post-card{
  overflow:hidden !important;
}
/* Single article feature image: 1200 x 500 editorial banner ratio. */
.csuk-single-post .csuk-post-featured-image{
  width:min(100%,1200px) !important;
  aspect-ratio:12/5 !important;
  max-height:500px !important;
  margin:0 auto clamp(28px,4vw,48px) !important;
  border-radius:22px !important;
  overflow:hidden !important;
  border:1px solid rgba(201,168,76,.18) !important;
  background:rgba(13,29,47,.9) !important;
}
.csuk-single-post .csuk-post-featured-image img{
  width:100% !important;
  height:100% !important;
  max-height:500px !important;
  object-fit:cover !important;
  display:block !important;
}
/* CTA button readability, including inside long London pages and post endings. */
.btn.btn-gold,
.csuk-content-cta .btn.btn-gold,
.csuk-prose a.btn.btn-gold,
.hero-mini-form .btn.btn-gold,
.quote-form .btn.btn-gold{
  color:#07111e !important;
  background:var(--gold) !important;
  border-color:var(--gold) !important;
  text-shadow:none !important;
  opacity:1 !important;
  visibility:visible !important;
}
.btn.btn-gold *,
.csuk-content-cta .btn.btn-gold *{
  color:#07111e !important;
}
.btn.btn-outline,
.csuk-content-cta .btn.btn-outline,
.csuk-prose a.btn.btn-outline{
  color:var(--gold-light) !important;
  border-color:var(--gold) !important;
  opacity:1 !important;
  visibility:visible !important;
}
.csuk-content-cta__actions,
.csuk-cta-buttons{
  gap:18px !important;
}
@media (max-width: 720px){
  .csuk-post-card-image,
  .csuk-post-card > a:first-child,
  .csuk-single-post .csuk-post-featured-image{aspect-ratio:16/9 !important;}
}


/* Footer editable menu polish v1.1.6 */
.footer-menu,
.footer-bottom-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu li {
	margin: 0 0 1rem;
}
.footer-bottom-menu {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.footer-bottom-menu li {
	margin: 0;
}
.footer-bottom-menu a,
.footer-menu a {
	text-decoration: none;
}

/* Footer spacing refinement v1.1.7, tighter and more professional */
footer .footer-top{
  padding-top: clamp(38px, 4vw, 52px) !important;
  padding-bottom: clamp(34px, 3.5vw, 44px) !important;
  row-gap: 20px !important;
}
footer .footer-col h4{
  margin-bottom: 14px !important;
}
footer .footer-menu,
footer .footer-col ul{
  gap: 0 !important;
}
footer .footer-menu li,
footer .footer-col li{
  margin: 0 0 8px !important;
  padding: 0 !important;
  line-height: 1.35 !important;
}
footer .footer-menu a,
footer .footer-col ul a{
  display: inline-block !important;
  line-height: 1.35 !important;
  padding: 2px 0 !important;
}
footer .footer-brand p{
  line-height: 1.55 !important;
  margin: 14px 0 16px !important;
}
footer .footer-contact-item{
  margin-bottom: 9px !important;
  line-height: 1.45 !important;
}
footer .footer-contact-item a,
footer .footer-contact-item span{
  line-height: 1.45 !important;
}


/* ═══════════════════════════════════════
   Why Citywide visibility fix v1.1.9
═══════════════════════════════════════ */
.why-us .why-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr) !important;
  gap:clamp(34px,5vw,64px) !important;
  align-items:start !important;
}
.why-us .why-points{
  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;
  margin:28px 0 34px !important;
}
.why-us .why-point{
  display:flex !important;
  min-height:auto !important;
}
.why-us .why-visual{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
  visibility:visible !important;
  opacity:1 !important;
}
.why-us .metric-card{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}
.why-us .metric-card:first-child{grid-column:1 / -1 !important;}
@media (max-width:900px){
  .why-us .why-grid{grid-template-columns:1fr !important;}
}
@media (max-width:560px){
  .why-us .why-visual{grid-template-columns:1fr !important;}
  .why-us .metric-card:first-child{grid-column:auto !important;}
}

/* ═══════════════════════════════════════
   CSUK v1.2.3 Location Hub, London Grid and CTA Fix
   Complete theme-level implementation, not plugin overlay
═══════════════════════════════════════ */
.csuk-content-cta,
.csuk-prose .csuk-content-cta{
  margin:clamp(26px,4vw,46px) 0 !important;
  padding:clamp(22px,3.2vw,34px) !important;
  display:grid !important;
  grid-template-columns:minmax(0,1.25fr) auto !important;
  gap:clamp(18px,3vw,30px) !important;
  align-items:center !important;
  border:1px solid rgba(201,168,76,.32) !important;
  border-left:5px solid var(--gold) !important;
  border-radius:22px !important;
  background:
    radial-gradient(circle at 92% 22%, rgba(201,168,76,.16), transparent 30%),
    linear-gradient(135deg, rgba(201,168,76,.14), rgba(13,29,47,.95) 42%, rgba(7,17,30,.98)) !important;
  box-shadow:0 18px 52px rgba(0,0,0,.28) !important;
  overflow:hidden !important;
}
.csuk-content-cta__copy h3,
.csuk-prose .csuk-content-cta__copy h3{
  margin:0 0 8px !important;
  color:#fff !important;
  font-size:clamp(1.18rem,2.1vw,1.65rem) !important;
  line-height:1.2 !important;
}
.csuk-content-cta__copy p,
.csuk-prose .csuk-content-cta__copy p{
  margin:0 !important;
  color:#dbe5f1 !important;
  line-height:1.65 !important;
  max-width:720px !important;
}
.csuk-content-cta__actions,
.csuk-cta-buttons{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:flex-end !important;
  align-items:center !important;
  gap:12px !important;
}
.csuk-content-cta .btn,
.csuk-prose .csuk-content-cta .btn{
  min-height:46px !important;
  border-radius:12px !important;
  padding:.82rem 1.18rem !important;
  font-weight:800 !important;
  text-decoration:none !important;
  line-height:1.15 !important;
}
.csuk-content-cta .btn-gold,
.csuk-prose .csuk-content-cta .btn-gold{
  color:#07111e !important;
  background:var(--gold) !important;
  border:2px solid var(--gold) !important;
}
.csuk-content-cta .btn-gold:hover,
.csuk-prose .csuk-content-cta .btn-gold:hover{
  background:var(--gold-light) !important;
  border-color:var(--gold-light) !important;
  color:#07111e !important;
}
.csuk-content-cta .btn-outline,
.csuk-prose .csuk-content-cta .btn-outline{
  color:var(--gold-light) !important;
  border:2px solid rgba(201,168,76,.88) !important;
  background:rgba(7,17,30,.38) !important;
}
.csuk-london-area-balanced-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:12px !important;
  margin:22px 0 34px !important;
}
.csuk-london-area-chip{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  min-height:76px !important;
  padding:14px 15px !important;
  border:1px solid rgba(201,168,76,.22) !important;
  border-radius:16px !important;
  background:rgba(13,29,47,.78) !important;
  color:#fff !important;
  text-decoration:none !important;
  box-shadow:0 8px 26px rgba(0,0,0,.16) !important;
}
.csuk-london-area-chip span{
  color:#fff !important;
  font-weight:800 !important;
  line-height:1.22 !important;
}
.csuk-london-area-chip small{
  color:var(--gold-light) !important;
  margin-top:5px !important;
  font-size:.76rem !important;
  line-height:1.25 !important;
}
.csuk-london-area-chip:hover{
  transform:translateY(-2px) !important;
  border-color:rgba(201,168,76,.55) !important;
  background:rgba(22,37,57,.94) !important;
}
.csuk-london-region-grid .csuk-location-card{
  min-height:100% !important;
}
.csuk-london-region-grid .csuk-location-card ul{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:8px 14px !important;
}
.csuk-london-area-list{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px !important;
  margin:22px 0 34px !important;
}
.csuk-london-area-section{
  scroll-margin-top:110px !important;
  padding:22px !important;
  border:1px solid rgba(201,168,76,.22) !important;
  border-radius:18px !important;
  background:rgba(13,29,47,.72) !important;
  min-height:100% !important;
}
.csuk-london-area-section h4{
  margin:0 0 10px !important;
  color:var(--gold-light) !important;
  font-size:1.08rem !important;
}
.csuk-london-area-section p{
  margin:0 0 14px !important;
  color:#d4dde8 !important;
}
.csuk-london-area-section .csuk-area-list{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  margin:0 !important;
}
.csuk-silo-links{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px 18px !important;
  list-style:none !important;
  padding-left:0 !important;
}
.csuk-silo-links li{
  padding:12px 14px !important;
  border:1px solid rgba(201,168,76,.18) !important;
  border-radius:14px !important;
  background:rgba(13,29,47,.66) !important;
}
@media (max-width:1100px){
  .csuk-content-cta,
  .csuk-prose .csuk-content-cta{
    grid-template-columns:1fr !important;
  }
  .csuk-content-cta__actions,
  .csuk-cta-buttons{
    justify-content:flex-start !important;
  }
  .csuk-london-area-balanced-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
  .csuk-london-area-list{
    grid-template-columns:1fr !important;
  }
}
@media (max-width:760px){
  .csuk-london-area-balanced-grid,
  .csuk-london-region-grid .csuk-location-card ul,
  .csuk-london-area-section .csuk-area-list,
  .csuk-silo-links{
    grid-template-columns:1fr !important;
  }
  .csuk-content-cta__actions,
  .csuk-cta-buttons{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
  }
  .csuk-content-cta .btn,
  .csuk-prose .csuk-content-cta .btn{
    width:100% !important;
    justify-content:center !important;
  }
}


/* ═══════════════════════════════════════
   TASK 1: Security Company London hero refinement
═══════════════════════════════════════ */
.csuk-page-hero--london-main{
  min-height:0 !important;
  padding:clamp(54px,5.4vw,76px) 0 clamp(46px,5vw,64px) !important;
  align-items:center !important;
}
.csuk-page-hero--london-main h1{
  max-width:820px !important;
  margin-top:.45rem !important;
  margin-bottom:.85rem !important;
}
.csuk-page-hero-excerpt{
  max-width:780px;
  margin:0 0 1.25rem 0;
  font-size:clamp(1rem,1.2vw,1.18rem);
  line-height:1.68;
  color:rgba(255,255,255,.88);
  text-shadow:0 1px 10px rgba(0,0,0,.22);
}
.csuk-page-hero--london-main .csuk-page-hero-actions{
  margin-top:clamp(18px,2.2vw,26px) !important;
}
.csuk-page-hero--london-main .eyebrow{
  margin-bottom:.65rem !important;
}
@media (max-width:640px){
  .csuk-page-hero--london-main{padding:48px 0 44px !important;}
  .csuk-page-hero-excerpt{font-size:.98rem;line-height:1.62;}
}

/* v1.2.6 Premium Services Hub */
.csuk-service-hub-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin:26px 0 34px;
}
.csuk-service-hub-card{
  background:rgba(8,17,34,.92);
  border:1px solid rgba(212,175,55,.22);
  border-radius:20px;
  padding:24px;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
  min-height:100%;
}
.csuk-service-hub-card h3{margin-top:0;margin-bottom:10px;font-size:1.18rem;line-height:1.25;}
.csuk-service-hub-card h3 a{color:#fff;text-decoration:none;}
.csuk-service-hub-card h3 a:hover{color:var(--gold-light);}
.csuk-service-hub-card p{color:rgba(255,255,255,.82);margin-bottom:14px;}
.csuk-mini-list{margin:0 0 18px 0!important;padding:0!important;list-style:none!important;display:grid;gap:7px;}
.csuk-mini-list li{position:relative;padding-left:22px;color:rgba(255,255,255,.82);font-size:.95rem;line-height:1.45;}
.csuk-mini-list li:before{content:'✓';position:absolute;left:0;top:0;color:var(--gold);font-weight:800;}
.csuk-card-link{display:inline-flex;align-items:center;gap:8px;color:var(--gold-light);font-weight:800;text-decoration:none;}
.csuk-card-link:hover{text-decoration:underline;}
.csuk-service-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin:24px 0 34px;}
.csuk-service-info-grid section{background:#fff;border:1px solid rgba(15,31,58,.12);border-radius:18px;padding:24px;box-shadow:0 14px 34px rgba(15,31,58,.08);}
.csuk-service-info-grid h4{margin-top:0;margin-bottom:8px;color:var(--navy);}
.csuk-service-process{counter-reset:service-step;display:grid;gap:12px;margin:22px 0 32px!important;padding:0!important;list-style:none!important;}
.csuk-service-process li{background:#fff;border-left:5px solid var(--gold);border-radius:14px;padding:16px 18px;box-shadow:0 12px 28px rgba(15,31,58,.08);}
.csuk-inline-links{font-weight:800;margin:20px 0 28px;}
.csuk-inline-links a{color:var(--navy);text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:4px;}
.csuk-inline-links span{color:rgba(15,31,58,.35);margin:0 8px;}
@media(max-width:1024px){.csuk-service-hub-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:720px){.csuk-service-hub-grid,.csuk-service-info-grid{grid-template-columns:1fr;}.csuk-service-hub-card{padding:20px;}}


/* v1.2.7: services hub correction and inner hero excerpt width guard */
.csuk-page-hero .csuk-page-hero-excerpt{
  max-width:880px !important;
  width:min(880px, 100%) !important;
  line-height:1.62 !important;
  margin-top:0 !important;
  margin-bottom:1.35rem !important;
}
.csuk-services-hub .csuk-page-hero-excerpt,
body.page-slug-services .csuk-page-hero-excerpt{
  max-width:860px !important;
}
.csuk-service-hub-card,
.csuk-service-info-grid section,
.csuk-service-process li{
  overflow:visible;
}


/* v1.2.8 Services hub hard override and global readable text width standardisation */
:root{--csuk-readable-width:860px;}
.csuk-page-hero .container > .eyebrow,
.csuk-page-hero .container > h1,
.csuk-page-hero .container > .csuk-page-hero-excerpt,
.csuk-page-hero .container > .csuk-page-hero-actions{max-width:var(--csuk-readable-width) !important;}
.csuk-page-hero .csuk-page-hero-excerpt{width:min(var(--csuk-readable-width),100%) !important;}
.csuk-prose > p,
.csuk-prose > h2,
.csuk-prose > h3,
.csuk-prose > h4,
.csuk-prose > h5,
.csuk-prose > h6,
.csuk-prose > ul:not(.csuk-check-list):not(.csuk-area-list):not(.csuk-mini-list),
.csuk-prose > ol:not(.csuk-service-process),
.csuk-prose > .csuk-location-intro,
.csuk-prose .csuk-inline-links{max-width:var(--csuk-readable-width) !important;}
.csuk-content-cta__copy,
.csuk-content-cta__copy p{max-width:780px !important;}
.csuk-services-page-main .csuk-page-content,
.csuk-services-page-main .csuk-prose{max-width:100% !important;width:100% !important;}
.csuk-services-hub > .csuk-location-intro,
.csuk-services-hub > p,
.csuk-services-hub > h2,
.csuk-services-hub > h3,
.csuk-services-hub > h4{max-width:var(--csuk-readable-width) !important;}
.csuk-services-hub .csuk-service-hub-grid,
.csuk-services-hub .csuk-service-info-grid,
.csuk-services-hub .csuk-service-process{max-width:1160px !important;}
.csuk-services-hub .csuk-service-info-grid section,
.csuk-services-hub .csuk-service-process li{background:rgba(8,17,34,.92) !important;border:1px solid rgba(212,175,55,.22) !important;color:rgba(255,255,255,.86) !important;}
.csuk-services-hub .csuk-service-info-grid h4{color:#fff !important;}
.csuk-services-hub .csuk-service-info-grid p,
.csuk-services-hub .csuk-service-process li{color:rgba(255,255,255,.84) !important;}
.csuk-services-hub .csuk-inline-links a{color:var(--gold-light) !important;}
@media(max-width:720px){:root{--csuk-readable-width:100%;}.csuk-page-hero .container > .csuk-page-hero-actions{max-width:100% !important;}}

/* ═══════════════════════════════════════
   v1.2.9 Global readable text measure
   Keeps layout/cards full width, but prevents long copy/excerpts from running too wide.
═══════════════════════════════════════ */
:root{
  --csuk-readable-width:820px;
  --csuk-heading-width:900px;
}
.csuk-page-hero .container > h1,
.csuk-service-hero h1,
.csuk-post-header h1{
  max-width:min(var(--csuk-heading-width),100%) !important;
}
.csuk-page-hero .container > .csuk-page-hero-excerpt,
.csuk-page-hero .container > p:not(.eyebrow),
.csuk-service-hero .hero-lead,
.hero .hero-lead,
.csuk-location-intro,
.csuk-form-page-info > p,
.csuk-post-header > p,
.csuk-prose > p,
.csuk-prose > ul:not(.csuk-check-list):not(.csuk-area-list):not(.csuk-mini-list):not(.csuk-service-process),
.csuk-prose > ol:not(.csuk-service-process),
.csuk-prose > h2,
.csuk-prose > h3,
.csuk-prose > h4,
.csuk-prose > h5,
.csuk-prose > h6,
.csuk-prose > .wp-block-paragraph,
.csuk-prose > .wp-block-heading,
.csuk-prose > .csuk-inline-links,
.csuk-services-hub > p,
.csuk-services-hub > h2,
.csuk-services-hub > h3,
.csuk-services-hub > h4,
.csuk-services-hub > .csuk-location-intro,
.entry-content > p,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4{
  max-width:min(var(--csuk-readable-width),100%) !important;
  width:100% !important;
}
.csuk-page-hero .container > .csuk-page-hero-actions,
.csuk-content-cta__copy,
.csuk-content-cta__copy p{
  max-width:min(var(--csuk-readable-width),100%) !important;
}
.csuk-service-hub-grid,
.csuk-service-info-grid,
.csuk-service-process,
.csuk-location-grid,
.services-grid,
.coverage-grid,
.csuk-silo-links,
.csuk-posts-grid,
.csuk-content-cta,
.csuk-prose > .csuk-content-cta,
.csuk-prose > figure,
.csuk-prose > .wp-block-image,
.csuk-prose > .wp-block-gallery,
.csuk-prose > .wp-block-table{
  max-width:100% !important;
}
@media(max-width:720px){
  :root{--csuk-readable-width:100%;--csuk-heading-width:100%;}
}


/* v1.2.10 CTA panel correction
   Keeps all existing layouts, but fixes squeezed CTA copy and standardizes content CTA buttons to two. */
.csuk-content-cta,
.csuk-prose .csuk-content-cta,
.csuk-content-cta.csuk-content-cta--two-button,
.csuk-prose .csuk-content-cta.csuk-content-cta--two-button{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:clamp(18px,2.6vw,26px) !important;
  width:100% !important;
}
.csuk-content-cta__actions,
.csuk-content-cta--two-button .csuk-content-cta__actions,
.csuk-prose .csuk-content-cta__actions{
  order:1 !important;
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:flex-start !important;
  align-items:center !important;
  gap:16px !important;
  width:100% !important;
  max-width:100% !important;
}
.csuk-content-cta__copy,
.csuk-content-cta--two-button .csuk-content-cta__copy,
.csuk-prose .csuk-content-cta__copy{
  order:2 !important;
  width:100% !important;
  max-width:min(var(--csuk-readable-width,820px),100%) !important;
}
.csuk-content-cta__copy h3,
.csuk-content-cta--two-button .csuk-content-cta__copy h3,
.csuk-prose .csuk-content-cta__copy h3{
  max-width:min(var(--csuk-heading-width,900px),100%) !important;
}
.csuk-content-cta__copy p,
.csuk-content-cta--two-button .csuk-content-cta__copy p,
.csuk-prose .csuk-content-cta__copy p{
  max-width:min(var(--csuk-readable-width,820px),100%) !important;
}
.csuk-content-cta .btn,
.csuk-content-cta--two-button .btn,
.csuk-prose .csuk-content-cta .btn{
  min-width:min(280px,100%) !important;
  text-align:center !important;
}
@media(max-width:720px){
  .csuk-content-cta .btn,
  .csuk-content-cta--two-button .btn,
  .csuk-prose .csuk-content-cta .btn{
    width:100% !important;
    min-width:0 !important;
  }
}


/* v1.2.11 Services process checklist polish
   Narrow change only: tighter spacing and gold tick markers for the Services hub process list. */
.csuk-services-hub .csuk-service-process,
body.page-slug-services .csuk-service-process{
  gap:10px !important;
  margin:16px 0 24px !important;
  max-width:980px !important;
}
.csuk-services-hub .csuk-service-process li,
body.page-slug-services .csuk-service-process li{
  position:relative !important;
  padding:13px 18px 13px 54px !important;
  border-radius:14px !important;
  line-height:1.45 !important;
  min-height:0 !important;
}
.csuk-services-hub .csuk-service-process li::before,
body.page-slug-services .csuk-service-process li::before{
  content:'✓';
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.55);
  color:var(--gold-light);
  font-weight:900;
  font-size:14px;
  line-height:1;
}
.csuk-services-hub .csuk-service-process li strong,
body.page-slug-services .csuk-service-process li strong{
  color:#fff !important;
}
@media(max-width:720px){
  .csuk-services-hub .csuk-service-process li,
  body.page-slug-services .csuk-service-process li{
    padding:13px 14px 13px 48px !important;
  }
  .csuk-services-hub .csuk-service-process li::before,
  body.page-slug-services .csuk-service-process li::before{
    left:14px;
  }
}

/* v1.2.14 mobile navigation hardening: expandable Location and Services sections */
.mobile-nav .csuk-mobile-menu-list{gap:10px;margin:0;padding:0;list-style:none;overflow:auto;max-height:calc(100vh - 230px);padding-right:4px}
.mobile-nav .csuk-mobile-nav-section{list-style:none}
.mobile-nav .csuk-mobile-nav-section details{border:1px solid var(--border);border-radius:var(--radius);background:rgba(255,255,255,.035);overflow:hidden}
.mobile-nav .csuk-mobile-nav-section summary{cursor:pointer;display:flex;align-items:center;justify-content:space-between;padding:14px 16px;font-size:1.125rem;font-weight:700;color:var(--text);list-style:none}
.mobile-nav .csuk-mobile-nav-section summary::-webkit-details-marker{display:none}
.mobile-nav .csuk-mobile-nav-section summary::after{content:'+';color:var(--gold);font-size:1.35rem;line-height:1}
.mobile-nav .csuk-mobile-nav-section details[open] summary::after{content:'−'}
.mobile-nav .csuk-mobile-sub-list{display:flex;flex-direction:column;gap:4px;margin:0;padding:0 10px 12px 10px;list-style:none;max-height:42vh;overflow:auto}
.mobile-nav .csuk-mobile-sub-list a{font-size:.98rem;padding:10px 12px;border-radius:10px;background:rgba(255,255,255,.025)}
.mobile-nav .csuk-mobile-sub-list a:hover{background:var(--navy-card);color:var(--gold)}


/* v1.2.15 city-page local context note */
.csuk-local-context-note{
  margin:18px 0 22px;
  padding:16px 18px;
  border-left:4px solid var(--gold);
  border-radius:14px;
  background:rgba(255,255,255,.045);
  color:var(--muted);
  line-height:1.65;
}
.csuk-local-context-note a{
  color:var(--gold-light);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}
.csuk-local-context-note a:hover{color:#fff}


/* v1.2.17 live output cleanup */
.csuk-rendered-approved-content .csuk-location-intro strong{display:block;line-height:1.55}
.csuk-rendered-approved-content .csuk-london-area-balanced-grid{margin-top:1.25rem;margin-bottom:1.25rem}

/* v1.2.19 London service-area formatting hardening */
.csuk-london-area-balanced-grid.csuk-london-area-chip-list,
ul.csuk-london-area-balanced-grid{
  list-style:none !important;
  padding-left:0 !important;
}
.csuk-london-area-balanced-grid.csuk-london-area-chip-list > li,
ul.csuk-london-area-balanced-grid > li{
  margin:0 !important;
  padding:0 !important;
  min-width:0 !important;
}
.csuk-london-area-balanced-grid.csuk-london-area-chip-list .csuk-london-area-chip,
ul.csuk-london-area-balanced-grid .csuk-london-area-chip{
  height:100% !important;
  width:100% !important;
}
@supports not (display:grid){
  .csuk-london-area-balanced-grid.csuk-london-area-chip-list,
  ul.csuk-london-area-balanced-grid{
    display:flex !important;
    flex-wrap:wrap !important;
  }
  .csuk-london-area-balanced-grid.csuk-london-area-chip-list > li,
  ul.csuk-london-area-balanced-grid > li{
    flex:1 1 220px !important;
  }
}


/* v1.2.21 mobile-only sticky Request a Quote banner */
.csuk-mobile-sticky-cta{
  display:none;
}
@media(max-width:782px){
  body:not(.wp-admin){
    padding-bottom:calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .csuk-mobile-sticky-cta{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9998;
    display:block;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background:rgba(7, 18, 35, .96);
    border-top:1px solid rgba(212,175,55,.42);
    box-shadow:0 -12px 30px rgba(0,0,0,.32);
    backdrop-filter:saturate(140%) blur(12px);
  }
  .csuk-mobile-sticky-cta__button{
    min-height:52px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:16px;
    font-weight:900;
    font-size:16px;
    line-height:1;
    text-decoration:none !important;
    letter-spacing:.01em;
    border:1px solid rgba(255,255,255,.28);
    box-shadow:0 8px 18px rgba(0,0,0,.22);
  }
  .csuk-mobile-sticky-cta__button--quote{
    background:var(--gold, #d4af37);
    color:#071223 !important;
  }
  .csuk-mobile-sticky-cta__button:focus-visible{
    outline:3px solid #fff;
    outline-offset:2px;
  }
  .csuk-mobile-sticky-cta__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    line-height:1;
  }
}
@media(min-width:783px), print{
  .csuk-mobile-sticky-cta{
    display:none !important;
  }
}
@media(max-width:360px){
  .csuk-mobile-sticky-cta{
    padding-left:10px;
    padding-right:10px;
  }
  .csuk-mobile-sticky-cta__button{
    font-size:15px;
    border-radius:14px;
  }
}


/* v1.2.22 London landing-page SEO copy polish and spacing refinement */
.csuk-page-hero--london-main + .container.section{
  padding-top:clamp(42px,5vw,64px) !important;
}
.csuk-london-hub .csuk-location-intro.csuk-london-primary-intro{
  font-size:clamp(1.04rem,1.45vw,1.2rem) !important;
  line-height:1.78 !important;
  margin-bottom:1.05rem !important;
}
.csuk-london-hub .csuk-london-service-intro{
  color:rgba(236,243,255,.9) !important;
  font-size:clamp(1rem,1.22vw,1.1rem) !important;
  line-height:1.76 !important;
  max-width:980px !important;
}
.csuk-london-hub h2:first-child{
  margin-top:0 !important;
  max-width:980px !important;
}
@media (max-width:640px){
  .csuk-page-hero--london-main + .container.section{
    padding-top:34px !important;
  }
  .csuk-london-hub .csuk-location-intro.csuk-london-primary-intro{
    padding:16px 17px !important;
  }
}


/* ═══════════════════════════════════════
   CSUK v1.2.27 Footer cleanup and Why Citywide layout optimisation
   Baseline: v1.2.26 Hero Excerpt Polish
═══════════════════════════════════════ */
.why-us.why-us--optimised .why-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1.04fr) minmax(320px,.96fr) !important;
  column-gap:clamp(42px,5vw,74px) !important;
  row-gap:clamp(26px,3.5vw,42px) !important;
  align-items:start !important;
}
.why-us.why-us--optimised .why-intro{
  grid-column:1 / -1 !important;
  max-width:1180px !important;
}
.why-us.why-us--optimised .why-intro h2{
  max-width:1120px !important;
  margin-bottom:clamp(18px,2vw,24px) !important;
}
.why-us.why-us--optimised .why-intro-copy{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:clamp(22px,3vw,42px) !important;
  max-width:1180px !important;
}
.why-us.why-us--optimised .why-intro-copy p{
  color:var(--muted) !important;
  font-size:clamp(.98rem,1.12vw,1.08rem) !important;
  line-height:1.78 !important;
  margin:0 !important;
}
.why-us.why-us--optimised .why-content{
  grid-column:1 !important;
  max-width:none !important;
}
.why-us.why-us--optimised .why-points{
  margin:0 0 30px !important;
  gap:16px !important;
}
.why-us.why-us--optimised .why-point{
  padding:18px 20px !important;
}
.why-us.why-us--optimised .why-point h4{
  margin-bottom:6px !important;
}
.why-us.why-us--optimised .why-point p{
  line-height:1.65 !important;
  margin:0 !important;
}
.why-us.why-us--optimised .why-visual{
  grid-column:2 !important;
  align-self:start !important;
  margin-top:0 !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
}
.why-us.why-us--optimised .metric-card{
  min-height:112px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}
.why-us.why-us--optimised .metric-card:first-child,
.why-us.why-us--optimised .metric-card--featured{
  grid-column:1 / -1 !important;
  min-height:126px !important;
}
footer .footer-bottom-links a[href*="wp-admin"],
footer .footer-bottom-links a[href*="wp-login.php"]{
  display:none !important;
}
@media (max-width:980px){
  .why-us.why-us--optimised .why-grid{
    grid-template-columns:1fr !important;
  }
  .why-us.why-us--optimised .why-content,
  .why-us.why-us--optimised .why-visual{
    grid-column:1 !important;
  }
}
@media (max-width:720px){
  .why-us.why-us--optimised .why-intro-copy{
    grid-template-columns:1fr !important;
  }
}
@media (max-width:560px){
  .why-us.why-us--optimised .why-visual{
    grid-template-columns:1fr !important;
  }
  .why-us.why-us--optimised .metric-card:first-child,
  .why-us.why-us--optimised .metric-card--featured{
    grid-column:auto !important;
  }
}


/* ═══════════════════════════════════════
   CSUK v1.2.28 Why Citywide assurance card equalisation
   Baseline: v1.2.27 Footer Intro & Why Layout Fix
═══════════════════════════════════════ */
.why-us.why-us--optimised .why-grid{
  row-gap:clamp(18px,2.4vw,30px) !important;
}
.why-us.why-us--optimised .why-visual{
  align-self:start !important;
  margin-top:-2px !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  grid-auto-rows:1fr !important;
  gap:16px !important;
}
.why-us.why-us--optimised .metric-card,
.why-us.why-us--optimised .metric-card:first-child,
.why-us.why-us--optimised .metric-card--featured{
  grid-column:auto !important;
  min-height:150px !important;
  height:100% !important;
  padding:24px 18px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}
.why-us.why-us--optimised .metric-card:first-child .metric-num,
.why-us.why-us--optimised .metric-card--featured .metric-num,
.why-us.why-us--optimised .metric-num{
  font-size:clamp(3.05rem,4vw,4.25rem) !important;
  line-height:.95 !important;
  margin-bottom:14px !important;
}
.why-us.why-us--optimised .metric-label{
  max-width:220px !important;
  margin:0 auto !important;
  line-height:1.35 !important;
}
@media (max-width:980px){
  .why-us.why-us--optimised .why-visual{
    margin-top:0 !important;
  }
}
@media (max-width:560px){
  .why-us.why-us--optimised .why-visual{
    grid-template-columns:1fr !important;
    grid-auto-rows:auto !important;
  }
  .why-us.why-us--optimised .metric-card,
  .why-us.why-us--optimised .metric-card:first-child,
  .why-us.why-us--optimised .metric-card--featured{
    min-height:132px !important;
  }
}


/* v1.2.30 Visual editor CTA button compatibility
   Allows generated CTA blocks to be edited as normal WordPress Button blocks while keeping the Citywide button styling. */
.csuk-content-cta .wp-block-button.btn,
.csuk-prose .csuk-content-cta .wp-block-button.btn{
  margin:0 !important;
}
.csuk-content-cta .wp-block-button.btn .wp-block-button__link,
.csuk-prose .csuk-content-cta .wp-block-button.btn .wp-block-button__link{
  min-height:46px !important;
  min-width:min(280px,100%) !important;
  border-radius:12px !important;
  padding:.82rem 1.18rem !important;
  font-weight:800 !important;
  text-decoration:none !important;
  line-height:1.15 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-shadow:none !important;
}
.csuk-content-cta .wp-block-button.btn-gold .wp-block-button__link,
.csuk-prose .csuk-content-cta .wp-block-button.btn-gold .wp-block-button__link{
  color:#07111e !important;
  background:var(--gold) !important;
  border:2px solid var(--gold) !important;
}
.csuk-content-cta .wp-block-button.btn-gold .wp-block-button__link:hover,
.csuk-prose .csuk-content-cta .wp-block-button.btn-gold .wp-block-button__link:hover{
  color:#07111e !important;
  background:var(--gold-light) !important;
  border-color:var(--gold-light) !important;
}
.csuk-content-cta .wp-block-button.btn-outline .wp-block-button__link,
.csuk-prose .csuk-content-cta .wp-block-button.btn-outline .wp-block-button__link{
  color:var(--gold-light) !important;
  border:2px solid rgba(201,168,76,.88) !important;
  background:rgba(7,17,30,.38) !important;
}
@media(max-width:720px){
  .csuk-content-cta .wp-block-button.btn,
  .csuk-content-cta .wp-block-button.btn .wp-block-button__link,
  .csuk-prose .csuk-content-cta .wp-block-button.btn,
  .csuk-prose .csuk-content-cta .wp-block-button.btn .wp-block-button__link{
    width:100% !important;
    min-width:0 !important;
  }
}

/* ═══════════════════════════════════════
   CSUK v1.2.32 CTA spacing and Why Citywide button placement
   Baseline: v1.2.31 Admin Menu Cleanup
   Narrow layout refinements only.
═══════════════════════════════════════ */
.csuk-content-cta__actions,
.csuk-content-cta--two-button .csuk-content-cta__actions,
.csuk-prose .csuk-content-cta__actions,
.csuk-cta-buttons,
.csuk-content-cta .wp-block-buttons,
.csuk-prose .csuk-content-cta .wp-block-buttons{
  column-gap:clamp(22px,2.8vw,34px) !important;
  row-gap:16px !important;
}
.csuk-content-cta .btn,
.csuk-content-cta--two-button .btn,
.csuk-prose .csuk-content-cta .btn,
.csuk-content-cta .wp-block-button.btn .wp-block-button__link,
.csuk-prose .csuk-content-cta .wp-block-button.btn .wp-block-button__link{
  min-width:min(310px,100%) !important;
}
.csuk-prose > .csuk-content-cta,
.csuk-prose > .wp-block-group.csuk-content-cta{
  margin-top:clamp(24px,3vw,38px) !important;
  margin-bottom:clamp(20px,2.4vw,32px) !important;
}
.csuk-prose > .csuk-content-cta + h2,
.csuk-prose > .csuk-content-cta + h3,
.csuk-prose > .csuk-content-cta + h4,
.csuk-prose > .wp-block-group.csuk-content-cta + h2,
.csuk-prose > .wp-block-group.csuk-content-cta + h3,
.csuk-prose > .wp-block-group.csuk-content-cta + h4,
.csuk-prose > .csuk-content-cta + .wp-block-heading,
.csuk-prose > .wp-block-group.csuk-content-cta + .wp-block-heading{
  margin-top:clamp(22px,2.8vw,38px) !important;
}
.csuk-page-content.csuk-prose > .csuk-content-cta:last-child,
.csuk-page-content.csuk-prose > .wp-block-group.csuk-content-cta:last-child{
  margin-bottom:0 !important;
}
.csuk-page-content.csuk-prose:has(> .csuk-content-cta:last-child),
.csuk-page-content.csuk-prose:has(> .wp-block-group.csuk-content-cta:last-child){
  padding-bottom:clamp(20px,3vw,34px) !important;
}
.why-us.why-us--optimised .why-content{
  align-self:start !important;
}
.why-us.why-us--optimised .why-points{
  margin-bottom:0 !important;
}
.why-us.why-us--optimised .why-visual{
  align-content:start !important;
}
.why-us.why-us--optimised .why-visual-cta{
  grid-column:1 / -1 !important;
  display:flex !important;
  justify-content:flex-start !important;
  align-items:center !important;
  margin-top:clamp(14px,2vw,24px) !important;
}
.why-us.why-us--optimised .why-visual-cta .btn{
  min-width:min(340px,100%) !important;
  justify-content:center !important;
}
@media(max-width:980px){
  .why-us.why-us--optimised .why-visual-cta{
    justify-content:flex-start !important;
  }
}
@media(max-width:720px){
  .csuk-content-cta__actions,
  .csuk-content-cta--two-button .csuk-content-cta__actions,
  .csuk-prose .csuk-content-cta__actions,
  .csuk-cta-buttons,
  .csuk-content-cta .wp-block-buttons,
  .csuk-prose .csuk-content-cta .wp-block-buttons{
    row-gap:14px !important;
  }
  .why-us.why-us--optimised .why-visual-cta .btn{
    width:100% !important;
    min-width:0 !important;
  }
}


/* ═══════════════════════════════════════
   CSUK v1.2.33 CTA internal breathing room
   Baseline: v1.2.32 CTA Spacing & Why Button Fix
   Narrow change only: increases the vertical distance between CTA button rows and the text below.
═══════════════════════════════════════ */
.csuk-content-cta,
.csuk-prose .csuk-content-cta,
.csuk-content-cta.csuk-content-cta--two-button,
.csuk-prose .csuk-content-cta.csuk-content-cta--two-button,
.csuk-content-cta.csuk-content-cta--compact,
.csuk-prose .csuk-content-cta.csuk-content-cta--compact{
  gap:clamp(30px,3.4vw,42px) !important;
}
.csuk-content-cta__actions,
.csuk-content-cta--two-button .csuk-content-cta__actions,
.csuk-content-cta--compact .csuk-content-cta__actions,
.csuk-prose .csuk-content-cta__actions{
  margin-bottom:clamp(2px,.55vw,8px) !important;
}
.csuk-content-cta__copy,
.csuk-content-cta--two-button .csuk-content-cta__copy,
.csuk-content-cta--compact .csuk-content-cta__copy,
.csuk-prose .csuk-content-cta__copy{
  padding-top:0 !important;
}
@media(max-width:720px){
  .csuk-content-cta,
  .csuk-prose .csuk-content-cta,
  .csuk-content-cta.csuk-content-cta--two-button,
  .csuk-prose .csuk-content-cta.csuk-content-cta--two-button,
  .csuk-content-cta.csuk-content-cta--compact,
  .csuk-prose .csuk-content-cta.csuk-content-cta--compact{
    gap:24px !important;
  }
}
