/* ══ JOINERY BOYS v1.1 — 09 MAR 2026 ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:   #fdfcfb;
  --slate:  #fdfcfb;
  --border: rgba(0,0,0,0.12);
  --gold:   #d4983a;
  --muted:  #1a1a1a;
  --white:  #040d17;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
}

/* ══════════════════════════
   NAV
══════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #0d1f32;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 130px;
}

.nav-logo {
  font-family: 'Gilda Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 110px; width: auto; display: block; }

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 110px; left: 0; right: 0;
  background: #0d1f32;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 499;
  flex-direction: column;
  padding: 1.5rem 2.5rem 2rem;
  gap: 1.2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.75;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, opacity 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { opacity: 1; color: var(--gold); }

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

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  background: var(--slate);
  padding: 4rem 2.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,110,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sub-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
}

.hero p {
  margin-top: 1.2rem;
  max-width: none;
  font-size: 1rem;
  color: #1a1a1a;
}

/* ══════════════════════════
   FILTER BAR
══════════════════════════ */
.filter-bar {
  background: var(--slate);
  padding: 1.3rem 2.5rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--border);
  align-items: center;
  overflow-x: auto;
}

.filter-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-right: 0.4rem;
  white-space: nowrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: rgba(0,0,0,0.4); color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #f5f2ee; }

/* ══════════════════════════
   GALLERY GRID
══════════════════════════ */
.gallery-section { padding: 2.5rem; background: var(--dark); }

.gallery-grid { columns: 3; column-gap: 1.2rem; }
@media (max-width: 960px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  display: block;
  cursor: pointer;
  background: var(--slate);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.55s forwards;
  transition: border-color 0.3s;
}
.gallery-item:hover { border-color: rgba(201,164,92,0.4); }
.gallery-item[data-hidden="true"] { display: none; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.gallery-item:nth-child(1)  { animation-delay:.04s } .gallery-item:nth-child(2)  { animation-delay:.08s }
.gallery-item:nth-child(3)  { animation-delay:.12s } .gallery-item:nth-child(4)  { animation-delay:.16s }
.gallery-item:nth-child(5)  { animation-delay:.20s } .gallery-item:nth-child(6)  { animation-delay:.24s }
.gallery-item:nth-child(7)  { animation-delay:.28s } .gallery-item:nth-child(8)  { animation-delay:.32s }
.gallery-item:nth-child(9)  { animation-delay:.36s } .gallery-item:nth-child(10) { animation-delay:.40s }
.gallery-item:nth-child(11) { animation-delay:.44s } .gallery-item:nth-child(12) { animation-delay:.48s }
.gallery-item:nth-child(13) { animation-delay:.52s }

.thumb-wrap { overflow: hidden; }
.thumb-wrap img {
  width: 100%; display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.88);
}
.gallery-item:hover .thumb-wrap img { transform: scale(1.04); filter: brightness(1); }

.thumb-caption {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.cap-title {
  font-family: 'Gilda Display', serif;
  font-size: 0.88rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.cap-cat {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.cap-action {
  padding: 0 1rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  transition: color 0.25s;
}
.gallery-item:hover .read-more { color: var(--gold); }

.read-more-arrow {
  width: 18px; height: 1px;
  background: rgba(0,0,0,0.2);
  position: relative;
  transition: background 0.25s, width 0.25s;
}
.read-more-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-right: 1px solid rgba(0,0,0,0.2);
  transform: rotate(45deg);
  transition: border-color 0.25s;
}
.gallery-item:hover .read-more-arrow { background: var(--gold); width: 26px; }
.gallery-item:hover .read-more-arrow::after { border-color: var(--gold); }

/* ══════════════════════════
   CTA + FOOTER
══════════════════════════ */
.cta-strip {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip .sub-text { color: #7a5218; } /* darker gold for contrast on light bg */

.cta-strip h2 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
}

.btn-primary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); color: #f5f2ee; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1a1a;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-gold:hover { background: #b87d2a; border-color: #b87d2a; color: #1a1a1a; }

footer {
  background: #0d1f32;
  border-top: none;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-logo { font-family: 'Gilda Display', serif; font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); }

/* ══════════════════════════
   LIGHTBOX
══════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fefbf5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 80px;
}
#lightbox.open { display: flex; }

#lb-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* Inner wrapper: image on top, caption strip below */
#lb-inner {
  position: relative;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: min(94vw, 1600px);
  width: 100%;
}

#lb-img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #fefbf5;
  transition: opacity 0.22s;
}
#lb-img.fade { opacity: 0; }

#lb-scrim { display: none; }

/* Caption — no background, just text below the image */
#lb-caption {
  background: transparent;
  border-top: none;
  padding: 0.9rem 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 5;
}

#lb-caption-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

#lb-caption-title {
  display: block;
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

#lb-counter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Topbar hidden */
#lb-topbar { display: none; }

/* Close button */
#lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  width: 46px; height: 46px;
  border: none;
  background: #e3b573;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.3s;
  font-family: 'Open Sans', sans-serif;
  z-index: 10002;
}
#lb-close:hover { background: var(--gold); transform: rotate(90deg); }

/* Arrows */
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border: none;
  background: #e3b573;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: background 0.25s;
  user-select: none;
}
.lb-arrow:hover { background: var(--gold); }
#lb-prev { left: 1.2rem; }
#lb-next { right: 1.2rem; }
#lightbox.single .lb-arrow { display: none; }

@media (max-width: 860px) {
  #lightbox { padding: 1.5rem 0.5rem; }
  #lb-caption { padding: 0.75rem 1rem; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
}

/* ══════════════════════════
   INNER PAGE — HERO IMAGE OVERLAY
   (shared by contact, services, about, testimonials)
══════════════════════════ */
.hero-image {
  background-image: url('img/stairs.jpg');
  background-size: cover;
  background-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  z-index: 0;
}
.hero-image .sub-text,
.hero-image h1,
.hero-image p {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════
   INNER PAGE — SHARED LAYOUT
══════════════════════════ */
.page-section {
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 0 5rem;
}
.page-section h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.page-section p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.page-section > p {
  max-width: 700px;
}

/* ══════════════════════════
   SERVICES PAGE
══════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 2rem;
}
.service-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════
   ABOUT PAGE
══════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.about-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.about-block h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.about-block p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Gilda Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════
   TESTIMONIALS PAGE
══════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.85;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-name {
  font-family: 'Gilda Display', serif;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}
.testimonial-location {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════
   CONTACT PAGE
══════════════════════════ */
.contact-section {
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-details h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.contact-details p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.contact-block { margin-bottom: 2rem; }
.contact-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-block-value {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.9;
}
.contact-block-value a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-block-value a:hover { color: var(--gold); }
.map-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 260px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
}
.contact-form-wrap h2 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.contact-form-wrap p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group textarea { height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.82rem; color: #aaa; margin-top: 0.8rem; }
.field-error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: block;
  min-height: 1rem;
}
.form-group.check_wrong input,
.form-group.check_wrong select,
.form-group.check_wrong textarea { border-color: #c0392b; }
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0 4rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .map-wrap { height: 220px; }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — March 2026
══════════════════════════════════════════ */

/* ── Hero ── */
@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1.2rem 2rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ── Gallery section padding ── */
@media (max-width: 768px) {
  .gallery-section {
    padding: 1.2rem;
  }
}

/* ── Lightbox arrows on mobile — shrink and pull inward ── */
@media (max-width: 600px) {
  .lb-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  #lb-prev { left: 0.3rem; }
  #lb-next { right: 0.3rem; }
  #lb-close {
    width: 38px;
    height: 38px;
    top: 0.6rem;
    right: 0.6rem;
    font-size: 0.95rem;
  }
  #lightbox {
    padding: 1rem 0.3rem;
  }
}

/* ── Footer — stack on mobile ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem 1.5rem;
    gap: 0.5rem;
  }
  .footer-copy {
    font-size: 0.75rem;
  }
}

/* ── CTA strip — stack on mobile ── */
@media (max-width: 600px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
}

/* ── Page sections — reduce padding on mobile ── */
@media (max-width: 768px) {
  .page-section {
    max-width: 100%;
    padding: 2.5rem 1.5rem 3rem;
  }
  .contact-section {
    max-width: 100%;
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* ── Stats row — 2 cols on very small screens ── */
@media (max-width: 500px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Nav padding on small screens ── */
@media (max-width: 480px) {
  nav {
    padding: 0 1.2rem;
    height: 110px;
  }
  .nav-logo img {
    height: 80px;
  }
  .mobile-menu {
    top: 110px;
    padding: 1.2rem 1.5rem 1.8rem;
  }
}