:root {
  --bg: #f3f5f7;
  --bg-alt: #e9edf2;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #111827;
  --muted: #5b6472;
  --line: #dbe2ea;
  --primary: #155eef;
  --primary-dark: #0f4ac4;
  --accent: #f59e0b;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: #0f172a;
  color: #f8fafc;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(21, 94, 239, 0.10);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.empresa-cta {
  margin-bottom: 8px;
}

.empresa-cta .btn {
  min-height: 52px;
  padding: 0 28px;
}

.empresa-cta svg {
  flex: 0 0 auto;
}

.section-dark .section-header p {
  color: rgba(248, 250, 252, 0.78);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(25, 28, 30, 0.04);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 50px;
  width: min(100%, 1536px);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  justify-self: start;
}

.brand-text strong {
  display: block;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #00040a;
}

.brand-text span {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  justify-self: center;
}

.nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: #43474c;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 0 0 7px;
  border-radius: 0;
  position: relative;
}

.nav a:hover {
  color: #0058bd;
  transform: translateY(-1px);
}

.nav a.is-active {
  color: #0058bd;
  position: relative;
}

.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #0058bd;
}

.nav a.section-active {
  color: #0058bd;
  position: relative;
}

.nav a.section-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #0058bd;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #00040a;
  padding: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateX(-50%);
}

.menu-toggle::before {
  top: 12px;
}

.menu-toggle span {
  top: 19px;
}

.menu-toggle::after {
  top: 26px;
}

.btn,
button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 0.90rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00040a, #0a1f30);
  color: #ffffff;
  box-shadow: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0d1723, #13314d);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(196, 199, 205, 0.3);
}

.btn-outline:hover {
  border-color: rgba(196, 199, 205, 0.45);
  color: #ffffff;
  background: rgba(230, 232, 234, 0.08);
  box-shadow: none;
}

.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  border-radius: 0;
}

.hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  border-radius: 0;
}

#hero-sound-toggle {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 15, 25, 0.42);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

#hero-sound-toggle:hover,
#hero-sound-toggle:focus-visible {
  transform: scale(1.06);
  background: rgba(10, 15, 25, 0.58);
  outline: none;
}

.sound-icon {
  pointer-events: none;
}

.sound-icon-on {
  display: none;
}

#hero-sound-toggle.is-sound-on .sound-icon-muted {
  display: none;
}

#hero-sound-toggle.is-sound-on .sound-icon-on {
  display: block;
}

.grid-3,
.catalog-grid,
.portfolio-grid,
.production-gallery-grid,
.video-gallery-grid,
.testimonials-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.grid-3,
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.delivery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(21, 94, 239, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.delivery-section::before {
  content: '';
  position: absolute;
  inset: auto -8% -34% auto;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  pointer-events: none;
}

.delivery-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(219, 226, 234, 0.88);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.delivery-content {
  max-width: 690px;
}

.delivery-content h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  color: var(--text);
}

.delivery-content > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 64ch;
}

.delivery-benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.delivery-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.delivery-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.13), rgba(59, 130, 246, 0.20));
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(21, 94, 239, 0.12);
}

.delivery-benefit h3 {
  font-size: 1.04rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.delivery-benefit p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.delivery-cta {
  min-height: 52px;
  padding-inline: 28px;
}

.delivery-media {
  width: 100%;
}

.delivery-image-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 30px;
  background: #dfe6ee;
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.18);
  isolation: isolate;
}

.delivery-image-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.production-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.video-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-swiper,
.video-swiper {
  padding: 8px 8px 58px;
  overflow: hidden;
  overscroll-behavior: contain;
}

.gallery-swiper .swiper-slide,
.video-swiper .swiper-slide {
  height: auto;
}

.swiper-nav-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.84);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.swiper-nav-button:hover {
  transform: translateY(-2px);
  background: #155eef;
}

.swiper-nav-button::after {
  font-size: 1rem;
  font-weight: 900;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(15, 23, 42, 0.22);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.15);
}

.gallery-swiper .swiper-pagination,
.video-swiper .swiper-pagination {
  bottom: 6px !important;
}

.event-gallery-swiper.is-video-locked .swiper-pagination {
  pointer-events: none;
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  display: flex;
}

.event-gallery-swiper .swiper-button-prev,
.event-gallery-swiper .swiper-button-next {
  display: none;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e7edf4;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.12);
}

.feature-card {
  padding: 30px;
}

.icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.14), rgba(59, 130, 246, 0.20));
  color: var(--primary);
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(21, 94, 239, 0.10);
}

.icon-wrap-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.12), rgba(59, 130, 246, 0.18));
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(21, 94, 239, 0.12);
}

.feature-card h3,
.catalog-card h3,
.portfolio-content h3,
.testimonial-card strong,
.footer-brand strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.feature-card p,
.catalog-card p,
.portfolio-meta,
.footer-note,
.footer-col p,
.footer-col li {
  color: var(--muted);
}

.catalog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.catalog-content {
  text-align: left;
}

.catalog-content h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.catalog-content p {
  font-size: 0.95rem;
  color: var(--muted);
}

.portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  border: 1px solid rgba(21, 94, 239, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.96));
}

.portfolio-card-expo {
  justify-content: center;
  min-height: 100%;
}

.portfolio-cover-image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  background: #dfe6ee;
}

.portfolio-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.portfolio-image-shell {
  position: relative;
  padding: 18px 18px 0;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.portfolio-badge-inline {
  position: static;
  width: fit-content;
  margin-bottom: 4px;
}

.portfolio-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  justify-content: space-between;
}

.portfolio-content h3 {
  font-size: 1.42rem;
  margin-bottom: 2px;
}

.portfolio-copy {
  display: grid;
  gap: 12px;
}

.portfolio-copy p {
  color: #526072;
  font-size: 1rem;
  line-height: 1.7;
}

.portfolio-meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #334155;
  font-weight: 700;
  flex-wrap: wrap;
}

.portfolio-meta-row svg,
.contact-list svg,
.footer-links svg {
  flex-shrink: 0;
  color: var(--primary);
}

.portfolio-card .btn {
  width: 100%;
  margin-top: auto;
}

.portfolio-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #09131f, #13293f);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.portfolio-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #09131f;
}

.event-gallery-swiper {
  width: 100%;
  padding: 18px 18px 34px;
  overflow: hidden;
}

.single-event-media {
  padding-bottom: 18px;
}

.event-media-slide {
  height: auto;
}

.event-gallery-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(219, 226, 234, 0.9);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.event-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-gallery-swiper .swiper-pagination {
  bottom: 0 !important;
}

.event-gallery-swiper .swiper-pagination-bullet-active {
  background: #0f172a;
}

.event-nav-button {
  width: 38px;
  height: 38px;
  margin-top: -28px;
  background: transparent;
  box-shadow: none;
  color: rgba(15, 23, 42, 0.55);
}

.event-nav-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

.event-nav-button::after {
  font-size: 0.82rem;
}

.production-gallery-section {
  background: #f6f8fb;
}

.video-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(21, 94, 239, 0.10), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.video-showcase-shell {
  position: relative;
}

.video-showcase-backdrop {
  position: absolute;
  inset: 140px 0 60px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.video-showcase-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.video-showcase-copy {
  max-width: 720px;
}

.video-showcase-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.video-showcase-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.video-showcase-controls {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.video-nav-button {
  position: static;
  margin: 0;
}

.video-swiper {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 12px 12px 64px;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior: contain;
}

.video-reel-slide {
  display: flex;
  justify-content: center;
}

.video-reel-card {
  width: min(100%, 360px);
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(196, 199, 205, 0.5);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.12);
}

.video-reel-card:hover {
  transform: none;
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.12);
}

.video-reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, #d7dde5, #eef2f7);
  overflow: hidden;
}

.video-reel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 46, 0.04) 0%, rgba(8, 29, 46, 0.18) 100%);
  pointer-events: none;
}

.video-reel-media video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  touch-action: pan-y;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-play-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  margin-left: 4px;
}

.video-play-button.is-playing span {
  margin-left: 0;
  font-size: 1.55rem;
}

.video-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.video-progress span {
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  transition: width 0.25s ease, background 0.25s ease;
}

.video-progress .video-progress-active {
  width: 54px;
  background: var(--primary);
}

.gallery-photo-card,
.video-card {
  overflow: hidden;
}

.gallery-photo-card {
  aspect-ratio: 1 / 0.9;
}

.gallery-swiper {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.gallery-swiper .swiper-slide {
  opacity: 0.55;
  transform: scale(0.92);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-swiper .swiper-slide-active,
.gallery-swiper .swiper-slide-next,
.gallery-swiper .swiper-slide-prev {
  opacity: 1;
  transform: scale(1);
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease;
}

.gallery-photo-card:hover img {
  transform: scale(1.05);
}

.video-card {
  padding: 0;
  background: var(--surface);
}

.video-card video {
  display: block;
  width: 100%;
  border-radius: inherit;
  box-shadow: var(--shadow-soft);
  background: #dfe6ee;
}



.testimonials-grid .testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.stars {
  color: #fbbf24;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: rgba(248, 250, 252, 0.82);
  margin-bottom: 18px;
}

.testimonial-card span {
  color: rgba(248, 250, 252, 0.65);
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-band {
  padding: 28px 0 96px;
}

.map-section {
  background: #f7f9fb;
  padding: 0 0 96px;
}

.map-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.map-card,
.map-frame {
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.map-card {
  padding: 34px;
}

.map-card h3 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 14px;
}

.map-card p {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 44ch;
}

.map-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.map-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.55;
}

.map-list span {
  word-break: break-word;
}

.map-list svg {
  color: #0058bd;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(21, 94, 239, 0.78)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1400&q=80') center/cover;
  border-radius: 30px;
  overflow: hidden;
  padding: 54px;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 13ch;
}

.cta-panel p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
  font-size: 1.05rem;
}

.site-footer {
  background: #ffffff;
  padding: 80px 0 28px;
  border-top: 1px solid #e6ebf1;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 1.08rem;
  margin-bottom: 18px;
  font-weight: 800;
}

.footer-links,
.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-links li,
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}

.footer-phone-item span {
  display: grid;
  gap: 4px;
}

.footer-phone-item strong {
  color: var(--text);
  font-weight: 800;
}

.footer-phone-item a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-phone-item a:hover {
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e6ebf1;
  color: #6b7280;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner,
  .grid-3,
  .catalog-grid,
  .portfolio-grid,
  .production-gallery-grid,
  .video-gallery-grid,
  .testimonials-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
    gap: 20px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .header-cta .btn {
    padding-inline: 18px;
  }

  .portfolio-grid-featured {
    grid-template-columns: 1fr;
  }

  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .delivery-content {
    max-width: 100%;
  }

  .delivery-image-card,
  .delivery-image-card img {
    min-height: 560px;
  }

  .portfolio-cover-image {
    height: 300px;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 0;
    padding: 0;
  }

  .section,
  .site-footer {
    padding: 72px 0;
  }

  .hero {
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
  }

  #hero-sound-toggle {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    min-width: 44px;
    min-height: 44px;
  }

  .grid-3,
  .catalog-grid,
  .portfolio-grid,
  .video-gallery-grid,
  .testimonials-grid,
  .footer-grid,
  .stats-row,
  .header-inner {
    grid-template-columns: 1fr;
  }

  .gallery-swiper {
    display: block;
    width: 100%;
  }

  .event-gallery-swiper {
    padding: 14px 14px 30px;
  }

  .portfolio-image-shell {
    padding: 14px 14px 0;
  }

  .portfolio-video-frame video,
  .portfolio-cover-image,
  .event-gallery-card img {
    border-radius: 18px;
  }

  .portfolio-badge {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .portfolio-content {
    padding: 22px 18px 24px;
    gap: 16px;
  }

  .portfolio-content h3 {
    font-size: 1.28rem;
  }

  .portfolio-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .gallery-swiper .swiper-slide,
  .video-swiper .swiper-slide {
    width: 100%;
  }

  .gallery-swiper .swiper-slide {
    opacity: 1;
    transform: none;
  }

  .gallery-photo-card {
    aspect-ratio: 1 / 1.3;
  }

  .gallery-swiper {
    padding: 8px 0 64px;
  }

  .gallery-swiper .swiper-pagination {
    bottom: 18px !important;
  }

  .gallery-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }

  .video-swiper {
    display: block;
  }

  .video-showcase-section {
    padding-top: 78px;
  }

  .video-showcase-backdrop {
    inset: 110px 0 36px;
    border-radius: 24px;
  }

  .video-showcase-heading {
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
  }

  .video-showcase-copy p {
    font-size: 1rem;
  }

  .video-showcase-controls {
    display: none;
  }

  .video-swiper {
    padding: 8px 0 34px;
  }

  .video-reel-slide {
    justify-content: stretch;
  }

  .video-reel-card {
    width: 100%;
    min-height: auto;
    aspect-ratio: 9 / 14.7;
    border-radius: 24px;
  }

  .video-progress {
    gap: 8px;
    margin-top: 4px;
  }

  .video-progress .video-progress-active {
    width: 40px;
  }

  .video-reels-hint {
    top: 12px;
    width: calc(100% - 28px);
    font-size: 0.84rem;
    padding: 10px 14px;
  }

  .video-reel-card {
    min-height: 0;
    border-radius: 28px;
  }

  .video-reel-card video {
    min-height: 0;
  }

  .video-play-button {
    width: 82px;
    height: 82px;
    min-width: 82px;
  }

  .video-focus-close {
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    display: none;
  }

  .event-gallery-swiper .swiper-button-prev,
  .event-gallery-swiper .swiper-button-next {
    display: none;
  }

  .header-inner {
    gap: 12px;
    min-height: auto;
    align-items: stretch;
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .brand {
    flex: 1;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(196, 199, 205, 0.45);
  }

  .nav a {
    text-align: left;
    padding: 16px 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(196, 199, 205, 0.35);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 0;
  }

  .nav a.is-active::after,
  .nav a.section-active::after {
    display: none;
  }

  .nav a.is-active,
  .nav a.section-active {
    color: #43474c;
  }

  .header-cta {
    display: none;
    width: 100%;
    padding-top: 16px;
  }

  .header-cta .btn {
    width: 100%;
    min-height: 50px;
    border-radius: 6px;
  }

  .site-header.menu-open .nav,
  .site-header.menu-open .header-cta {
    display: grid;
  }

  .site-header.menu-open .menu-toggle::before {
    transform: translateX(-50%) translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle::after {
    transform: translateX(-50%) translateY(-7px) rotate(-45deg);
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .feature-card {
    text-align: center;
  }

  .delivery-section {
    padding: 72px 0;
  }

  .delivery-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 26px;
    gap: 0;
  }

  .delivery-content {
    display: contents;
  }

  .delivery-content h2 {
    order: 1;
  }

  .delivery-content h2 {
    font-size: clamp(2rem, 10vw, 2.72rem);
  }

  .delivery-content > p {
    order: 2;
    font-size: 1rem;
    line-height: 1.7;
  }

  .delivery-media {
    order: 3;
    margin-top: 24px;
  }

  .delivery-benefits {
    order: 4;
    margin: 22px 0 28px;
  }

  .delivery-benefit {
    padding: 16px;
    gap: 14px;
  }

  .delivery-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .delivery-cta {
    order: 5;
    width: 100%;
    padding-inline: 18px;
  }

  .delivery-image-card {
    min-height: auto;
    height: clamp(420px, 118vw, 620px);
    border-radius: 24px;
  }

  .delivery-image-card img {
    min-height: 0;
    height: 100%;
    object-position: center top;
  }

  .icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .cta-panel h2 {
    max-width: 100%;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .map-card {
    padding: 28px 22px;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .map-list li {
    align-items: center;
    font-size: 0.9rem;
  }

  .map-list span {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .cta-band {
    padding-top: 20px;
  }
}

@media (min-width: 781px) {
  .gallery-swiper {
    overflow: hidden;
    padding-inline: 28px;
  }

  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    display: flex;
  }

  .event-gallery-swiper .swiper-button-prev,
  .event-gallery-swiper .swiper-button-next {
    display: flex;
  }

  .video-swiper {
    overflow: hidden;
  }

  .video-swiper {
    padding-top: 56px;
  }

  .video-showcase-heading {
    margin-bottom: 34px;
  }

  .video-progress {
    margin-top: 16px;
  }

  .video-reel-card {
    min-height: 700px;
  }

  .video-reel-card video {
    min-height: 700px;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .cta-panel h2 {
    max-width: 100%;
  }
}

@media (min-width: 1101px) {
  .gallery-photo-card {
    aspect-ratio: 1 / 1.22;
  }
}
