:root {
  --midnight: #050b18;
  --midnight-2: #07142a;
  --gold: #d8ad52;
  --gold-bright: #ffd98a;
  --ivory: #f7efd9;
  --muted: #b8aa86;
  --line: rgba(247, 239, 217, 0.15);
  --glass: rgba(7, 16, 32, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background: var(--midnight);
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 15%, rgba(216, 173, 82, 0.15), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(115, 153, 211, 0.13), transparent 30%),
    linear-gradient(180deg, #030713 0%, #07101e 54%, #02050b 100%);
}

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

.sky-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(3, 7, 16, 0.82), rgba(3, 7, 16, 0.18), transparent);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  color: var(--gold-bright);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(5, 11, 24, 0.42);
  filter: drop-shadow(0 0 14px rgba(255, 217, 138, 0.32));
}

.brand-mark span {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark small {
  color: var(--ivory);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(247, 239, 217, 0.72);
}

nav a {
  transition: color 220ms ease;
}

nav a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 96px 22px 74px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.04), rgba(5, 11, 24, 0.9)),
    url("assets/overdrive-cosmic-hero.png") center / cover no-repeat;
  animation: slowDrift 34s ease-in-out infinite alternate;
  transform: scale(1.05);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(255, 217, 138, 0.12), transparent 34%),
    radial-gradient(ellipse at center, transparent 32%, rgba(2, 4, 10, 0.76) 82%),
    linear-gradient(90deg, rgba(3, 7, 16, 0.84), transparent 30%, transparent 70%, rgba(3, 7, 16, 0.84));
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(4rem, 12vw, 10.8rem);
  text-shadow: 0 0 42px rgba(255, 217, 138, 0.32);
}

.edition {
  margin: 22px auto 0;
  color: rgba(247, 239, 217, 0.82);
  font-family: "Cinzel", serif;
  font-size: clamp(1.05rem, 2vw, 1.75rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 138, 0.54);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 217, 138, 0.28), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  box-shadow: 0 16px 44px rgba(216, 173, 82, 0.18);
}

.button:hover::before {
  transform: translateX(110%);
}

.button-primary {
  color: #08111f;
  background: linear-gradient(135deg, #b98733, #ffe4a2 52%, #c7923d);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(5, 11, 24, 0.34);
  backdrop-filter: blur(16px);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(247, 239, 217, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--gold-bright);
  animation: cue 1.8s ease-in-out infinite;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 8vw, 92px);
  padding: clamp(92px, 13vw, 172px) 0;
  border-top: 1px solid var(--line);
}

.intro-copy h2,
.section-heading h2,
.register-inner h2 {
  max-width: 800px;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
}

.intro-text {
  align-self: end;
  color: rgba(247, 239, 217, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.9;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.stat {
  min-height: 210px;
  padding: 46px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-size: clamp(2.9rem, 7vw, 6.3rem);
  line-height: 1;
}

.stat p {
  margin: 12px 0 0;
  color: rgba(247, 239, 217, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.events-section {
  padding: clamp(92px, 13vw, 172px) 0 clamp(32px, 5vw, 72px);
}

.section-heading {
  margin-bottom: clamp(42px, 7vw, 82px);
}

.event-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.event-panel {
  position: relative;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 173, 82, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(9, 20, 40, 0.94), rgba(3, 7, 16, 0.96));
  isolation: isolate;
  transition: transform 300ms ease;
  cursor: pointer;
}

.event-panel:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.event-panel::before,
.event-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.event-panel::before {
  inset: 22px;
  border: 1px solid rgba(255, 217, 138, 0.2);
  opacity: 0.65;
  transition: inset 300ms ease, opacity 300ms ease;
}

.event-panel::after {
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(216, 173, 82, 0.12));
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.event-panel:hover {
  z-index: 2;
  transform: translateY(-8px);
}

.event-panel:hover::before {
  inset: 14px;
  opacity: 1;
}

.event-panel:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.event-logo {
  display: block;
  width: 118px;
  height: 118px;
  margin-bottom: 70px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(255, 217, 138, 0.18));
  transition: transform 400ms ease, filter 400ms ease;
}

.event-panel:hover .event-logo {
  transform: rotate(-5deg) scale(1.08);
  filter: drop-shadow(0 0 48px rgba(255, 217, 138, 0.36));
}

.event-orbit {
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 86px;
  place-items: center;
  border: 1px solid rgba(255, 217, 138, 0.55);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-size: 1.65rem;
  box-shadow: 0 0 46px rgba(216, 173, 82, 0.18);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.event-panel:hover .event-orbit {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 70px rgba(255, 217, 138, 0.3);
}

.event-category {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-panel h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.event-panel > p:not(.event-category) {
  max-width: 100%;
  margin: 0 0 18px;
  color: rgba(247, 239, 217, 0.7);
  line-height: 1.8;
  transform: translateY(10px);
  opacity: 0.74;
  transition: transform 300ms ease, opacity 300ms ease;
}

.event-panel:hover > p:not(.event-category) {
  transform: translateY(0);
  opacity: 1;
}

.event-meta {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 217, 138, 0.18);
  color: rgba(255, 217, 138, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-open {
  position: absolute;
  right: 34px;
  bottom: 76px;
  color: rgba(247, 239, 217, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-open::after {
  display: inline-block;
  margin-left: 9px;
  content: "+";
  color: var(--gold-bright);
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  padding: 22px;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
}

.event-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 12, 0.78);
  backdrop-filter: blur(16px);
}

.event-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  width: min(920px, 100%);
  height: min(720px, calc(100svh - 44px));
  overflow: hidden;
  border: 1px solid rgba(255, 217, 138, 0.32);
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 173, 82, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(7, 16, 32, 0.98), rgba(2, 5, 12, 0.98));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
}

.event-modal.is-open .event-modal-card {
  transform: translateY(0) scale(1);
}

.event-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  min-height: 0;
  padding: 0;
  border: none;
  color: var(--ivory);
  font: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  background: transparent;
  cursor: pointer;
}

.event-modal-close:hover,
.event-modal-close:focus-visible {
  color: var(--gold-bright);
  outline: none;
  border: none;
}

.event-modal-media {
  display: grid;
  min-height: 420px;
  place-items: center;
  border-right: 1px solid rgba(255, 217, 138, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.event-modal-media img {
  width: min(180px, 70%);
  height: auto;
  filter: drop-shadow(0 0 42px rgba(255, 217, 138, 0.22));
}

.event-modal-copy {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(34px, 6vw, 62px);
  scrollbar-color: rgba(255, 217, 138, 0.65) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.event-modal-copy::-webkit-scrollbar {
  width: 10px;
}

.event-modal-copy::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.event-modal-copy::-webkit-scrollbar-thumb {
  border: 2px solid rgba(7, 16, 32, 0.98);
  border-radius: 999px;
  background: rgba(255, 217, 138, 0.65);
}

.event-modal-copy h2 {
  max-width: 600px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.event-modal-copy p {
  max-width: 620px;
  color: rgba(247, 239, 217, 0.72);
  font-size: 1rem;
  line-height: 1.82;
}

.event-modal-copy #modalSummary {
  margin-top: 24px;
  color: rgba(247, 239, 217, 0.86);
  font-size: 1.08rem;
}

.modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 217, 138, 0.18);
}

.modal-meta-row span,
.modal-meta-row a {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-meta-row a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 217, 138, 0.42);
}

.register-section {
  padding: clamp(92px, 13vw, 172px) 20px;
  background:
    radial-gradient(circle at 50% 10%, rgba(216, 173, 82, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(3, 7, 16, 0), rgba(2, 4, 10, 0.92));
}

.socials-section {
  padding: clamp(92px, 13vw, 172px) 0;
  text-align: center;
}

.socials-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.socials-inner h2 {
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-weight: 700;
  margin: 12px 0 0;
}

.socials-subtitle {
  max-width: 760px;
  margin: 12px auto 0;
  color: rgba(247, 239, 217, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.9;
}

.socials-details {
  margin-top: 18px;
}

.socials-timing {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.timing-label {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.timing-value {
  color: rgba(247, 239, 217, 0.9);
  font-size: 1.08rem;
  font-weight: 700;
}

.schedule-section {
  padding: clamp(24px, 5vw, 72px) 0 clamp(92px, 13vw, 172px);
}

.notes-section {
  padding: 0 0 clamp(92px, 13vw, 172px);
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.notes-list p {
  min-height: 210px;
  margin: 0;
  padding: 26px;
  color: rgba(247, 239, 217, 0.74);
  line-height: 1.75;
  background: rgba(5, 11, 24, 0.72);
}

.notes-list p::before {
  display: block;
  width: 26px;
  height: 1px;
  margin-bottom: 22px;
  content: "";
  background: var(--gold-bright);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.schedule-day {
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(9, 20, 40, 0.88), rgba(3, 7, 16, 0.96));
}

.schedule-day h3 {
  margin-bottom: 32px;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.schedule-day dl {
  margin: 0;
}

.schedule-day div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.schedule-day dt,
.schedule-day dd {
  margin: 0;
}

.schedule-day dt {
  color: rgba(247, 239, 217, 0.68);
}

.schedule-day dd {
  color: var(--ivory);
  font-weight: 800;
  text-align: right;
}

.register-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.register-inner h2 {
  margin: 0 auto;
}

.register-inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(247, 239, 217, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.contact-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin: 0 auto;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(247, 239, 217, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-block {
  max-width: 760px;
  margin: 34px auto 0;
  display: grid;
  gap: 24px;
}

.contact-item {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.contact-label {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-item a {
  color: rgba(247, 239, 217, 0.94);
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 217, 138, 0.28);
  background: rgba(5, 11, 24, 0.32);
  color: rgba(247, 239, 217, 0.94);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  box-shadow: 0 18px 38px rgba(216, 173, 82, 0.16);
}

.contact-link svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-bright);
  flex-shrink: 0;
}

.contact-link span {
  font-weight: 700;
}

.guideline-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.guideline-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 217, 138, 0.28);
  color: rgba(247, 239, 217, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(5, 11, 24, 0.36);
}

.brochure-body {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.22), rgba(5, 11, 24, 0.96)),
    url("assets/overdrive-cosmic-hero.png") center / cover fixed no-repeat;
}

.brochure-page {
  width: min(1120px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 34px 0 72px;
}

.brochure-page > .brand-mark {
  margin-bottom: clamp(72px, 12vw, 140px);
}

.brochure-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  max-width: none;
}

.brochure-hero h1 {
  font-size: clamp(3.7rem, 11vw, 9rem);
}

.brochure-hero > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(247, 239, 217, 0.8);
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.brochure-hero > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(247, 239, 217, 0.8);
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.brochure-actions {
  justify-content: flex-start;
}

.brochure-cover {
  width: 100%;
  border: 1px solid rgba(255, 217, 138, 0.34);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45), 0 0 52px rgba(216, 173, 82, 0.12);
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(56px, 10vw, 112px);
  background: var(--line);
  border: 1px solid var(--line);
}

.brochure-panel {
  min-height: 260px;
  padding: 32px;
  background: rgba(5, 11, 24, 0.72);
  backdrop-filter: blur(18px);
}

.brochure-panel h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.brochure-panel p:last-child {
  color: rgba(247, 239, 217, 0.72);
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 860ms ease, transform 860ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowDrift {
  from {
    transform: scale(1.05) translate3d(-1.2%, -1%, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.2%, 1%, 0);
  }
}

@keyframes cue {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(14px);
  }
}

@media (max-width: 920px) {
  .intro-section,
  .event-showcase,
  .schedule-grid,
  .brochure-hero,
  .brochure-grid {
    grid-template-columns: 1fr;
  }

  .notes-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .brochure-actions {
    justify-content: center;
  }

  .event-panel {
    min-height: 520px;
  }

  .event-orbit {
    margin-bottom: 58px;
  }

  .event-logo {
    margin-bottom: 52px;
  }
}

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

  nav {
    gap: 13px;
    font-size: 0.68rem;
  }

  .brand-mark span {
    display: none;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .button {
    width: min(100%, 270px);
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .event-panel {
    padding: 28px;
  }

  .event-meta {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .event-open {
    right: 28px;
    bottom: 74px;
  }

  .event-modal-card {
    grid-template-columns: 1fr;
    height: min(760px, calc(100svh - 32px));
  }

  .event-modal-media {
    min-height: 170px;
    max-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 217, 138, 0.16);
  }

  .event-modal-copy {
    padding: 30px 24px;
  }

  .event-modal-close {
    top: 14px;
    right: 14px;
  }

  .notes-list {
    grid-template-columns: 1fr;
  }

  .notes-list p {
    min-height: auto;
  }
}

.instagram-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1306c, #f77737);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.instagram-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
