/* ===========================
   Blyco Electric LLC — Main CSS
   =========================== */

:root {
  --navy: #0d2340;
  --navy-dark: #081929;
  --navy-mid: #163352;
  --gold: #f5a623;
  --gold-light: #ffc04d;
  --gold-dark: #d4891a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray-light: #e8ecf0;
  --gray: #8a9ab0;
  --text: #1a2a3a;
  --text-light: #4a5a6a;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(13,35,64,0.12);
  --shadow-lg: 0 8px 40px rgba(13,35,64,0.18);
  --transition: 0.25s ease;
  --max-w: 1200px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Serif 4', serif;
  --font-ui: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.header-logo img { height: 54px; width: auto; }
.header-logo { display: flex; align-items: center; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(245,166,35,0.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--gold-light); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy-dark);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(105deg, rgba(8,25,41,0.93) 45%, rgba(8,25,41,0.6) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--white);
}
.hero h1 { color: var(--white); max-width: 750px; margin-bottom: 1.25rem; }
.hero p.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-family: var(--font-ui);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-badge {
  text-align: center;
  font-family: var(--font-ui);
}
.hero-badge .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gold);
  padding: 0.9rem 1.5rem;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dark);
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.service-card .card-link {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card .card-link:hover { color: var(--gold-dark); }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--navy);
  padding: 3rem 0;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .lbl {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  display: block;
}

/* ---- PROJECT GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 0.8rem;
  background: linear-gradient(to top, rgba(8,25,41,0.9) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.25s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1/-1; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* ---- SERVICE PAGE CONTENT ---- */
.service-intro { max-width: 820px; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; margin: 1.5rem 0; }
.feature-list li {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-light);
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.3em;
}

/* ---- CALLOUT BOX ---- */
.callout-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.callout-box h3 { color: var(--white); margin-bottom: 1rem; }
.callout-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.callout-phone {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* ---- AREAS SERVED ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.area-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245,166,35,0.15);
}
.area-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy); }
.area-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.75rem; }
.area-card a { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p { font-style: italic; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.testimonial-meta { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy-dark);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero p.hero-lead { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 650px; margin-top: 1rem; font-family: var(--font-ui); }

/* ---- ABOUT PAGE ---- */
.team-highlight { display: flex; gap: 2rem; align-items: flex-start; }
.team-highlight img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 4px solid var(--gold); flex-shrink: 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-item { text-align: center; padding: 1.5rem; }
.value-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.value-item h4 { margin-bottom: 0.5rem; color: var(--navy); }
.value-item p { font-size: 0.9rem; color: var(--text-light); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  font-size: 0.85rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-address { font-style: normal; line-height: 2; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}
.footer-phone:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- MOBILE BOTTOM BAR ---- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 0.5rem 1rem;
}
.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mobile-bar .btn { justify-content: center; padding: 0.75rem 1rem; font-size: 0.82rem; }

/* ---- SECTION DIVIDER ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--text-light); font-size: 1rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header.light .section-label { color: var(--gold-light); }

.divider { height: 3px; width: 60px; background: var(--gold); margin: 0.75rem auto 0; border-radius: 2px; }
.divider.left { margin-left: 0; }

/* ---- PROJECT PAGE ---- */
.project-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  border: 1.5px solid var(--gray-light);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-light);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- LOCATION PAGES ---- */
.location-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-3, .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .value-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .main-nav { display: none; flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow-lg); z-index: 150; }
  .main-nav a { width: 100%; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; padding: 0.25rem 0 0.25rem 1rem; display: block !important; }
  .dropdown-menu a { font-size: 0.82rem; padding: 0.35rem 0; border: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: 480px; }
  .hero-badges { gap: 1.25rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }

  .team-highlight { flex-direction: column; }
  .team-highlight img { width: 160px; height: 160px; }
  .header-cta .btn { display: none; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0; }
