/* ================================================================
   HIGH IMPACT ENTERTAINMENT — Shared Stylesheet
   ================================================================ */

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

:root {
  --blue:   #00d4ff;
  --blue2:  #0099cc;
  --glow:   rgba(0, 212, 255, 0.35);
  --glow2:  rgba(0, 212, 255, 0.12);
  --dark:   #050810;
  --dark2:  #080e1a;
  --dark3:  #0d1525;
  --card:   #0b1220;
  --border: rgba(0, 212, 255, 0.18);
  --white:  #ffffff;
  --grey:   #8a9bb8;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue2); border-radius: 3px; }

/* ─── UTILITIES ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}
p { color: var(--grey); line-height: 1.75; }

.text-blue   { color: var(--blue); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.glow-text   { text-shadow: 0 0 40px var(--glow), 0 0 80px var(--glow2); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 30px var(--glow), 0 4px 20px rgba(0,212,255,.4);
}
.btn-primary:hover {
  background: #33ddff;
  box-shadow: 0 0 50px var(--glow), 0 6px 30px rgba(0,212,255,.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px var(--glow2);
}
.btn-lg { padding: 20px 40px; font-size: 17px; }
.btn-sm { padding: 12px 24px; font-size: 14px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s ease;
}
nav.scrolled {
  background: rgba(5, 8, 16, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-word strong { font-weight: 800; color: var(--blue); }
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 3px;
}
.nav-logo-wrap { display: flex; flex-direction: column; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-cta    { display: flex; align-items: center; gap: 12px; }
.hamburger  { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: all .3s;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.25) saturate(1.2);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,.06) 0%, transparent 50%);
}
.page-hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark), transparent);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.page-hero p.sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--grey); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--blue); }

/* ─── SECTION HEADER ─── */
.section-header          { margin-bottom: 60px; }
.section-header.center   { text-align: center; }
.section-header p        { max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 20px 0;
  border-radius: 2px;
}
.section-header.center .divider { margin: 20px auto; }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 40px var(--glow2), 0 20px 60px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 30px var(--glow2);
}
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--blue);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(0,212,255,.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-body h3   { margin-bottom: 10px; font-size: 20px; }
.service-body p    { font-size: 14px; margin-bottom: 20px; flex: 1; }
.service-tags      { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ─── FEATURE HIGHLIGHT (LED Cube) ─── */
.feature-highlight {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.fh-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.fh-media img { width: 100%; height: 100%; object-fit: cover; }
.fh-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--dark3));
}
.fh-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fh-content h2  { font-size: clamp(28px, 4vw, 44px); }
.fh-content p   { margin-bottom: 32px; }
.fh-points      { list-style: none; margin-bottom: 36px; }
.fh-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.fh-points li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─── WHY CHOOSE: 4-col ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
}
.why-card:hover {
  border-color: rgba(0,212,255,.35);
  box-shadow: 0 0 30px var(--glow2);
}
.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { font-size: 17px; margin-bottom: 10px; }
.why-card p  { font-size: 14px; }

/* ─── CUSTOMISATION: 2-col ─── */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.custom-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s;
}
.custom-item:hover {
  border-color: rgba(0,212,255,.35);
  transform: translateY(-3px);
}
.custom-item.featured-item {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,212,255,.07) 0%, var(--card) 60%);
  border-color: rgba(0,212,255,.3);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.custom-item.featured-item .custom-icon { font-size: 40px; margin-bottom: 0; }
.custom-icon   { font-size: 32px; margin-bottom: 16px; display: block; }
.custom-item h3 { font-size: 18px; margin-bottom: 10px; }
.custom-item p  { font-size: 14px; }

/* ─── GALLERY ─── */
.gallery { background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
}

/* ─── PERFECT FOR: 3-col ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
}
.event-card:hover {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 25px var(--glow2);
  transform: translateY(-3px);
}
.event-icon    { font-size: 36px; display: block; margin-bottom: 14px; }
.event-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.event-card p  { font-size: 13px; }

/* ─── PROCESS: 4-col ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent, var(--blue));
  opacity: .3;
}
.process-step { text-align: center; padding: 0 24px; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--glow);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p  { font-size: 14px; }

/* ─── TESTIMONIALS: 3-col ─── */
.testimonials { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all .3s;
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,.3);
  box-shadow: 0 0 30px var(--glow2);
}
.quote-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--blue);
  opacity: .3;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px; left: 28px;
}
.testimonial-text {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #005f80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--grey); }
.stars       { color: #ffd700; font-size: 13px; letter-spacing: 2px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, rgba(0,212,255,.1) 0%, rgba(0,100,200,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 8px; }
.cta-band p  { max-width: 500px; }
.cta-btns    { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── CONTACT FORM ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 36px; }
.contact-details { list-style: none; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-details li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-detail-text span   { font-size: 14px; color: var(--grey); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group        { margin-bottom: 16px; }
.form-group.full   { grid-column: span 2; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}
select option { background: #0d1525; }
textarea       { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
}

/* ─── FAQ ─── */
.faq-list  { max-width: 780px; margin: 0 auto; }
.faq-item  {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: background .2s;
}
.faq-q:hover  { background: rgba(0,212,255,.04); }
.faq-q.open   { color: var(--blue); }
.faq-chevron {
  width: 24px; height: 24px;
  background: rgba(0,212,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-q.open .faq-chevron { transform: rotate(180deg); background: rgba(0,212,255,.2); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}
.faq-a.open { display: block; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  display: block;
}
.footer-logo-text strong { font-weight: 800; color: var(--blue); }
.footer-brand p          { font-size: 14px; max-width: 300px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul         { list-style: none; }
.footer-col ul li      { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.social-links    { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-size: 16px;
  transition: all .2s;
}
.social-link:hover {
  background: rgba(0,212,255,.12);
  border-color: var(--blue);
  color: var(--blue);
}

/* ─── FLOATING CTA ─── */
.float-cta         { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: none; }
.float-cta.visible { display: block; }

/* ─── SHOWREEL ─── */
.showreel {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showreel-header           { text-align: center; margin-bottom: 40px; }
.showreel-header h2        { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.showreel-header p         { font-size: 16px; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,212,255,.15), 0 40px 80px rgba(0,0,0,.5);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible          { opacity: 1; transform: translateY(0); }
.fade-up-delay-1          { transition-delay: .1s; }
.fade-up-delay-2          { transition-delay: .2s; }
.fade-up-delay-3          { transition-delay: .3s; }
.fade-up-delay-4          { transition-delay: .4s; }

/* ─── STAT CHIPS ─── */
.stat-chips {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stat-chip {
  background: rgba(5,8,16,.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 16px 28px;
  text-align: center;
}
.stat-chip:first-child { border-radius: 14px 0 0 14px; }
.stat-chip:last-child  { border-radius: 0 14px 14px 0; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  display: block;
}
.stat-lab { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .services-grid   { grid-template-columns: 1fr; }
  .feature-highlight { grid-template-columns: 1fr; }
  .fh-media        { min-height: 300px; }
  .fh-media::after { background: linear-gradient(to top, var(--dark3), transparent); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .events-grid     { grid-template-columns: repeat(2, 1fr); }
  .custom-item.featured-item { grid-template-columns: 1fr; }
  .stat-chip       { border-radius: 10px !important; flex: 1; min-width: 100px; }
}

@media (max-width: 640px) {
  .section         { padding: 64px 0; }
  .nav-links       { display: none; }
  .hamburger       { display: block; }
  .form-grid       { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .cta-band-inner  { flex-direction: column; text-align: center; }
  .footer-grid     { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .contact-form    { padding: 28px 20px; }
  .events-grid     { grid-template-columns: 1fr; }
  .custom-grid     { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
