:root {
  --bg: #5a5a5a;
  --bg-dark: #3f3f3f;
  --accent: #ff3ec0;
  --accent-soft: rgba(255, 62, 192, 0.18);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 62, 192, 0.18), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255, 62, 192, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(63, 63, 63, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.logo {
  height: 56px;
  width: auto;
}

/* ---------- Hamburger ---------- */

.nav-toggle {
  display: none;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 26px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80vw);
  background: rgba(40, 40, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.nav-toggle:checked ~ .nav {
  transform: translateX(0);
}

.nav ul {
  list-style: none;
  padding: 100px 28px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav a {
  display: block;
  padding: 14px 12px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Sections ---------- */

.section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 40px 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.highlight {
  display: inline-block;
  padding: 12px 18px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  font-size: 1.1rem;
}

/* ---------- Price table ---------- */

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table thead th {
  background: rgba(255, 62, 192, 0.22);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.price-table tbody tr:hover {
  background: var(--accent-soft);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 26px;
}

.gallery-pair {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px 0;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-pair:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.gallery-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.badge-after {
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-pair figcaption {
  grid-column: 1 / -1;
  padding: 14px 4px 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 520px) {
  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .gallery-photo img {
    aspect-ratio: auto;
  }
}

/* ---------- Contact ---------- */

.contact {
  background: rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 26px;
}

.contact p {
  margin: 6px 0;
}

.social {
  text-align: left;
  font-family: Verdana, Geneva, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.social img {
  vertical-align: middle;
  height: 32px;
  width: auto;
}

.social a.social-link {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  font-family: Arial, sans-serif;
}

.social a.social-link:hover {
  color: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */

@media (min-width: 900px) {
  .site-header {
    padding: 16px 40px;
  }

  .logo {
    height: 64px;
  }

  .section {
    padding: 90px 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .logo {
    height: 48px;
  }

  .section {
    padding: 50px 0;
  }

  .contact {
    padding: 18px 20px;
  }
}
