/* =============================================
   THE AMERICAN ACADEMY — Main Stylesheet
   Brand Colors: GRANAT #004664 | CZERWONY #DC1E28
   Fonts: Abril Fatface | Lato
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #004664;
  --navy-dark:   #003350;
  --navy-light:  #135f7d;
  --red:         #DC1E28;
  --red-dark:    #b01520;
  --white:       #ffffff;
  --off-white:   #f5f7f8;
  --light-gray:  #e2e8ec;
  --mid-gray:    #7a8f99;
  --dark-gray:   #2a3840;
  --text:        #1c2b33;
  --gold:        #c9a227;
  --shadow-sm:   0 2px 8px rgba(0,70,100,0.10);
  --shadow-md:   0 4px 20px rgba(0,70,100,0.15);
  --shadow-lg:   0 8px 40px rgba(0,70,100,0.20);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s ease;
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::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;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--dark-gray); }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy) !important; }
.text-red { color: var(--red) !important; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 1rem auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.navbar.scrolled { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-body);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white);
  margin-left: 0.5rem;
  padding: 0.5rem 1.1rem;
}
.nav-links a.nav-cta:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Header (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::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-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header .section-label { color: rgba(255,255,255,0.7); }
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.page-breadcrumb a { color: rgba(255,255,255,0.8); }
.page-breadcrumb a:hover { color: var(--white); }

/* ── Hero (Home) — White background, centered ── */
.hero {
  position: relative;
  background: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

/* Hero top band: white bg, logo + title centered */
.hero-top {
  padding: 4rem 0 0;
  text-align: center;
  background: var(--white);
}
.hero-logo {
  height: 180px;
  width: auto;
  margin: 0 auto 2rem;
  display: block;
}
.hero-display-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.hero-display-title sup {
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: 0;
}
.hero-subtitle-line {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* Hero tagline band — navy strip below logo/title */
.hero-tagline-band {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
}
.hero-tagline-band .hero-motto {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0;
}
.hero-tagline-band .hero-taglines {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 1rem;
}
.hero-tagline-band .hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-tagline-band .hero-tagline::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero CTA row */
.hero-cta-row {
  background: var(--off-white);
  padding: 2rem 0;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.hero-cta-row .hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Video Section ── */
.video-section {
  background: var(--white);
  padding: 5rem 0;
}
.video-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.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; }

/* ── Testimonials ── */
.testimonials { background: var(--navy-dark); color: var(--white); }
.testimonials h2 { color: var(--white); }
.testimonials .section-label { color: rgba(255,255,255,0.6); }
.testimonials .divider { background: var(--red); }

.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--red); line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }
.testimonial-quote::after  { content: '\201D'; font-size: 2rem; color: var(--red); line-height: 0; vertical-align: -0.5rem; margin-left:  0.25rem; }
.testimonial-author {
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 1rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ── About section ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
  font-family: var(--font-body);
}
.check-list { margin: 1.5rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Pricing ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--navy); }
.pricing-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 2rem;
  text-align: center;
}
.pricing-header h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.pricing-header .subtitle { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.pricing-card.featured .pricing-header { background: var(--red); }
.pricing-body { padding: 2rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .label { color: var(--dark-gray); }
.pricing-row .price { font-weight: 700; color: var(--navy); font-size: 1rem; }
.pricing-row .duration { font-size: 0.8rem; color: var(--mid-gray); }

/* ── Process Steps ── */
.steps { counter-reset: step; }
.step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.step-num {
  counter-increment: step;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-num::before { content: counter(step); }
.step-body h4 { color: var(--navy); margin-bottom: 0.25rem; }
.step-body p { color: var(--dark-gray); font-size: 0.95rem; margin: 0; }

/* ── Team Cards ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
/* Initials avatar inside team-photo */
.team-initials {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.team-info { padding: 1.75rem; }
.team-info h3 { color: var(--navy); margin-bottom: 0.25rem; }
.team-role { color: var(--red); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.team-bio { color: var(--dark-gray); font-size: 0.95rem; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--light-gray);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(0,70,100,0.5);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 1.5rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--red); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; font-family: var(--font-body); }
.contact-detail-text a, .contact-detail-text span { color: var(--dark-gray); }
.contact-detail-text a:hover { color: var(--red); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--red); transform: translateY(-2px); }

/* ── Form ── */
.contact-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--mid-gray); margin-top: 0.5rem; }
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: #065f46;
  font-weight: 500;
  margin-top: 1rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── Backgrounds ── */
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-off-white { background: var(--off-white); }
.bg-light { background: var(--light-gray); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 1.5rem; gap: 0.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-links a.nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .navbar { position: fixed; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-logo { height: 120px; }
  .hero-tagline-band .hero-taglines { gap: 1rem 2rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta-row .hero-btns { flex-direction: column; align-items: center; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── Tag badges ── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}
.badge-navy { background: rgba(0,70,100,0.1); color: var(--navy); }
.badge-red  { background: rgba(220,30,40,0.1); color: var(--red); }
.badge-gold { background: rgba(201,162,39,0.1); color: var(--gold); }

/* ── Highlight box ── */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.highlight-box h3 { color: var(--white); }
.highlight-box p { color: rgba(255,255,255,0.8); }

/* ── Who we serve tags ── */
.serve-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.serve-tag {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
}
.serve-tag::before { content: '▸'; color: var(--red); font-weight: 700; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ── Bio header (Our Team page) ── */
.bio-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.bio-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  border: 4px solid var(--light-gray);
}
.bio-meta h3 { color: var(--navy); margin-bottom: 0.25rem; }
.bio-meta .role { color: var(--red); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; font-family: var(--font-body); }
