:root {
  --ink: #0b1727;
  --muted: #657083;
  --line: rgba(11, 23, 39, 0.11);
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #085494;
  --blue-dark: #042f62;
  --gold: #f7bd17;
  --green: #52a939;
  --shadow: 0 24px 70px rgba(4, 27, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 14px 40px rgba(4, 27, 54, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 45px rgba(4, 27, 54, 0.17);
}

.brand {
  display: flex;
  align-items: center;
  width: 178px;
  height: 42px;
  overflow: hidden;
}

.brand img {
  width: 178px;
  height: 60px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #18304d;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(8, 84, 148, 0.1);
  color: var(--blue);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 120px max(24px, calc((100vw - 1180px) / 2)) 38px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 14s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 18, 36, 0.9) 0%, rgba(4, 18, 36, 0.66) 42%, rgba(4, 18, 36, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 18, 36, 0.22), rgba(4, 18, 36, 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding-top: 60px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3em;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-partners {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(240px, 1.15fr);
  gap: 12px;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0;
  background-color: #fff;
}

.hero-partners article {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  min-height: 104px;
  padding: 12px 14px;
  /* border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 45px rgba(4, 18, 36, 0.22);
  backdrop-filter: blur(14px); */
}

.hero-partners span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-partners img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.partner-logos img {
  flex: 1 1 0;
  min-width: 0;
  height: 120px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 35px rgba(247, 189, 23, 0.28);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.event-strip {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.event-strip article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--ink);
}

.event-strip span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.22;
}

.section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  grid-column: 1 / 3;
  max-width: 950px;
}

.section-head.compact {
  display: block;
  max-width: 850px;
}

.intro {
  background:
    radial-gradient(circle at 15% 10%, rgba(247, 189, 23, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, #eef4f9);
}

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

.feature-card,
.audience-grid article,
.rate-card,
.about-card,
.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(4, 27, 54, 0.07);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.audience-grid article:hover,
.photo-grid button:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(8, 84, 148, 0.1);
  color: var(--blue);
  font-weight: 900;
}

.feature-card p,
.audience-grid p,
.rate-card p,
.about-card p,
.split-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  background: #ffffff;
}

.list-panel {
  position: relative;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), #0c6a9f 62%, #2b8d50);
  color: #ffffff;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.audience {
  background: #eef4f9;
}

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

.audience-grid article {
  padding: 22px;
  min-height: 210px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rates {
  background: #ffffff;
}

.rates-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.booth-visual {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  /* height: 520px; */
}

.booth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rate-cards {
  display: grid;
  gap: 16px;
}

.rate-card {
  padding: 26px;
}

.rate-card.featured {
  border-color: rgba(8, 84, 148, 0.28);
}

.rate-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rate-card h3 {
  margin-top: 6px;
  font-size: 34px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.price-row b {
  color: var(--blue);
  white-space: nowrap;
}

.floor-plan {
  background: #eef4f9;
}

.floor-plan-sheet {
  padding: 26px;
  border: 1px solid rgba(8, 84, 148, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.floor-plan-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 26px;
  text-align: center;
}

.floor-plan-title img {
  width: min(420px, 82vw);
}

.floor-plan-title h2 {
  margin: 0;
  color: #1825d8;
  font-size: 1.6em;
  font-weight: 900;
  text-transform: uppercase;
}

.floor-plan-title p {
  margin: 0;
  color: #1825d8;
  font-size: 1.25em;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-scroll {
  overflow: auto;
  padding: 56px 92px 88px 32px;
}

.plan-map {
  position: relative;
  width: 1160px;
  height: 660px;
  margin: 0 auto;
  border: 3px solid #ff2727;
  background:
    linear-gradient(#eceff3 1px, transparent 1px),
    linear-gradient(90deg, #eceff3 1px, transparent 1px),
    #ffffff;
  background-size: 64px 64px;
  box-shadow: inset 0 0 0 6px #f9fbfd, 0 14px 36px rgba(4, 27, 54, 0.08);
}

.plan-map::before,
.plan-map::after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  height: 16px;
  background: repeating-linear-gradient(90deg, #1a1a1a 0 6px, transparent 6px 70px);
}

.plan-map::before {
  top: -18px;
}

.plan-map::after {
  bottom: -18px;
}

.hall-label,
.dimension {
  position: absolute;
  color: #ff6868;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hall-b {
  top: -48px;
  left: 245px;
}

.hall-c {
  top: -48px;
  right: 245px;
}

.top-scale {
  top: -28px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-around;
}

.auto-block,
.stage,
.booth-group,
.food-court,
.facility,
.side-room,
.office,
.registration {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
}

.auto-block {
  background: #edff23;
  color: #1d2b24;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.auto-block small {
  font-size: 12px;
}

.auto-1,
.auto-2,
.auto-3,
.auto-4 {
  left: 0;
  width: 126px;
  height: 126px;
}

.auto-4 {
  top: 0;
}

.auto-3 {
  top: 132px;
}

.auto-2 {
  top: 264px;
}

.auto-1 {
  top: 396px;
}

.auto-8,
.auto-9,
.auto-10,
.auto-5,
.auto-6,
.auto-7 {
  width: 126px;
  height: 126px;
}

.auto-8 {
  top: 8px;
  left: 575px;
}

.auto-9 {
  top: 8px;
  left: 715px;
}

.auto-10 {
  top: 8px;
  left: 855px;
}

.auto-5 {
  left: 575px;
  bottom: 6px;
}

.auto-6 {
  left: 715px;
  bottom: 6px;
}

.auto-7 {
  left: 855px;
  bottom: 6px;
}

.auto-11 {
  top: 154px;
  right: 22px;
  width: 126px;
  height: 126px;
}

.auto-12 {
  right: 22px;
  bottom: 6px;
  width: 126px;
  height: 236px;
}

.stage {
  top: 6px;
  left: 360px;
  width: 160px;
  height: 150px;
  background: #dd168d;
  color: #160b19;
  text-transform: uppercase;
}

.booth-group {
  grid-template-columns: repeat(2, 1fr);
  width: 66px;
  border: 1px solid #b9bec7;
  background: rgba(255, 255, 255, 0.92);
  color: #1e2937;
  font-size: 13px;
}

.booth-group span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid #d3d7de;
}

.booth-group.small {
  width: 64px;
  font-size: 12px;
}

.booth-group.small span {
  min-height: 32px;
}

.g-ab { top: 84px; left: 170px; }
.g-cd-top { top: 84px; left: 270px; }
.g-ab-mid { top: 218px; left: 170px; }
.g-cd-mid { top: 218px; left: 270px; }
.g-ef-mid { top: 218px; left: 370px; }
.g-gh-mid { top: 218px; left: 470px; }
.g-ab-low { top: 350px; left: 170px; }
.g-cd-low { top: 350px; left: 270px; }
.g-ef-low { top: 350px; left: 370px; }
.g-gh-low { top: 350px; left: 470px; }
.g-ij-mid { top: 184px; left: 575px; }
.g-kl-mid { top: 184px; left: 675px; }
.g-mn-mid { top: 184px; left: 775px; }
.g-op-mid { top: 184px; left: 875px; }
.g-ij-low { top: 286px; left: 575px; }
.g-kl-low { top: 286px; left: 675px; }
.g-mn-low { top: 286px; left: 775px; }
.g-op-low { top: 286px; left: 875px; }

.food-court {
  top: 42px;
  right: 20px;
  width: 110px;
  height: 88px;
  background: #ffffff;
  color: #171b20;
  font-size: 22px;
}

.facility {
  width: 37px;
  height: 37px;
  border: 1px solid #aab0ba;
  background: #f7f8fb;
  font-size: 12px;
}

.fc1 { top: 0; right: 72px; }
.fc2 { top: 0; right: 36px; }
.fc3 { top: 36px; right: 0; }
.fc4 { top: 72px; right: 0; }
.fc5 {
  top: 108px;
  right: 0;
  background: #52e47d;
}

.side-room {
  right: -78px;
  width: 56px;
  height: 92px;
  border: 1px solid #9aa1aa;
  background: #fbfbfb;
  color: #555;
  font-size: 13px;
}

.toilet-1 { top: 118px; }
.toilet-2 { top: 244px; }

.office {
  right: 18px;
  bottom: -70px;
  width: 286px;
  height: 54px;
  border: 2px solid #222;
  background: #f5f7fa;
  color: #777;
  font-weight: 700;
}

.registration {
  left: 265px;
  bottom: -52px;
  width: 110px;
  height: 24px;
  border: 1px solid #b6bbc4;
  background: #ffffff;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}

.entry {
  position: absolute;
  bottom: -50px;
  width: 0;
  height: 34px;
  border-left: 4px solid #ff2424;
}

.entry::before {
  position: absolute;
  top: -6px;
  left: -10px;
  content: "";
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 12px solid #ff2424;
}

.entry-left {
  left: 240px;
}

.entry-right {
  left: 395px;
}

.photos {
  background: #0b1727;
  color: #ffffff;
}

.photos .section-head h2 {
  color: #ffffff;
}

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

.photo-grid button {
  position: relative;
  height: 260px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.photo-grid button:hover img {
  transform: scale(1.08);
  filter: saturate(1.15);
}

.about {
  background:
    linear-gradient(90deg, rgba(8, 84, 148, 0.12), rgba(247, 189, 23, 0.14)),
    #ffffff;
}

.about-card {
  padding: 44px;
}

.about-card h2,
.about-card p {
  max-width: 820px;
}

.country-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.country-row span {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 58px;
  padding: 8px;
  border: 1px solid rgba(8, 84, 148, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-size: 40px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(4, 27, 54, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  background: #f5f8fb;
}

.contact-info,
.contact-form {
  padding: 34px;
}

address {
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
}

.contact-link::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 84, 148, 0.1);
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
}

.contact-link.phone::before {
  content: "☎";
}

.contact-link.email::before {
  content: "✉";
}

.contact-link.web::before {
  content: "🌐";
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26364a;
  font-size: 14px;
  font-weight: 900;
}

.contact-form label:nth-last-of-type(1),
.contact-form button {
  grid-column: 1 / 3;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 84, 148, 0.12);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
  color: var(--gold);
  font-weight: 900;
}

.developer-credit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px 8px 16px;
  border: 1px solid rgba(247, 189, 23, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(247, 189, 23, 0.1)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.developer-credit span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.developer-credit strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(820px, 88vh);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

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

  .split-section,
  .rates-layout,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    width: 150px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-content {
    padding-top: 28px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-partners {
    position: static;
    grid-template-columns: 1fr;
  }

  .developer-credit,
  .site-footer a {
    justify-self: center;
  }

  .btn {
    width: 100%;
  }

  .event-strip,
  .section-head,
  .highlight-grid,
  .audience-grid,
  .photo-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .contact-form label:nth-last-of-type(1),
  .contact-form button {
    grid-column: auto;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .feature-card,
  .audience-grid article {
    min-height: auto;
  }

  .booth-visual {
    height: 320px;
  }

  .photo-grid button {
    height: 240px;
  }

  .about-card,
  .contact-info,
  .contact-form,
  .list-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
