:root {
  --bg: #f8f4ec;
  --sand: #e9d1a7;
  --sand-dark: #d9b98b;
  --navy: #0f2b51;
  --sky: #4a9ddd;
  --sky-dark: #2a6cb2;
  --text: #21303f;
  --muted: #5e6b79;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 43, 81, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; position: relative; }
.alt-bg { background: linear-gradient(180deg, rgba(74,157,221,.08), rgba(233,209,167,.18)); }
.glass {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15,43,81,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1rem; color: var(--navy); }
.brand small { color: var(--muted); font-size: .84rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--navy);
}
.nav a { opacity: .88; }
.nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; color: var(--navy); }
.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background: linear-gradient(100deg, rgba(15,43,81,.82) 0%, rgba(15,43,81,.48) 42%, rgba(15,43,81,.18) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 760px; }
.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.hero h1,
.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.06;
}
.hero p,
.section-head p,
.card p,
.social-card p,
.contact-copy p { font-size: 1.02rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sky); color: var(--white); box-shadow: 0 18px 35px rgba(74,157,221,.28); }
.btn-primary:hover { background: var(--sky-dark); }
.btn-secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.full { width: 100%; }
.hero-cards,
.services-grid,
.posters-grid,
.social-grid,
.contact-grid,
.video-grid,
.strip-grid { display: grid; gap: 22px; }
.hero-cards { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.mini-card,
.card,
.social-card,
.contact-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-card {
  background: rgba(255,255,255,.12);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
}
.mini-card strong { display: block; margin-bottom: 8px; }
.info-strip { padding: 0 0 30px; margin-top: -45px; z-index: 3; }
.strip-grid {
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.strip-label { margin: 0 0 8px; color: var(--muted); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.strip-grid a, .strip-grid span { font-weight: 700; color: var(--navy); }
.section-head { max-width: 800px; margin-bottom: 34px; }
.section-head.left { margin-bottom: 0; }
.section-head h2 { color: var(--navy); font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head p { color: var(--muted); margin: 0; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  padding: 28px;
  transition: transform .28s ease;
}
.card:hover,
.poster-card:hover,
.gallery-item:hover,
.social-card:hover { transform: translateY(-6px); }
.card h3, .social-card h3 { margin-top: 0; color: var(--navy); }
.card p, .social-card p { color: var(--muted); margin-bottom: 0; }
.posters-grid { grid-template-columns: repeat(4, 1fr); }
.poster-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .28s ease;
}
.poster-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  display: block;
  transition: transform .28s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide img { aspect-ratio: 1.3 / 1; }
.video-grid { grid-template-columns: 1fr 1.2fr; align-items: center; }
.video-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #000;
}
.video-frame iframe,
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.social-grid { grid-template-columns: repeat(2, 1fr); }
.social-card {
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  padding: 28px;
  border: 1px solid rgba(15,43,81,.08);
}
.social-card span { display: inline-block; margin-top: 14px; color: var(--sky-dark); font-weight: 700; }
.contact-section { background: linear-gradient(180deg, rgba(15,43,81,.03), rgba(74,157,221,.08)); }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}
.contact-card {
  background: var(--white);
  padding: 28px;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; color: var(--navy); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15,43,81,.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.map-frame {
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer p { margin: 0; }
.footer a { color: #9fd6ff; }
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 15px 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(15,43,81,.2);
}
.whatsapp { background: #22c55e; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 29, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 200;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  font-size: 2rem;
  background: var(--white);
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-cards,
  .services-grid,
  .posters-grid,
  .gallery-grid,
  .video-grid,
  .contact-grid,
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .hero { min-height: auto; padding: 130px 0 72px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(15,43,81,.82) 0%, rgba(15,43,81,.45) 50%, rgba(15,43,81,.6) 100%); }
  .hero-cards,
  .services-grid,
  .posters-grid,
  .gallery-grid,
  .social-grid,
  .video-grid,
  .contact-grid,
  .strip-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 72px 0; }
  .info-strip { margin-top: -22px; }
  .video-frame { min-height: 260px; }
  .map-frame { height: 320px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .float-btn { min-width: 62px; padding: 16px; }
  .float-btn span { display: none; }
}
