/* ============================================================
   BADONGA — Shared stylesheet (design system)
   Used by every page. Page-specific rules live in their own file.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --yellow-50:  #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --amber-400:  #fbbf24;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --font-sans: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;

  --nav-h: 5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
}

/* ---------- Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  letter-spacing: 0.005em;
  color: var(--gray-900);
  background: #fff;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
}
input, select, textarea { font-family: var(--font-sans); }
iframe { display: block; border: 0; }

.container {
  max-width: 72rem; /* 1152px = max-w-6xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Scroll-reveal animations ---------- */
[data-animate] { opacity: 0; }
[data-animate].in-view {
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
[data-animate="up"].in-view    { animation-name: fadeInUp; }
[data-animate="left"].in-view  { animation-name: slideInLeft; }
[data-animate="right"].in-view { animation-name: slideInRight; }
[data-animate="none"].in-view  { animation-name: fadeIn; }

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideInLeft {
  0%   { opacity: 0; transform: translateX(-32px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0%   { opacity: 0; transform: translateX(32px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideIn {
  0%   { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; }
  [data-animate].in-view { animation: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- Fixed top navigation ---------- */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}
.top-nav.nav-home { background: rgba(0, 0, 0, 0.8); }
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  color: var(--yellow-400);
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}
.nav-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand-logo img { height: 2.5rem; width: auto; object-fit: contain; }
.nav-brand-logo .brand-top {
  color: var(--yellow-400);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-brand-logo .brand-sub {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.125rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a, .nav-links button {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--yellow-400); }
.nav-home .nav-links { gap: 2rem; }
.nav-home .nav-links a, .nav-home .nav-links button { color: #fff; font-size: 1rem; }
.nav-home .nav-links a:hover, .nav-home .nav-links button:hover { color: var(--yellow-400); }
.nav-cta {
  background: var(--yellow-400);
  color: #000 !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--yellow-300); color: #000 !important; }
.nav-ghost {
  border: 1px solid rgba(250, 204, 21, 0.4);
  color: var(--yellow-400) !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.nav-ghost:hover { background: rgba(250, 204, 21, 0.1); }
.nav-toggle {
  display: block;
  color: var(--yellow-400);
  font-size: 1.5rem;
  line-height: 1;
}
.nav-home .nav-toggle { font-size: 1.875rem; }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
  background: var(--gray-950);
  border-top: 1px solid var(--gray-800);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-300);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-800);
  font-size: 0.875rem;
}
.mobile-menu a:hover { color: var(--yellow-400); }
.mobile-menu a.accent { color: var(--yellow-400); border-bottom: none; }
.nav-home .mobile-menu { background: rgba(0, 0, 0, 0.95); border-top: none; gap: 1rem; }
.nav-home .mobile-menu a {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}
.nav-home .mobile-menu a.accent { color: var(--yellow-400); border-bottom: none; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle, .mobile-menu { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn-yellow {
  display: inline-block;
  background: var(--yellow-400);
  color: #000;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  transition: background 0.2s, transform 0.2s;
  text-align: center;
  font-size: 1rem;
}
.btn-yellow:hover { background: var(--yellow-300); }
.btn-yellow.btn-lg { font-size: 1.125rem; }
.btn-yellow.btn-glow { box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.3); }
.btn-outline-yellow {
  display: inline-block;
  border: 2px solid rgba(250, 204, 21, 0.5);
  color: var(--yellow-400);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  font-size: 1rem;
}
.btn-outline-yellow:hover { border-color: var(--yellow-400); background: rgba(250, 204, 21, 0.1); }
.btn-outline-yellow.btn-lg { font-size: 1.125rem; }

/* ---------- Badges ---------- */
.badge-pill {
  display: inline-block;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  color: var(--yellow-400);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Section headers ---------- */
.sec-head { text-align: center; margin-bottom: 4rem; }
.sec-head.tight { margin-bottom: 3rem; }
.sec-eyebrow {
  color: var(--yellow-500);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.on-dark .sec-eyebrow { color: var(--yellow-400); }
.sec-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--gray-900);
}
.on-dark .sec-title { color: #fff; }
.sec-divider {
  width: 5rem;
  height: 0.25rem;
  background: var(--yellow-400);
  margin: 0 auto;
  border-radius: 9999px;
}
.sec-sub {
  color: var(--gray-500);
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}
.on-dark .sec-sub { color: var(--gray-400); }
@media (min-width: 768px) {
  .sec-title { font-size: 3rem; }
}

/* ---------- Section spacing / backgrounds ---------- */
.section { padding: 6rem 0; }
.section-sm { padding: 5rem 0; }
.bg-dark { background: var(--gray-950); color: #fff; }
.bg-light { background: #fff; }

/* ---------- About tabs (branch pages) ---------- */
.tab-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tab-btn:hover { background: var(--gray-200); }
.tab-btn.active {
  background: var(--yellow-400);
  color: #000;
  box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.2);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Service cards (dark grid) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-card:hover { border-color: rgba(250, 204, 21, 0.5); transform: translateY(-4px); }
.svc-icon { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1; }
.svc-img-wrap {
  margin-bottom: 1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-800);
}
.svc-img-wrap img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }
.svc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
  transition: color 0.2s;
}
.svc-card:hover h3 { color: var(--yellow-400); }
.svc-desc { color: var(--gray-400); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.svc-items li {
  color: var(--gray-500);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.svc-items .arrow { color: var(--yellow-400); }
.svc-more {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-800);
}
.svc-more a {
  color: var(--yellow-400);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}
.svc-more a:hover { color: var(--yellow-300); }

/* ---------- Values grid (branch pages) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.value-card .v-icon { color: var(--yellow-500); font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-card h4 { font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; font-family: var(--font-sans); }
.value-card p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ---------- Vision / Mission blocks ---------- */
.vm-grid { display: grid; gap: 2rem; }
.vm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .vm-row { grid-template-columns: repeat(2, 1fr); }
}
.vm-dark {
  background: var(--gray-950);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.vm-dark h3 { color: var(--yellow-400); font-size: 1.5rem; margin-bottom: 1rem; }
.vm-dark p { color: var(--gray-300); line-height: 1.7; font-size: 1.125rem; }
.vm-yellow {
  background: var(--yellow-400);
  color: #000;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.vm-yellow h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.vm-yellow p { color: rgba(0, 0, 0, 0.8); line-height: 1.7; font-size: 1.125rem; }
.vm-img {
  position: relative;
  height: 100%;
  min-height: 280px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.vm-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.vm-img .img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 50%, transparent);
}
.vm-corner {
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  border-radius: 9999px;
  transform: translate(4rem, -4rem);
}
.vm-dark .vm-corner { background: rgba(250, 204, 21, 0.1); }
.vm-yellow .vm-corner { background: rgba(0, 0, 0, 0.1); }
.vm-letter { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; font-family: var(--font-sans); }
.vm-dark .vm-letter { color: var(--yellow-400); opacity: 0.2; }
.vm-yellow .vm-letter { color: rgba(0, 0, 0, 0.2); }

/* ---------- Clients marquee ---------- */
.marquee-wrap { position: relative; overflow: hidden; padding: 0.5rem 0; }
.marquee-fade {
  pointer-events: none;
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 10;
}
.marquee-fade.left  { left: 0;  background: linear-gradient(to right, #fff, rgba(255,255,255,0.9), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(to left,  #fff, rgba(255,255,255,0.9), transparent); }
.on-dark .marquee-fade.left  { background: linear-gradient(to right, var(--gray-950), rgba(3,7,18,0.9), transparent); }
.on-dark .marquee-fade.right { background: linear-gradient(to left,  var(--gray-950), rgba(3,7,18,0.9), transparent); }
.marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: clientsMarquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes clientsMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-card {
  flex: 0 0 180px;
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.client-card:hover { border-color: var(--yellow-300); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.client-card img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.client-card:hover img { filter: grayscale(0); }
.client-card p {
  color: var(--gray-500);
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.3s;
}
.client-card:hover p { color: var(--yellow-600); }
.on-dark .client-card { background: var(--gray-900); border-color: var(--gray-800); }
.on-dark .client-card:hover { border-color: rgba(250, 204, 21, 0.5); background: var(--gray-800); box-shadow: none; }
.on-dark .client-card p { color: var(--gray-400); }
.on-dark .client-card:hover p { color: var(--yellow-400); }

/* ---------- Contact hub CTA strip ---------- */
.cta-hub { padding: 5rem 0; background: var(--gray-950); color: #fff; text-align: center; }
.cta-hub .container { max-width: 64rem; }
.cta-hub .eyebrow {
  color: var(--yellow-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta-hub h2 { font-size: 1.875rem; margin: 0.5rem 0 1rem; color: #fff; }
.cta-hub p { color: var(--gray-400); margin-bottom: 2rem; }
@media (min-width: 768px) {
  .cta-hub h2 { font-size: 2.25rem; }
}

/* ---------- Branch footer ---------- */
.footer {
  background: #000;
  color: #fff;
  padding: 3rem 1.5rem;
}
.footer-top {
  max-width: 72rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; }
}
.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-row img { height: 2.5rem; width: auto; object-fit: contain; }
.footer-brand-row .fb-title { color: var(--yellow-400); font-size: 0.875rem; font-weight: 800; }
.footer-brand-row .fb-sub { color: var(--gray-500); font-size: 0.75rem; }
.footer-tagline { color: var(--gray-500); font-size: 0.875rem; max-width: 20rem; line-height: 1.6; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  color: var(--yellow-400);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}
.footer-col li { margin-bottom: 0.5rem; color: var(--gray-500); font-size: 0.875rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow-400); }
.footer-bottom {
  max-width: 72rem;
  margin: 0 auto;
  border-top: 1px solid var(--gray-800);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; text-align: left; }
}
.footer-bottom p { color: var(--gray-600); font-size: 0.875rem; }
.footer-bottom a {
  color: rgba(250, 204, 21, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--yellow-400); }

/* ---------- Modal / overlay ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 64rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .modal-backdrop { padding: 1.5rem; }
}

/* ---------- Branch hero (tech-graphics / contractors) ---------- */
.branch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gray-950);
}
.branch-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.branch-hero .hero-overlay { position: absolute; inset: 0; }
.branch-hero .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 0;
  text-align: center;
}
.branch-hero .hero-logo { display: flex; justify-content: center; margin-bottom: 2rem; }
.branch-hero .hero-logo img {
  height: 7rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}
.branch-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.branch-hero h1 .hl { color: var(--yellow-400); }
.branch-hero .hero-desc {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.branch-hero .hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .branch-hero .hero-btns { flex-direction: row; }
}
@media (min-width: 768px) {
  .branch-hero .hero-logo img { height: 10rem; }
  .branch-hero h1 { font-size: 4.5rem; }
  .branch-hero .hero-desc { font-size: 1.25rem; }
}

/* ---------- About (branch pages) grids ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-text h3 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: 1rem; }
.about-text p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.about-img {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img .img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1) 50%, transparent);
}

/* ---------- Generic helpers ---------- */
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
