:root {
  --bg: #080a0d;
  --panel: #10141a;
  --panel2: #151b23;
  --text: #f6f7f8;
  --muted: #9ca7b4;
  --accent: #e7ff57;
  --line: #232b35;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 10, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navin {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20px;
}
.brand span {
  color: var(--accent);
}
.links {
  display: flex;
  gap: 28px;
  color: #cbd2da;
  font-size: 14px;
}
.links a:hover,
.links a.active {
  color: var(--accent);
}
.language {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.language select {
  width: auto;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  background: var(--panel);
}
.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 80% 10%, #26303b 0, transparent 32%),
    linear-gradient(135deg, #0c1117, #080a0d 60%);
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  max-width: 920px;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0d0f;
  font-weight: 800;
  border: 1px solid var(--accent);
  cursor: pointer;
}
.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: #3a444f;
}
.section {
  padding: 86px 0;
}
.sectionhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
  margin: 8px 0;
}
.sectionhead p {
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.event-card {
  display: block;
  min-height: 360px;
  border-radius: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.event-card:nth-child(1),
.event-card:nth-child(3) { grid-column: span 7; }
.event-card:nth-child(2) { grid-column: span 5; }
.event-card:hover {
  transform: translateY(-4px);
}
.event-cover {
  position: absolute;
  inset: 0;
}
.event-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.event-card:hover .event-cover img { transform: scale(1.04); }
.event-card .event-action { position: absolute; right: 20px; top: 20px; color: var(--accent); font-weight: 800; opacity: 0; transition: opacity 0.25s; }
.event-card:hover .event-action { opacity: 1; }
.event-head { padding-bottom: 30px; }
.back-link { display: inline-block; color: var(--muted); margin-bottom: 48px; }
.back-link:hover { color: var(--accent); }
.event-summary { color: var(--muted); font-size: 18px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.photo-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel2);
  cursor: pointer;
}
.photo-tile img { height: 100%; object-fit: cover; transition: transform 0.35s, filter 0.35s; }
.photo-tile:hover img { transform: scale(1.04); filter: brightness(0.82); }
.photo-id {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(8, 10, 13, 0.82);
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.selection-mark { display: none; position: absolute; top: 10px; right: 10px; padding: 5px 8px; border-radius: 50%; background: var(--accent); color: #111; font-weight: 900; }
.photo-tile.selected { border: 2px solid var(--accent); }
.photo-tile.selected .selection-mark { display: block; }
.empty-state { padding: 40px 0; color: var(--muted); }
.lightbox[hidden], .selection-bar[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  justify-items: center;
  padding: 30px;
  background: rgba(4, 6, 8, 0.96);
}
.lightbox-figure { width: min(100%, 1100px); margin: 0; }
.lightbox-figure img { max-height: 78vh; width: 100%; object-fit: contain; }
.lightbox-figure figcaption { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: 16px; }
.icon-button { border: 1px solid #3a444f; border-radius: 50%; width: 44px; height: 44px; background: transparent; color: white; cursor: pointer; font-size: 22px; }
.icon-button:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close { position: absolute; top: 24px; right: 24px; }
.lightbox-select { padding: 10px 15px; font-size: 13px; }
.selection-bar { position: fixed; z-index: 30; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px max(20px, calc((100% - var(--max)) / 2)); background: rgba(16, 20, 26, 0.96); border-top: 1px solid var(--accent); backdrop-filter: blur(15px); }
.selection-bar .btn { padding: 11px 16px; font-size: 13px; }
body.lightbox-open { overflow: hidden; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #151b23;
  min-height: 280px;
  border: 1px solid var(--line);
}
.shot:nth-child(1),
.shot:nth-child(4) {
  grid-column: span 7;
}
.shot:nth-child(2),
.shot:nth-child(3) {
  grid-column: span 5;
}
.shot:nth-child(5) {
  grid-column: span 5;
}
.shot:nth-child(6) {
  grid-column: span 7;
}
.shot img {
  height: 100%;
  object-fit: cover;
  transition:
    0.45s transform,
    0.45s filter;
  filter: saturate(0.86) contrast(1.05);
}
.shot:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.shot .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 20px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.meta small {
  color: #d4dae0;
}
.meta b {
  display: block;
  margin-top: 4px;
}
.tag {
  font-size: 11px;
  background: rgba(231, 255, 87, 0.95);
  color: #111;
  padding: 7px 9px;
  border-radius: 999px;
  font-weight: 800;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.card.featured {
  border-color: var(--accent);
  transform: translateY(-8px);
}
.price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 20px 0;
}
.muted {
  color: var(--muted);
  line-height: 1.7;
}
.features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #d9dee4;
}
.pagehead {
  padding: 90px 0 44px;
}
.pagehead h1 {
  font-size: clamp(46px, 8vw, 88px);
  letter-spacing: -0.06em;
  margin: 10px 0;
}
.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 13px;
  font-weight: 700;
  color: #cbd2da;
}
input,
textarea,
select {
  width: 100%;
  background: #0d1116;
  border: 1px solid #2a333d;
  color: white;
  border-radius: 13px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.contactbox {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}
.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #152014;
  color: #dfffa0;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 50px;
  color: var(--muted);
  font-size: 13px;
}
.footerin {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.mobile {
  display: none;
}
@media (max-width: 760px) {
  .links {
    display: none;
  }
  .mobile {
    display: block;
    color: var(--muted);
  }
  .hero {
    min-height: 66vh;
  }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card,
  .event-card:nth-child(n) { grid-column: auto; min-height: 280px; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .shot,
  .shot:nth-child(n) {
    grid-column: auto;
    min-height: 320px;
  }
  .cards,
  .contactbox,
  .formgrid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .card.featured {
    transform: none;
  }
  .sectionhead,
  .footerin {
    align-items: flex-start;
    flex-direction: column;
  }
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .lightbox { grid-template-columns: 42px minmax(0, 1fr) 42px; padding: 18px 8px; }
  .lightbox-figure img { max-height: 70vh; }
  .lightbox-close { top: 12px; right: 12px; }
  .selection-bar { padding: 12px 14px; }
  .selection-bar .btn { padding: 10px 12px; }
}
