/* =========================================================
   PAMELA NIGHT CLUB — Main Stylesheet v2
   ========================================================= */

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

/* ----- Variables ----- */
:root {
  --bg:          #0a0a0a;
  --bg-alt:      #111111;
  --surface:     #161616;
  --accent:      #e90028;
  --accent-dark: #b8001f;
  --text:        #b0b4ba;
  --text-muted:  #666c75;
  --heading:     #ffffff;
  --border:      rgba(255,255,255,0.07);
  --border-red:  rgba(233,0,40,0.35);

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --radius:      3px;
  --transition:  0.3s ease;
  --max-w:       1140px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 110%;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0.8rem auto 0;
  font-size: 0.95rem;
}

/* ----- Accent line ----- */
.accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0.8rem 0 1.4rem;
}
.accent-line.center { margin: 0.8rem auto 1.4rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,0,40,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

/* =========================================================
   AGE GATE
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  background: #050505;
}
.age-gate.hidden {
  display: none;
}
.age-gate-image {
  flex: 1;
  background-image: url('../interier3.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.age-gate-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(5,5,5,0.7));
}
.age-gate-content {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  text-align: center;
  background: #050505;
  border-left: 1px solid var(--border);
}
.age-gate-logo {
  height: 64px;
  width: auto;
  margin-bottom: 2.5rem;
}
.age-gate-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}
.age-gate-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 360px;
}
.age-gate-text strong {
  color: var(--text);
}
.age-gate-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.age-gate-enter {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(255,255,255,0.12);
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate-enter:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(233,0,40,0.4);
  transform: scale(1.04);
}
.age-gate-exit {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  padding: 0.5rem;
}
.age-gate-exit:hover { color: var(--heading); }
.age-gate-warning {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 320px;
}

@media (max-width: 768px) {
  .age-gate { flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .age-gate-image { flex: none; height: 28vh; min-height: 160px; }
  .age-gate-image::after { background: rgba(0,0,0,0.4); }
  .age-gate-content { width: 100%; padding: 1.5rem 1.5rem 2rem; border-left: none; border-top: 1px solid var(--border); flex-shrink: 0; }
  .age-gate-logo { height: 52px; margin-bottom: 1.2rem; }
  .age-gate-title { font-size: 0.95rem; margin-bottom: 1rem; }
  .age-gate-text { font-size: 0.8rem; margin-bottom: 1.5rem; }
  .age-gate-enter { width: 110px; height: 110px; font-size: 0.85rem; }
  .age-gate-warning { font-size: 0.65rem; margin-top: 1.2rem; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover { background: var(--accent-dark); color: #fff; }

/* lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0.3rem 0.45rem;
  transition: color var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.8); }
.lang-btn.active { color: var(--accent); }
.lang-btn + .lang-btn { border-left: 1px solid rgba(255,255,255,0.12); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.99);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1.5rem 1.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 1rem; margin: 0 auto; text-align: center; }

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(233,0,40,0.12);
  border: 1px solid rgba(233,0,40,0.5);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s forwards;
}
.hero h1 {
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 0.6rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s forwards;
}
.hero-hours {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.95s forwards;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
#services { background: var(--bg); padding: 5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  border-radius: var(--radius);
}
.service-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.55) 100%);
}
.service-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.service-duration {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.7rem; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--bg);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 40px rgba(233,0,40,0.5), 0 0 80px rgba(233,0,40,0.2);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--heading);
  text-transform: none;
}

/* =========================================================
   WHY PAMELA
   ========================================================= */
#why { background: var(--bg); }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-split img {
  width: 100%; height: 460px;
  object-fit: cover;
}
.why-text h2 { margin-bottom: 0.5rem; }
.why-text p { color: var(--text); margin-bottom: 3rem; font-size: 0.95rem; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.why-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1px;
}

/* =========================================================
   FEATURES
   ========================================================= */
#features { background: var(--bg-alt); padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.feature-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.feature-card:hover { background: #1c1c1c; }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(233,0,40,0.1);
  border: 1px solid rgba(233,0,40,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1.2rem;
}
.feature-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   GALLERY
   ========================================================= */
#gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-grid .gitem {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .gitem:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-grid .gitem:nth-child(1) img { min-height: 400px; }
.gitem:hover img { transform: scale(1.06); }
.gitem-overlay {
  position: absolute; inset: 0;
  background: rgba(233,0,40,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gitem:hover .gitem-overlay { background: rgba(233,0,40,0.18); }
.gitem-overlay span {
  color: #fff; font-size: 2rem;
  opacity: 0; transform: scale(0.6);
  transition: all var(--transition);
}
.gitem:hover .gitem-overlay span { opacity: 1; transform: scale(1); }

/* ----- Lightbox ----- */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  animation: lbFadeIn 0.2s ease;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: color var(--transition);
}
.lb-close:hover,.lb-prev:hover,.lb-next:hover { color: #fff; }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); font-size: 2.5rem; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.testimonial-card {
  background: #0e0e0e;
  border: 1px solid rgba(233,0,40,0.35);
  box-shadow: 0 0 20px rgba(233,0,40,0.08), inset 0 0 30px rgba(233,0,40,0.03);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(233,0,40,0.6);
  box-shadow: 0 0 35px rgba(233,0,40,0.15);
}
.testimonial-card.featured {
  border-color: rgba(233,0,40,0.55);
  box-shadow: 0 0 40px rgba(233,0,40,0.14), inset 0 0 40px rgba(233,0,40,0.04);
}
.testimonial-stars { font-size: 1.3rem; letter-spacing: 0.1em; color: #f5a623; }
.testimonial-source {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.75;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--heading);
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA / CONTACT BANNER
   ========================================================= */
#contact { background: var(--bg-alt); }
.contact-banner {
  text-align: center;
  padding: 5rem 0 3.5rem;
}
.contact-banner h2 { margin-bottom: 0.8rem; }
.contact-banner p { color: var(--text-muted); margin-bottom: 2.5rem; }

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin: 3rem 0;
}
.contact-info-item {
  background: var(--surface);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(233,0,40,0.1);
  border: 1px solid rgba(233,0,40,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent);
}
.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.88rem; color: var(--heading);
  transition: color var(--transition); line-height: 1.5;
}
.contact-info-item a:hover { color: var(--accent); }

/* Map */
.contact-map iframe {
  width: 100%; height: 380px;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.75);
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-inner .logo img { height: 38px; }
.footer-inner p { font-size: 0.8rem; color: var(--text-muted); }
.footer-nav {
  display: flex; gap: 1.8rem;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--heading); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-split { gap: 3rem; }
  .contact-info-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }

  .why-split { grid-template-columns: 1fr; gap: 2rem; }
  .why-split img { height: 260px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gitem:nth-child(1) { grid-column: span 2; }

  .contact-info-strip { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }

  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gitem:nth-child(1) { grid-column: span 1; }
  .contact-info-strip { grid-template-columns: 1fr; }
}
