/* ============================================================
   TQMS CONSULTING – Premium Stylesheet
   Theme: Luxury Corporate | Navy + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122849;
  --navy-light: #1A3A5C;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale:  #F9F1DC;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A5568;
  --text-light: #8A94A6;
  --border:     rgba(201,168,76,0.25);
  --shadow-sm:  0 2px 12px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 40px rgba(11,31,58,0.14);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.20);
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::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-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.8; }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.gold-line {
  display: inline-block; width: 52px; height: 2px;
  background: var(--gold); margin-bottom: 1.2rem;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
  display: block;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy) !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy) !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── Page Load Animation ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.anim-up  { animation: fadeUp 0.7s ease forwards; }
.anim-in  { animation: fadeIn 0.7s ease forwards; }
.delay-1  { animation-delay: 0.15s; opacity: 0; }
.delay-2  { animation-delay: 0.30s; opacity: 0; }
.delay-3  { animation-delay: 0.45s; opacity: 0; }
.delay-4  { animation-delay: 0.60s; opacity: 0; }

/* ── Scroll-reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 30px rgba(11,31,58,0.35);
  padding: 0.9rem 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 0.8rem; }
.logo-wrap img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--white); line-height: 1; }
.logo-text .tagline { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

nav { display: flex; align-items: center; gap: 2.4rem; }
nav a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 2px;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after, nav a.active::after { width: 100%; }
.nav-cta { margin-left: 0.6rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2137 100%);
  display: block;
}
.hero > .container {
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; margin-bottom: 2.4rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2.4rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .number {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hero-stat .label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll::before {
  content: ''; width: 1px; height: 48px;
  background: linear-gradient(transparent, rgba(255,255,255,0.3));
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); color: var(--white);
  padding: 1.6rem 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); text-align: center; min-width: 160px;
}
.about-badge .big { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--gold); line-height: 1; }
.about-badge .small { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }

.about-text .gold-line { display: block; }
.about-text h2 { color: var(--navy); margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0; }
.highlight {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1rem 1.2rem; background: var(--off-white);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight-icon { font-size: 1.2rem; flex-shrink: 0; }
.highlight h4 { font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--navy); }
.highlight p { font-size: 0.78rem; margin: 0; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.services-header h2 { color: var(--navy); margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; font-size: 1.4rem;
}
.service-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.87rem; }
.service-contact { margin-top: 1.2rem; }
.service-contact a {
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.05em;
}
.service-contact a:hover { color: var(--navy); }

/* ── TEAM ───────────────────────────────────────────────────── */
.team-section { background: var(--navy); }
.team-header { text-align: center; margin-bottom: 4rem; }
.team-header .eyebrow { color: var(--gold-light); }
.team-header h2 { color: var(--white); }
.team-header p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 1rem auto 0; }
.team-group-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  padding-bottom: 0.6rem; border-bottom: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 2rem;
}
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-bottom: 2.8rem; }
.team-grid.legal { grid-template-columns: repeat(3, 1fr); max-width: 700px; }
.member-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); text-align: center;
}
.member-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.member-photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1;
}
.member-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.member-card:hover .member-photo-wrap img { transform: scale(1.06); filter: grayscale(0%); }
.member-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.member-card:hover .member-overlay { opacity: 1; }
.member-info { padding: 1.2rem 0.9rem; }
.member-info h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 0.2rem; }
.member-role { font-size: 0.72rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.member-creds { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; font-style: italic; }
.member-phone { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }

/* ── AFFILIATIONS ───────────────────────────────────────────── */
.affil-section { background: var(--white); }
.affil-header { text-align: center; margin-bottom: 3.5rem; }
.affil-header h2 { color: var(--navy); }
.affil-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 3rem; }
.affil-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1.2rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
  transition: var(--transition); background: var(--white);
}
.affil-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); background: var(--gold-pale); }
.affil-card img { height: 52px; width: auto; object-fit: contain; margin-bottom: 1rem; opacity: 0.75; transition: opacity var(--transition); }
.affil-card:hover img { opacity: 1; }
.affil-card p { font-size: 0.78rem; font-weight: 600; color: var(--navy); }

/* ── MARKETS BANNER ─────────────────────────────────────────── */
.markets-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0; text-align: center;
}
.markets-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.markets-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.markets-list { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.market-pill {
  padding: 0.55rem 1.4rem; border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  color: var(--gold-light); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; transition: var(--transition);
}
.market-pill:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

.contact-form { background: var(--white); padding: 2.8rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form h3 { color: var(--navy); margin-bottom: 1.6rem; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #E2E8F0; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text-dark); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.4rem; padding: 1rem; font-size: 0.82rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #060F1E;
  color: rgba(255,255,255,0.65);
}
.footer-main { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .logo-wrap { margin-bottom: 1.2rem; }
.footer-brand .logo-wrap img { height: 42px; width: auto; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-line { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col .contact-line span { font-size: 0.84rem; color: rgba(255,255,255,0.5); display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col .contact-line span em { color: var(--gold); font-style: normal; flex-shrink: 0; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom {
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }
.dev-credit { color: var(--gold); font-weight: 600; }

/* ── PAGE INNER HERO ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 1rem auto 0; position: relative; }
.breadcrumb { position: relative; display: flex; justify-content: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── Scroll-to-top ───────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none; transition: var(--transition); transform: translateY(8px);
}
#scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .affil-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  nav { display: none; flex-direction: column; align-items: flex-start; gap: 1.2rem; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--navy); padding: 80px 2rem 2rem; box-shadow: -8px 0 40px rgba(0,0,0,0.3); transform: translateX(100%); transition: transform var(--transition); z-index: 9999; }
  nav.open { display: flex; transform: translateX(0); }
  .hamburger { display: flex; z-index: 10000; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid.legal { grid-template-columns: repeat(2, 1fr); }
  .affil-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid, .team-grid.legal { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .hero-buttons { flex-direction: column; }
  .affil-grid { grid-template-columns: repeat(2, 1fr); }
}
