:root {
  --blue: #2451d6;
  --blue-dark: #14318f;
  --blue-darker: #0c1f5c;
  --yellow: #f6c945;
  --yellow-dark: #d99a1f;
  --red: #e6334f;
  --red-dark: #b5233a;
  --cream: #fdf7ee;
  --lavender: #f4eef7;
  --ink: #1a1a2e;
  --gray: #5b5b70;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 49, 143, 0.15);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

/* Topbar */
.topbar {
  background: var(--blue-darker);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.topbar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.topbar__icon { font-size: 0.95em; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--ink);
}
.header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
}
.brand__name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand__bang { color: var(--red); }

.nav {
  display: flex;
  gap: 24px;
  font-weight: 700;
}
.nav a {
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.nav a:hover { border-color: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 24px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn--secondary {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--secondary:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn--nav {
  padding: 9px 18px;
  font-size: 0.9rem;
  background: var(--red);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.lang-switch__btn {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray);
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch__btn:hover { color: var(--ink); }
.lang-switch__btn.is-active {
  background: var(--yellow);
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 70%);
  color: #fff;
  overflow: hidden;
  padding-bottom: 90px;
}
.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 20px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--yellow);
  margin: 0 0 10px;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 3px 3px 0 var(--ink);
}
.hero__bang { color: var(--yellow); }
.hero__subtitle {
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 0 0 32px;
  color: #eaf0ff;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image {
  display: flex;
  justify-content: center;
}
.hero__logo {
  border-radius: var(--radius);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  width: 420px;
  max-width: 100%;
}
.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  will-change: transform;
}
.wave--back {
  fill: rgba(255, 255, 255, 0.18);
  animation: wave-drift 18s linear infinite;
}
.wave--mid {
  fill: rgba(244, 238, 247, 0.45);
  animation: wave-drift-reverse 12s linear infinite;
}
.wave--front {
  fill: var(--lavender);
  animation: wave-drift 8s linear infinite;
}
@keyframes wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wave-drift-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wave { animation: none; }
}

/* Sections */
.section__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 20px;
}
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 8px;
  text-align: center;
}
.section__eyebrow--light { color: var(--yellow); }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin: 0 0 44px;
  color: var(--blue-dark);
}
.section__title--light { color: #fff; }

/* Services */
.services { background: var(--lavender); }
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-4px); }
.card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* About */
.about { background: var(--cream); }
.about__grid { max-width: 780px; }
.about__text p { color: var(--gray); font-size: 1.05rem; }
.about__list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--blue-dark);
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-darker) 100%);
  color: #fff;
}
.contact__intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 44px;
  color: #dde6ff;
  font-size: 1.05rem;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}
.contact__card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contact__card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.contact__icon { font-size: 1.8rem; }
.contact__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 800;
}
.contact__value { font-size: 1.15rem; font-weight: 700; }

/* Footer */
.footer {
  background: var(--ink);
  color: #cfd4ea;
  text-align: center;
  padding: 40px 20px;
}
.footer__brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer p { margin: 4px 0; font-size: 0.9rem; }
.footer__meta { color: #9ba1bd; font-size: 0.82rem; margin-top: 14px; }
.footer__copy { color: #8b90a8; margin-top: 8px; }
.footer__credit { color: #8b90a8; font-size: 0.82rem; margin-top: 4px; }
.footer__credit a {
  color: var(--yellow);
  font-weight: 700;
}
.footer__credit a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .nav { display: none; }
  .topbar__inner { gap: 8px 14px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .btn--nav { display: none; }
  .header__inner { justify-content: space-between; }
  .topbar__inner { flex-direction: column; gap: 4px; padding: 8px 12px; }
  .topbar__item { white-space: normal; text-align: center; }
  .hero__inner { padding: 40px 20px 30px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* Gallery */
.gallery { background: var(--lavender); padding-bottom: 40px; }
.gallery__intro {
  color: var(--gray);
  max-width: 640px;
  margin: 0 0 24px;
}
.gallery__albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding-bottom: 24px;
}
.gallery__album {
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 14px rgba(20, 49, 143, 0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gallery__album:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery__album.is-active {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.gallery__album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__album-label {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 24px 12px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  background: linear-gradient(transparent, rgba(12, 31, 92, 0.88));
}
.gallery__album-count {
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--blue-darker);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
}
.gallery__panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(20, 49, 143, 0.12);
  padding: 18px;
  margin-bottom: 60px;
}
.gallery__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.gallery__panel-title {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.25rem;
}
.gallery__panel-close {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gallery__panel-close:hover {
  background: var(--blue);
  color: #fff;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 14px rgba(20, 49, 143, 0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  background: rgba(12, 31, 92, 0.35);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 31, 92, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__figure {
  margin: 0;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lightbox__figure img,
.lightbox__figure video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__figure figcaption {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.2rem; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
  .gallery__albums { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .gallery__album-label { font-size: 0.8rem; padding: 18px 8px 8px; }
  .lightbox__nav { width: 42px; height: 42px; }
}
