/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:         #07172d;
  --navy-mid:     #0e2d50;
  --navy-soft:    #163a65;
  --gold:         #c9922e;
  --gold-bright:  #e8b84b;
  --gold-glow:    rgba(201,146,46,0.35);
  --white:        #ffffff;
  --grey-50:      #f8fafc;
  --grey-100:     #eef3f7;
  --grey-200:     #dbe3ec;
  --text:         #1c2838;
  --muted:        #607083;

  --glass-bg:     rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.28);

  --radius:       10px;
  --radius-lg:    18px;
  --transition:   220ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 560ms cubic-bezier(0.4,0,0.2,1);

  --shadow:       0 24px 60px rgba(7,23,45,0.16);
  --shadow-gold:  0 12px 40px rgba(201,146,46,0.28);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL — base state; .revealed added by JS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.revealed { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.revealed { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }
.delay-6 { transition-delay: 0.72s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 6px 0;
}

.site-header.scrolled {
  background: rgba(7,23,45,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
  padding: 2px 0;
}

.site-header:not(.scrolled) {
  background: transparent;
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #000;
  border-radius: 8px;
  border: 2px solid rgba(201,146,46,0.45);
  box-shadow: 0 0 0 2px rgba(201,146,46,0.4), 0 8px 24px rgba(201,146,46,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 0 0 3px rgba(201,146,46,0.55), 0 12px 32px rgba(201,146,46,0.4);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links li:last-child a {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  padding: 9px 22px;
}

.nav-links li:last-child a::after { display: none; }

.nav-links li:last-child a:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201,146,46,0.4);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO — Corporate Premium Split-Screen
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--white);
}

/* ── Left panel: dark navy ── */
.hero-left {
  position: relative;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 64px;
  overflow: hidden;
  z-index: 1;
}

/* Subtle dot-grid texture on left panel */
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Gold accent bar on the left edge */
.hero-left::after {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-bright), transparent);
  border-radius: 0 4px 4px 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

/* ── Right panel: full-bleed photograph ── */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--navy);
}

/* Dark gradient on left edge of photo (feathers into navy) */
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,23,45,0.55) 0%,
    rgba(7,23,45,0.1) 30%,
    rgba(7,23,45,0.05) 60%,
    rgba(7,23,45,0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Bottom stats bar pinned inside right panel */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7,23,45,0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid rgba(201,146,46,0.3);
}

.hero-stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Typography ── */
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

/* Thin rule separator below h1 */
.hero-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin: 28px 0;
}

.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Pill tag row below buttons */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-tag {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ── Responsive: collapse to single column on small screens ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 120px 28px 60px;
    order: 2;
  }

  .hero-left::after { display: none; }

  .hero-content { max-width: 100%; }

  .hero-right {
    order: 1;
    height: 340px;
  }

  .hero-right::before {
    background: linear-gradient(
      to bottom,
      rgba(7,23,45,0.05) 0%,
      rgba(7,23,45,0.55) 100%
    );
  }

  .hero-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 26px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(201,146,46,0.36);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(201,146,46,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
}

.btn-arrow::after { content: " →"; background: none; position: static; opacity: 1; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -56px;
  padding-bottom: 0;
}

.stats-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(7,23,45,0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--grey-200);
  position: relative;
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: rgba(201,146,46,0.04);
}

.stat-item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-item:hover::after { transform: scaleX(1); }

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }

.section-muted {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--grey-100) 100%);
}

.section-dark {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.section-dark .eyebrow { color: var(--gold-bright); }

.section-dark h2 { color: var(--white); }

.section-dark p { color: rgba(255,255,255,0.72); }

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

/* ============================================================
   FEATURE / ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-img-frame:hover > img,
.about-img-frame:hover > video { transform: scale(1.04); }

.about-dock-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(7,23,45,0.04), rgba(201,146,46,0.12));
  pointer-events: none;
}

/* Floating stat on the image */
.about-img-stat {
  position: absolute;
  bottom: 24px; right: 24px;
  padding: 18px 22px;
  background: rgba(7,23,45,0.88);
  border: 1px solid rgba(201,146,46,0.3);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.about-img-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

.about-img-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.about-content p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.check-points li:hover {
  border-color: rgba(201,146,46,0.4);
  background: rgba(201,146,46,0.04);
  transform: translateX(4px);
}

.check-points li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 0 4px rgba(201,146,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2307172d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   OUR EXPERTISE
   ============================================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.expertise-category {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(7,23,45,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.expertise-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(7,23,45,0.12);
  border-color: rgba(201,146,46,0.3);
}

.expertise-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.expertise-cat-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.expertise-cat-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright), transparent);
}

.expertise-cat-icon {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: rgba(201,146,46,0.18);
  border: 1px solid rgba(201,146,46,0.38);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.expertise-cat-header h3 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.expertise-list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.expertise-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 7px;
  transition: background var(--transition);
}

.expertise-list li:hover {
  background: rgba(201,146,46,0.05);
}

.expertise-tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.expertise-list li > span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMMITMENT CARDS
   ============================================================ */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(7,23,45,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(7,23,45,0.14);
  border-color: rgba(201,146,46,0.3);
}

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

.icon-box {
  width: 56px; height: 56px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201,146,46,0.15), rgba(201,146,46,0.05));
  border: 1px solid rgba(201,146,46,0.3);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-dark, #936616);
}

.feature-card h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.local-seo-section {
  background: var(--white);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: start;
}

.local-seo-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 760px;
  margin-bottom: 22px;
}

.local-seo-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.local-seo-list {
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(7,23,45,0.08);
}

.local-seo-list h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.local-seo-list ul,
.faq-item p {
  margin-bottom: 0;
}

.local-seo-list li {
  margin-bottom: 12px;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(7,23,45,0.08);
}

.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--muted);
}

.service-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(7,23,45,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(7,23,45,0.14);
  border-color: rgba(201,146,46,0.35);
}

.service-card:hover::after { opacity: 1; }

.service-symbol {
  width: 54px; height: 54px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-bright);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(7,23,45,0.2);
}

.service-card h3 {
  margin-top: 18px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  flex-grow: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--gold, #c9922e);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-card a:hover { gap: 10px; }
.service-card a::after { content: "→"; }

/* ============================================================
   WHY US — DARK SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-intro p { margin-top: 18px; }

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}

.why-item:hover {
  background: rgba(201,146,46,0.12);
  border-left-color: var(--gold-bright);
  transform: translateX(4px);
}

.why-item::before {
  content: "✓";
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, #0a2040 50%, var(--navy-mid) 100%);
  color: var(--white);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,146,46,0.2), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(22,58,101,0.7), transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  letter-spacing: -0.02em;
}

.cta-inner .eyebrow { display: block; margin-bottom: 14px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 90px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.8;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,46,0.18), transparent 65%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  max-width: 860px;
  margin-top: 14px;
  letter-spacing: -0.02em;
}

.page-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
}

/* ============================================================
   CONTENT / ABOUT PAGE LAYOUTS
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.content-block h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.content-block p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.info-panel h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding: 10px 14px 10px 38px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.check-list li:hover { border-color: rgba(201,146,46,0.3); }

.check-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   ABOUT PAGE — HERO (split-screen)
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  overflow: hidden;
}

.about-hero-left {
  position: relative;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  overflow: hidden;
}

.about-hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.about-hero-left::after {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-bright), transparent);
  border-radius: 0 4px 4px 0;
}

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

.about-hero-content h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.07;
  margin-top: 16px;
}

.about-hero-content h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.about-hero-rule {
  width: 52px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin: 26px 0;
}

.about-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  max-width: 440px;
}

/* Right photo panel */
.about-hero-right {
  position: relative;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.about-hero-right:hover .about-hero-img { transform: scale(1); }

.about-hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,23,45,0.52) 0%,
    rgba(7,23,45,0.08) 35%,
    rgba(7,23,45,0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Floating quote card on the photo */
.about-hero-quote {
  position: absolute;
  bottom: 36px; left: 32px; right: 32px;
  z-index: 2;
  padding: 22px 24px;
  background: rgba(7,23,45,0.82);
  border: 1px solid rgba(201,146,46,0.3);
  border-left: 3px solid var(--gold-bright);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.about-hero-quote p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.65;
}

.about-hero-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PAGE — WHO WE ARE (image + text)
   ============================================================ */
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-who-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-who-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-who-img:hover img { transform: scale(1.04); }

/* Gold corner accent on the image frame */
.about-who-img::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold-bright);
  border-left: 3px solid var(--gold-bright);
  border-radius: 4px 0 0 0;
  z-index: 2;
  opacity: 0.7;
}

.about-who-img::after {
  content: "";
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--gold-bright);
  border-right: 3px solid var(--gold-bright);
  border-radius: 0 0 4px 0;
  z-index: 2;
  opacity: 0.7;
}

.about-who-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.about-who-text p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE — STATS BAND
   ============================================================ */
.about-stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.about-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.about-stats-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,46,0.14), transparent 65%);
  pointer-events: none;
}

.about-stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PAGE — VISION / MISSION / APPROACH CARDS
   ============================================================ */
.vma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vma-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(7,23,45,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.vma-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(7,23,45,0.13);
  border-color: rgba(201,146,46,0.35);
}

.vma-card-top {
  padding: 30px 28px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.vma-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.vma-card-top::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright), transparent);
  opacity: 0.7;
}

.vma-letter {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  background: rgba(201,146,46,0.18);
  border: 1px solid rgba(201,146,46,0.38);
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: 14px;
}

.vma-card-top h2 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.vma-card-body {
  padding: 24px 28px 28px;
  flex-grow: 1;
}

.vma-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE — CLIENTS / WHO WE SERVE ROW
   ============================================================ */
.clients-strip {
  padding: 72px 0;
}

.clients-strip-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.clients-strip-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.clients-strip-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 12px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}

.client-chip:hover {
  border-color: rgba(201,146,46,0.4);
  background: rgba(201,146,46,0.04);
  transform: translateY(-4px);
}

.client-chip-icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.client-chip span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-left { padding: 120px 32px 56px; }
  .about-hero-left::after { display: none; }
  .about-hero-right { height: 380px; }
  .about-hero-right::before {
    background: linear-gradient(to bottom, rgba(7,23,45,0.05), rgba(7,23,45,0.52));
  }
  .about-who-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .vma-grid { grid-template-columns: 1fr 1fr; }
  .clients-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .about-hero-left { padding: 100px 24px 48px; }
  .about-hero-content h1 { font-size: 2.2rem; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .vma-grid { grid-template-columns: 1fr; }
  .clients-row { grid-template-columns: repeat(2, 1fr); }
  .about-who-img img { height: 280px; }
  .about-who-img::before,
  .about-who-img::after { display: none; }
}

/* ============================================================
   SERVICES PAGE — HERO (split-screen, matching homepage)
   ============================================================ */
.services-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  overflow: hidden;
}

/* Left panel */
.services-hero-left {
  position: relative;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  overflow: hidden;
}

.services-hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.services-hero-left::after {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-bright), transparent);
  border-radius: 0 4px 4px 0;
}

/* Right panel: full photo */
.services-hero-right {
  position: relative;
  overflow: hidden;
}

.services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.services-hero-right:hover .services-hero-img { transform: scale(1); }

.services-hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,23,45,0.52) 0%,
    rgba(7,23,45,0.08) 35%,
    rgba(7,23,45,0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Overlaid service-count badge on the photo */
.services-hero-badge {
  position: absolute;
  top: 36px; right: 36px;
  z-index: 2;
  text-align: center;
  padding: 22px 28px;
  background: rgba(7,23,45,0.78);
  border: 1px solid rgba(201,146,46,0.35);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.services-hero-badge strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-hero-badge span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Service-list preview pills on the photo */
.services-hero-pills {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-hero-pill {
  padding: 6px 14px;
  background: rgba(7,23,45,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

/* Hero text pieces (reuse existing .eyebrow, h1, etc.) */
.services-hero-content { position: relative; z-index: 1; }

.services-hero-content h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.07;
  margin-top: 16px;
}

.services-hero-content h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.services-hero-rule {
  width: 52px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin: 26px 0;
}

.services-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  max-width: 440px;
}

/* ============================================================
   SERVICES PAGE — PROCESS STRIP
   ============================================================ */
.process-strip {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.process-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.process-strip-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.process-strip-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright), var(--gold));
  opacity: 0.35;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.process-num {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201,146,46,0.12);
  border: 2px solid rgba(201,146,46,0.4);
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.process-step:hover .process-num {
  background: rgba(201,146,46,0.22);
  border-color: var(--gold-bright);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SERVICES PAGE — TWO-COLUMN CARD GRID
   ============================================================ */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sp-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(7,23,45,0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(7,23,45,0.13);
  border-color: rgba(201,146,46,0.35);
}

/* Coloured header band */
.sp-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture inside header */
.sp-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Gold accent stripe at bottom of header */
.sp-card-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright), transparent);
  opacity: 0.7;
}

.sp-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(201,146,46,0.18);
  border: 1px solid rgba(201,146,46,0.38);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.sp-card-title {
  position: relative;
  z-index: 1;
}

.sp-card-title h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.sp-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

/* Body */
.sp-card-body {
  padding: 24px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-card-body > p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.sp-card-body .check-list { margin: 0; }

.sp-card-body .check-list li {
  font-size: 0.9rem;
  padding: 9px 13px 9px 36px;
}

.sp-card-body .check-list li::before {
  width: 12px; height: 12px;
  left: 10px;
}

/* Note callout (used on card 7) */
.sp-note {
  margin-top: auto;
  padding: 12px 16px;
  background: rgba(201,146,46,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Card 7 spans full width */
.sp-card--full {
  grid-column: 1 / -1;
  flex-direction: row;
}

.sp-card--full .sp-card-header {
  flex-direction: column;
  align-items: flex-start;
  width: 280px;
  flex-shrink: 0;
  padding: 32px 28px;
  border-radius: 0;
}

.sp-card--full .sp-card-body {
  border-top: none;
  padding: 32px 32px;
}

/* Note (old .note) */
.note {
  padding: 14px 18px;
  background: rgba(201,146,46,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 16px;
}

/* ============================================================
   SERVICES DETAIL PAGE (kept for fallback, scoped to old class)
   ============================================================ */
.service-detail-list { display: grid; gap: 24px; }

.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(7,23,45,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-bright));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(7,23,45,0.12);
  border-color: rgba(201,146,46,0.3);
}

.service-detail:hover::before { transform: scaleY(1); }

.service-index {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-bright);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(7,23,45,0.2);
}

.service-detail h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.service-detail p { color: var(--muted); margin-top: 8px; }

.note {
  padding: 14px 18px;
  background: rgba(201,146,46,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-details,
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-details h2,
.contact-form h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.detail-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-200);
}

.detail-item span,
label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-item strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-weight: 700;
}

.map-placeholder {
  min-height: 200px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.map-placeholder span { color: var(--navy); font-weight: 700; }
.map-placeholder p { margin: 6px 0 0; color: var(--muted); }

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.form-row { margin-bottom: 18px; }

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--grey-200);
  border-radius: 7px;
  background: var(--grey-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,146,46,0.14);
  background: var(--white);
}

.error-message {
  min-height: 18px;
  display: block;
  margin-top: 4px;
  color: #b42318;
  font-size: 0.82rem;
}

.form-status {
  margin: 16px 0 0;
  color: var(--gold, #c9922e);
  font-weight: 700;
}

/* ============================================================
   TEXT LINK
   ============================================================ */
.text-link {
  color: var(--gold, #c9922e);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid currentColor;
  transition: opacity var(--transition);
}

.text-link:hover { opacity: 0.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #07172d 0%, #040f1e 100%);
  color: rgba(255,255,255,0.68);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,46,0.08), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer p { font-size: 0.94rem; line-height: 1.7; }

.site-footer h3 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer li { margin-bottom: 10px; }

.site-footer a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  font-size: 0.94rem;
}

.site-footer a:hover { color: var(--gold-bright); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p { margin: 0; font-size: 0.88rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .why-grid,
  .local-seo-grid,
  .faq-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .commitment-grid,
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner { flex-direction: column; align-items: flex-start; }

  /* Services page */
  .services-hero,
  .services-hero { grid-template-columns: 1fr; }

  .services-hero-left { padding: 120px 32px 56px; }
  .services-hero-left::after { display: none; }
  .services-hero-right { height: 380px; }
  .services-hero-right::before {
    background: linear-gradient(to bottom, rgba(7,23,45,0.05), rgba(7,23,45,0.52));
  }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }

  .services-page-grid { grid-template-columns: 1fr; }
  .sp-card--full { flex-direction: column; }
  .sp-card--full .sp-card-header { width: 100%; border-radius: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1160px); }

  .menu-toggle { display: block; }

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

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(7,23,45,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    backdrop-filter: blur(24px);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a { color: rgba(255,255,255,0.82); padding: 13px 16px; }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
  }

  .nav-links li:last-child a {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  }

  .section { padding: 64px 0; }

  .commitment-grid,
  .services-grid,
  .local-seo-grid,
  .faq-grid,
  .values-grid,
  .why-list,
  .footer-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .split-heading { flex-direction: column; align-items: flex-start; }

  .service-detail { grid-template-columns: 1fr; gap: 18px; }

  .about-img-frame img,
  .about-dock-video { height: 280px; }

  .section-heading h2 { font-size: 1.9rem; }

  /* Services page */
  .services-hero-left { padding: 100px 24px 48px; }
  .services-hero-content h1 { font-size: 2.2rem; }
  .services-hero-badge { top: 20px; right: 20px; padding: 16px 20px; }
  .services-hero-badge strong { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-page-grid { gap: 20px; }
}

@media (max-width: 480px) {
  .btn { min-width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .process-steps { grid-template-columns: 1fr; }
  .services-hero-pills { display: none; }
}
