﻿:root {
  --ink: #17120f;
  --paper: #fffaf2;
  --soft: #f7efe5;
  --card: #ffffff;
  --muted: #70665d;
  --line: rgba(32, 24, 17, 0.13);
  --red: #eb503a;
  --green: #0c9f86;
  --gold: #e9ae3d;
  --shadow: 0 20px 46px rgba(68, 46, 29, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.035) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, var(--paper) 0%, var(--soft) 52%, var(--paper) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open {
  z-index: 300;
}

.nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 8px 0;
}

.brand .brand-mark {
  display: none;
}

.brand-logo {
  width: clamp(160px, 15vw, 216px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(23, 18, 15, 0.16));
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.22rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.brand span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 24, 17, 0.16);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-links a {
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 15px;
  font-size: 1rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  outline: 0;
}

@media (max-width: 1180px) {
  .nav {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 12px;
    padding: 12px 0;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 100;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex !important;
    margin-left: auto;
    border-color: transparent;
    color: var(--ink);
    background: transparent;
    transform: translateY(-50%);
  }

  .menu-lines {
    width: 24px;
    display: grid;
    gap: 5px;
  }

  .menu-lines span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-content: center;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    border-top: 0;
    padding: 98px 22px 28px;
    overflow-y: auto;
    background:
      linear-gradient(90deg, rgba(235, 80, 58, 0.08), transparent 36%, rgba(12, 159, 134, 0.07)),
      #fffaf2;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    max-width: 520px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(68, 46, 29, 0.08);
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 900;
  }

  .site-header .btn-primary {
    display: none;
  }
}

.btn {
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(32, 24, 17, 0.16);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(32, 24, 17, 0.34);
  outline: 0;
}

.btn-primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(23, 18, 15, 0.16);
}

.btn-red {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(235, 80, 58, 0.18);
}

.hero {
  padding: clamp(44px, 8vw, 92px) 0 clamp(34px, 6vw, 62px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(235, 80, 58, 0.1), transparent 34%, rgba(12, 159, 134, 0.08)),
    linear-gradient(180deg, var(--paper), var(--soft));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.kicker {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 840px;
  margin-top: 12px;
  font-size: clamp(2.25rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

h1 span,
h2 span {
  color: var(--red);
}

h2 {
  margin-top: 10px;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.05;
  text-transform: none;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.lead strong {
  color: var(--ink);
}

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

.section {
  padding: clamp(46px, 7vw, 86px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.62;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(68, 46, 29, 0.07);
}

.card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.card .btn {
  margin-top: 18px;
}

.summary {
  display: grid;
  gap: 12px;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.summary-card strong,
.summary-card span {
  display: block;
}

.summary-card strong {
  font-size: 2rem;
  line-height: 1;
}

.summary-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

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

.ticket-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(68, 46, 29, 0.07);
}

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

.city,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  border: 1px solid rgba(32, 24, 17, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  background: #fffaf2;
  font-size: 0.82rem;
  font-weight: 900;
}

.city::before,
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
}

.price {
  color: var(--green);
  font-weight: 950;
  white-space: nowrap;
}

.ticket-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.ticket-card p {
  color: var(--muted);
  line-height: 1.52;
}

.ticket-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.ticket-meta span {
  display: flex;
  gap: 8px;
  color: var(--muted);
  line-height: 1.42;
}

.ticket-meta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--red);
  margin-top: 1px;
}

.ticket-card .btn {
  width: 100%;
}

.note {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.embed-card {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(14px, 3vw, 24px);
  background: #fff;
  box-shadow: var(--shadow);
}

footer {
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .grid.two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .shell {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .brand-logo {
    width: min(190px, calc(100vw - 116px));
    max-height: 48px;
  }

  .site-header .btn-primary {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
    word-break: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .grid,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 340px;
  }
}

.bio-hero .hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
}

.bio-hero .hero-media img {
  min-height: 520px;
}

@media (max-width: 980px) {
  .bio-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .bio-hero .hero-media img {
    min-height: 460px;
  }
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
}

.home-hero .hero-media img {
  min-height: 520px;
}

.instagram-section {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.instagram-feed-card {
  min-height: 640px;
  padding: 18px;
}

@media (max-width: 980px) {
  .home-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-media img {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .instagram-feed-card {
    min-height: 560px;
    padding: 10px;
  }
}
