/* ============================================================
   VISION SIGN ADVERTISING LLC — SHARED STYLESHEET
   Design System: Dark Navy + Gold Luxury
   Font: Raleway (display) + DM Sans (body)
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    rgba(201, 168, 76, 0.14);
  --gold-border: rgba(201, 168, 76, 0.28);

  --navy:        #09101E;
  --navy-mid:    #0E1626;
  --navy-light:  #152035;
  --navy-card:   #192540;

  --white:       #F5F0E8;
  --muted:       rgba(245, 240, 232, 0.58);
  --muted-light: rgba(245, 240, 232, 0.35);

  --font-display: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.28);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 80px);

  --section-pad-y: clamp(60px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-pad {
  padding-block: var(--section-pad-y);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title strong { font-weight: 700; letter-spacing: -0.02em; }
.section-title em, .gold { font-style: normal; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  outline: none;
  padding: 14px 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  font-size: 11px;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── DIVIDER ── */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-block: 24px;
}

/* ============================================================
   NAVIGATION — Responsive + Mobile-first
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 16, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-nav.scrolled {
  border-bottom-color: var(--gold-border);
  background: rgba(9, 16, 30, 0.98);
}

/* ── Logo image ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  /* 
   * The logo PNG has a near-black background that blends seamlessly
   * with the dark nav via mix-blend-mode: lighten — only the bright
   * gold/white logo elements are visible, dark bg becomes invisible.
   */
  height: 38px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.02);
}
/* Hide legacy text-mark elements */
.nav-logo-mark,
.nav-logo-text { display: none !important; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 20px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: border-color var(--transition);
  border-radius: 2px;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { width: 70%; }

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(9, 16, 30, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  padding: 28px var(--container-pad) 36px;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-drawer.open {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color var(--transition);
  font-family: var(--font-display);
}
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 20px;
  align-self: flex-start;
}

/* ── RESPONSIVE NAV BREAKPOINTS ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

/* ============================================================
   HERO — Full viewport
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-image { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(9,16,30,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201,168,76,0.05) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(9,16,30,0.3) 0%, rgba(9,16,30,0.8) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridSlide 25s linear infinite;
}
@keyframes gridSlide {
  from { transform: translateY(0); }
  to   { transform: translateY(72px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
  padding: 6px 20px;
  margin-bottom: 32px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

.hero h1 { margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }

.hero-tagline {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-light);
  z-index: 2;
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: calc(72px + 60px);
  padding-bottom: 70px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--navy-card);
  border: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Service card */
.service-card {
  background: var(--navy-light);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: var(--gold-border); background: #1A2540; }
.service-card:hover::after { transform: scaleX(1); }

.service-card-num {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-card-num { color: rgba(201,168,76,0.22); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

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

/* ============================================================
   ABOUT / WHO WE ARE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  height: clamp(320px, 50vw, 560px);
}

.about-img-main {
  position: absolute;
  inset: 0 60px 60px 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.about-accent-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.about-accent-box .acc-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-accent-box .acc-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(9,16,30,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-image-wrap { height: 260px; margin-bottom: 40px; }
}

/* ============================================================
   VISION / MISSION CARDS
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vm-card {
  background: var(--navy-light);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.07);
}
.vm-card::before {
  content: attr(data-word);
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.vm-card-icon {
  font-size: 32px;
  margin-bottom: 24px;
}
.vm-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.vm-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

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

/* ============================================================
   HIGHLIGHTS BAR
   ============================================================ */
.highlights-bar {
  display: flex;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: var(--navy-mid);
  overflow-x: auto;
  scrollbar-width: none;
}
.highlights-bar::-webkit-scrollbar { display: none; }

.highlight-item {
  flex: 1;
  min-width: 160px;
  padding: clamp(28px, 4vw, 50px) 20px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.highlight-item:last-child { border-right: none; }
.highlight-item .hi-icon {
  font-size: 26px;
  margin-bottom: 12px;
}
.highlight-item .hi-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.highlight-item .hi-desc {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICE BLOCKS (Services Page)
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gold-border);
  min-height: 480px;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.sb-info {
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-mid);
  border-right: 1px solid var(--gold-border);
}
.service-block:nth-child(even) .sb-info {
  border-right: none;
  border-left: 1px solid var(--gold-border);
}

.sb-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.sb-info h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 18px;
}

.sb-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 14px;
}

.feature-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.feature-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 7px;
  flex-shrink: 0;
}

.sb-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: var(--navy-light);
}
.sb-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: brightness(0.65) saturate(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.service-block:hover .sb-visual img {
  filter: brightness(0.75) saturate(1);
  transform: scale(1.03);
}
.sb-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,16,30,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.sb-visual-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(9,16,30,0.7);
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .service-block:nth-child(even) { direction: ltr; }
  .sb-info { border-right: none !important; border-left: none !important; }
  .sb-visual { min-height: 240px; }
}

/* ============================================================
   SERVICE INDEX NAV (Services Page sticky bar)
   ============================================================ */
.service-index-bar {
  background: var(--navy-light);
  border-bottom: 1px solid var(--gold-border);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.service-index-bar::-webkit-scrollbar { display: none; }
.service-index-bar ul {
  display: flex;
  white-space: nowrap;
  padding: 0 var(--container-pad);
}
.service-index-bar li a {
  display: block;
  padding: 16px 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--gold-border);
  transition: color var(--transition), background var(--transition);
}
.service-index-bar li:last-child a { border-right: none; }
.service-index-bar li a:hover,
.service-index-bar li a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  background: var(--navy-light);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  text-align: center;
  position: relative;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.ps-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: 14px; line-height: 1.65; }

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--gold-dim);
}
.ci-text .ci-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 3px;
}
.ci-text .ci-value { font-size: 14px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  resize: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }
.form-group textarea { height: 120px; }

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

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #182A4A 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: clamp(50px, 8vw, 90px) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 { max-width: 520px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--gold-border);
  padding: 32px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
  filter: brightness(0.85);
  opacity: 0.85;
  transition: filter var(--transition), opacity var(--transition);
}
.footer-logo-img:hover {
  filter: brightness(1.1);
  opacity: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-copy a { color: var(--gold); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

@media (max-width: 600px) {
  .site-footer { flex-direction: column; text-align: center; }
  .cta-strip { text-align: center; justify-content: center; }
}

/* ============================================================
   ANIMATIONS / SCROLL FX
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BACKGROUND VARIANTS
   ============================================================ */
.bg-navy     { background-color: var(--navy); }
.bg-navy-mid { background-color: var(--navy-mid); }
.bg-navy-light { background-color: var(--navy-light); }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 480px) {
  .btn { padding: 12px 24px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: clamp(26px, 8vw, 40px); }
}
