:root {
  --navy:        #2A4C7C;
  --navy-dark:   #1e3758;
  --navy-light:  #3a5f96;
  --orange:      #ff6310;
  --gold:        #e19c19;
  --gold-light:  #f0b430;
  --white:       #ffffff;
  --off-white:   #F4F5F6;
  --light-grey:  #E9EBEC;
  --mid-grey:    #687279;
  --dark:        #111518;
  --text:        #333;
  --border:      #dde3ec;
  --star:        #f5a623;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--gold); }

/* NAV */
/* Two-row header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: top 0.32s ease;
}
.header-top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-top-logos img {
  height: 40px;
  width: auto;
  display: block;
}
.site-nav {
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(140deg, rgba(30,55,88,0.93) 0%, rgba(42,76,124,0.9) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.18;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 1;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.78;
}

/* TRUST BAR */
.trust-bar { background: var(--navy-dark); padding: 1.1rem 2rem; }
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.78); font-size: 0.83rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #e5500a; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.38); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--off-white); color: var(--orange); }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.section-header h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.section-header p { color: var(--mid-grey); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* CARDS */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { border-top-color: var(--gold); box-shadow: 0 4px 20px rgba(42,76,124,0.1); transform: translateY(-2px); }
.service-card-img {
  width: 100%;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.service-card-caption {
  font-size: 0.72rem;
  color: var(--mid-grey);
  font-style: italic;
  margin-top: 0.3rem;
  display: block;
}
.service-card-body { padding: 1.2rem 1.2rem 1.4rem; flex: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-icon { background: var(--navy); color: var(--gold); }
.service-card h3 { font-family: 'Roboto Slab', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.service-card p { font-size: 0.86rem; color: var(--mid-grey); line-height: 1.7; margin-bottom: 1rem; }
.service-card-link { font-size: 0.82rem; font-weight: 700; color: var(--orange); letter-spacing: 0.04em; text-transform: uppercase; }
.service-card-link:hover { color: var(--navy); }

/* SPLIT LAYOUT */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-copy h2 { font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; line-height: 1.25; }
.split-copy p { color: var(--mid-grey); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.split-copy .btn { margin-top: 0.5rem; }
.check-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.91rem; color: var(--text); margin-bottom: 0.65rem; font-weight: 500; }
.check-list li::before {
  content: '✓';
  background: var(--navy);
  color: var(--gold);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-img { width: 100%; height: 420px; object-fit: cover; border-radius: 2px; }

/* PHOTO GRID */
.photo-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.photo-grid-2 img { width: 100%; height: 200px; object-fit: cover; transition: opacity 0.2s; }
.photo-grid-2 img:hover { opacity: 0.88; }

/* STAT ROW */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin: 2rem 0; }
.stat-cell { background: var(--white); padding: 1.5rem; text-align: center; }
.stat-cell .num { font-family: 'Roboto Slab', serif; font-size: 2rem; font-weight: 700; color: var(--navy); display: block; line-height: 1; margin-bottom: 0.3rem; }
.stat-cell .lbl { font-size: 0.76rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: steps; }
.step { position: relative; padding-top: 1rem; }
.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.step h3 { font-family: 'Roboto Slab', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.84rem; color: var(--mid-grey); line-height: 1.7; }

/* INFO BOX */
.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem;
  border-radius: 0 2px 2px 0;
  margin: 2rem 0;
}
.info-box h4 { font-family: 'Roboto Slab', serif; color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.info-box p { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.7; margin: 0; }

/* REVIEWS */
.reviews-section { background: var(--navy); }
.reviews-section .section-eyebrow { color: var(--gold); }
.reviews-section .section-header h2 { color: var(--white); }
.reviews-section .section-header p { color: rgba(255,255,255,0.62); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.1); }
.review-stars { color: var(--star); font-size: 0.95rem; margin-bottom: 0.8rem; }
.review-text { font-size: 0.87rem; color: rgba(255,255,255,0.78); font-style: italic; line-height: 1.75; margin-bottom: 1.2rem; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.review-when { font-size: 0.74rem; color: rgba(255,255,255,0.42); margin-top: 0.1rem; }

/* BRANDS */
.brands-section { background: var(--light-grey); padding: 2.8rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; margin-top: 1.5rem; }
.brand-item img { height: 52px; width: auto; object-fit: contain; filter: grayscale(30%); opacity: 0.85; transition: filter 0.2s, opacity 0.2s; display: block; }
.brand-item img:hover { filter: grayscale(0%); opacity: 1; }
.brands-inner { max-width: 1200px; margin: 0 auto; }
.brands-label { text-align: center; font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mid-grey); font-weight: 600; margin-bottom: 1.6rem; }
.brands-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.brand-logo { height: 36px; width: auto; opacity: 0.55; filter: grayscale(100%); transition: opacity 0.2s, filter 0.2s; display: block; }
.brand-logo:hover { opacity: 1; filter: grayscale(0%); }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--orange) 0%, #d4480a 100%); padding: 5rem 2rem; text-align: center; }
.cta-section h2 { font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.cta-section > p { color: rgba(255,255,255,0.88); font-size: 1.05rem; font-weight: 300; max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-phone { font-family: 'Roboto Slab', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 0.3rem; text-decoration: none; }
.cta-phone:hover { opacity: 0.88; color: var(--white); }
.cta-contact-label { font-size: 0.82rem; color: rgba(255,255,255,0.68); margin-bottom: 1.5rem; display: block; }
.cta-or { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 1rem 0; display: block; text-transform: uppercase; letter-spacing: 0.1em; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-details h2 { font-family: 'Roboto Slab', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-details p { color: var(--mid-grey); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item-text h4 { font-family: 'Roboto Slab', serif; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-text p, .contact-item-text a { font-size: 0.88rem; color: var(--mid-grey); }
.contact-item-text a { color: var(--orange); font-weight: 500; }
.contact-form { background: var(--off-white); border: 1px solid var(--border); padding: 2.5rem; border-radius: 2px; }
.contact-form h3 { font-family: 'Roboto Slab', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; background: var(--orange); color: var(--white); border: none; border-radius: 2px; font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: #e5500a; }

/* FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.68); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.footer-brand h3 { font-family: 'Roboto Slab', serif; color: var(--white); font-size: 1.05rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.84rem; }
.footer-col ul li a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.84rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold); font-weight: 500; }
.footer-bottom { font-size: 0.76rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.accred-pill { background: rgba(225,156,25,0.18); border: 1px solid rgba(225,156,25,0.38); color: var(--gold); font-size: 0.7rem; padding: 0.2rem 0.6rem; letter-spacing: 0.06em; font-weight: 600; text-transform: uppercase; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-grid.reverse { direction: ltr; }
  .split-img { height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .photo-grid-2 img { height: 160px; }
}
/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0 1rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.nav-drawer a.nav-cta { background: var(--gold); color: var(--dark); font-weight: 700; margin: 0.8rem 1.5rem 0; border-radius: 2px; border: none; text-align: center; }

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .header-top-logos img { height: 30px; }
  .services-grid, .reviews-grid, .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar-inner { gap: 1.2rem; }
  .cta-phone { font-size: 1.9rem; }
  .brands-row { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
