/* VELS ELITE TRANSPORTATION LLC */

:root {
  --navy: #0f2d52;
  --navy-dark: #091e38;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --gray-100: #eceae5;
  --gray-300: #b8b4ab;
  --gray-600: #5c5a55;
  --text: #1e1e1c;
  --max-width: 1120px;
  --header-height: 112px;
  --logo-header-height: 96px;
  --logo-footer-height: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 16px rgba(15, 45, 82, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 45, 82, 0.12);
  --shadow-lg: 0 20px 48px rgba(15, 45, 82, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p + p {
  margin-top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-height);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.logo-link img {
  height: var(--logo-header-height);
  width: auto;
  max-width: min(340px, 58vw);
}

.logo-link:hover {
  opacity: 1;
  transform: scale(1.03);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.main-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover span {
  background: var(--gold);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9, 30, 56, 0.88) 0%, rgba(15, 45, 82, 0.6) 55%, rgba(15, 45, 82, 0.4) 100%),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80") center / cover no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: flex-end;
  padding: 5rem 0 4rem;
}

.hero-content {
  max-width: 640px;
}

.hero-content > * {
  animation: fadeUp 0.85s var(--ease-out) both;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.25rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation-delay: 0.05s;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation-delay: 0.12s;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  animation-delay: 0.28s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation-delay: 0.44s;
}

.hero-aside {
  animation: fadeUp 0.85s var(--ease-out) 0.55s both;
}

.hero-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.hero-contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.hero-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-contact-card strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
}

.hero-contact-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Homepage */

.home-trust {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-trust-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.home-trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.home-trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--navy);
  margin-bottom: 0.35rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.home-trust-icon svg {
  width: 18px;
  height: 18px;
}

.home-trust-card:hover .home-trust-icon {
  background: var(--navy);
  color: var(--gold);
}

.home-trust-card strong {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.home-trust-card span:last-child {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.home-intro {
  padding: 2.5rem 0 1rem;
}

.home-intro-text {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.home-services {
  padding: 4rem 0 5rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.home-service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  color: var(--text);
}

.home-service-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  transition: color 0.35s ease;
}

.home-service-card:hover .home-service-num {
  color: rgba(201, 162, 39, 0.25);
}

.home-service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.home-service-icon svg {
  width: 32px;
  height: 32px;
}

.home-service-card:hover .home-service-icon {
  transform: scale(1.1) rotate(-4deg);
  color: var(--navy);
}

.home-service-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.home-service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex-grow: 1;
}

.home-service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.home-service-card:hover .home-service-link {
  color: var(--gold);
  transform: translateX(4px);
}

.home-services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.home-about {
  padding: 5rem 0;
}

.home-about-grid,
.home-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.home-about-content p,
.home-coverage-content p {
  color: var(--gray-600);
}

.home-about-content .btn,
.home-coverage-content .btn {
  margin-top: 1.75rem;
}

.home-why {
  padding: 5rem 0;
}

.home-why .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease-out);
}

.home-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-6px);
}

.home-why-num {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: transform 0.35s var(--ease-out), color 0.3s ease;
}

.home-why-card:hover .home-why-num {
  transform: scale(1.12);
  color: var(--gold-light);
}

.home-why-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.home-why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.home-coverage {
  padding: 5rem 0;
}

.home-cta {
  background: var(--navy);
  padding: 4rem 0;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.home-cta-content h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.home-cta-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.home-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.home-cta-phone {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.home-cta-phone:hover {
  color: var(--gold-light);
  transform: translateX(-4px);
}

.home-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
}

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

/* Sections */

section {
  padding: 5rem 0;
}

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

.section-header {
  margin-bottom: 3rem;
  max-width: 560px;
}

.section-header p {
  color: var(--gray-600);
  margin-top: 0.75rem;
}

.bg-off-white {
  background: var(--off-white);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

/* Intro strip */

.intro-strip {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.intro-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-strip p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.stat-row {
  display: flex;
  gap: 2.5rem;
}

.stat {
  transition: transform 0.35s var(--ease-out);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  transition: color 0.3s ease;
}

.stat:hover strong {
  color: var(--gold);
}

.stat span {
  font-size: 0.85rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2rem 1.75rem;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.12) rotate(-4deg);
  color: var(--navy);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* Image + text blocks */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-block.reverse .split-image {
  order: -1;
}

.split-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 2px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.split-image:hover img {
  transform: scale(1.07);
}

.split-text p {
  color: var(--gray-600);
}

.split-text .btn {
  margin-top: 1.5rem;
}

/* Why us */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 4px;
  transition:
    background 0.35s ease,
    transform 0.35s var(--ease-out);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.why-item .number {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: transform 0.35s var(--ease-out), color 0.3s ease;
}

.why-item:hover .number {
  transform: scale(1.15);
  color: var(--gold-light);
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* CTA band */

.cta-band {
  text-align: center;
  padding: 4rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

/* Page header (inner pages) */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(201, 162, 39, 0.08) 100%);
  pointer-events: none;
}

.page-hero .container > * {
  animation: fadeUp 0.75s var(--ease-out) both;
}

.page-hero h1 {
  color: var(--white);
  animation-delay: 0.1s;
}

.page-hero p {
  margin-top: 0.75rem;
  opacity: 0.8;
  max-width: 520px;
  animation-delay: 0.22s;
}

/* About page */

.about-main {
  padding: 3rem 0 5rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.about-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.about-fact:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-fact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--navy);
  margin-bottom: 0.35rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.about-fact-icon svg {
  width: 18px;
  height: 18px;
}

.about-fact:hover .about-fact-icon {
  background: var(--navy);
  color: var(--gold);
}

.about-fact strong {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.about-fact span {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-intro-content p {
  color: var(--gray-600);
}

.about-intro-content .btn {
  margin-top: 1.75rem;
}

.about-checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.about-checklist li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.about-checklist li + li {
  margin-top: 0.6rem;
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.about-image-frame:hover img {
  transform: scale(1.06);
}

.about-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-values-section {
  padding: 5rem 0;
}

.section-header-center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2rem 1.75rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.about-value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.about-value-num {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: transform 0.35s var(--ease-out), color 0.3s ease;
}

.about-value-card:hover .about-value-num {
  transform: scale(1.1);
  color: var(--navy);
}

.about-value-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.about-value-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-leadership {
  padding: 5rem 0;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-leader-card {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--navy);
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.about-leader-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.about-leader-card .section-label {
  color: var(--gold);
}

.about-leader-card h2 {
  color: var(--white);
  font-size: 1.85rem;
  margin: 0.25rem 0 0.35rem;
}

.about-leader-role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.about-leader-bio {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.about-leader-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-leader-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.about-leader-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.about-leader-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.about-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.about-brand-panel:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-sm);
}

.about-brand-panel img {
  height: auto;
  max-width: 260px;
  width: 100%;
  margin-bottom: 1.5rem;
}

.about-brand-panel p {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 300px;
  line-height: 1.6;
}

.about-brand-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s ease, gap 0.3s var(--ease-out);
}

.about-brand-link:hover {
  color: var(--gold);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  transition:
    border-color 0.3s ease,
    padding-left 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.value-item:hover {
  padding-left: 1.5rem;
  border-left-color: var(--navy);
  transform: translateX(4px);
}

.value-item h3 {
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .about-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro,
  .about-leadership-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-visual {
    order: -1;
  }
}

@media (max-width: 680px) {
  .about-facts,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */

.contact-main {
  padding: 3rem 0 5rem;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.contact-quick-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--text);
}

.contact-quick-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--navy);
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-quick-icon svg {
  width: 20px;
  height: 20px;
}

.contact-quick-item:hover .contact-quick-icon {
  background: var(--navy);
  color: var(--gold);
}

.contact-quick-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-quick-text strong {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  word-break: break-word;
}

.contact-quick-text span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-panel {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 2.25rem;
  transition:
    box-shadow 0.35s var(--ease-out),
    border-color 0.3s ease;
}

.contact-panel:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 162, 39, 0.3);
}

.contact-director {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.contact-director:hover {
  border-color: var(--gold);
}

.contact-director h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin: 0.25rem 0 0.35rem;
}

.contact-director .section-label {
  color: var(--gold);
}

.contact-role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.contact-panel-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.contact-phone-lg {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.contact-phone-lg:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.contact-inline-link {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.contact-inline-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.contact-license-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  transition: color 0.25s ease, gap 0.3s var(--ease-out);
}

.contact-license-link:hover {
  color: var(--gold);
}

.contact-emails-header {
  margin-bottom: 1.5rem;
}

.contact-emails-header h2 {
  font-size: 1.4rem;
  margin-top: 0.25rem;
}

.email-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.email-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.email-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  color: var(--text);
}

.email-card-dept {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.email-card-address {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}

.email-card:hover .email-card-address {
  color: var(--navy-dark);
}

.contact-map-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.contact-map-header h2 {
  font-size: 1.35rem;
  margin-top: 0.2rem;
}

.contact-map-header p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.map-wrap-lg {
  aspect-ratio: 21 / 9;
  border: none;
  border-radius: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 2.5rem;
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.35);
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-group {
  margin-bottom: 2rem;
}

.contact-group:last-child {
  margin-bottom: 0;
}

.contact-group h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-group p,
.contact-group a {
  font-size: 1rem;
  color: var(--text);
}

.contact-group a {
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
  display: inline-block;
}

.contact-group a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.email-list {
  list-style: none;
}

.email-list li + li {
  margin-top: 0.35rem;
}

.email-list a {
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.email-list a:hover {
  transform: translateX(5px);
}

.map-wrap {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.map-wrap:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.map-wrap-lg:hover {
  transform: none;
  box-shadow: none;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease, gap 0.35s var(--ease-out);
}

.map-link:hover {
  gap: 0.65rem;
}

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

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

  .email-cards {
    grid-template-columns: 1fr;
  }

  .contact-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-wrap-lg {
    aspect-ratio: 16 / 10;
  }
}

/* Services page */

.services-main {
  padding: 3rem 0 4rem;
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.services-overview-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    background 0.3s ease;
}

.services-overview-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--text);
  background: var(--off-white);
}

.services-overview-num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}

.services-overview-card:hover .services-overview-num {
  color: var(--navy);
  transform: scale(1.1);
}

.services-overview-card strong {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.services-overview-card span:last-child {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}

.service-block:hover .service-block-inner {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.35);
}

.service-block-reverse .service-block-visual {
  order: 2;
}

.service-image-frame {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: var(--gray-100);
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.service-block:hover .service-image-frame img {
  transform: scale(1.06);
}

.service-image-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.45rem 0.9rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.75rem;
  position: relative;
}

.service-block-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}

.service-block:hover .service-block-num {
  color: rgba(201, 162, 39, 0.2);
}

.service-block-content h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.service-block-content p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.65;
  position: relative;
}

.service-features {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  position: relative;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.service-features li + li {
  margin-top: 0.55rem;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.service-block-content .btn {
  align-self: flex-start;
  position: relative;
}

.services-process {
  padding: 5rem 0;
}

.services-process .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.services-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}

.services-step {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.35s var(--ease-out);
}

.services-step:hover {
  transform: translateY(-6px);
}

.services-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.35s var(--ease-out);
}

.services-step:hover .services-step-num {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.services-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.services-step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-width: 240px;
  margin-inline: auto;
}

.services-step-connector {
  width: 60px;
  height: 2px;
  background: rgba(201, 162, 39, 0.35);
  margin-top: 3.25rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail .detail-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 2px;
}

.service-detail .detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.service-detail:hover .detail-image img {
  transform: scale(1.05);
}

.service-detail ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  color: var(--gray-600);
}

.service-detail li + li {
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block-inner {
    grid-template-columns: 1fr;
  }

  .service-block-reverse .service-block-visual {
    order: 0;
  }

  .service-image-frame {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .service-block-content {
    padding: 2rem 1.75rem;
  }

  .services-steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .services-step-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .services-overview {
    grid-template-columns: 1fr;
  }
}

/* Footer */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: var(--logo-footer-height);
  width: auto;
  max-width: 300px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
  transition: transform 0.35s var(--ease-out), filter 0.3s ease;
}

.footer-brand:hover img {
  transform: scale(1.04);
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.25s ease, letter-spacing 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

/* Animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }

  .reveal,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip .container,
  .split-block,
  .contact-layout,
  .service-detail,
  .footer-grid,
  .hero-inner,
  .home-about-grid,
  .home-coverage-grid,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 360px;
  }

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

  .home-services-grid {
    grid-template-columns: 1fr;
  }

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

  .home-coverage-visual {
    order: -1;
  }

  .home-cta-actions {
    align-items: flex-start;
  }

  .home-cta-buttons {
    justify-content: flex-start;
  }

  .split-block.reverse .split-image {
    order: 0;
  }

  .stat-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 96px;
    --logo-header-height: 80px;
    --logo-footer-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav.open li {
    animation: navSlideIn 0.4s var(--ease-out) both;
  }

  .main-nav.open li:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.open li:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.open li:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.open li:nth-child(4) { animation-delay: 0.2s; }

  .main-nav ul {
    flex-direction: column;
    gap: 1.25rem;
  }

  .services-grid,
  .why-grid,
  .values-list,
  .home-trust-grid,
  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 65vh;
  }

  .home-trust {
    margin-top: -2rem;
  }

  section {
    padding: 3.5rem 0;
  }
}
