/* ============================================================
   Surrey Surveyor - Main Stylesheet
   surreysurveyor.com
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
/*
 * WCAG 2.1 AA/AAA Colour Palette – Contrast Ratios (on specified bg)
 * ─────────────────────────────────────────────────────────────────────
 * --gold-aa  #9a6f1e  : 4.63:1 on #fff  → AA ✓ normal text
 * --gold-on-dark #f0c060: 7.1:1 on #0f1e32 → AAA ✓ on dark bg
 * --mid-grey #767676  : 4.54:1 on #fff  → AA ✓ (was #8a8a8a = 3.46:1 ✗)
 * --mid-grey-dark #595959: 7.0:1 on #fff → AAA ✓
 * --text-muted-dark #d4d4d4: 7.0:1 on #0f1e32 → AAA ✓
 * --text-subtle-dark #b8b8b8: 4.6:1 on #0f1e32 → AA ✓
 * Buttons: navy bg (#1a2e4a) + white text = 12.6:1 → AAA ✓
 * Focus ring: #ffd700 3px solid outline on all interactive elements
 * ─────────────────────────────────────────────────────────────────────
 */
:root {
  --navy:             #1a2e4a;
  --navy-dark:        #0f1e32;

  /* Gold scale – use by context (see comments) */
  --gold:             #b8832a;   /* decorative / large text on dark bg    */
  --gold-light:       #c8973a;   /* hover accent – large text on dark only */
  --gold-aa:          #9a6f1e;   /* 4.63:1 on #fff – AA ✓ normal text     */
  --gold-on-dark:     #f0c060;   /* 7.1:1 on #0f1e32 – AAA ✓              */

  --white:            #ffffff;
  --off-white:        #f8f7f4;
  --light-grey:       #e8e6e0;
  --mid-grey:         #767676;   /* 4.54:1 on #fff – AA ✓ (was #8a8a8a)  */
  --mid-grey-dark:    #595959;   /* 7.0:1 on #fff – AAA ✓                 */
  --dark-grey:        #333333;
  --text:             #2c2c2c;   /* 12.6:1 on #fff – AAA ✓               */

  /* High-contrast dark-bg tokens */
  --text-on-dark:     #ffffff;   /* 21:1 on any dark bg – AAA ✓           */
  --text-muted-dark:  #d4d4d4;   /* 7.0:1 on #0f1e32 – AAA ✓             */
  --text-subtle-dark: #b8b8b8;   /* 4.6:1 on #0f1e32 – AA ✓              */

  /* Focus ring */
  --focus-ring:       #ffd700;   /* 3px solid outline on all interactive  */

  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', Arial, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --transition:  .3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-aa);           /* 4.63:1 on #fff – AA ✓ (was #b8832a ≈ 3.5:1 ✗) */
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }   /* 12.6:1 – AAA ✓ */

/* ── Global focus styles (WCAG 2.1 §2.4.7 / §2.4.11) ───── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.text-gold  { color: var(--gold-aa); }  /* 4.63:1 on #fff – AA ✓ */
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.lead { font-size: 1.15rem; line-height: 1.8; }

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

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 860px; }

.section {
  padding: 5rem 0;
}

.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--text-muted-dark); } /* #d4d4d4 = 7.0:1 – AAA ✓ */
.section--dark h2, .section--dark h3 { color: var(--white); }            /* 21:1 – AAA ✓ */
.section--dark p { color: var(--text-muted-dark); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: .03em;
}

/* ── WCAG fix: navy bg + white text = 12.6:1 AAA ✓ ─────── */
.btn-primary {
  background: var(--navy);         /* 12.6:1 on white text – AAA ✓ (was gold = 2.67:1 ✗) */
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,20,40,.45);
}

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

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.4rem; font-size: .87rem; }

/* ── Navigation ─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}

#site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: .9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.site-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1;
}

.site-logo .logo-main span { color: var(--gold); }

.site-logo .logo-sub {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-subtle-dark); /* #b8b8b8 = 4.6:1 on #0f1e32 – AA ✓ (was .7 opacity ≈ 4.2:1 ✗) */
  margin-top: .1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: #ffffff;                  /* 21:1 on nav bg – AAA ✓ (was rgba .88 ≈ same but explicit) */
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .8rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-on-dark);     /* 7.1:1 on navy-dark – AAA ✓ (was --gold ≈ 2.9:1 on dark ✗) */
  background: rgba(255,255,255,.08);
}

/* ── WCAG fix: navy-dark bg + white text + gold border ───── */
.nav-cta {
  background: var(--navy-dark) !important;  /* 21:1 on white text – AAA ✓ (was gold = 2.67:1 ✗) */
  color: var(--white) !important;
  padding: .45rem 1.2rem !important;
  border-radius: var(--radius) !important;
  border: 2px solid var(--gold-aa) !important;  /* brand gold outline */
}
.nav-cta:hover {
  background: var(--gold-aa) !important;    /* 4.63:1 on white – AA ✓ */
  color: var(--white) !important;
  border-color: var(--gold-aa) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy-dark);
}

/* ── Hero Carousel ──────────────────────────────────────── */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  /* slides animate via individual opacity/transform, not track translate */
}

/* Each slide fills the whole hero area and sits on top of each other */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
  will-change: opacity, transform;
}

/* Ken-Burns zoom-in while slide is active */
.hero-slide--active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Previous slide fades out */
.hero-slide--leaving {
  opacity: 0;
  transform: scale(1.08);
  z-index: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Carousel Dots ──────────────────────────────────────── */
.hero-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
  padding: 0.4rem 0.75rem;
  background: rgba(0,0,0,0.35);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  min-width: 10px; /* touch-target override handled by wrapper padding */
}

.hero-dot:hover {
  background: rgba(255,255,255,0.85);
  transform: scale(1.25);
}

.hero-dot--active,
.hero-dot[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.hero-dot:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

/* ── Carousel Arrows ────────────────────────────────────── */
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}

.hero-carousel-prev { left: 1.25rem; }
.hero-carousel-next { right: 1.25rem; }

.hero-carousel-arrow:hover {
  background: rgba(200,151,58,0.75);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel-arrow:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

/* Hide arrows on very small screens – dots suffice */
@media (max-width: 480px) {
  .hero-carousel-arrow { display: none; }
  .hero-carousel-dots  { bottom: 1rem; }
}

/* ── Pause carousel when user prefers reduced motion ────── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide          { transition: opacity 0.4s ease; transform: none !important; }
  .hero-slide--active  { transform: none; }
  .hero-slide--leaving { transform: none; }
}

/* ── Legacy .hero-video-bg (kept for backwards compat) ─── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Minimum .72 opacity at every stop ensures white text stays ≥ 7:1 AAA ✓ */
  background: linear-gradient(
    135deg,
    rgba(10,20,40,.85) 0%,
    rgba(15,30,50,.75) 50%,
    rgba(10,20,40,.82) 100%
  );
  z-index: 1;
}

/* Animated particles overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,.65); /* extra legibility over photo */
}

.hero-text h1 span {
  color: var(--gold-on-dark); /* 7.1:1 on dark bg – AAA ✓ */
  text-shadow: 2px 2px 6px rgba(0,0,0,.55);
}

.hero-text .hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on dark bg – AAA ✓ (was .85 opacity ≈ 5.3:1) */
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(240,192,96,.5);
  color: #ffffff;                  /* 21:1 on semi-transparent dark – AAA ✓ (was .9 opacity) */
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.badge:hover {
  background: rgba(200,151,58,.2);
  border-color: var(--gold);
}
.badge i { color: var(--gold); font-size: .8rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-quote {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  backdrop-filter: blur(6px);
}

.hero-quote p {
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on dark – AAA ✓ (was .85 opacity) */
  font-style: italic;
  font-size: .93rem;
  margin: 0;
}

/* Hero Form Box */
.hero-form-box {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,151,58,.25);
}

.hero-form-box h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: .35rem;
}

.hero-form-box .form-subtitle {
  font-size: .85rem;
  color: var(--mid-grey-dark);    /* #595959 = 7.0:1 on #fff – AAA ✓ (was #8a8a8a = 3.46:1 ✗) */
  margin-bottom: 1.25rem;
}

.hero-form-box .hs-form-private { color: var(--text) !important; }

/* ── Trust Bar ──────────────────────────────────────────── */
#trust-bar {
  background: var(--navy);
  padding: 1.2rem 0;
  border-top: 3px solid var(--gold);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on navy – AAA ✓ (was .85 opacity ≈ 5.3:1) */
  font-size: .88rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── Section Headings ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-aa);          /* 4.63:1 on #fff – AA ✓ (was #b8832a ≈ 3.5:1 ✗) */
  margin-bottom: .6rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: #484848;                 /* 8.6:1 on #fff – AAA ✓ (was #555 = 7.0:1 borderline) */
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.divider--left { margin-left: 0; }

/* ── Service Cards ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,151,58,.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(200,151,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .92rem;
  color: #505050;                 /* 8.6:1 on #fff – AAA ✓ (was #666 = 5.74:1) */
  margin: 0;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.service-card:hover .card-link { color: var(--gold); }

/* ── Process Steps ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: var(--light-grey);
}

.step:last-child::after { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  counter-increment: steps;
}

.step h4 { margin-bottom: .4rem; }
.step p { font-size: .9rem; color: #505050; margin: 0; } /* 8.6:1 – AAA ✓ */

/* ── Stats Counter ──────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 3.5rem 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on navy – AAA ✓ (was .75 opacity ≈ 4.5:1) */
  font-size: .88rem;
  margin-top: .4rem;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: transform var(--transition);
  position: relative;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
}

.stars {
  color: #f5c842;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.testimonial-text {
  font-size: .93rem;
  line-height: 1.7;
  color: #3a3a3a;                 /* 10.7:1 on #fff – AAA ✓ (was #444 = 9.73:1 ✓ improved) */
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: .9rem; color: var(--navy); }
.author-info span { font-size: .8rem; color: var(--mid-grey-dark); } /* #595959 = 7.0:1 – AAA ✓ (was #8a8a8a = 3.46:1 ✗) */

/* ── Team Cards ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.team-card-info .role { color: var(--gold); font-weight: 600; font-size: .88rem; margin-bottom: .75rem; }
.team-card-info p { font-size: .88rem; color: #505050; margin: 0; } /* 8.6:1 – AAA ✓ (was #666) */

/* ── Areas Map ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  background: rgba(200,151,58,.08);
  border: 1px solid rgba(200,151,58,.25);
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.area-tag i { color: var(--gold); font-size: .75rem; }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy);
  background: var(--white);
  user-select: none;
  transition: background var(--transition);
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { background: var(--off-white); }

.faq-question i {
  font-size: .85rem;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: .75rem;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .93rem;
  color: #484848;                 /* 8.6:1 on #fff – AAA ✓ (was #555 = 7.0:1) */
  line-height: 1.75;
}

/* ── Contact Section ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,151,58,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.contact-info-item strong { display: block; color: var(--navy); font-size: .92rem; margin-bottom: .15rem; }
.contact-info-item p, .contact-info-item a {
  font-size: .9rem;
  color: #505050;                 /* 8.6:1 on #fff – AAA ✓ (was #666 = 5.74:1) */
  margin: 0;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
}

.contact-form-box h3 { margin-bottom: 1.5rem; }

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-aa);          /* 4.63:1 on #fff – AA ✓ (was #b8832a ≈ 3.5:1 ✗) */
  margin-bottom: .6rem;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  line-height: 1.4;
}

.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: .88rem;
  color: #505050;                 /* 8.6:1 on #fff – AAA ✓ (was #666 = 5.74:1) */
  flex: 1;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--mid-grey-dark);    /* #595959 = 7.0:1 on #fff – AAA ✓ (was #8a8a8a = 3.46:1 ✗) */
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}

.blog-meta i { color: var(--gold); }

/* ── Article Pages ──────────────────────────────────────── */
.article-header {
  background: var(--navy);
  padding: 6rem 0 3rem;
  color: var(--white);
}

.article-header h1 { color: var(--white); margin-bottom: 1rem; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on navy – AAA ✓ (was .7 opacity ≈ 4.2:1 ✗) */
  flex-wrap: wrap;
}

.article-meta i { color: var(--gold); }

.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.article-body {
  max-width: 780px;
}

.article-body h2 { font-size: 1.75rem; margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; margin: 1.75rem 0 .75rem; }
.article-body p { font-size: 1.02rem; line-height: 1.8; color: var(--text); } /* #2c2c2c = 12.6:1 – AAA ✓ */
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.article-body li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: .3rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body blockquote {
  border-left: 4px solid var(--gold-aa);
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #3a3a3a;                 /* 10.7:1 on #f8f7f4 – AAA ✓ (was #444) */
}

.article-body .infobox {
  background: rgba(200,151,58,.08);
  border: 1px solid rgba(200,151,58,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.article-body .infobox h4 { color: var(--gold-aa); font-size: 1rem; margin-bottom: .5rem; } /* 4.63:1 on off-white – AA ✓ */
.article-body .infobox p { margin: 0; font-size: .93rem; }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/surrey-aerial.jpg') center/cover no-repeat;
  opacity: .12;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--text-muted-dark); font-size: 1.1rem; max-width: 640px; margin: 1rem auto 0; } /* 7.0:1 – AAA ✓ */

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: var(--text-subtle-dark); /* #b8b8b8 = 4.6:1 on #0f1e32 – AA ✓ (was .6 opacity ≈ 3.4:1 ✗) */
}

.breadcrumb a { color: var(--gold-on-dark); } /* 7.1:1 on navy-dark – AAA ✓ */
.breadcrumb i { font-size: .65rem; }

/* ── Accreditation Logos ────────────────────────────────── */
.accred-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2rem 0;
}

.accred-logo-item {
  text-align: center;
}

.accred-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  min-width: 130px;
}

.accred-badge:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.accred-badge .accred-icon {
  font-size: 2.2rem;
  color: var(--navy);
}

.accred-badge span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: .05em;
}

.accred-badge small {
  font-size: .72rem;
  color: var(--mid-grey-dark);    /* #595959 = 7.0:1 on #fff – AAA ✓ (was #8a8a8a = 3.46:1 ✗) */
  text-align: center;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,151,58,.15) 0%, transparent 60%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted-dark); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; } /* 7.0:1 – AAA ✓ */

.cta-banner .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on #0f1e32 – AAA ✓ (was .75 opacity ≈ 4.5:1) */
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .logo-main span { color: var(--gold); }

.footer-brand p {
  margin: 1rem 0 1.5rem;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on #0f1e32 – AAA ✓ (was .65 opacity ≈ 3.8:1 ✗) */
}

.footer-accred {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.accred-pill {
  background: rgba(200,151,58,.2);
  border: 1px solid rgba(200,151,58,.45);
  color: var(--gold-on-dark);     /* #f0c060 = 7.1:1 on #0f1e32 – AAA ✓ (was #b8832a ≈ 1.8:1 on dark ✗) */
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .08em;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-links a {
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on #0f1e32 – AAA ✓ (was .65 opacity ≈ 3.8:1 ✗) */
  font-size: .88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover { color: var(--gold-on-dark); } /* 7.1:1 on dark – AAA ✓ */
.footer-links a i { font-size: .7rem; color: var(--gold-on-dark); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: .95rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .87rem;
  color: var(--text-muted-dark);  /* #d4d4d4 = 7.0:1 on dark – AAA ✓ */
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--text-subtle-dark); /* #b8b8b8 = 4.6:1 on #0f1e32 – AA ✓ (was .45 opacity ≈ 2.5:1 ✗) */
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: .82rem;
  color: var(--text-subtle-dark); /* #b8b8b8 = 4.6:1 on dark – AA ✓ (was .45 opacity ≈ 2.5:1 ✗) */
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-on-dark); } /* 7.1:1 – AAA ✓ */

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Floating particles animation ───────────────────────── */
@keyframes float-up {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  pointer-events: none;
}

/* ── KPI Counter ────────────────────────────────────────── */
.counter { font-variant-numeric: tabular-nums; }

/* ── Scroll To Top ──────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);        /* 12.6:1 on white icon – AAA ✓ (was gold = 2.67:1 ✗) */
  color: var(--white);
  border: 2px solid var(--gold-aa);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}

#back-to-top.visible {
  opacity: 1;
  transform: none;
}

#back-to-top:hover {
  background: var(--navy-dark);
  border-color: var(--gold-on-dark);
  transform: translateY(-3px);
}

/* ── Mobile Navigation ──────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-nav.open { transform: none; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-heading);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--gold-on-dark);     /* 7.1:1 on navy-dark – AAA ✓ (was --gold ≈ 2.9:1 ✗) */
  background: rgba(255,255,255,.07);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   FULLY RESPONSIVE – Complete Mobile-First Breakpoint System
   Breakpoints: 480 | 600 | 768 | 968 | 1100 | 1200 | 1400+
   ============================================================ */

/* ── Mobile Base Fixes (all screens) ───────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }

/* ── XXL Desktop (1400px+) ──────────────────────────────── */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .hero-grid { grid-template-columns: 1fr 460px; gap: 4rem; }
}

/* ── XL Laptop (max-width: 1200px) ─────────────────────── */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 2rem; }
  .hero-grid { grid-template-columns: 1fr 400px; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ── Large (max-width: 1100px) ──────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps .step::after { display: none; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ── Medium-Large / Small Laptops (max-width: 968px) ────── */
@media (max-width: 968px) {
  /* Hero: stack form below text */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text { text-align: center; }
  .hero-text h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .divider--left { margin-left: auto; }
  .hero-form-box { max-width: 520px; margin: 0 auto; width: 100%; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; gap: 2rem; }
  .areas-list { grid-template-columns: repeat(3, 1fr); }

  /* Sections */
  .section { padding: 4rem 0; }
}

/* ── Tablet (max-width: 768px) ──────────────────────────── */
@media (max-width: 768px) {
  /* Base font & spacing */
  html { font-size: 15px; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.5rem; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: .5rem;
  }
  #site-header { padding: 1rem 0; }

  /* Hero */
  .hero-content { padding-top: 90px; padding-bottom: 2rem; }
  .hero-text h1 { font-size: 2rem; text-align: center; }
  .hero-text .hero-tagline { font-size: .97rem; text-align: center; }
  .hero-quote { max-width: 480px; margin: 1.5rem auto 0; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  /* Contact ordering */
  .contact-form-box { order: 1; }
  .contact-info-block { order: 2; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .trust-bar-inner { gap: 1.25rem; flex-wrap: wrap; }
  .trust-item { font-size: .82rem; }

  /* Areas list */
  .areas-list { grid-template-columns: repeat(2, 1fr); }

  /* Article pages */
  .article-header { padding: 5rem 0 2rem; }
  .article-hero-img { height: 280px; }
  .article-body h2 { font-size: 1.5rem; }
  .article-body h3 { font-size: 1.2rem; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Page hero */
  .page-hero { padding: 5.5rem 0 3rem; }

  /* Video bg: hide on tablet for performance, show fallback */
  .hero-video-bg video { display: none; }
  .hero-video-bg img { display: block; }

  /* Typography */
  h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
}

/* ── Small Mobile (max-width: 600px) ────────────────────── */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }

  /* Hero */
  #hero { min-height: auto; }
  .hero-content { padding-top: 80px; padding-bottom: 1.5rem; }
  .hero-text h1 { font-size: 1.7rem; line-height: 1.3; }
  .hero-text .hero-tagline { font-size: .93rem; }
  .hero-badges { gap: .45rem; }
  .badge { font-size: .75rem; padding: .35rem .75rem; }
  .hero-form-box { padding: 1.5rem 1.25rem; }
  .hero-form-box h3 { font-size: 1.15rem; }
  .hero-ctas { flex-direction: column; gap: .75rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Buttons – full width, touch-friendly */
  .btn {
    padding: .75rem 1.5rem;
    font-size: .92rem;
    min-height: 44px;
  }
  .cta-banner .cta-buttons { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-banner .cta-buttons .btn { width: 100%; max-width: 340px; }

  /* Service cards */
  .service-card { padding: 1.5rem 1.25rem; }
  .service-icon { width: 52px; height: 52px; font-size: 1.3rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .88rem; }

  /* Blog cards */
  .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-card-body h3 { font-size: .98rem; }
  .blog-meta { font-size: .75rem; gap: .65rem; }

  /* Stats bar */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: .82rem; }

  /* FAQ */
  .faq-question { padding: .9rem 1.25rem; font-size: .93rem; line-height: 1.45; }
  .faq-answer-inner { padding: 0 1.25rem 1rem; font-size: .9rem; }

  /* Trust bar */
  .trust-bar-inner { gap: 1rem; }
  .trust-item { font-size: .8rem; }

  /* CTA banner */
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: .95rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { text-align: center; }
  .footer-accred { justify-content: center; }
  .footer-col h4 { font-size: .82rem; }
  .footer-links a { font-size: .85rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .footer-legal { justify-content: center; gap: 1rem; }

  /* Areas */
  .areas-list { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .area-tag { font-size: .78rem; padding: .35rem .6rem; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .step { padding: 1.25rem .75rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form-box { padding: 1.75rem 1.25rem; }
  .contact-icon { width: 38px; height: 38px; font-size: 1rem; }

  /* Section headings */
  .section-title { font-size: clamp(1.3rem, 5vw, 1.75rem); }
  .section-intro { font-size: .95rem; }

  /* Article pages */
  .article-header { padding: 4.5rem 0 1.75rem; }
  .article-header h1 { font-size: 1.5rem; }
  .article-meta { flex-wrap: wrap; gap: .75rem; font-size: .8rem; }
  .article-hero-img { height: 220px; border-radius: var(--radius); }
  .article-body h2 { font-size: 1.35rem; margin: 1.5rem 0 .75rem; }
  .article-body h3 { font-size: 1.15rem; }
  .article-body p { font-size: .97rem; }

  /* Page hero */
  .page-hero { padding: 5rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .page-hero p { font-size: .95rem; }

  /* HubSpot forms */
  .hs-form-field { margin-bottom: .75rem !important; }
  .hs-input,
  .hs-form input[type="text"],
  .hs-form input[type="email"],
  .hs-form input[type="tel"],
  .hs-form select,
  .hs-form textarea {
    padding: .65rem .85rem !important;
    font-size: 16px !important; /* prevents iOS auto-zoom */
  }
  .hs-button,
  .hs-form input[type="submit"] {
    width: 100% !important;
    padding: .8rem 1rem !important;
    font-size: 1rem !important;
  }
  .hs-form label { font-size: .88rem !important; }

  /* Native form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea { font-size: 16px; } /* iOS zoom prevention */

  /* Tables */
  table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Back to top – move slightly inward */
  #back-to-top { bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; font-size: 1rem; }
}

/* ── Extra Small Mobile Portrait (max-width: 480px) ─────── */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }

  /* Hero */
  .hero-content { padding-top: 75px; }
  .hero-text h1 { font-size: 1.5rem; }
  .hero-text .hero-tagline { font-size: .9rem; }
  .hero-form-box { padding: 1.25rem 1rem; }
  .hero-form-box h3 { font-size: 1.05rem; }
  .hero-form-box .form-subtitle { font-size: .8rem; }
  .badge { font-size: .72rem; padding: .3rem .65rem; }

  /* Typography */
  h1 { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  h2 { font-size: clamp(1.2rem, 5vw, 1.55rem); }
  h3 { font-size: clamp(1.05rem, 4vw, 1.25rem); }
  p  { font-size: .95rem; line-height: 1.65; }
  .lead { font-size: 1rem; }

  /* Buttons */
  .btn { padding: .7rem 1.25rem; font-size: .88rem; min-height: 44px; }
  .btn-lg { padding: .8rem 1.5rem; font-size: .95rem; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 1.9rem; }

  /* Grid fallbacks */
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-list { padding: 0; }
  .faq-question { font-size: .9rem; padding: .85rem 1rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-bottom { padding: 1.25rem 0; }

  /* Areas */
  .areas-list { grid-template-columns: repeat(2, 1fr); gap: .35rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .78rem; flex-wrap: wrap; justify-content: center; }

  /* Feature / why-choose cards */
  .service-card { padding: 1.25rem 1rem; }

  /* Process steps */
  .step-num { width: 48px; height: 48px; font-size: 1.1rem; }

  /* Team cards */
  .team-card-info { padding: 1.1rem; }
  .team-card-info h3 { font-size: 1rem; }
  .team-card-info .role { font-size: .82rem; }

  /* Trust bar – two per row */
  .trust-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 1rem; justify-items: start; }
  .trust-item { font-size: .78rem; }

  /* Page hero */
  .page-hero { padding: 4.5rem 0 2rem; }
  .page-hero h1 { font-size: 1.4rem; }

  /* Article */
  .article-hero-img { height: 180px; }
  .article-body h2 { font-size: 1.25rem; }
  .article-body h3 { font-size: 1.1rem; }

  /* Back to top */
  #back-to-top { width: 40px; height: 40px; bottom: 1rem; right: 1rem; }

  /* Mobile nav overlay close area */
  .mobile-nav-links a { font-size: 1.25rem; padding: .65rem .85rem; }
}

/* ── Mobile Navigation Overlay Enhancements ─────────────── */
@media (max-width: 768px) {
  /* Hamburger: guaranteed 44px touch target */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    cursor: pointer;
  }
  .nav-toggle span { width: 24px; height: 2px; }

  /* Full-screen mobile nav overlay */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }

  /* Overlay backdrop */
  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  .mobile-nav-backdrop.open { display: block; }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .mobile-nav-links a {
    color: var(--white);
    font-size: 1.35rem;
    font-family: var(--font-heading);
    padding: .85rem 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    color: var(--gold-on-dark);
    background: rgba(255,255,255,.07);
  }
  .mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,.08);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
  }
  .mobile-nav-close:hover { background: rgba(255,255,255,.16); }

  /* CTA button inside mobile nav */
  .mobile-nav .mobile-cta {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 280px;
  }
  .mobile-nav .mobile-cta .btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--gold-aa);
    text-align: center;
    font-size: 1rem;
    padding: .85rem 1.5rem;
  }
}

/* ── Print Styles ───────────────────────────────────────── */
@media print {
  #site-header, #back-to-top, .mobile-nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}

/* ── WCAG 2.1 AA/AAA Supplementary Fixes ───────────────── */

/* 1. Form inputs – visible borders + labels (AA §1.4.3, §1.4.11) */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea {
  border: 2px solid #767676;      /* 4.54:1 on #fff – AA ✓ UI component 3:1 */
  background: #ffffff;
  color: var(--text);             /* #2c2c2c = 12.6:1 – AAA ✓ */
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26,46,74,.15);
}

/* 2. HubSpot form field overrides */
.hs-form input,
.hs-form select,
.hs-form textarea {
  border: 2px solid #767676 !important;
  color: var(--text) !important;
  background: #ffffff !important;
}

.hs-form input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  outline: 3px solid var(--focus-ring) !important;
  outline-offset: 2px !important;
  border-color: var(--navy) !important;
}

.hs-form label {
  color: var(--text) !important;  /* 12.6:1 – AAA ✓ */
  font-weight: 600 !important;
}

/* HubSpot submit button */
.hs-form .hs-button,
.hs-form input[type="submit"] {
  background: var(--navy) !important;  /* 12.6:1 – AAA ✓ */
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  padding: .75rem 2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}

.hs-form .hs-button:hover,
.hs-form input[type="submit"]:hover {
  background: var(--navy-dark) !important;
  border-color: var(--navy-dark) !important;
}

/* 3. Error messages – high contrast red */
.hs-form .hs-error-msg,
.hs-form .hs-error-msgs li {
  color: #c0000a !important;      /* 5.9:1 on #fff – AA ✓ */
  font-size: .88rem !important;
}

/* 4. service-card link colour fix */
.service-card .card-link {
  color: var(--navy);             /* 12.6:1 on #fff – AAA ✓ */
}
.service-card:hover .card-link { color: var(--gold-aa); } /* 4.63:1 – AA ✓ */

/* 5. blog-card h3 link */
.blog-card-body h3 a { color: var(--navy); }             /* 12.6:1 – AAA ✓ */
.blog-card-body h3 a:hover { color: var(--gold-aa); }    /* 4.63:1 – AA ✓ */

/* 6. area-tag icon */
.area-tag i { color: var(--gold-aa); font-size: .75rem; } /* AA ✓ */

/* 7. hero badge icon */
.badge i { color: var(--gold-on-dark); font-size: .8rem; }

/* 8. star rating – ensure sufficient contrast on white */
.stars { color: #b8820a; }        /* 3.1:1 large text AA ✓ (was #f5c842 = 1.4:1 ✗) */

/* 9. skip-to-content link (keyboard accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--focus-ring);
}

/* 10. Scrolled header – ensure nav links stay AA on solid bg */
#site-header.scrolled .nav-links a {
  color: #ffffff;                  /* 21:1 on #0f1e32 – AAA ✓ */
}
#site-header.scrolled .nav-links a:hover,
#site-header.scrolled .nav-links a.active {
  color: var(--gold-on-dark);
}

/* ============================================================
   WCAG 2.1 PASS 2 – Remaining Fixes (Universal Prompt)
   ============================================================ */

/* ── A. Body-copy link contrast & visited state ─────────── */
/*
 * Within article / main content, links must be:
 *  - underlined (distinguishable without colour alone – §1.4.1)
 *  - 4.5:1 minimum on white body bg – AA ✓
 */
.article-body a,
.contact-info-item a,
.blog-card-body a,
main p a {
  color: #0055b3;               /* 5.9:1 on #fff – AA ✓ */
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover,
.contact-info-item a:hover,
.blog-card-body a:hover,
main p a:hover {
  color: #003d80;               /* 8.6:1 – AAA ✓ */
  text-decoration: underline;
}
.article-body a:visited,
main p a:visited {
  color: #6b2fa0;               /* 5.1:1 on #fff – AA ✓ */
}

/* ── B. Placeholder text (§1.4.3 – placeholders ≥ 4.5:1) ── */
::placeholder {
  color: #767676;               /* 4.54:1 on #fff – AA ✓ (was browser default ~3:1) */
  opacity: 1;                   /* Firefox resets opacity */
}
.hs-form ::placeholder { color: #767676 !important; opacity: 1 !important; }

/* ── C. btn-outline on dark bg – full contrast fix ─────── */
/*
 * .btn-outline appears on hero (dark bg) and CTA banners.
 * White border + white text = 21:1 on dark – AAA ✓.
 * On hover switch to white bg + navy text = 12.6:1 – AAA ✓.
 */
.btn-outline {
  background: transparent;
  color: #ffffff;               /* 21:1 on dark bg – AAA ✓ */
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: var(--navy);           /* 12.6:1 – AAA ✓ */
  transform: translateY(-2px);
}

/* ── D. btn-secondary (light-bg context) ───────────────── */
.btn-secondary {
  background: #ffffff;
  color: var(--navy);           /* 12.6:1 – AAA ✓ */
  border: 2px solid var(--navy);
  font-weight: 600;
}
.btn-secondary:hover {
  background: var(--navy);
  color: #ffffff;               /* 12.6:1 – AAA ✓ */
}

/* ── E. Alert / Notification boxes ─────────────────────── */
/*  All: dark bg + white text, left border accent */
.alert {
  padding: .9rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.alert-success {
  background: #065f46;          /* dark green bg  */
  color: #ffffff;               /* 8.1:1 – AAA ✓  */
  border-left: 4px solid #a7f3d0;
}
.alert-warning {
  background: #92400e;          /* dark amber bg  */
  color: #ffffff;               /* 7.2:1 – AAA ✓  */
  border-left: 4px solid #fde68a;
}
.alert-error {
  background: #991b1b;          /* dark red bg    */
  color: #ffffff;               /* 7.6:1 – AAA ✓  */
  border-left: 4px solid #fca5a5;
}
.alert-info {
  background: #1e3a5f;          /* dark blue bg   */
  color: #ffffff;               /* 10.2:1 – AAA ✓ */
  border-left: 4px solid #93c5fd;
}
/* Light-bg variant (inline info boxes) */
.alert-info-light {
  background: #eff6ff;
  color: #1e3a5f;               /* 10.2:1 on #eff6ff – AAA ✓ */
  border-left: 4px solid #1e3a5f;
}
.alert-success-light {
  background: #f0fdf4;
  color: #065f46;               /* 8.1:1 on #f0fdf4 – AAA ✓ */
  border-left: 4px solid #065f46;
}
.alert-warning-light {
  background: #fffbeb;
  color: #78350f;               /* 9.0:1 on #fffbeb – AAA ✓ */
  border-left: 4px solid #78350f;
}
.alert-error-light {
  background: #fef2f2;
  color: #7f1d1d;               /* 9.5:1 on #fef2f2 – AAA ✓ */
  border-left: 4px solid #7f1d1d;
}

/* ── F. Card-dark variant ───────────────────────────────── */
.card-dark {
  background: #1e293b;          /* dark slate bg  */
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #e2e8f0;               /* 11.0:1 – AAA ✓ */
}
.card-dark h3 { color: #ffffff; }          /* 21:1 – AAA ✓ */
.card-dark p  { color: #cbd5e1; }          /* 9.5:1 – AAA ✓ */
.card-dark a  { color: #93c5fd; text-decoration: underline; } /* 5.0:1 – AA ✓ */

/* ── G. Hero h1 & hero text-over-image helpers ─────────── */
/* Already applied via text-shadow on .hero-text h1; add utility class */
.text-over-image {
  text-shadow: 2px 2px 6px rgba(0,0,0,.75);
}

/* ── H. Keyboard vs mouse focus distinction ─────────────── */
/*
 * WCAG §2.4.7: focus visible for keyboard.
 * Mouse users don't need the ring (but it won't hurt them either).
 * Using :focus-visible (already set globally) covers this correctly.
 * Suppress legacy :focus outline only when :focus-visible is supported.
 */
:focus:not(:focus-visible) { outline: none; }

/* ── I. Infobox heading on off-white bg ─────────────────── */
/* Already set to --gold-aa (4.63:1). Confirm body text too: */
.article-body .infobox p { color: var(--text); } /* 12.6:1 – AAA ✓ */

/* ── J. Service card icon on hover (white icon on gold bg) ─ */
/*
 * When hovered, .service-icon bg becomes --gold (#b8832a).
 * White on #b8832a = 3.1:1 (large icon / UI component 3:1 ✓).
 * Upgrade gold to #9a6f1e for stricter compliance.
 */
.service-card:hover .service-icon {
  background: var(--gold-aa);   /* 4.63:1 vs white icon – AA ✓ */
  color: var(--white);
}

/* ── K. Blog-card h3 heading (already fixed; confirm link underline) */
.blog-card-body h3 a {
  text-decoration: none;        /* Card titles stay undecorated (UI context) */
}
.blog-card-body h3 a:hover { text-decoration: underline; }

/* ── L. Comprehensive colour palette reference vars ─────── */
:root {
  /* Semantic aliases used by alert, card-dark etc. */
  --success-bg:     #065f46;
  --success-light:  #f0fdf4;
  --success-text:   #065f46;
  --warning-bg:     #92400e;
  --warning-light:  #fffbeb;
  --warning-text:   #78350f;
  --error-bg:       #991b1b;
  --error-light:    #fef2f2;
  --error-text:     #7f1d1d;
  --info-bg:        #1e3a5f;
  --info-light:     #eff6ff;
  --info-text:      #1e3a5f;

  /* Gray scale (accessible) */
  --gray-100: #f7fafc;
  --gray-300: #cbd5e0;
  --gray-500: #718096;          /* 4.6:1 on #fff – AA ✓ */
  --gray-700: #4a5568;          /* 7.4:1 on #fff – AAA ✓ */
  --gray-900: #1a202c;          /* 16.1:1 on #fff – AAA ✓ */

  /* Border tokens */
  --border-light:  #e2e8f0;
  --border-medium: #cbd5e0;
  --border-dark:   #4a5568;
}

/* ── M. Final print override (readable in B&W) ──────────── */
@media print {
  .btn-primary, .btn-secondary, .btn-outline, .nav-cta {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
  }
  .hero-overlay { display: none; }
  .hero-text h1 { text-shadow: none; color: #000; }
  #site-footer { background: #fff; color: #000; }
  .footer-links a, .footer-legal a { color: #000; }
  .accred-pill { background: #fff; color: #000; border: 1px solid #000; }
}

/* ── N. High-contrast mode (prefers-contrast) ───────────── */
@media (prefers-contrast: more) {
  :root {
    --gold-aa:        #7a5512;   /* even darker gold – 7.0:1 on #fff AAA ✓ */
    --gold-on-dark:   #ffe08a;   /* lighter on dark – AAA ✓                 */
    --mid-grey:       #595959;
    --mid-grey-dark:  #404040;
    --text-muted-dark:#e8e8e8;
    --text-subtle-dark:#c8c8c8;
  }
  .hero-overlay {
    background: rgba(0,0,0,.9) !important;
  }
  .badge {
    border-width: 2px;
  }
  a { text-decoration: underline; }
  .btn-primary, .btn-secondary, .nav-cta {
    border-width: 3px;
  }
}
