@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --navy: #1a2744;
  --navy-light: #243360;
  --orange: #e8621a;
  --orange-hover: #cf5516;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --gray: #666;
  --light-gray: #e8e8e8;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #222;
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
}

.nav-logo img {
  height: 60px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.15rem;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover { color: var(--orange); background: rgba(255,255,255,0.04); }

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  background: var(--navy);
}

.carousel-slide img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  display: block;
  opacity: 0.92;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 40%, rgba(26,39,68,0.88) 100%);
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 3rem 2.5rem;
  color: white;
  z-index: 2;
}

.carousel-caption h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 0.4rem;
}

.carousel-caption p {
  font-size: 1.15rem;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,39,68,0.65);
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  line-height: 1;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
.carousel-btn.prev { left: 1.25rem; }
.carousel-btn.next { right: 1.25rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 7px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.dot.active { background: var(--orange); transform: scale(1.25); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 3.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.012) 30px,
    rgba(255,255,255,0.012) 60px
  );
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.page-hero::after {
  content: '';
  display: block;
  width: 64px;
  height: 5px;
  background: var(--orange);
  margin: 1.1rem auto 0;
  border-radius: 2px;
}

/* ── LAYOUT ── */
section { padding: 5rem 2rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-title.white { color: white; }

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 0.6rem;
  max-width: 600px;
}

.orange-bar {
  width: 52px; height: 5px;
  background: var(--orange);
  margin: 0.8rem 0 2.5rem;
  border-radius: 2px;
}

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
}

.feature-card {
  background: var(--navy);
  color: white;
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--orange);
  transition: background 0.2s;
}

.feature-card:hover { background: var(--navy-light); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* ── SERVICE PREVIEW CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  transition: transform 0.22s, box-shadow 0.22s;
  background: white;
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.service-card img {
  width: 100%; height: 210px;
  object-fit: cover; display: block;
}

.service-card-body {
  padding: 1.5rem 1.5rem 2rem;
}

.service-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card-body .btn { font-size: 0.85rem; padding: 0.55rem 1.25rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 4.5rem 2rem;
}

.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
  border: none;
  line-height: 1;
}

.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232,98,26,0.35); }

.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

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

/* ── HOME TESTIMONIALS ── */
.testimonial-strip {
  background: var(--navy);
  color: white;
  padding: 5rem 2rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 1.75rem 1.5rem;
  border-radius: 0 5px 5px 0;
}
.testimonial-card p {
  font-style: italic;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SERVICES PAGE ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-item {
  border: 1px solid var(--light-gray);
  border-top: 5px solid var(--orange);
  padding: 2rem 1.75rem;
  border-radius: 0 0 5px 5px;
  background: white;
  transition: box-shadow 0.2s;
}
.service-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.service-item .svc-icon { font-size: 2rem; margin-bottom: 0.9rem; display: block; }
.service-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.service-item ul { list-style: none; }
.service-item ul li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  color: #444;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.55;
}
.service-item ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%;
  border-radius: 5px;
  display: block;
  position: relative;
  z-index: 1;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 4px solid var(--orange);
  border-radius: 5px;
  z-index: 0;
}

.mission-box {
  background: var(--off-white);
  border-left: 5px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 5px 5px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: #444;
  line-height: 1.7;
}

.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.values-list li:last-child { border-bottom: none; }
.value-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.value-content strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.value-content span { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4rem;
}
.stat-box {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.4rem;
}

/* ── REVIEWS PAGE ── */
.reviews-intro { max-width: 700px; margin-bottom: 3rem; }
.review-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-left: 5px solid var(--orange);
  padding: 1.75rem 2rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.reviewer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-date {
  font-size: 0.85rem;
  color: var(--gray);
}
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.97rem; line-height: 1.75; color: #444; font-style: italic; }

/* ── GALLERY PAGE ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 210px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(26,39,68,0.4);
}
.gallery-item-overlay span {
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.75rem;
  color: white; font-size: 2.2rem; cursor: pointer;
  line-height: 1; background: none; border: none;
  opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}
.contact-text a, .contact-text p {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
}
.contact-text a:hover { color: var(--orange); }
.dot-badge {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--gray);
}
.dot-badge strong { color: var(--navy); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: #222;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 5px;
  padding: 1.5rem;
  color: #2e7d32;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { font-size: 0.9rem; line-height: 1.85; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.42);
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.bg-off-white { background: var(--off-white); }
.mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { order: -1; }
  .about-img::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .carousel-slide img { height: 260px; }
  .carousel-caption h2 { font-size: 1.6rem; }
  .carousel-caption { padding: 1.5rem; }

  .feature-grid { grid-template-columns: 1fr; gap: 0; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 3rem 1.25rem; }
  .page-hero { padding: 2.5rem 1.25rem 3rem; }
  .page-hero h1 { font-size: 2.1rem; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
