/* ============================================
   Elite Secondary Development
   Brand: Red / Black / White / Gray
   ============================================ */

:root {
  --red: #C8102E;
  --red-dark: #9B0C24;
  --red-glow: rgba(200, 16, 46, 0.35);
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --gray-dark: #2E2E2E;
  --gray: #6B6B6B;
  --gray-light: #D9D9D9;
  --off-white: #F5F5F5;
  --white: #FFFFFF;

  --font-display: 'Oswald', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-brand img { height: 60px; width: auto; }

.nav-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .wordmark .top { color: var(--white); font-size: 1.15rem; letter-spacing: 0.04em; }
.nav-brand .wordmark .bot { color: var(--red); font-size: 0.95rem; letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.5) 60%, rgba(200,16,46,0.55) 100%),
    url('assets/hero.jpg') center/cover no-repeat,
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, var(--black) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 6rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  padding-left: 3rem;
  position: relative;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2.25rem; height: 2px;
  background: var(--red);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Credentials strip under hero */
.creds-strip {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  border-top: 3px solid var(--red);
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.creds-grid .item {
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--gray-dark);
}
.creds-grid .item:last-child { border-right: none; }
.creds-grid .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--red);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.creds-grid .label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 5rem 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--gray); font-size: 1.05rem; }

/* About-on-home / generic two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col .image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.4), rgba(200,16,46,0.4)),
    url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}
.two-col .image-wrap::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  pointer-events: none;
}
.two-col h2 .accent { color: var(--red); }
.two-col p { color: var(--gray); font-size: 1.05rem; margin-bottom: 1.25rem; }

/* Service / Pricing Cards */
.bg-dark {
  background: var(--black);
  color: var(--white);
}
.bg-dark h2, .bg-dark .section-head h2 { color: var(--white); }
.bg-dark .section-head p { color: var(--gray-light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--charcoal);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(200,16,46,0.25);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--red-dark) 0%, var(--red) 100%);
  border-color: var(--red);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  font-weight: 700;
}

.price-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.price-card .price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.15rem;
  color: var(--gray-light);
}
.price-card.featured .price .currency { color: rgba(255,255,255,0.8); }

.price-card .per {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin: 0 0 2rem;
  flex-grow: 1;
  text-align: left;
}
.price-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-light);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.price-card.featured li::before { color: var(--white); }
.price-card.featured li { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-light);
  box-shadow: var(--shadow);
  cursor: pointer;
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.25rem 1.1rem;
  color: var(--white);
  opacity: 1;
  transition: background 0.3s ease;
}
.gallery-item:hover .overlay {
  background: linear-gradient(180deg, transparent 15%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.95) 100%);
}
.gallery-item .overlay .name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.gallery-item .overlay .role {
  font-size: 0.72rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.gallery-placeholder {
  background: linear-gradient(135deg, var(--charcoal), var(--gray-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-family: var(--font-display);
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

/* Product / Apparel Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--red);
}
.product-image {
  aspect-ratio: 1;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-image .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--off-white), var(--gray-light));
  color: var(--gray);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}
.product-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--black);
}
.product-meta {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  line-height: 1;
  font-weight: 700;
}
.product-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}
.size-label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--gray-dark);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.size-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.size-btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
}
.size-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--off-white);
}
.color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray);
  vertical-align: middle;
  margin-right: 0.4rem;
}

/* Levels strip (NFL / CFL / D1) */
.levels {
  background: var(--off-white);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.levels-grid .level {
  padding: 1rem;
}
.levels-grid .tier {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.levels-grid .desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(200,16,46,0.92), rgba(155,12,36,0.92)),
    url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  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.9); font-size: 1.15rem; margin-bottom: 2rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info { padding-right: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info h2 .accent { color: var(--red); }
.contact-info > p { color: var(--gray); font-size: 1.05rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--black);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-item .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.contact-item .value {
  font-weight: 600;
  color: var(--black);
  font-size: 1.05rem;
  word-break: break-word;
}
.contact-item a.value { color: var(--black); }
.contact-item a.value:hover { color: var(--red); }

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* About Page specifics */
.page-header {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.8), rgba(200,16,46,0.6)),
    url('assets/page-header.jpg') center/cover no-repeat,
    var(--black);
  color: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p {
  color: var(--gray-light);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--red);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card .num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.value-card p { color: var(--gray); margin: 0; }

/* Footer */
.footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.footer .brand-block .wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.footer .brand-block .wordmark .top { color: var(--white); display: block; }
.footer .brand-block .wordmark .bot { color: var(--red); display: block; font-size: 1.15rem; }
.footer .brand-block p { color: var(--gray); margin-top: 1rem; max-width: 300px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer a { color: var(--gray-light); }
.footer a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-row a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 3px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .two-col, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-grid, .values-grid, .creds-grid, .levels-grid, .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid { gap: 1.5rem; }
  .gallery-item { flex: 0 0 calc((100% - 1.25rem) / 2); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  section { padding: 3.5rem 0; }
  .pricing-grid, .values-grid, .creds-grid, .levels-grid, .footer-grid, .product-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item { flex: 0 0 100%; }
  .creds-grid .item { border-right: none; border-bottom: 1px solid var(--gray-dark); padding-bottom: 1rem; }
  .creds-grid .item:last-child { border-bottom: none; }
  .hero { min-height: 75vh; }
  .hero-inner { padding: 4rem 0; }
}
