/* ============================================================
   Crawley Surveyor — Main Stylesheet
   crawleysurveyor.co.uk
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --navy:       #1a2e4a;
  --navy-dark:  #0f1e33;
  --gold:       #c8a84b;
  --gold-light: #e2c97e;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --light-grey: #eef0f4;
  --mid-grey:   #6b7280;
  --text:       #1f2937;
  --border:     #d1d5db;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --transition: .3s ease;
  --font-main:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.bg-navy    { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-light   { background: var(--light-grey); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 640px;
  margin: 0 auto 3rem;
}
.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-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(200,168,75,.15); color: #8a6b1a; }
.badge-navy { background: rgba(26,46,74,.1); color: var(--navy); }

/* ---- Header / Navigation ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,30,51,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--navy);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .5rem .9rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.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;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,51,.9) 40%, rgba(200,168,75,.15) 100%);
}
/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,168,75,.2);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: flex-start;
}
.hero-text { color: var(--white); }
.hero-accreditations {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(200,168,75,.4);
  border-radius: 50px;
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.accred-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- Hero Contact Form Box ---- */
.hero-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-form-box h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
  color: var(--navy);
}
.hero-form-box p {
  font-size: .88rem;
  color: var(--mid-grey);
  margin-bottom: 1.25rem;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--mid-grey);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,46,74,.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { font-size: .92rem; color: var(--mid-grey); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .65rem; }

/* ---- Why Choose Us / Features ---- */
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(200,168,75,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-body h4 { margin-bottom: .35rem; font-size: 1rem; }
.feature-body p { font-size: .88rem; color: var(--mid-grey); margin: 0; }

/* ---- Reviews / Testimonials ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .75rem;
  color: var(--gold);
  font-size: 1rem;
}
.review-quote {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-grey);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
}
.review-name { font-weight: 700; font-size: .9rem; }
.review-location { font-size: .78rem; color: var(--mid-grey); }
.review-platform {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .75rem; font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---- Team Cards ---- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-img-wrap {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.team-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .6s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-body { padding: 1.5rem; }
.team-name { font-size: 1.15rem; margin-bottom: .25rem; }
.team-role { font-size: .82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; }
.team-bio { font-size: .88rem; color: var(--mid-grey); }
.team-socials { display: flex; gap: .5rem; margin-top: 1rem; }
.team-socials a {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--navy);
  transition: all var(--transition);
}
.team-socials a:hover { background: var(--navy); color: var(--white); }

/* ---- Areas Grid ---- */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.area-pin { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.area-name { font-weight: 600; font-size: .95rem; }
.area-dist { font-size: .8rem; color: var(--mid-grey); }

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ---- Process Steps ---- */
.process-steps { counter-reset: steps; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 24px; top: 50px;
  width: 2px;
  height: calc(100% - 30px);
  background: var(--light-grey);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
  counter-increment: steps;
  position: relative; z-index: 1;
}
.step-body h4 { margin-bottom: .5rem; font-size: 1.05rem; }
.step-body p { font-size: .9rem; color: var(--mid-grey); margin: 0; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}
.stats-bar .stat-item { text-align: center; padding: 1rem; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(200,168,75,.07);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }

/* ---- Contact Form Section ---- */
.contact-section {
  background: var(--off-white);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid-grey); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(26,46,74,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-item-body h4 { font-size: .9rem; margin-bottom: .2rem; }
.contact-item-body p { font-size: .88rem; color: var(--mid-grey); margin: 0; }
.hs-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.hs-form-container h3 { margin-bottom: .5rem; font-size: 1.3rem; }
.hs-form-container > p { font-size: .88rem; color: var(--mid-grey); margin-bottom: 1.5rem; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.blog-date { font-size: .78rem; color: var(--mid-grey); }
.blog-cat {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
}
.blog-title { font-size: 1.1rem; margin-bottom: .5rem; color: var(--navy); }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: .88rem; color: var(--mid-grey); flex: 1; margin-bottom: 1.25rem; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.blog-card:hover .blog-read-more { color: var(--gold); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--mid-grey);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(200,168,75,.06);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }
.page-hero .breadcrumb { margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb { color: rgba(255,255,255,.5); }

/* ---- Accreditation Logos Bar ---- */
.accred-bar {
  background: var(--off-white);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accred-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1rem;
}
.accred-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .7;
  transition: opacity var(--transition);
  white-space: nowrap;
  padding: .5rem 1rem;
  border-right: 1px solid var(--border);
}
.accred-logo:last-child { border-right: none; }
.accred-logo:hover { opacity: 1; }
.accred-logo-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900;
  flex-shrink: 0;
}

/* ---- Footer ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.footer-col h5 {
  font-family: var(--font-main);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: .35rem;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(200,168,75,.35);
  background: rgba(0,0,0,.25);
}
.footer-bottom a {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); text-decoration: underline; }
.footer-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin: 0; max-width: 600px;
}
#cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ---- Scroll Progress ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 1001;
  transition: width .1s linear;
}

/* ---- Back to Top ---- */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ---- Map Placeholder ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light-grey);
  position: relative;
  min-height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ---- Blog Single Page ---- */
.blog-single-hero { position: relative; height: 420px; overflow: hidden; }
.blog-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-single-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,51,.8) 0%, transparent 60%);
}
.blog-single-hero .blog-single-meta {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  z-index: 2;
  color: var(--white);
}
.blog-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.blog-content h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.blog-content h3 { margin: 1.75rem 0 .75rem; font-size: 1.3rem; }
.blog-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.blog-content ul, .blog-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-content li { font-size: 1rem; line-height: 1.75; margin-bottom: .5rem; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 2rem 0;
  color: var(--navy);
}
.blog-content img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  width: 100%;
}
.blog-content .callout {
  background: rgba(200,168,75,.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.blog-content .callout p { margin: 0; color: var(--navy); font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr 380px; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .accred-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .accred-logo { border-right: none; border-bottom: 1px solid var(--border); }
  .accred-logo:nth-child(2n) { border-right: none; }
  .accred-logo:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-box { display: none; }
  .hero-title { font-size: 2.1rem; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: .75rem 1rem; font-size: 1rem; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .accred-bar-inner { grid-template-columns: 1fr 1fr; }
  .accred-logo { white-space: normal; text-align: center; justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
  #back-to-top { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding-top: 72px; }
  .btn { padding: .75rem 1.5rem; font-size: .88rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-accreditations { gap: .5rem; }
  .accred-badge { font-size: .7rem; padding: .3rem .6rem; }
}

/* ---- HubSpot Form Overrides ---- */
.hs-form fieldset { max-width: 100% !important; }
.hs-form .hs-input {
  width: 100% !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  padding: .75rem 1rem !important;
  font-family: var(--font-main) !important;
  transition: border-color var(--transition) !important;
}
.hs-form .hs-input:focus {
  border-color: var(--navy) !important;
  outline: none !important;
}
.hs-form .hs-button {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  padding: .875rem 2rem !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  font-family: var(--font-main) !important;
  transition: background var(--transition) !important;
}
.hs-form .hs-button:hover { background: var(--gold-light) !important; }
.hs-error-msgs { color: #dc2626; font-size: .82rem; }
