/* =============================================================================
   LOUISIANA STRIPING & PAVEMENT — DESIGN SYSTEM
   Palette:  navy #0B2545 / navy-deep #081B34 / orange #F2611D / orange-deep #D14E10
             cream #F7F5F1 / steel #4A5A6B / line-yellow #F5B400
   Type:     Display  — 'Barlow Condensed' 700/800 (industrial, signage-adjacent)
             Body     — 'Inter' 400/500/600
             Utility  — 'IBM Plex Mono' 500 (spec/measurement labels)
   Signature: the painted lane-stripe divider — a dashed bar that "draws in"
              under headlines, standing in for the product itself.
   ============================================================================= */

:root {
  --navy: #0B2545;
  --navy-deep: #081B34;
  --orange: #F2611D;
  --orange-deep: #D14E10;
  --cream: #F7F5F1;
  --steel: #4A5A6B;
  --line-yellow: #F5B400;
  --white: #FFFFFF;
  --ink: #14202E;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(8, 27, 52, 0.08);
  --shadow-md: 0 4px 16px rgba(8, 27, 52, 0.12);
  --shadow-lg: 0 12px 40px rgba(8, 27, 52, 0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; line-height: 1.05; color: var(--navy); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 10px;
}
.eyebrow--on-dark { color: var(--line-yellow); }

/* ---------- Inline prose links (contextual links within paragraph text) ---------- */
.prose-content p a,
.page-hero p a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(11,37,69,0.35);
  text-underline-offset: 3px;
  font-weight: 600;
}
.prose-content p a:hover,
.page-hero p a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

/* ---------- Signature: painted lane-stripe divider ---------- */
.stripe-rule {
  --stripe-w: 84px;
  display: flex;
  gap: 8px;
  height: 6px;
  margin: 14px 0 28px;
}
.stripe-rule span {
  display: block;
  width: 34px;
  height: 100%;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  animation: stripe-paint 0.5s ease forwards;
  animation-play-state: paused;
}
.stripe-rule span:nth-child(2) { animation-delay: 0.08s; }
.stripe-rule span:nth-child(3) { animation-delay: 0.16s; opacity: 0.55; }
.stripe-rule.is-visible span { animation-play-state: running; }
.stripe-rule--center { justify-content: center; margin-left: auto; margin-right: auto; }
.stripe-rule--light span { background: var(--line-yellow); }
@keyframes stripe-paint {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__text { display: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--orange); color: var(--orange); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border-top: 3px solid var(--orange);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  color: var(--navy);
  display: block;
  padding: 10px 12px;
  border-radius: 3px;
  border-bottom: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
}
.dropdown a:hover { background: var(--cream); color: var(--orange-deep); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; stroke: var(--line-yellow); flex-shrink: 0; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 8px 24px 16px; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.mobile-nav .sub-list { padding-left: 14px; }
.mobile-nav .sub-list a { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); padding: 10px 4px; }
.mobile-nav .group-label { padding: 14px 4px 4px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--line-yellow); }

@media (min-width: 960px) {
  .brand__text { display: block; font-family: var(--font-display); color: var(--white); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
  .brand__text small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.65rem; color: var(--line-yellow); letter-spacing: 0.08em; margin-top: 2px; }
  .main-nav { display: block; }
  .header-phone { display: flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.mobile-call-bar a:first-child { background: var(--orange); }
.mobile-call-bar svg { width: 18px; height: 18px; }
body { padding-bottom: 60px; }
@media (min-width: 960px) {
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-color: var(--navy-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,27,52,0.35) 0%, rgba(8,27,52,0.55) 45%, rgba(8,27,52,0.94) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 24px 48px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  max-width: 16ch;
  text-wrap: balance;
}
.hero__sub {
  font-size: 1.1rem;
  max-width: 56ch;
  color: rgba(255,255,255,0.88);
  margin: 18px 0 28px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.hero__trust-item svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; }

/* ---------- Section scaffolding ---------- */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { font-size: 1.05rem; color: var(--steel); margin-top: 6px; }
.section--navy .section-head p { color: rgba(255,255,255,0.75); }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,37,69,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card__img { aspect-ratio: 4/3; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card__num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 6px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service-card p { color: var(--steel); font-size: 0.94rem; flex: 1; }
.service-card__link { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.service-card__link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ---------- Why choose us ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.value-item { border-left: 3px solid var(--orange); padding-left: 18px; }
.value-item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; font-family: var(--font-display); }
.value-item p { font-size: 0.95rem; }

/* ---------- Project / gallery grid ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.project-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,37,69,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.project-card__img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream); }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; }
.project-card__body { padding: 16px 18px 20px; }
.project-card__loc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; }
.project-card h3 { font-size: 1.05rem; margin-top: 6px; line-height: 1.25; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid picture { display: block; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Review CTA (links out to Google — no embedded ratings/quotes) ---------- */
.review-cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(11,37,69,0.1);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.review-cta__icon { width: 44px; height: 44px; margin-bottom: 16px; }
.review-cta h3 { font-size: 1.3rem; margin-bottom: 10px; }
.review-cta p { color: var(--steel); font-size: 0.95rem; max-width: 42ch; margin-left: auto; margin-right: auto; }

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(11,37,69,0.1);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--orange);
}
.area-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.area-card h3 a:hover { color: var(--orange); }
.area-card p { color: var(--steel); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(11,37,69,0.12); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item summary .icon::before, .faq-item summary .icon::after {
  content: ''; position: absolute; background: var(--orange); border-radius: 2px;
}
.faq-item summary .icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item summary .icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.15s ease; }
.faq-item[open] summary .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 4px 20px; color: var(--steel); }

/* ---------- Contact / quote form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; }
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h2 { color: var(--white); }
.contact-info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 0.95rem; }
.contact-info-row svg { width: 20px; height: 20px; stroke: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-info-row a { color: var(--white); }
.contact-info-row a:hover { color: var(--orange); }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--orange); background: rgba(242,97,29,0.15); }
.social-row svg { width: 18px; height: 18px; }

.quote-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(11,37,69,0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--steel); }
.form-status { padding: 14px 16px; border-radius: var(--radius); font-size: 0.9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--info { background: #FFF4E9; color: var(--orange-deep); border: 1px solid #FBD9BC; }
.form-status--success { background: #EAF7EE; color: #1E7A3D; border: 1px solid #BFE6CC; }
.form-status--error { background: #FDEDEC; color: #B3261E; border: 1px solid #F5C6C3; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,37,69,0.1); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  padding: 16px 0;
}
.breadcrumbs a { color: var(--steel); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumbs [aria-current] { color: var(--navy); font-weight: 500; }

/* ---------- Inner page hero (non-home) ---------- */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 20%, rgba(242,97,29,0.18), transparent 55%);
  color: var(--white);
  padding: 40px 0 56px;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 62ch; font-size: 1.05rem; margin-top: 14px; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Two column content + sidebar CTA ---------- */
.service-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .service-layout { grid-template-columns: 1.6fr 1fr; } }
.service-body img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 24px 0; }
.service-body ul { margin: 16px 0; }
.service-body li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.98rem;
}
.service-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.sidebar-cta {
  background: var(--cream);
  border: 1px solid rgba(11,37,69,0.1);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 96px;
}
.sidebar-cta h3 { font-size: 1.25rem; margin-bottom: 10px; }
.sidebar-cta p { font-size: 0.92rem; color: var(--steel); }
.sidebar-cta .btn { margin-top: 8px; }
.related-services { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(11,37,69,0.1); }
.related-services h4 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 10px; }
.related-services li { margin-bottom: 8px; }
.related-services a { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.related-services a:hover { color: var(--orange); }

/* ---------- Project detail ---------- */
.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
}
.project-meta dt { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 4px; }
.project-meta dd { margin: 0; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.project-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 28px 0; }
.project-photos picture { display: block; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.project-photos img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 32ch; }
.footer-col__title { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--line-yellow); margin: 0 0 14px; font-weight: 500; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.lazy-fade { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.lazy-fade.is-visible { opacity: 1; transform: translateY(0); }
