/* ===================================================
   2Loud Customs — Brand Stylesheet
   Colors: #0a0a0a (bg), #e60012 (red), #ffffff (text)
   =================================================== */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --red: #e60012;
  --red-dark: #b3000e;
  --red-glow: rgba(230, 0, 18, 0.25);
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-300: #b0b0b0;
  --gray-500: #666666;
  --gray-700: #333333;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__stripe {
  width: 4px;
  height: 40px;
  background: var(--red);
  margin: 0 auto 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-top: 8px;
  font-weight: 300;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

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

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

.btn--outline:hover {
  background: var(--white);
  color: var(--bg-primary);
}

.highlight-badge {
  background: var(--red);
  color: var(--white);
  padding: 2px 10px;
  font-weight: 500;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__logo-2 {
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 700;
}

.nav__logo-accent {
  color: var(--red);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gray-300);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.nav__cta:hover {
  background: var(--red-dark);
}

.nav__cta i {
  font-size: 0.8rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 70%, rgba(10,10,10,0.95) 100%),
    linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.hero__stripes {
  position: absolute;
  top: 10%;
  right: 80px;
  width: 60px;
  height: 120px;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0px,
    var(--white) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.7;
}

.hero__accent-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: var(--red);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gray-100);
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.about::before {
  content: '2LOUD';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about__lead {
  font-size: 1.15rem !important;
  color: var(--gray-100) !important;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 4px solid var(--red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  box-shadow: 0 0 20px var(--red-glow);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--gray-300);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230, 0, 18, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery__item-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox__img,
.lightbox__video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__video {
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox__close:hover {
  color: var(--red);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  transition: transform 0.3s ease;
}

.contact__item:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
}

.contact__item-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.contact__item-body a,
.contact__item-body p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.contact__item-body a:hover {
  color: var(--red);
}

.contact__map {
  width: 100%;
  height: 420px;
  background: var(--bg-card);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}

.contact__map:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: 48px 0 24px;
  background: var(--bg-secondary);
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}

.footer__stripes {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    var(--gray-700) 0px,
    var(--gray-700) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.4;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer__brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 6px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--gray-300);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer__copy {
  border-top: 1px solid var(--gray-700);
  padding-top: 20px;
  text-align: center;
}

.footer__copy p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===================================================
   HOVER — pointer devices only (prevents sticky on touch)
   =================================================== */
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
  }

  .service-card:hover .service-card__accent {
    transform: scaleX(1);
  }

  .stat:hover {
    transform: translateX(6px);
  }

  .contact__item:hover {
    transform: translateX(6px);
  }

  .gallery__item:hover img,
  .gallery__item:hover video {
    transform: scale(1.05);
  }

  .gallery__item:hover .gallery__item-overlay {
    background: rgba(230, 0, 18, 0.3);
  }

  .gallery__item:hover .gallery__item-overlay i {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===================================================
   MOBILE NAV BACKDROP
   =================================================== */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__backdrop.active {
  display: block;
  opacity: 1;
}

/* ===================================================
   MOBILE BOTTOM ACTION BAR
   =================================================== */
.mobile-bar {
  display: none;
}

/* ===================================================
   RESPONSIVE — TABLET
   =================================================== */
@media (max-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 300px;
  }

  .hero__stripes {
    right: 60px;
    width: 40px;
    height: 80px;
  }

  .hero__accent-stripe {
    width: 32px;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE  (<= 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    padding: 0 20px;
  }

  /* ---- Full-Screen Nav Overlay ---- */
  .nav {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
    padding: 10px;
    gap: 6px;
  }

  .nav__toggle span {
    width: 24px;
    height: 2px;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .nav__links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links a {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-700);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav__links a:hover,
  .nav__links a.active {
    color: var(--red);
    background: rgba(230, 0, 18, 0.05);
  }

  .nav__links a::after {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  /* ---- Hero — Centered App-Like ---- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
    margin-bottom: 32px;
    max-width: 340px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  .hero__bg img {
    object-position: 20% 5%;
  }

  .hero__accent-stripe,
  .hero__stripes,
  .hero__scroll-indicator {
    display: none;
  }

  .hero__overlay {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.95) 100%);
  }

  /* ---- About — Compact ---- */
  .about {
    padding: 64px 0;
  }

  .about::before {
    display: none;
  }

  .about__text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about__lead {
    font-size: 1.05rem !important;
  }

  /* ---- Stats — Horizontal Row ---- */
  .about__stats {
    flex-direction: row;
    gap: 12px;
  }

  .stat {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    border-left: none;
    border-top: 3px solid var(--red);
  }

  .stat__number {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .stat__label {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }

  /* ---- Section Headers — Tighter ---- */
  .section-header {
    margin-bottom: 32px;
  }

  .section-header__stripe {
    height: 28px;
    margin-bottom: 14px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* ---- Services — Horizontal Scroll ---- */
  .services {
    padding: 64px 0;
  }

  .services__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .services__grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 80vw;
    max-width: 80vw;
    scroll-snap-align: start;
    padding: 28px 24px;
    flex-shrink: 0;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .service-card__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .service-card__desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* ---- Gallery — Horizontal Scroll ---- */
  .gallery {
    padding: 64px 0;
  }

  .gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .gallery__grid::-webkit-scrollbar {
    display: none;
  }

  .gallery__item {
    min-width: 78vw;
    max-width: 78vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
  }

  /* ---- Contact — List-Style Rows ---- */
  .contact {
    padding: 64px 0;
  }

  .contact__info {
    gap: 0;
  }

  .contact__item {
    background: transparent;
    padding: 18px 0;
    gap: 16px;
    border-bottom: 1px solid var(--gray-700);
    align-items: center;
  }

  .contact__item:last-child {
    border-bottom: none;
  }

  .contact__item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.95rem;
    border-radius: 50%;
  }

  .contact__item-body h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .contact__item-body a,
  .contact__item-body p {
    font-size: 0.9rem;
  }

  .contact__map {
    height: 240px;
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
  }

  /* ---- Lightbox — Full Screen ---- */
  .lightbox {
    padding: 12px;
  }

  .lightbox__close {
    top: 8px;
    right: 12px;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox__img,
  .lightbox__video {
    max-width: 98vw;
    max-height: 80vh;
  }

  /* ---- Footer — Compact ---- */
  .footer {
    padding: 32px 0 16px;
    margin-bottom: 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__brand .nav__logo {
    font-size: 1.2rem;
  }

  .footer__brand p {
    font-size: 0.8rem;
  }

  .footer__copy p {
    font-size: 0.75rem;
  }

  /* ---- Mobile Bottom Action Bar ---- */
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--bg-primary);
    border-top: 1px solid var(--gray-700);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transition: transform 0.3s ease;
  }

  .mobile-bar.hidden {
    transform: translateY(100%);
  }

  .mobile-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s ease;
  }

  .mobile-bar__btn i {
    font-size: 1rem;
  }

  .mobile-bar__btn--phone {
    background: var(--red);
  }

  .mobile-bar__btn--phone:active {
    background: var(--red-dark);
  }

  .mobile-bar__btn--insta {
    background: var(--bg-card);
  }

  .mobile-bar__btn--insta:active {
    background: var(--gray-700);
  }
}


/* ===================================================
   REDESIGN UPDATES — logo, hero, galeria, widok mobilny
   =================================================== */

/* Logo w nawigacji */
.nav__logo-link { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,.55)); }

/* Hero — eyebrow + akcent + lepsze kadrowanie zdjęcia */
.hero__bg img { object-position: center 35%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font-family: var(--font-heading); font-size: .78rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gray-300); }
.hero__eyebrow-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.hero__title-accent { color: var(--red); }

/* Galeria — stały znacznik play na filmach */
.gallery__badge { position: absolute; bottom: 10px; left: 10px; width: 38px; height: 38px; border-radius: 50%; background: rgba(10,10,10,.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .82rem; pointer-events: none; z-index: 2; }
.gallery__badge i { margin-left: 2px; }

/* Stopka — logo */
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { height: 54px; width: auto; }

/* ===== WIDOK MOBILNY — nadpisania ===== */
@media (max-width: 768px) {
  .nav__logo-img { height: 40px; }

  /* Usługi — czytelny pionowy stos zamiast przewijania w bok */
  .services__grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
    gap: 14px;
    padding: 0;
    margin: 0;
  }
  .service-card { min-width: 0; max-width: none; }

  /* Galeria — siatka 2 kolumny zamiast przewijania w bok */
  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    scroll-snap-type: none;
    gap: 12px;
    padding: 0;
    margin: 0;
  }
  .gallery__item { min-width: 0; max-width: none; }

  /* Stopka — logo wyśrodkowane */
  .footer__brand { justify-content: center; }
  .footer__logo { height: 46px; }
}

/* ===== FAQ ===== */
.faq { padding: 120px 0; background: var(--bg-primary); position: relative; }
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--bg-card); border: 1px solid var(--gray-700); border-radius: 8px; overflow: hidden; transition: border-color .2s ease; }
.faq__item[open] { border-color: var(--red); }
.faq__q { cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--white); position: relative; transition: color .2s ease; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; line-height: 1; color: var(--red); transition: transform .25s ease; }
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__q:hover { color: var(--red); }
.faq__a { padding: 0 22px 20px; color: var(--gray-300); line-height: 1.7; }
.faq__a p { margin: 0; }
.faq__a a { color: var(--red); text-decoration: none; }
.faq__a a:hover { text-decoration: underline; }

/* Dostępność/SEO: treść tylko dla czytników ekranu i wyszukiwarek */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SEO/wydajność: wrappery <picture> wypełniają kontener (bez CLS) ===== */
.hero__bg picture,
.gallery__item picture { display: block; width: 100%; height: 100%; }
.nav__logo-link picture,
.footer__brand picture { display: inline-flex; align-items: center; }
