:root {
  --pink: #dd2aa1;
  --pink-hot: #fd00a8;
  --gold: #cfa670;
  --gold-soft: rgba(207, 166, 112, 0.95);
  --ink: #222;
  --muted: #555;
  --paper: #fff;
  --sand: #faf7f4;
  --shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  --header-h: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  z-index: 10000;
  background: #000;
  color: #fff;
  padding: 8px 12px;
}

/* Top bar */
.topbar {
  background: var(--gold-soft);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar a:hover {
  opacity: 0.85;
}

.lang-switch {
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.logo img {
  height: 58px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
}

.nav a:hover,
.nav a.is-active {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #222;
  margin: 6px 0;
}

/* Hero */
.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  position: relative;
  background: #1a0a14 center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.shape {
  display: block;
  width: 100%;
  height: 20px;
  color: #fff;
  margin-top: -1px;
}

.shape.inverse {
  color: var(--pink);
  transform: scaleY(-1);
}

/* Banners */
.banner {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#000, #f2295b);
  opacity: 0.41;
}

.banner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Split cards */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  width: min(1120px, calc(100% - 40px));
  margin: 48px auto;
  align-items: start;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  border-radius: 5px 0 0 5px;
}

.split-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 5px;
  padding: 60px 56px 65px;
  margin-top: 88px;
  margin-left: -48px;
  position: relative;
  z-index: 1;
}

.split-card h3 {
  margin: 0 0 14px;
  font-family: "Bigshot One", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--pink);
  text-align: center;
  line-height: 1.15;
}

.split-card p,
.split-card ul {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

.split-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.split-card li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}

.split-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.split-card .note {
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* Contact strip */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
  padding: 28px 20px 56px;
  color: var(--pink);
  font-size: 22px;
  font-weight: 700;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-strip svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Gallery */
.gallery-wrap {
  background: var(--sand);
  padding: 0 0 80px;
}

.gallery {
  columns: 4 220px;
  column-gap: 10px;
  width: min(1200px, calc(100% - 24px));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
}

.gallery a {
  display: block;
  margin: 0 0 10px;
  break-inside: avoid;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  transition: transform 0.45s ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}

/* Footer */
.footer {
  background: #1b1b1b;
  color: #eee;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h2 {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer p,
.footer a {
  color: #ddd;
  font-size: 15px;
}

.footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.copyright {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 13px;
  color: #999;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  z-index: 100;
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 92vw);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close {
  top: 16px;
  right: 24px;
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    margin: 32px auto 56px;
  }

  .split-media img {
    min-height: 240px;
    border-radius: 5px 5px 0 0;
  }

  .split-card {
    margin: -8px 0 0;
    padding: 40px 28px 48px;
    border-radius: 0 0 5px 5px;
  }

  .hero {
    min-height: 58vh;
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    font-size: 18px;
  }

  .gallery {
    columns: 2 140px;
  }
}

@media (max-width: 520px) {
  .topbar-inner span:first-child {
    display: none;
  }

  .logo img {
    height: 46px;
  }
}
