/* ==========================================================================
   ALWARD CONSTRUCTION — SITE STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0E2A47;
  --navy-deep: #0a1f36;
  --navy-light: #1a3a5c;
  --gold: #C9962B;
  --gold-light: #d9a945;
  --gold-dark: #a87d20;
  --white: #ffffff;
  --off-white: #fafaf7;
  --gray-50: #f5f5f3;
  --gray-100: #e8e8e4;
  --gray-200: #d4d4ce;
  --gray-400: #8a8a82;
  --gray-600: #5a5a52;
  --text: #2a2a2a;
  --text-muted: #6a6a62;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --container: 1280px;
  --container-narrow: 1080px;

  --section-pad: clamp(64px, 9vw, 120px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY ============================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 20px;
}

.eyebrow-light {
  color: var(--gold-light);
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
}

p {
  color: var(--text-muted);
}

/* BUTTONS ================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

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

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

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-arrow:hover {
  gap: 14px;
  color: var(--gold);
}

.link-arrow::after {
  content: '→';
  font-size: 1rem;
}

/* HEADER =================================================================== */

.top-bar {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.82rem;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar-info {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-info .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.top-bar a.btn-mini {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.top-bar a.btn-mini:hover {
  background: var(--gold-light);
}

.main-header {
  background: var(--white);
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.logo-text .sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gray-400);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

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

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  position: relative;
  z-index: 102;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82%, 360px);
  background: var(--navy);
  color: var(--white);
  padding: 100px 32px 40px;
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav .mobile-nav-cta {
  display: block;
  margin-top: 32px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s ease;
}

.mobile-nav .mobile-nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 71, 0.5);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Lock body scroll when mobile nav is open */
body.menu-open {
  overflow: hidden;
}

/* HERO ===================================================================== */

.hero {
  position: relative;
  min-height: 720px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 42, 71, 0.96) 0%,
    rgba(14, 42, 71, 0.85) 35%,
    rgba(14, 42, 71, 0.45) 70%,
    rgba(14, 42, 71, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 1.125rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* TRUST BAR ================================================================ */

.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-item {
  padding: 16px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

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

.trust-item.featured {
  background: linear-gradient(180deg, rgba(201, 150, 43, 0.08), transparent);
  border-left: 1px solid rgba(201, 150, 43, 0.3);
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.trust-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* SPLIT SECTION ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  overflow: hidden;
  color: var(--white);
}

.split-card .bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.split-card .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-card .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 71, 0.65), rgba(14, 42, 71, 0.85));
  transition: background 0.4s ease;
}

.split-card:hover .bg {
  transform: scale(1.04);
}

.split-card:hover .bg::after {
  background: linear-gradient(180deg, rgba(14, 42, 71, 0.5), rgba(14, 42, 71, 0.75));
}

.split-card-inner {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.split-card h3 {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 20px;
}

.split-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* SERVICES GRID ============================================================ */

.services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(14, 42, 71, 0.2);
}

.service-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-icon-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(14, 42, 71, 0.15);
  z-index: 2;
}

.service-card-body {
  padding: 40px 28px 32px;
}

.service-card-body h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.15rem;
}

.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* TRUST BAND (light gray) ================================================== */

.trust-band {
  background: var(--gray-50);
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-band-heading {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
}

.trust-band-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.trust-band-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.trust-band-item svg {
  color: var(--navy);
  opacity: 0.85;
}

.trust-band-item span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* WHY BACKGROUND CHECKS ==================================================== */

.feature-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-grid.reverse .feature-image {
  order: 2;
}

.feature-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image .badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-image .badge-overlay .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.feature-image .badge-overlay .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

.feature-content h2 {
  margin-bottom: 24px;
}

.feature-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>") center/16px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>") center/16px no-repeat;
  border-radius: 50%;
  background-image: linear-gradient(135deg, rgba(201, 150, 43, 0.15), rgba(201, 150, 43, 0.15));
  position: relative;
}

.checklist li {
  position: relative;
  padding-left: 36px;
}

.checklist li::before {
  position: absolute;
  left: 0;
  top: 2px;
  background: rgba(201, 150, 43, 0.12);
  margin-top: 0;
}

.checklist li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* PROJECT GALLERY ========================================================== */

.gallery {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.gallery-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 42, 71, 0.92) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.gallery-tile-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  color: var(--white);
}

.gallery-tile-info .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.gallery-tile-info .meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.gallery-cta {
  text-align: center;
}

/* CTA BAND ================================================================= */

.cta-band {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 150, 43, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(201, 150, 43, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-band-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band-gold {
  background: var(--gold);
  color: var(--navy);
}

.cta-band-gold h2,
.cta-band-gold p {
  color: var(--navy);
}

.cta-band-gold p {
  color: rgba(14, 42, 71, 0.8);
}

.cta-band-gold::before {
  display: none;
}

/* FOOTER =================================================================== */

footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
  font-size: 0.92rem;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-logo .sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

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

.footer-credentials {
  display: flex;
  gap: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* PAGE-SPECIFIC HEROES ===================================================== */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.page-hero .subhead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.page-hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.page-hero-image {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 150, 43, 0.3);
  pointer-events: none;
}

.page-hero-image .corner-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  z-index: 3;
}

.page-hero-image .corner-accent.tl {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.page-hero-image .corner-accent.br {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

/* COMMERCIAL SERVICES GRID ================================================= */

.commercial-services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-100);
}

.commercial-card {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.3s ease;
  background: var(--white);
}

.commercial-card:hover {
  background: var(--gray-50);
}

.commercial-card:nth-child(3n) {
  border-right: none;
}

/* Last row (cards 4 & 5) — remove bottom borders */
.commercial-card:nth-child(n+4) {
  border-bottom: none;
}

.commercial-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 150, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}

.commercial-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.commercial-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* WHY US (5-COLUMN NAVY) =================================================== */

.why-us {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad) 0;
}

.why-us .section-heading h2 {
  color: var(--white);
}

.why-us .section-heading::after {
  background: var(--gold);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.why-item {
  text-align: left;
  padding-left: 20px;
  border-left: 2px solid rgba(201, 150, 43, 0.4);
}

.why-item-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.why-item h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

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

/* INDUSTRIES BOX =========================================================== */

.industries-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.industries-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.industries-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries-content h2 {
  margin-bottom: 24px;
  font-size: 2.25rem;
}

.industries-content p {
  margin-bottom: 28px;
  line-height: 1.7;
}

.industries-box {
  background: var(--navy);
  color: var(--white);
  padding: 40px 32px;
}

.industries-box h4 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 150, 43, 0.3);
}

.industries-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industries-box ul li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.industries-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* PROCESS STEPS ============================================================ */

.process {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-family: var(--font-body);
}

.process-step p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* TESTIMONIALS ============================================================= */

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
  flex: 1;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.testimonial cite strong {
  color: var(--navy);
  font-weight: 600;
}

/* STATS BAND =============================================================== */

.stats-band {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

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

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.4;
}

/* VALUES GRID ============================================================== */

.values-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-card {
  text-align: left;
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}

.value-card .value-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  font-style: italic;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT PAGE ============================================================= */

/* Calendly Booking Banner — sits at top of contact section */
.booking-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 56px 48px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--gold);
}

.booking-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 150, 43, 0.18) 0%, transparent 70%);
  z-index: 1;
}

.booking-banner-content {
  position: relative;
  z-index: 2;
}

.booking-banner-content .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-banner-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  line-height: 1.15;
}

.booking-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

.booking-banner-action {
  position: relative;
  z-index: 2;
}

/* Existing Customer Section */
.existing-customer {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--gold);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.existing-customer-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 150, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.existing-customer-text h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.existing-customer-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.existing-customer-text a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease;
}

.existing-customer-text a:hover {
  color: var(--gold);
}

.existing-customer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.existing-customer-actions a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.existing-customer-actions a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .booking-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }
  .booking-banner-content p {
    margin: 0 auto;
  }
  .existing-customer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .existing-customer-icon {
    margin: 0 auto;
  }
  .existing-customer-actions {
    align-items: center;
  }
}

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--gray-100);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-form .form-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-microcopy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.contact-info-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-block:last-of-type {
  border-bottom: none;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-value {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

.contact-info-value.large {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info ul li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-trust {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* MAP SECTION ============================================================== */

.map-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  text-align: center;
}

.map-placeholder {
  margin-top: 48px;
  height: 400px;
  background: linear-gradient(135deg, #2a4a6e 0%, #0E2A47 100%);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201, 150, 43, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 60% 45%, rgba(201, 150, 43, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 75% 55%, rgba(201, 150, 43, 0.35) 0%, transparent 40%);
}

.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.map-pin .dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 150, 43, 0.3), 0 0 0 12px rgba(201, 150, 43, 0.15);
}

.map-pin .label {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy-deep);
  padding: 4px 10px;
}

.map-pin.dc { top: 50%; left: 32%; }
.map-pin.md { top: 35%; left: 55%; }
.map-pin.va { top: 60%; left: 65%; }

/* RESPONSIVE =============================================================== */

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }

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

  .trust-band-row,
  .stats-grid,
  .values-grid,
  .process-grid,
  .commercial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commercial-card:nth-child(3n) {
    border-right: 1px solid var(--gray-100);
  }
  .commercial-card:nth-child(2n) {
    border-right: none;
  }

  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.reverse,
  .industries-grid,
  .contact-grid,
  .page-hero-grid,
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid.reverse .feature-image {
    order: 0;
  }

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

  .top-bar-info { flex-wrap: wrap; gap: 12px; }
  .top-bar-info .divider { display: none; }
}

@media (max-width: 640px) {
  .trust-grid,
  .services-grid,
  .why-grid,
  .trust-band-row,
  .stats-grid,
  .values-grid,
  .process-grid,
  .commercial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .commercial-card {
    border-right: none !important;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info { padding: 32px 24px; position: static; }

  .top-bar { font-size: 0.75rem; }
  .top-bar .container { flex-direction: column; gap: 8px; }
  .top-bar a.btn-mini { display: none; }

  .hero { min-height: 600px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-credentials { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* HOME DEPOT PARTNERSHIP BANNER =========================================== */

.partner-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.partner-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 150, 43, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.partner-banner-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.partner-years {
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid rgba(201, 150, 43, 0.3);
}

.partner-years .num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: block;
}

.partner-years .label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 8px;
}

.partner-content {
  color: var(--white);
}

.partner-content .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.partner-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.partner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

.partner-logo-box {
  background: var(--white);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.partner-logo-box .hd-logo-img {
  display: block;
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto;
}

.partner-logo-box .hd-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-logo-box .hd-square {
  width: 56px;
  height: 56px;
  background: #F96302;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.05em;
  transform: skew(-5deg);
}

.partner-logo-box .hd-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.partner-logo-box .hd-text .top {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #F96302;
  text-transform: uppercase;
}

.partner-logo-box .hd-text .bot {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #F96302;
  margin-top: 2px;
}

.partner-logo-box .partner-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

/* CERTIFICATIONS STRIP ===================================================== */

.certifications {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
}

.certifications-heading {
  text-align: center;
  margin-bottom: 40px;
}

.certifications-heading .eyebrow {
  margin-bottom: 8px;
}

.certifications-heading h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  border: 1px solid var(--gray-100);
}

.cert-item {
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--gray-100);
  min-height: 130px;
  transition: background 0.3s ease;
}

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

.cert-item:hover {
  background: var(--gray-50);
}

.cert-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cert-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

.cert-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* EXPANDED SERVICES GRID =================================================== */

.services-expanded {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.services-expanded-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-tile:hover img {
  transform: scale(1.06);
}

.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 71, 0.1) 0%, rgba(14, 42, 71, 0.5) 50%, rgba(14, 42, 71, 0.92) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.service-tile:hover::before {
  background: linear-gradient(180deg, rgba(14, 42, 71, 0.2) 0%, rgba(14, 42, 71, 0.6) 50%, rgba(14, 42, 71, 0.95) 100%);
}

.service-tile-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: var(--white);
}

.service-tile-info .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.service-tile-info .arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-tile:hover .service-tile-info .arrow {
  opacity: 1;
  transform: translateY(0);
}

/* MASTER LICENSES ========================================================== */

.master-licenses {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.license-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.license-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.license-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px -16px rgba(14, 42, 71, 0.2);
}

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

.license-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.license-card .sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* COMMITMENT/SUSTAINABILITY ================================================ */

.commitment-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.commitment-stat-block {
  background: var(--navy);
  color: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.commitment-stat-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 150, 43, 0.2) 0%, transparent 70%);
}

.commitment-stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.commitment-stat-block .label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.commitment-stat-block .desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS =================================== */

@media (max-width: 1024px) {
  .partner-banner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .partner-years {
    padding-right: 0;
    border-right: none;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(201, 150, 43, 0.3);
  }
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cert-item:nth-child(4n) { border-right: none; }
  .cert-item { border-bottom: 1px solid var(--gray-100); }
  .services-expanded-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-item:nth-child(2n) { border-right: none; }
  .services-expanded-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .licenses-grid {
    grid-template-columns: 1fr;
  }
}

/* UTILITY ================================================================== */

.fade-in {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
