/* ═══════════════════════════════════════════════════
   YNG CONSTRUCTION — Shared Stylesheet
   Used by all pages. Brand: Navy #1C3A6B, Amber #F5A030
   Fonts: Barlow Condensed (display), DM Sans (body)
═══════════════════════════════════════════════════ */

:root {
  --navy: #1C3A6B;
  --navy-dark: #0D1E3D;
  --navy-deeper: #070F1E;
  --navy-mid: #152D57;
  --amber: #F5A030;
  --amber-light: #FFB84D;
  --amber-dark: #D4841A;
  --charcoal: #5B5D65;
  --off-white: #F5F3EE;
  --warm-white: #FAFAF8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy-deeper);
  color: var(--off-white);
  overflow-x: hidden;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: 'Barlow Condensed', sans-serif; }
.font-body    { font-family: 'DM Sans', sans-serif; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(7,15,30,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(245,160,48,0.15), 0 4px 32px rgba(0,0,0,0.4);
}
/* Sub-pages: nav always has dark bg since there's no full-screen hero */
#navbar.always-dark {
  background: rgba(7,15,30,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(245,160,48,0.12), 0 4px 24px rgba(0,0,0,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-crop {
  width: 160px;
  overflow: hidden;
  display: block;
}
.nav-logo-crop img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -30.5%;
  margin-bottom: -32.6%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--off-white); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  background: var(--amber);
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(245,160,48,0.35);
}
.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,160,48,0.45);
}
.nav-cta:active { transform: translateY(0); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(7,15,30,0.97);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: block;
  padding: 0.5rem 2rem;
}
.mobile-menu a:hover { color: var(--amber); }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  background: var(--amber);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(245,160,48,0.4);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,160,48,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(245,243,238,0.3);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }
.reveal-delay-1 { transition-delay: 0.03s; }
.reveal-delay-2 { transition-delay: 0.06s; }
.reveal-delay-3 { transition-delay: 0.09s; }
.reveal-delay-4 { transition-delay: 0.12s; }
.reveal-delay-5 { transition-delay: 0.15s; }
.reveal-delay-6 { transition-delay: 0.18s; }

/* ─── SECTION UTILS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
}
.section-heading .accent { color: var(--amber); }

section { position: relative; }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 10rem 2.5rem 5.5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(245,160,48,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(28,58,107,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, var(--amber), transparent);
}
.page-hero-bg-text {
  position: absolute;
  top: -0.05em;
  right: -0.02em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(28,58,107,0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(245,243,238,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: rgba(245,243,238,0.2); }
.breadcrumb .current { color: var(--amber); }

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--off-white);
}
.page-title .accent { color: var(--amber); }
.page-subtitle {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,243,238,0.55);
  max-width: 540px;
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(245,243,238,0.06);
}
.divider-amber {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 1.5rem 0;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,160,48,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(13,30,61,0.5) 0%, transparent 60%);
}
.cta-band-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.cta-band h2 .accent { color: var(--amber); }
.cta-band p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,243,238,0.6);
  margin-bottom: 2.5rem;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(245,160,48,0.15);
  margin-bottom: 2px;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  background: rgba(28,58,107,0.5);
  border: none;
  border-bottom: 1.5px solid rgba(245,243,238,0.15);
  outline: none;
  padding: 1.1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--off-white);
  width: 100%;
  transition: background 0.2s, border-color 0.2s;
}
.contact-form input:not([type="checkbox"])::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder { color: rgba(245,243,238,0.4); }
.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(28,58,107,0.8);
  border-bottom-color: var(--amber);
}
.contact-form select { color: rgba(245,243,238,0.75); }
.contact-form select option { background: var(--navy-dark); color: var(--off-white); }
.contact-form .full { grid-column: span 2; }
.contact-form textarea { height: 140px; resize: none; }

.form-submit {
  width: 100%;
  padding: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  background: var(--amber);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 30px rgba(245,160,48,0.35);
}
.form-submit:hover { background: var(--amber-light); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(245,160,48,0.15);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,243,238,0.06);
}
.footer-logo-crop {
  width: 300px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.footer-logo-crop img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -30.5%;
  margin-bottom: -32.6%;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245,243,238,0.4);
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245,243,238,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,243,238,0.25); }
.footer-bottom .socials { display: flex; gap: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,243,238,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--amber); background: rgba(245,160,48,0.1); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(245,243,238,0.5); }
.social-btn:hover svg { fill: var(--amber); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,160,48,0.12);
}
.service-card {
  background: var(--navy-dark);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.35s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--amber);
  transition: width 0.4s ease;
}
.service-card:hover { background: rgba(28,58,107,0.6); }
.service-card:hover::before { width: 100%; }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(245,160,48,0.5);
  margin-bottom: 0.75rem;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,243,238,0.5);
  font-weight: 300;
}
.service-arrow {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,160,48,0.5);
  transition: color 0.2s;
  text-decoration: none;
}
.service-card:hover .service-arrow { color: var(--amber); }

/* ─── PROJECT CARDS ─── */
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.project-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.project-card:hover .project-img { transform: scale(1.04); filter: saturate(1) contrast(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,15,30,0.9) 0%, rgba(7,15,30,0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(7,15,30,0.95) 0%, rgba(13,30,61,0.5) 60%, rgba(28,58,107,0.2) 100%);
}
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.project-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.project-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.1;
}
.project-loc { font-size: 0.8rem; color: rgba(245,243,238,0.5); margin-top: 0.25rem; }

/* ─── INSIGHT CARDS ─── */
.insight-card {
  background: rgba(28,58,107,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.insight-card:hover { transform: translateY(-4px); }
.insight-card:hover .insight-img { transform: scale(1.04); }
.insight-img-wrap { overflow: hidden; position: relative; height: 220px; }
.insight-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.insight-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,15,30,0.7));
}
.insight-cat {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  background: var(--amber);
  padding: 0.25rem 0.65rem;
}
.insight-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 2px solid rgba(245,160,48,0);
  transition: border-color 0.3s ease;
  background: rgba(13,30,61,0.6);
}
.insight-card:hover .insight-body { border-color: var(--amber); }
.insight-date {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245,243,238,0.35);
  margin-bottom: 0.75rem;
  font-family: 'Barlow', sans-serif;
}
.insight-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 0.85rem;
  flex: 1;
}
.insight-excerpt {
  font-size: 0.855rem;
  line-height: 1.75;
  color: rgba(245,243,238,0.5);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.insight-read {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.insight-read:hover { gap: 0.8rem; opacity: 0.8; }

/* ─── PILLAR LIST ─── */
.pillars { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.pillar {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(245,243,238,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: padding 0.3s ease;
}
.pillar:first-child { border-top: 1px solid rgba(245,243,238,0.08); }
.pillar:hover { padding-left: 0.5rem; }
.pillar-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding-top: 0.2rem;
  flex-shrink: 0;
}
.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,243,238,0.5);
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .page-title { font-size: clamp(2.8rem, 12vw, 5rem); }
}
