:root {
  --bg-top: #dceafb;
  --bg-bottom: #eae7fb;
  --text-primary: #1a237e;
  --text-muted: #4151a8;
  --surface: #ffffffcc;
  --focus-accent: #f97316;
  --relax-accent: #3b82f6;
  --border-soft: #cdd9f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(40% 35% at 18% 16%, rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0)),
    radial-gradient(35% 28% at 82% 18%, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0)),
    radial-gradient(32% 24% at 72% 78%, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0)),
    linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
  background-attachment: fixed;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.hero {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(26, 35, 126, 0.08);
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #ffffffd9;
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--text-primary);
  color: #fff;
}

.status {
  margin: 0 0 14px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #8a4b00;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

h1 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(32px, 8vw, 56px);
}

.lead {
  margin: 16px 0 0;
  max-width: 680px;
  line-height: 1.55;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: var(--focus-accent);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.section {
  margin-top: 30px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 5vw, 34px);
}

.section-note {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.shots-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: start;
}

.shot-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 12px;
}

.shot-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid #e9eefc;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.shot-card img:hover {
  transform: translateY(-2px);
}

.shot-card p {
  margin: 10px 2px 2px;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 44px;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px;
}

.card:nth-child(odd) {
  border-left: 4px solid var(--focus-accent);
}

.card:nth-child(even) {
  border-left: 4px solid var(--relax-accent);
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.section-about {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px;
}

.section-about p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-muted);
}

.section-about p + p {
  margin-top: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 31, 0.84);
  padding: 24px;
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(95vw, 720px);
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 760px) {
  .page {
    padding-top: 54px;
  }

  .hero {
    padding: 36px 32px;
  }

  .lang-button {
    font-size: 13px;
    padding: 7px 12px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .shots-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
  }

  .shot-card img {
    height: 300px;
    object-position: center;
  }
}
