/* =========================================================
   Hello Germany premium one-page website
   Edit content in index.html. Adjust global colors below.
   ========================================================= */

:root {
  --red: #e53935;
  --red-dark: #b92723;
  --gold: #f4c430;
  --event-gold: #d8a84d;
  --event-amber: #c76f2f;
  --event-plum: #331b38;
  --blue: #1e4db7;
  --black: #090a0d;
  --ink: #17191f;
  --muted: #686f7a;
  --line: rgba(30, 77, 183, 0.14);
  --soft: #f6f7f9;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(16, 31, 65, 0.1);
  --shadow-strong: 0 26px 90px rgba(16, 31, 65, 0.17);
  --container: 1180px;
  --font-body: "Aptos", "Segoe UI", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-accent: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font: var(--font-body);
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  padding: 10px 48px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(9, 10, 13, 0.08);
  backdrop-filter: blur(18px);
  transition:
    box-shadow var(--ease),
    min-height var(--ease),
    background var(--ease);
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 50px rgba(16, 31, 65, 0.1);
}

.brand {
  display: inline-flex;
  width: 98px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button,
.nav-ticket {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.button-primary,
.nav-ticket {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 42px rgba(229, 57, 53, 0.28);
}

.button-primary:hover,
.nav-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(229, 57, 53, 0.36);
}

.button-ghost {
  color: var(--black);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(9, 10, 13, 0.12);
  box-shadow: 0 18px 44px rgba(16, 31, 65, 0.08);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.button-gold {
  color: var(--black);
  background: linear-gradient(135deg, #ffe6a1, var(--event-gold));
  border-color: rgba(244, 196, 48, 0.4);
  box-shadow: 0 18px 42px rgba(216, 168, 77, 0.24);
}

.button-gold:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(216, 168, 77, 0.34);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(86svh - 88px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.94) 0%, rgba(9, 10, 13, 0.78) 46%, rgba(9, 10, 13, 0.54) 100%),
    linear-gradient(180deg, rgba(216, 168, 77, 0.08), rgba(9, 10, 13, 0.2)),
    url("assets/melam-ii-dortmund-poster.png") center / cover no-repeat,
    #090a0d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -16%;
  width: 62%;
  height: 70%;
  background:
    linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(229, 57, 53, 0.08)),
    linear-gradient(45deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 38% 40%, transparent 40% 100%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 84%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--black) 0 24%, var(--red) 24% 58%, var(--gold) 58% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 72px 0 92px;
}

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

.hero .eyebrow {
  color: var(--event-gold);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero h1 {
  color: var(--white);
}

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

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(30, 77, 183, 0.16);
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 28px 54px rgba(16, 31, 65, 0.12));
}

.event-hero-card {
  align-self: center;
  justify-self: end;
  padding: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 196, 48, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  animation: floatCard 5.5s ease-in-out infinite;
}

.event-hero-card::before {
  display: none;
}

.event-hero-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  filter: none;
}

.poster-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 12px;
  color: var(--black);
  background: linear-gradient(135deg, #ffe9aa, var(--event-gold));
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.hero-meta div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-meta dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.hero-strip {
  position: relative;
  z-index: 2;
  align-self: end;
  color: var(--white);
  background: var(--black);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.strip-grid span:nth-child(1) {
  color: #ff6b66;
}

.strip-grid span:nth-child(2) {
  color: var(--gold);
}

.strip-grid span:nth-child(3) {
  color: #8fb0ff;
}

.strip-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 112px 0;
}

.featured-event-section {
  padding: 112px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 10, 13, 0.7), rgba(9, 10, 13, 0.94)),
    radial-gradient(circle at 80% 15%, rgba(216, 168, 77, 0.24), transparent 30%),
    #090a0d;
}

.featured-event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.event-poster-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 196, 48, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.event-poster-card img {
  width: min(100%, 560px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.event-detail-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 196, 48, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.event-detail-panel .eyebrow {
  color: var(--event-gold);
}

.event-detail-panel h2,
.event-detail-panel h3 {
  color: var(--white);
}

.event-detail-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.event-meta-grid div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.event-meta-grid span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-meta-grid strong {
  color: var(--white);
  font-size: 0.96rem;
}

.countdown-card {
  padding: 20px;
  background: linear-gradient(135deg, rgba(216, 168, 77, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: var(--radius);
}

.countdown-card p {
  margin-bottom: 14px;
  color: var(--event-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.countdown-grid div {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 10px;
  background: rgba(9, 10, 13, 0.34);
  border-radius: var(--radius);
}

.countdown-grid strong {
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
}

.countdown-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.festival-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.festival-card {
  padding: 26px;
  color: var(--black);
  background: linear-gradient(135deg, #fff8df, #fff);
  border: 1px solid rgba(244, 196, 48, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.festival-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.24);
}

.festival-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.festival-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.festival-card-dark {
  color: var(--white);
  background: linear-gradient(135deg, #17100e, #3a1f18);
  border-color: rgba(244, 196, 48, 0.28);
}

.festival-card-dark h3 {
  color: var(--white);
}

.festival-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.about-section,
.sponsors-section,
.contact-section {
  background: var(--white);
}

.board-section,
.social-section {
  background:
    linear-gradient(90deg, rgba(30, 77, 183, 0.04) 0 1px, transparent 1px 100%),
    var(--soft);
  background-size: 82px 82px;
}

.about-layout,
.social-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.section-copy p,
.section-heading p,
.about-text p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.feature-card,
.member-card,
.booking-card,
.sponsor-card,
.social-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 260px;
  padding: 30px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.feature-card:hover,
.member-card:hover,
.sponsor-card:hover,
.social-card:hover {
  border-color: rgba(229, 57, 53, 0.28);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.feature-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 54px;
  color: var(--blue);
  background: #eef3ff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-number {
  color: #8a6700;
  background: #fff6d6;
}

.feature-card:nth-child(3) .feature-number {
  color: var(--red);
  background: #fff0ef;
}

.feature-card p,
.member-bio,
.booking-card li,
.booking-copy p,
.social-card small,
.contact-row p {
  color: var(--muted);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.board-grid-compact {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  max-width: 760px;
}

.member-card {
  display: grid;
  gap: 22px;
  min-height: 330px;
  padding: 26px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.member-avatar {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(229, 57, 53, 0.16);
  font-size: 1.2rem;
  font-weight: 900;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), #ffdd62);
}

.avatar-blue {
  background: linear-gradient(135deg, var(--blue), #3d6ce3);
}

.avatar-black {
  background: linear-gradient(135deg, var(--black), #343942);
}

.member-role {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-bio {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.member-phone {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 900;
}

.member-phone:hover {
  color: var(--red);
}

.booking-section {
  padding: 112px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 10, 13, 0.92), rgba(9, 10, 13, 0.86)),
    linear-gradient(90deg, var(--black) 0 24%, var(--red) 24% 58%, var(--gold) 58% 100%);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
}

.booking-copy h2,
.booking-card h3 {
  color: var(--white);
}

.booking-copy .eyebrow {
  color: var(--gold);
}

.booking-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.booking-card {
  padding: 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.booking-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.booking-card li {
  color: rgba(255, 255, 255, 0.76);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(320px, 1.25fr);
  gap: 20px;
  align-items: stretch;
}

.sponsor-card {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 34px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.sponsor-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.sponsor-wide img {
  max-height: 116px;
}

.social-card-grid {
  display: grid;
  gap: 18px;
}

.social-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.social-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
}

.youtube-icon {
  background: var(--red);
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.social-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--black);
  font-size: 1.05rem;
}

.social-card small {
  display: block;
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  gap: 22px;
  padding: 32px;
  font-style: normal;
}

.contact-row {
  display: grid;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-row span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #07080a;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 82px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  text-align: right;
  font-size: 0.86rem;
}

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

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding: 10px 28px;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero-inner,
  .about-layout,
  .social-layout,
  .contact-layout,
  .featured-event-layout {
    gap: 42px;
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    gap: 12px;
    min-height: 76px;
    padding: 10px 18px;
  }

  .brand {
    width: 82px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  .nav-ticket {
    grid-column: 2;
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity var(--ease),
      transform var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    color: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .featured-event-layout,
  .about-layout,
  .social-layout,
  .contact-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-grid,
  .sponsor-grid,
  .festival-card-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-panel {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 74px;
  }

  .nav-ticket {
    display: none;
  }

  .site-nav {
    inset: 76px 14px auto 14px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-inner {
    gap: 28px;
    padding: 44px 0 58px;
  }

  .hero-bg::before {
    top: 6%;
    right: -42%;
    width: 90%;
  }

  .hero-meta,
  .event-meta-grid {
    grid-template-columns: 1fr;
  }

  .event-poster-card img {
    min-height: 250px;
  }

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

  .event-actions,
  .event-actions .button {
    width: 100%;
  }

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

  .strip-grid span {
    min-height: 58px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .booking-section {
    padding: 72px 0;
  }

  .feature-grid {
    margin-top: 34px;
  }

  .feature-card,
  .member-card,
  .booking-card,
  .sponsor-card,
  .social-card,
  .contact-panel {
    padding: 22px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .member-card {
    min-height: auto;
  }

  .social-card {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}
