:root {
  color-scheme: light;
  --ink: #272029;
  --muted: #6c5968;
  --soft: #927b8e;
  --bg: #fff8fb;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #fff;
  --line: rgba(39, 32, 41, 0.16);
  --pink: #ee3c9a;
  --orange: #ff783d;
  --cyan: #39c6e8;
  --lime: #8ccf35;
  --amber: #ffbd42;
  --radius: 8px;
  --outline: #272029;
  --shadow: 0 18px 0 rgba(39, 32, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 120, 61, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 16%, rgba(238, 60, 154, 0.22), transparent 24rem),
    linear-gradient(180deg, #fffafd 0%, #f9d6e7 46%, #fff8fb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.neon-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.36;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 3px solid var(--outline);
  background: rgba(255, 248, 251, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.event-card-top,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 58px;
  aspect-ratio: 660 / 691;
  object-fit: contain;
}

.nav {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.nav a,
.header-cta,
.button {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--pink);
}

.header-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(39, 32, 41, 0.16);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 84px);
}

.hero-copy {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  font-size: clamp(4.8rem, 16vw, 12rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--orange);
  -webkit-text-stroke: clamp(1px, 0.24vw, 4px) var(--outline);
  text-shadow: 8px 8px 0 rgba(238, 60, 154, 0.28);
}

.hero-title-logo {
  width: min(100%, 540px);
  max-width: none;
  margin-bottom: 28px;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.hero-title-logo img {
  width: 100%;
  height: auto;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 600;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary {
  border: 2px solid var(--outline);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  box-shadow: 5px 5px 0 rgba(39, 32, 41, 0.2);
}

.button.ghost {
  border: 2px solid var(--outline);
  background: white;
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(39, 32, 41, 0.12);
}

.event-card,
.panel,
.highlight-grid article,
.owner-card,
.contact-card {
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 8px solid var(--orange);
  background: linear-gradient(145deg, rgba(238, 60, 154, 0.14), transparent 48%);
  pointer-events: none;
}

.event-card > * {
  position: relative;
}

.event-card-top {
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 120, 61, 0.22);
}

.event-facts {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.event-facts div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(39, 32, 41, 0.12);
}

dt {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.countdown span {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 14px 8px;
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(39, 32, 41, 0.1);
}

.countdown strong {
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1;
}

.countdown small {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.intro p:last-child,
.promotion p,
.owner-card p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 600;
}

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

.highlight-grid article,
.owner-card {
  padding: 22px;
}

.highlight-grid article {
  min-height: 210px;
  background: linear-gradient(160deg, #fff, #ffeaf3);
}

.icon {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--outline);
  background: var(--orange);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(39, 32, 41, 0.16);
}

.highlight-grid p,
.check-list li {
  color: var(--muted);
}

.about-us {
  background: #fff0f7;
  border-block: 3px solid var(--outline);
}

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

.owner-card {
  display: grid;
  min-height: 340px;
  align-content: start;
  background: linear-gradient(160deg, #fff, #ffe3f0);
}

.owner-photo {
  display: grid;
  width: 116px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  place-items: center;
  border: 2px solid var(--outline);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.44), transparent 18%),
    linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 6px 6px 0 rgba(39, 32, 41, 0.16);
}

.owner-role {
  margin: 0 0 8px;
  color: var(--pink) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.panel {
  padding: clamp(24px, 4vw, 38px);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 120, 61, 0.16);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
}

.audience-strip span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 14px;
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: center;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 900;
}

.audience-strip span:nth-child(3n + 1) {
  background: #ffe3f0;
}

.audience-strip span:nth-child(3n + 2) {
  background: #fff0d8;
}

.audience-strip span:nth-child(3n) {
  background: #fff;
}

.promotion {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

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

.promotion-points span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #ffdeeb, #fff3dc 52%, #fff);
  border-block: 3px solid var(--outline);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-label {
  margin: 0;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.8rem;
}

.contact-card a:not(.button),
.contact-card span {
  color: var(--muted);
  font-weight: 800;
}

.contact-card .button {
  margin-top: 8px;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 3px solid var(--outline);
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .section-heading,
  .split,
  .promotion,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 36px;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .highlight-grid,
  .owner-grid,
  .promotion-points {
    grid-template-columns: 1fr;
  }

  .audience-strip {
    grid-template-columns: 1fr;
  }

  .audience-strip span {
    min-height: 68px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .neon-field {
    display: none;
  }
}
