/* ================================================================
   PACIFIC STEEL FABRICATORS — PREMIUM CORPORATE STYLESHEET
   Design System: Executive B2B Industrial | Deep Navy + Gold
================================================================ */

/* ── 0. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  /* Brand Palette */
  --navy-950:  #06090f;
  --navy-900:  #0b1120;
  --navy-800:  #0f1a30;
  --navy-700:  #152240;
  --navy-600:  #1b2a50;
  --navy-500:  #233368;
  --steel-400: #3d5a80;
  --steel-300: #6b8cae;
  --steel-200: #a8bfd4;
  --steel-100: #dde8f0;
  --steel-50:  #f0f5f9;

  --gold-700:  #a07520;
  --gold-600:  #b8882a;
  --gold-500:  #c9973a;
  --gold-400:  #d4a843;
  --gold-300:  #e0be6a;
  --gold-200:  #f0d89a;

  --white:     #ffffff;
  --off-white: #fafbfc;
  --text-dark: #0d1825;
  --text-mid:  #3c4f64;
  --text-muted:#6b7f94;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1280px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(6,9,15,.08);
  --shadow-md:  0 8px 32px rgba(6,9,15,.12);
  --shadow-lg:  0 16px 64px rgba(6,9,15,.18);
  --shadow-xl:  0 24px 96px rgba(6,9,15,.24);

  /* Transitions */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.0,0,.2,1);
  --dur-fast:   180ms;
  --dur-base:   320ms;
  --dur-slow:   540ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 2. TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.01em;
  margin-bottom: var(--sp-4);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: var(--sp-6) auto 0;
}

.body-text {
  font-size: 1.0rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.gold-rule {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: var(--sp-5) 0 var(--sp-6);
}
.gold-rule--center { margin-left: auto; margin-right: auto; margin-bottom: var(--sp-4); }

/* ── 3. LAYOUT UTILITIES ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.section { padding: var(--sp-24) 0; }
.section--alt { background: var(--steel-50); }

.section__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section__header .section__title { margin-bottom: 0; }

/* ── 4. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .875rem 2.25rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(201,151,58,.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,151,58,.45);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--dark:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}
.btn--outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn--sm   { padding: .625rem 1.5rem; font-size: .8125rem; }
.btn--lg   { padding: 1.125rem 2.75rem; font-size: .9375rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 5. PRELOADER ────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: .08em;
  margin-bottom: var(--sp-6);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .5; }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: 2px;
  animation: loadBar 1.4s var(--ease) forwards;
}
@keyframes loadBar {
  to { width: 100%; }
}

/* ── 6. TOP BAR ──────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-900);
  padding: var(--sp-2) 0;
  font-size: .8125rem;
  color: var(--steel-200);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.top-bar a {
  color: var(--steel-200);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.top-bar a:hover { color: var(--gold-300); }

.top-bar__socials { display: flex; gap: var(--sp-3); }
.top-bar__socials a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  font-size: .7rem;
  transition: all var(--dur-fast);
}
.top-bar__socials a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* ── 7. NAVIGATION ───────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--dur-base) var(--ease), background var(--dur-base);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid var(--gold-500);
  letter-spacing: .04em;
}

.nav__logo-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: .01em;
  line-height: 1.2;
}
.nav__logo-text small {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .125rem;
}

.nav__link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .875rem;
  right: .875rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav__link:hover { color: var(--navy-900); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--navy-900); font-weight: 600; }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 950;
  padding: var(--sp-16) var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-xl);
  transition: right var(--dur-slow) var(--ease-out);
}
.nav-drawer.open { right: 0; }

.nav-drawer__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-size: 1.25rem;
  color: var(--text-mid);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--dur-fast);
}
.nav-drawer__close:hover { background: var(--steel-100); color: var(--navy-900); }

.nav-drawer ul { margin-bottom: auto; }
.nav-drawer li { border-bottom: 1px solid var(--steel-100); }
.nav-drawer a {
  display: block;
  padding: var(--sp-4) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-900);
  transition: color var(--dur-fast);
}
.nav-drawer a:hover { color: var(--gold-600); }
.nav-drawer .btn { margin-top: var(--sp-4); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,9,15,.5);
  z-index: 940;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-slow);
  backdrop-filter: blur(3px);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ── 8. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroZoom 16s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,9,15,.88) 0%,
    rgba(11,17,32,.75) 50%,
    rgba(11,17,32,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold-400);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-300);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 10;
}
.hero__scroll-cue span {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* ── 9. STATS BAND ───────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.stat-item {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}
.stat-item__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--gold-400);
  vertical-align: super;
}
.stat-item p {
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: var(--sp-2);
  font-weight: 500;
}

/* ── 10. ABOUT ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__visuals {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about__img-main img { width: 100%; height: 100%; }

.about__img-accent {
  position: absolute;
  bottom: -var(--sp-8);
  right: -var(--sp-8);
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  bottom: -2rem;
  right: -2rem;
  aspect-ratio: 4/3;
}
.about__img-accent img { width: 100%; height: 100%; }

.about__badge {
  position: absolute;
  top: var(--sp-5);
  right: -var(--sp-5);
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  top: 1.25rem;
  right: -1.25rem;
  z-index: 2;
}
.about__badge i { font-size: .875rem; margin-bottom: 2px; }
.about__badge strong { font-size: .7rem; font-weight: 700; line-height: 1.2; letter-spacing: .04em; }

.about__pillars {
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.about__pillars li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .9375rem;
  color: var(--text-mid);
  font-weight: 450;
}
.about__pillars i {
  color: var(--gold-500);
  margin-top: .25rem;
  flex-shrink: 0;
}

/* ── 11. SERVICES ────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.25rem;
  color: var(--gold-400);
  transition: transform var(--dur-base) var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08); }

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--sp-3);
  letter-spacing: .01em;
}

.service-card p {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-600);
  transition: gap var(--dur-base) var(--ease), color var(--dur-fast);
}
.service-card__link:hover { color: var(--navy-900); gap: var(--sp-3); }

/* ── 12. PROJECTS ────────────────────────────────────────────── */
.projects__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: var(--sp-6);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.project-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.project-card--featured .project-card__img { aspect-ratio: 4/3; }

.project-card__img img {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease);
}
.project-card:hover .project-card__img img { transform: scale(1.06); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,15,.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}

.project-card__tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
}

.project-card__body {
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--sp-3);
}
.project-card--featured .project-card__body h3 { font-size: 1.125rem; }

.project-card__body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-4);
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-800);
  transition: all var(--dur-fast);
}
.project-card__link:hover { color: var(--gold-600); gap: var(--sp-3); }

/* ── 13. WHY US ──────────────────────────────────────────────── */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.feature-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,151,58,.15), rgba(201,151,58,.05));
  border: 1px solid rgba(201,151,58,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-500);
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--sp-1);
}
.feature-item p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.why-us__visual {
  position: relative;
}
.why-us__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.why-us__quote {
  position: absolute;
  bottom: -var(--sp-6);
  left: -var(--sp-8);
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  bottom: -1.5rem;
  left: -2rem;
  border-left: 3px solid var(--gold-500);
}

.why-us__quote i {
  color: var(--gold-400);
  font-size: 1.25rem;
  margin-bottom: var(--sp-2);
}
.why-us__quote p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--sp-3);
}
.why-us__quote strong {
  font-size: .75rem;
  color: var(--navy-900);
  letter-spacing: .04em;
}

/* ── 14. CTA BAND ────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--sp-24) 0;
  text-align: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,15,.92) 0%, rgba(11,17,32,.85) 100%);
}

.cta-band__content { position: relative; z-index: 10; }

.cta-band__eyebrow { color: var(--gold-300); }

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-5);
  letter-spacing: -.01em;
}

.cta-band__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto var(--sp-10);
  line-height: 1.75;
}

/* ── 15. CONTACT ─────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.contact__detail-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: .9rem;
}

.contact__detail-item strong {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: var(--sp-1);
}
.contact__detail-item span {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.contact__detail-item a {
  color: var(--text-mid);
  transition: color var(--dur-fast);
}
.contact__detail-item a:hover { color: var(--gold-600); }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.07);
}

.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--steel-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--dur-fast) var(--ease);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21,34,64,.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f94' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-note {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--sp-1);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
}
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: #22c55e; margin-bottom: var(--sp-4); }
.form-success h3 {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--sp-3);
}
.form-success p { font-size: .9375rem; color: var(--text-mid); }

/* ── 16. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.65);
  padding-top: var(--sp-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer__logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
}

.footer__logo strong {
  display: block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo small {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.footer__brand p {
  font-size: .9rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: var(--sp-6);
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  transition: all var(--dur-fast);
}
.footer__socials a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: var(--gold-300); }

.footer__col address p {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .9rem;
  margin-bottom: var(--sp-3);
  color: rgba(255,255,255,.55);
}
.footer__col address i { color: var(--gold-400); margin-top: .2rem; flex-shrink: 0; }
.footer__col address a { color: rgba(255,255,255,.55); }
.footer__col address a:hover { color: var(--gold-300); }

.footer__bottom {
  padding: var(--sp-5) 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer__bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ── 17. BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,151,58,.4);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-base) var(--ease);
  font-size: .875rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,151,58,.55);
}

/* ── 18. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .projects__grid .project-card--featured { grid-column: span 2; }
}

@media (max-width: 960px) {
  .about__grid, .why-us__grid, .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .about__visuals { max-width: 520px; }
  .why-us__visual { max-width: 480px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .top-bar__left { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .projects__grid .project-card--featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .about__img-accent { width: 48%; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .container { padding: 0 var(--sp-5); }
  .section { padding: var(--sp-16) 0; }
  .section__header { margin-bottom: var(--sp-10); }
  .hero__content { padding-top: var(--sp-12); padding-bottom: var(--sp-12); }
  .why-us__quote { position: static; margin-top: var(--sp-5); max-width: 100%; }
  .back-to-top { bottom: var(--sp-5); right: var(--sp-5); }
  .contact__form-wrap { padding: var(--sp-6); }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .top-bar { display: none; }
}
