/* ============================================================
   Canary Wharf Surveyors — Main Stylesheet
   canarywharfsurveyors.com
   ============================================================ */

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

:root {
  --navy:       #0a1f44;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --light-bg:   #f7f8fc;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --muted:      #6b7280;
  --border:     #dde1ea;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(10,31,68,.10);
  --shadow-lg:  0 8px 48px rgba(10,31,68,.18);
  --trans:      0.3s ease;
  --max-w:      1200px;
  --font-sans:  'Inter', sans-serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold); }

ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 80px 0; }
.section-sm{ padding: 48px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--light-bg); }
.bg-gold     { background: var(--gold); }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 660px;
  margin: .6rem auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }

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

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gold); color: var(--navy); }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
}
.top-bar a { color: var(--gold); }
.top-bar span { display: flex; align-items: center; gap: .35rem; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,31,68,.09);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(10,31,68,.16); }

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

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; fill: var(--gold); }
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: 1rem; color: var(--navy); font-weight: 800; }
.logo-text span { font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 700; }

.nav-cta { margin-left: 1rem; }

.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(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.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 ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.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;
  opacity: .38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,31,68,.92) 0%, rgba(10,31,68,.6) 55%, rgba(10,31,68,.3) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 60px 0 80px;
}
.hero-text {
  color: var(--white);
  padding-top: 0.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; fill: currentColor; }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.trust-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* ── Hero Form Box ── */
.hero-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-form-box h3 {
  font-size: 1.2rem;
  margin-bottom: .25rem;
}
.hero-form-box p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-item .label { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: .3rem; }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.why-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.why-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── Services Overview ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.service-card-body p { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.service-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: #8a6d2f;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

/* ── How It Works ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
}
.step h4 { margin-bottom: .5rem; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── Accreditations ── */
.accred-strip {
  background: var(--light-bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.accred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}
.accred-badge {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  padding: 6px;
}
.accred-item span { font-size: .75rem; color: var(--muted); max-width: 100px; }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow var(--trans);
}
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  font-family: Georgia, serif;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--text); margin-bottom: 1.25rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  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;
}
.reviewer-info strong { display: block; font-size: .88rem; }
.reviewer-info span { font-size: .78rem; color: var(--muted); }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #142d5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 65%);
}
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .btn { margin: .35rem; }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--trans);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.team-info .role { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.team-info p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--trans);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--navy); transition: transform var(--trans); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { fill: 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 0 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact Form Section ── */
.contact-form-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-detail svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: .88rem; color: var(--navy); }
.contact-detail span { font-size: .85rem; color: var(--muted); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 1.5rem; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}
.footer-logo { margin-bottom: .75rem; }
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text span { color: rgba(255,255,255,.5); }
.footer-logo .logo-mark { background: var(--gold); }
.footer-logo .logo-mark svg { fill: var(--navy); }

.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1.25rem; letter-spacing: .04em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.footer-col ul li a:hover { color: var(--gold); }

.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: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom nav a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom nav a:hover { color: var(--gold); }

.footer-form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.footer-form-box h3 { color: var(--white); margin-bottom: .5rem; }
.footer-form-box p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }

/* ── Breadcrumb — hidden site-wide ── */
.breadcrumb-bar {
  display: none !important;
}
.breadcrumb span { color: var(--muted); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 45%;
  height: 100%;
  background: url('') center/cover no-repeat;
  opacity: .18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.blog-cat {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: #8a6d2f;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .2rem .6rem;
  border-radius: 50px;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: .6rem; }
.blog-card-body h3 a { color: var(--navy); transition: color var(--trans); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .87rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
}
.read-more svg { width: 14px; height: 14px; fill: currentColor; transition: transform var(--trans); }
.read-more:hover svg { transform: translateX(3px); }

/* ── Article page ── */
.article-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  color: var(--white);
}
.article-hero h1 { color: var(--white); max-width: 820px; margin-bottom: .75rem; }
.article-hero .meta { font-size: .85rem; color: rgba(255,255,255,.65); display: flex; gap: 1rem; flex-wrap: wrap; }
.article-hero .meta span { display: flex; align-items: center; gap: .35rem; }
.article-hero .meta svg { width: 14px; height: 14px; fill: var(--gold); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 60px 0;
  align-items: start;
}
.article-body { max-width: 820px; }
.article-body h2 { margin: 2rem 0 .75rem; }
.article-body h3 { margin: 1.5rem 0 .6rem; }
.article-body p { font-size: .97rem; color: #3d3d3d; }
.article-body ul,
.article-body ol { margin: .75rem 0 1.25rem 1.5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: .95rem; color: #3d3d3d; margin-bottom: .4rem; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--light-bg);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--muted);
}
.article-body .article-img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  width: 100%;
  height: auto;
}
.article-body .call-out {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.article-body .call-out h4 { color: var(--gold); margin-bottom: .5rem; }
.article-body .call-out p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }

/* ── Eye-catching Checklist Box ── */
.checklist-box {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,31,68,.18);
  border: 1.5px solid var(--gold);
}
.checklist-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 1.5rem;
  letter-spacing: .02em;
}
.checklist-header svg {
  width: 22px; height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
}
.checklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}
.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1.5rem;
  font-size: .97rem;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid #eef1f7;
  transition: background .18s;
}
.checklist-items li:last-child { border-bottom: none; }
.checklist-items li:hover { background: #f4f7ff; }
.chk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 800;
  border-radius: 50%;
  margin-top: .05rem;
}

.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.sidebar-widget h4 { font-size: .95rem; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold); }
.sidebar-widget ul li a { font-size: .85rem; color: var(--navy); display: block; padding: .35rem 0; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li a:hover { color: var(--gold); }
.sidebar-widget ul li:last-child a { border-bottom: none; }

/* ── Map placeholder ── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

/* ── Areas grid ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  transition: all var(--trans);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.area-chip:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.area-chip svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Survey Level Comparison ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: .9rem 1.25rem;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: var(--light-bg); }
.comparison-table tr:nth-child(odd) { background: var(--white); }
.check { color: #16a34a; font-size: 1rem; }
.cross { color: #dc2626; font-size: 1rem; }

/* ── Scroll 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 .7s ease;
}
.fade-in.visible { opacity: 1; }

/* ── Scroll-to-top ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans);
  z-index: 999;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold); color: var(--navy); }
#scrollTop svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  font-size: .85rem;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner a { color: var(--gold); }
#cookie-banner .btn { padding: .5rem 1.25rem; font-size: .82rem; }

/* ── Progress bar ── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2000;
  width: 0%;
  transition: width .1s linear;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-box { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  .nav-cta.open { display: block; padding: 0 1.5rem 1.5rem; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { font-size: .78rem; }
  .hero-btns { flex-direction: column; }
}
