/* ============================================================
   GREEN STRUCTURE BUILDING COMPANY LTD — Custom Styles
   Brand: Forest Green #1B5E20, Bright Green #2E7D32, 
          Gold #C8960C, Charcoal #1A1A1A, Cream #FAF9F6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gsb-dark-green: #1B5E20;
  --gsb-green: #2E7D32;
  --gsb-bright-green: #43A047;
  --gsb-gold: #C8960C;
  --gsb-gold-light: #F5C842;
  --gsb-charcoal: #1A1A1A;
  --gsb-dark: #111111;
  --gsb-cream: #FAF9F6;
  --gsb-white: #FFFFFF;
  --gsb-grey: #6B7280;
  --gsb-light-grey: #F3F4F6;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gsb-charcoal);
  background: var(--gsb-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
.gsb-navbar {
  background: var(--gsb-dark) !important;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gsb-gold);
}

.gsb-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.gsb-navbar .navbar-brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.gsb-navbar .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gsb-navbar .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gsb-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gsb-navbar .brand-sub {
  font-size: 0.65rem;
  color: var(--gsb-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.gsb-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 24px 14px !important;
  position: relative;
  transition: color 0.2s;
}

.gsb-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--gsb-gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.gsb-navbar .nav-link:hover,
.gsb-navbar .nav-item.active .nav-link {
  color: var(--gsb-gold) !important;
}

.gsb-navbar .nav-item.active .nav-link::after,
.gsb-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.gsb-navbar .cta-phone {
  background: var(--gsb-green);
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 0.78rem !important;
}
.gsb-navbar .cta-phone::after { display: none; }
.gsb-navbar .cta-phone:hover { background: var(--gsb-bright-green) !important; color: white !important; }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--gsb-dark-green) 0%, var(--gsb-charcoal) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::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.03'%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");
}

.page-hero h1 {
  color: var(--gsb-white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.page-hero .breadcrumb-item.active { color: var(--gsb-gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.page-hero-accent {
  width: 200px;
  height: 200px;
  opacity: 0.06;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── HOME HERO ── */
.home-hero {
  min-height: 88vh;
  background: var(--gsb-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-slideshow .slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gsb-gold-light);
  margin-bottom: 24px;
}

.hero-eyebrow span { width: 6px; height: 6px; background: var(--gsb-gold); border-radius: 50%; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--gsb-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gsb-gold);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-gsb-primary {
  background: var(--gsb-green);
  color: white;
  border: none;
  padding: 15px 36px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-gsb-primary:hover {
  background: var(--gsb-bright-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.4);
}

.btn-gsb-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 34px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-gsb-outline:hover {
  border-color: var(--gsb-gold);
  color: var(--gsb-gold);
}

.btn-gsb-gold {
  background: var(--gsb-gold);
  color: var(--gsb-dark);
  border: none;
  padding: 14px 34px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-gsb-gold:hover {
  background: var(--gsb-gold-light);
  color: var(--gsb-dark);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gsb-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── SECTION STYLES ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gsb-charcoal);
  margin-bottom: 0.5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gsb-green);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gsb-gold), var(--gsb-green));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.section-divider.center { margin: 16px auto 24px; }

.gsb-section { padding: 90px 0; }
.gsb-section-sm { padding: 60px 0; }
.bg-cream { background: var(--gsb-cream); }
.bg-dark-green { background: var(--gsb-dark-green); }
.bg-charcoal { background: var(--gsb-charcoal); }

/* ── SERVICES CARDS ── */
.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  color: inherit;
  text-decoration: none;
}

.service-card-img {
  height: 230px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gsb-dark-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gsb-charcoal);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gsb-grey);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gsb-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  text-decoration: none;
}

/* ── PROJECT GALLERY ── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.project-item.large { grid-row: span 2; }

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-item:hover img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,94,32,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-item:hover .project-overlay { opacity: 1; }

.project-overlay-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

/* ── WHY CHOOSE US ── */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gsb-dark-green), var(--gsb-bright-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gsb-charcoal);
}

.feature-item p {
  font-size: 0.87rem;
  color: var(--gsb-grey);
  line-height: 1.65;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonial-section {
  background: var(--gsb-charcoal);
  padding: 90px 0;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.testimonial-stars { color: var(--gsb-gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.testimonial-author { color: var(--gsb-gold); font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 3px; }

/* ── PRODUCTS/SHOP ── */
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
  color: inherit;
  text-decoration: none;
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--gsb-light-grey);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body { padding: 20px; }
.product-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--gsb-charcoal); }
.product-price { color: var(--gsb-green); font-weight: 700; font-size: 1.05rem; }
.product-badge {
  background: var(--gsb-dark-green);
  color: white;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: inline-block;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gsb-dark-green) 0%, var(--gsb-charcoal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,150,12,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── CONTACT ── */
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gsb-dark-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gsb-grey);
  margin-bottom: 4px;
}

.contact-info-item p { margin: 0; color: var(--gsb-charcoal); font-weight: 500; }

.form-control {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--gsb-green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
  outline: none;
}

/* ── ABOUT ── */
.about-img-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.about-img-main {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 8px;
  border: 6px solid white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge {
  position: absolute;
  bottom: 40px;
  left: -24px;
  background: var(--gsb-gold);
  color: var(--gsb-dark);
  padding: 18px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,150,12,0.35);
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-badge .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ── BLOG ── */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }

.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.78rem; color: var(--gsb-grey); margin-bottom: 12px; }
.blog-meta span { color: var(--gsb-green); font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--gsb-charcoal); flex: 1; }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--gsb-green); }
.read-more { font-size: 0.8rem; font-weight: 600; color: var(--gsb-green); text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; margin-top: auto; }

/* ── FOOTER ── */
.gsb-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.gsb-footer .footer-brand img { height: 64px; width: 64px; object-fit: contain; border-radius: 50%; }
.gsb-footer .footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}

.gsb-footer .footer-brand-sub { font-size: 0.7rem; color: var(--gsb-gold); letter-spacing: 0.15em; text-transform: uppercase; }

.gsb-footer p { font-size: 0.87rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

.footer-heading {
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 20px;
}

.gsb-footer ul { list-style: none; padding: 0; margin: 0; }
.gsb-footer ul li { margin-bottom: 10px; }
.gsb-footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.87rem; text-decoration: none; transition: color 0.2s; }
.gsb-footer ul li a:hover { color: var(--gsb-gold); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gsb-green); color: white; }

.footer-newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 10px 16px;
  color: white;
  font-size: 0.85rem;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form input:focus { outline: none; border-color: var(--gsb-green); }
.footer-newsletter-form button {
  background: var(--gsb-green);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: var(--gsb-bright-green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 50px;
}

.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gsb-gold); }

/* ── CART / CHECKOUT ── */
.cart-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gsb-grey); border-bottom: 2px solid #e5e7eb; }
.cart-table td { vertical-align: middle; }
.cart-table img { width: 72px; border-radius: 6px; }

.cart-summary {
  background: var(--gsb-cream);
  border-radius: 10px;
  padding: 28px;
}

.cart-summary h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid #e5e7eb; }

/* ── MISC UTILITIES ── */
.text-gsb-green { color: var(--gsb-green) !important; }
.text-gsb-gold { color: var(--gsb-gold) !important; }
.bg-gsb-green { background: var(--gsb-green) !important; }
.badge-eco { background: rgba(46,125,50,0.12); color: var(--gsb-green); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .home-hero { min-height: 70vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-item.large { grid-row: span 1; }
  .about-img-stack { padding: 0; }
  .about-img-accent, .about-badge { display: none; }
  .gsb-navbar .brand-sub { display: none; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 576px) {
  .gsb-section { padding: 60px 0; }
  .project-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}
