/* ============================================================
   Bradford Shipley Surveyors – Main Stylesheet
   bradfordshipleysurveyors.com
   ============================================================ */

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

:root {
  --navy:      #1a2b4a;
  --navy-dark: #0f1c31;
  --gold:      #c8952a;
  --gold-lt:   #e8b84b;
  --cream:     #f8f5ef;
  --white:     #ffffff;
  --grey-lt:   #f2f2f2;
  --grey-mid:  #6b7280;
  --grey-dk:   #374151;
  --text:      #1f2937;
  --border:    #e5e7eb;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: .3s ease;
}

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); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1.1em; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.lead { font-size: 1.15rem; color: var(--grey-dk); line-height: 1.8; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.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; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,42,.35);
}
.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);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Header / Navigation ──────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,43,74,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,149,42,.25);
  transition: all var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.logo-text span {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
nav.main-nav a {
  display: block;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-lt);
  background: rgba(200,149,42,.12);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  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: 70px;
}

/* ── Hero Slider ──────────────────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Slider dot navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .7rem;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.slider-dot.active,
.slider-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Slide caption bar */
.hero-slide-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .5s ease;
}

/* Keep old video-bg class for fallback compatibility */
.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;
  background: linear-gradient(
    125deg,
    rgba(10,20,40,.92) 0%,
    rgba(15,28,49,.82) 40%,
    rgba(20,38,65,.65) 70%,
    rgba(10,20,40,.55) 100%
  );
  z-index: 1;
}

/* Animated property particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(200,149,42,.5);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 0;
}
.hero-content .container-wide {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  padding: 5px 0 60px;
}
.hero-text { color: var(--white); padding-left: 0; margin-left: -1rem; }
.hero-text .section-label { color: var(--gold-lt); }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-text p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(200,149,42,.4);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-lt);
  backdrop-filter: blur(4px);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }

/* Hero Form Panel */
.hero-form-panel {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hero-form-panel h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.hero-form-panel p { font-size: .9rem; color: var(--grey-mid); margin-bottom: 1.2rem; }

.form-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--grey-mid);
  font-weight: 500;
}
.trust-badge svg, .trust-badge i { color: var(--gold); font-size: .85rem; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator span { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,149,42,.8), transparent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 1.2rem 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ── Services Cards ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.service-card-body { padding: 1.5rem; flex: 1; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card-body p { font-size: .9rem; color: var(--grey-mid); margin-bottom: 1rem; }
.service-level-badge {
  display: inline-block;
  padding: .25rem .7rem;
  background: var(--cream);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .75rem;
}
.service-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-price { font-weight: 700; color: var(--navy); font-size: 1rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
}
.service-link:hover { color: var(--navy); }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-text h4 { font-size: 1rem; margin-bottom: .3rem; }
.why-text p  { font-size: .88rem; color: var(--grey-mid); margin: 0; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: .5rem;
  left: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.stars { color: #f59e0b; margin-bottom: .75rem; font-size: 1rem; }
.testimonial-text { font-style: italic; color: var(--grey-dk); margin-bottom: 1.2rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .95rem; color: var(--navy); }
.author-info span   { font-size: .82rem; color: var(--grey-mid); }

/* Review source badge */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--grey-mid);
  margin-top: .5rem;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.process-step h4 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p  { font-size: .85rem; color: var(--grey-mid); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-icon { transition: transform var(--transition); font-size: 1.2rem; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
  background: var(--cream);
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 1.2rem 1.5rem; font-size: .95rem; line-height: 1.8; color: var(--grey-dk); }

/* ── Team Cards ───────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-body { padding: 1.5rem; }
.team-body h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.team-role { color: var(--gold); font-size: .9rem; font-weight: 600; margin-bottom: .75rem; }
.team-body p { font-size: .9rem; color: var(--grey-mid); }

/* ── Areas Grid ───────────────────────────────────────────── */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.area-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.area-card:hover * { color: var(--white) !important; }
.area-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.area-name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.area-type { font-size: .78rem; color: var(--grey-mid); }

/* ── Map Section ──────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
  border: 3px solid var(--gold);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #243e6b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,149,42,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .25rem .75rem;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-card-body { padding: 1.5rem; flex: 1; }
.blog-meta { font-size: .8rem; color: var(--grey-mid); margin-bottom: .75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body p  { font-size: .88rem; color: var(--grey-mid); }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── Blog Article Page ────────────────────────────────────── */
.article-hero {
  height: 480px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,28,49,.3) 0%, rgba(15,28,49,.8) 100%);
}
.article-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
}
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.article-content h2 { margin-top: 2em; margin-bottom: .5em; }
.article-content h3 { margin-top: 1.5em; }
.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2em;
  list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .4em; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 1.5em 0;
  color: var(--grey-dk);
}
.article-content .highlight-box {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2em 0;
}
.article-content .highlight-box h4 { color: var(--gold-lt); }
.article-content .highlight-box p { margin: 0; color: rgba(255,255,255,.85); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .85rem;
  color: var(--grey-mid);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 .35rem; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-alt::before { background: var(--cream); }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero .lead { color: rgba(255,255,255,.8); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-section {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: .5rem; }
.contact-info p { color: var(--grey-mid); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--navy); font-size: .9rem; }
.contact-detail-text span { font-size: .88rem; color: var(--grey-mid); }

.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-panel h3 { margin-bottom: .5rem; }
.form-panel > p { font-size: .9rem; color: var(--grey-mid); margin-bottom: 1.5rem; }

/* ── HubSpot Form Overrides ───────────────────────────────── */
.hs-form-frame { width: 100% !important; border: none !important; }
.hbspt-form .hs-form-field { margin-bottom: 1rem; }
.hbspt-form label { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; display: block; }
.hbspt-form input,
.hbspt-form textarea,
.hbspt-form select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.hbspt-form input:focus,
.hbspt-form textarea:focus { outline: none; border-color: var(--gold); }
.hbspt-form .hs-button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.hbspt-form .hs-button:hover { background: var(--gold-lt); }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin: 1rem 0; }
.footer-logo { margin-bottom: .5rem; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-certifications { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .75rem; }
.cert-badge {
  padding: .3rem .75rem;
  background: rgba(200,149,42,.15);
  border: 1px solid rgba(200,149,42,.3);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-lt);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ── Animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.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; }

/* Counter animation */
.count-up { display: inline-block; }

/* ── Sticky CTA Bar ───────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: .85rem 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-cta.visible { transform: none; }
.sticky-cta p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.sticky-cta-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 1.2rem;
  padding: .25rem;
}

/* ── Accreditation Strip ──────────────────────────────────── */
.accred-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accred-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.accred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.accred-logo {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.02em;
}
.accred-name { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-mid); font-weight: 600; }

/* ── Survey Comparison Visual ─────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: .9rem 1rem;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table .check { color: #16a34a; font-size: 1.1rem; }
.comparison-table .cross { color: #dc2626; font-size: 1.1rem; }
.comparison-table .highlight-col { background: rgba(200,149,42,.08) !important; font-weight: 600; }

/* ── Parallax Image Section ───────────────────────────────── */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: 0;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,28,49,.75);
  z-index: 1;
}
.parallax-content { position: relative; z-index: 2; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
}
.timeline-item { position: relative; padding-bottom: 2rem; padding-left: 1.5rem; }
.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: .2rem;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-date { font-size: .8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }
.timeline-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: .35rem; }
.timeline-text { font-size: .9rem; color: var(--grey-mid); }

/* ══════════════════════════════════════════════════════════════
   GLOBAL MOBILE BASE FIXES
   ══════════════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }
@media (max-width: 600px) {
  table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ── Responsive ───────────────────────────────────────────── */

/* ── 1200px – Large Laptops ─────────────────────────────── */
@media (max-width: 1200px) {
  .container-wide { padding: 0 2rem; }
}

/* ── 1100px – Small Laptops ─────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

/* ── 968px – Tablets Landscape / Small Laptops ──────────── */
@media (max-width: 968px) {
  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-text { order: 1; text-align: center; }
  .hero-form-panel { order: 2; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-badges { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

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

  /* Blog grid */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Article layout */
  .article-layout { grid-template-columns: 1fr !important; }
  .article-sidebar { position: static !important; }

  /* Survey tabs wrap */
  .survey-tabs { gap: .5rem; }
  .survey-tab { font-size: .82rem; padding: .55rem 1rem; }
}

/* ── 900px ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { order: 1; }
  .hero-form-panel { max-width: 560px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── 768px – Tablets Portrait / Mobile Landscape ─────────── */
@media (max-width: 768px) {
  /* Typography scale */
  html { font-size: 15px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* Navigation */
  nav.main-nav { display: none; }
  nav.main-nav.open {
    display: block;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--navy-dark);
    padding: 1.5rem 1rem;
    overflow-y: auto;
    z-index: 999;
    animation: slideDown .25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  nav.main-nav.open ul {
    flex-direction: column;
    gap: .25rem;
  }
  nav.main-nav.open a {
    font-size: 1.05rem;
    padding: .9rem 1.25rem;
    border-radius: 8px;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  nav.main-nav.open li.nav-cta { display: block; margin-top: 1rem; }
  nav.main-nav.open li.nav-cta a {
    background: var(--gold);
    color: #fff;
    justify-content: center;
    border-radius: 30px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: .5rem;
  }
  .hamburger span { width: 26px; height: 3px; }
  .nav-cta { display: none; }

  /* Overlay when nav open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    top: 68px;
    background: rgba(0,0,0,.45);
    z-index: 998;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid { padding: 2rem 0 3rem; }
  .hero-text h1 { font-size: 1.85rem; }
  .hero-text .lead { font-size: 1rem; }
  .hero-video-bg video { display: none; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: 1rem; }

  /* Containers */
  .container { padding: 0 1.25rem; }
  .container-wide { padding: 0 1.25rem; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Stats */
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

  /* Trust bar */
  .trust-bar-inner { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 1rem 1.25rem; font-size: .95rem; }
  .faq-answer { padding: .75rem 1.25rem; }

  /* Feature grid */
  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA section */
  .cta-section { padding: 3rem 1.5rem; border-radius: 12px; }
  .cta-section h2 { font-size: 1.5rem; }

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

  /* Contact page */
  .contact-info { order: 2; }
  .contact-form-panel { order: 1; }

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

  /* Service items */
  .service-item { padding: 1.5rem; }
}

/* ── 600px – Mobile Landscape / Small Phones ─────────────── */
@media (max-width: 600px) {
  /* Hero */
  .hero-text h1 { font-size: 1.55rem; }
  .hero-text .lead { font-size: .95rem; }
  .hero-grid { padding: 1.5rem 0 2.5rem; }
  .hero-form-panel { padding: 1.5rem; margin: 0; }
  .hero-form-panel h3 { font-size: 1.1rem; }
  .hero-badges {
    justify-content: center;
    gap: .4rem;
  }
  .badge { font-size: .72rem; padding: .35rem .7rem; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Buttons */
  .hero-buttons { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; min-height: 44px; }
  .btn { min-height: 44px; }

  /* Sections */
  .section { padding: 50px 0; }
  .container { padding: 0 1rem; }
  .container-wide { padding: 0 1rem; }

  /* Section headers */
  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: .95rem; }

  /* Service items */
  .service-item { padding: 1.25rem; }
  .service-icon { font-size: 2rem; }
  .service-item h3 { font-size: 1.05rem; }

  /* Blog cards */
  .blog-title { font-size: 1.05rem; }
  .blog-card { margin-bottom: .75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { text-align: center; }
  .footer-certifications { justify-content: center; }
  .footer-heading { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: .5rem; }

  /* FAQ */
  .faq-item { margin-bottom: .6rem; }
  .faq-question { padding: .85rem 1rem; font-size: .9rem; line-height: 1.4; }
  .faq-toggle { font-size: 1.1rem; }
  .faq-answer { padding: .65rem 1rem; }

  /* CTA */
  .cta-section { padding: 2rem 1rem; margin: 0 .5rem; border-radius: 10px; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: .95rem; margin-bottom: 1.25rem; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feature-item { padding: 1rem; }

  /* Contact form */
  .contact-form-wrapper { padding: 1.25rem; margin: 0; }

  /* HubSpot form overrides */
  .hs-form-field { margin-bottom: .75rem !important; }
  .hs-input {
    padding: .65rem !important;
    font-size: 16px !important;
    border-radius: 6px !important;
  }
  .hs-button {
    width: 100% !important;
    padding: .8rem !important;
    font-size: 1rem !important;
    min-height: 44px !important;
  }
  .hs-form-field label { font-size: .88rem !important; }

  /* Stats */
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: .7rem; }

  /* Testimonial */
  .testimonial-card { padding: 1.25rem; }

  /* Areas */
  .area-card { padding: 1.25rem; }

  /* Process */
  .process-step { padding: 1.25rem; }

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

/* ── 480px – Small Phones (iPhone SE etc.) ───────────────── */
@media (max-width: 480px) {
  /* Typography */
  html { font-size: 14px; }
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p { font-size: .95rem; line-height: 1.65; }

  /* Hero */
  .hero-text h1 { font-size: 1.35rem !important; }
  .hero-form-panel h3 { font-size: 1rem; }

  /* Grids */
  .grid-4 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }

  /* Feature items */
  .feature-item { text-align: center; }
  .feature-icon { font-size: 2rem; margin-bottom: .5rem; }

  /* Stats */
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: .65rem; }

  /* Accreditation */
  .accred-items { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .accred-item { padding: .75rem 1rem; }

  /* Logo text on mobile */
  .logo-text strong { font-size: .88rem; }
  .logo-text span { font-size: .65rem; }
  .logo-icon { width: 38px; height: 38px; font-size: 1.2rem; }

  /* Area cards */
  .area-card { padding: 1rem; }
  .area-card h3 { font-size: 1rem; }

  /* Blog article */
  .blog-article h1 { font-size: 1.5rem; }
  .blog-article h2 { font-size: 1.25rem; }
  .blog-article { padding: 1rem; }

  /* Buttons full width on smallest screens */
  .btn-primary, .btn-secondary, .btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin: .4rem 0;
  }
  .cta-buttons .btn,
  .hero-buttons .btn { max-width: 100%; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; gap: .75rem; padding: 1rem; }
  .cookie-banner-btns { width: 100%; justify-content: stretch; }
  .cookie-banner-btns .btn { flex: 1; }
}

/* ── Utility: Skip to content ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: .5rem 1rem;
  z-index: 9999;
  font-weight: 700;
  transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 1rem 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.cookie-banner p { color: rgba(255,255,255,.8); font-size: .88rem; margin: 0; flex: 1; }
.cookie-banner-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
