/* ============================================
   PUNCHLINES COMEDY - GLOBAL DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

:root {
  --color-primary-red: #A00606;
  --color-secondary-black: #000000;
  --color-white: #FFFFFF;
  --color-subtle-white: rgba(255, 255, 255, 0.75);
  --color-border: rgba(255, 255, 255, 0.25);
  --color-subtle-gray: #ADB5BD;
  --font-brand: 'Work Sans', sans-serif;
  --font-hero: 'Bebas Neue', sans-serif;
  --grid-max-width: 1240px;
  --page-margin: 100px;
  --block-spacing: 150px;
  --header-spacing: 100px;
  --column-width: 76px;
  --gutter: 30px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-brand);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-secondary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none; color: inherit;
}

/* ---- Grid Container ---- */
.container {
  max-width: var(--grid-max-width);
  margin: 0 auto;
  padding: 0;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-margin);
}
.container--10col {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 var(--page-margin);
}

/* ---- Typography ---- */
h2, .h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.4;
  padding: 10px 0;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
}
.body-text { font-size: 18px; line-height: 1.5; }
.body-text p + p { margin-top: 10px; }
.small-text { font-size: 16px; line-height: 1.5; }
.small-text p + p { margin-top: 10px; }
.quote {
  font-weight: 700; font-style: italic;
  font-size: 20px; line-height: 1.5;
}
.subtle-text { color: var(--color-subtle-white); }

/* ---- Section Heading ---- */
.section-heading { margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 10px; }
.accent-line {
  width: 100px; height: 4px;
  background-color: var(--color-primary-red);
}
.section-heading--center { text-align: center; }
.section-heading--center .accent-line { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 15px 25px;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 300ms ease-out;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  border: 2px solid var(--color-primary-red);
}
.btn--primary:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-primary-red);
}
.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-primary-red);
}
.btn--secondary:hover {
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
  color: var(--color-white);
}
.btn--full { width: 100%; }

/* ---- Inputs & Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 18px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 8px;
  color: var(--color-subtle-white);
}
.form-label .optional {
  text-transform: none;
  font-weight: 400;
}
.form-label:has(.optional) {
  text-transform: none;
  font-weight: 400;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 10px; font-size: 18px;
  color: var(--color-white); background-color: transparent;
  border: 1px solid var(--color-border);
  transition: border-color 300ms ease-out;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--color-subtle-gray); font-size: 18px;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-primary-red);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.form-select option {
  background-color: var(--color-secondary-black);
  color: var(--color-white);
}

/* ---- Social Icons ---- */
.social-icons { display: flex; gap: 10px; align-items: center; }
.social-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  padding: 5px; color: var(--color-white);
  transition: color 300ms ease-out;
}
.social-icon:hover { color: var(--color-primary-red); }
.social-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  width: 100%; max-width: 1440px; margin: 0 auto;
  height: 110px; padding: 20px 100px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  position: relative; z-index: 100;
}
.navbar--transparent {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}
.navbar__logo img { height: 70px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 30px; }
.navbar__link {
  font-weight: 600; font-size: 16px;
  text-transform: uppercase; line-height: 1.4;
  color: var(--color-white); position: relative;
  transition: color 300ms ease-out;
}
.navbar__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background-color: var(--color-primary-red);
  transition: width 300ms ease-out;
}
.navbar__link:hover, .navbar__link--active { color: var(--color-primary-red); }
.navbar__link:hover::after, .navbar__link--active::after { width: 100%; }
.navbar__link--disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}
.navbar__link--disabled:hover { color: var(--color-white); }
.navbar__link--disabled:hover::after { width: 0; }
.navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 201;
  width: 25px; height: 20px;
  position: relative;
}
.navbar__toggle span {
  width: 25px; height: 2px;
  background-color: var(--color-white);
  transition: all 300ms ease-out;
  position: absolute; left: 0;
}
.navbar__toggle span:nth-child(1) { top: 0; }
.navbar__toggle span:nth-child(2) { top: 9px; }
.navbar__toggle span:nth-child(3) { top: 18px; }
.navbar__toggle.active span:nth-child(1) {
  top: 9px; transform: rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) {
  top: 9px; transform: rotate(-45deg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 50px 100px;
  max-width: 1440px; margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-bottom: 40px;
}
.footer__brand {
  display: flex; flex-direction: column; gap: 15px;
}
.footer__logo img { height: 60px; width: auto; }
.footer__description {
  color: var(--color-subtle-white);
  font-size: 16px; line-height: 1.5; max-width: 350px;
}
.footer__description a {
  text-decoration: underline;
  transition: color 300ms ease-out;
}
.footer__description a:hover { color: var(--color-primary-red); }
.footer__right {
  display: flex; flex-direction: column;
  gap: 25px; align-items: flex-end;
}
.footer__newsletter {
  display: flex; flex-direction: column; gap: 15px;
  align-items: flex-end;
}
.footer__newsletter-title {
  font-weight: 600; font-size: 18px; text-transform: uppercase;
}
.footer__email-wrapper {
  position: relative; width: 394px; max-width: 100%;
}
.footer__email-input {
  width: 100%; padding: 12px 50px 12px 10px;
  font-size: 16px; color: var(--color-white);
  background-color: transparent;
  border: 1px solid var(--color-border);
}
.footer__email-input::placeholder { color: var(--color-subtle-gray); }
.footer__email-btn {
  position: absolute; right: 0; top: 0;
  height: 100%; width: 44px;
  background-color: var(--color-primary-red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 300ms ease-out;
}
.footer__email-btn:hover { background-color: #c00808; }
.footer__email-btn svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--color-white);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  color: var(--color-subtle-white);
  font-size: 14px;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.section { padding: 0; }

/* ============================================
   PAGE: HOME - HERO
   ============================================ */
.hero {
  position: relative; width: 100%; height: 750px;
  max-width: 1440px; margin: 0 auto; overflow: hidden;
}
.hero__bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.hero__overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}
.hero__content {
  position: relative; z-index: 3;
  height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 0 100px 100px; max-width: 700px;
}
.hero__title {
  font-family: var(--font-hero);
  font-weight: 700; font-size: 100px;
  line-height: 1.4; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 20px; line-height: 1.6;
  color: var(--color-subtle-white);
  max-width: 550px;
}
.hero__cta {
  display: inline-block;
  align-self: flex-start;
  width: auto;
  padding: 15px 25px;
  margin-top: 28px;
}

/* ============================================
   EVENTS BLOCK
   ============================================ */
.events-section { padding: 0; }
.events-section--page { padding: 0; }
.events-section .container--10col { padding: 0; }
.events-list { margin-top: 40px; }
.event-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 30px;
  padding: 25px 30px;
  border: none;
  border-top: 1px solid var(--color-border);
  transition: background-color 300ms ease-out;
}
.event-item:hover { background-color: rgba(160, 6, 6, 0.15); }
.event-item--sold-out:hover { background-color: transparent; }
.event__date {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.event__date-month {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
}
.event__venue-dot {
  color: var(--color-primary-red);
}
.event__date-day {
  font-size: 36px; font-weight: 700; line-height: 1.2;
}
.event__date--tbd {
  font-size: 24px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  min-height: 60px;
}
.event__info { display: flex; flex-direction: column; gap: 4px; }
.event__title { font-size: 20px; font-weight: 600; }
.event__venue { font-size: 16px; color: var(--color-subtle-white); }
.event__venue a { color: var(--color-subtle-white); text-decoration: underline; text-underline-offset: 3px; }
.event__venue a:hover { color: var(--color-white); }
.event__actions { display: flex; gap: 15px; align-items: center; }
.btn--signup-closed { opacity: 0.35; pointer-events: none; cursor: not-allowed; text-decoration: line-through; }
.event__sold-out {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-white);
  background-color: var(--color-primary-red);
  border: none;
  padding: 5px 10px;
  border-radius: 2px;
}

/* ============================================
   PAGE: HOME - ABOUT SECTION
   ============================================ */
.about-home { padding: 0; }
.about-home__text {
  max-width: 900px; margin: 40px auto 0;
  text-align: center;
}
.about-home__text p {
  color: var(--color-subtle-white);
  font-size: 18px; line-height: 1.5;
}
.about-home__text p + p { margin-top: 15px; }

/* ============================================
   PAGE: ABOUT
   ============================================ */
.about-section { padding: 0; }
.about-content {
  display: flex; flex-direction: column;
  align-items: stretch;
  max-width: 1030px; margin: 0 auto;
}
.about-content .section-heading { margin-bottom: 30px; }
.about-content__intro {
  font-weight: 700;
  font-size: 18px; line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 20px;
}
.about-content__body {
  color: var(--color-subtle-white);
  font-size: 18px; line-height: 1.5;
  margin-bottom: 30px;
}
.about-content__image {
  width: 100%; object-fit: cover;
  margin-bottom: 30px;
}
.about-content__text {
  display: flex; flex-direction: column; gap: 20px;
}
.about-content__text h3 { margin-bottom: 0; }
.about-content__text p {
  color: var(--color-subtle-white);
  font-size: 18px; line-height: 1.5;
}
.about-content__text .quote-block {
  margin-top: 10px; margin-bottom: 10px;
}
.quote-block {
  border-left: 4px solid var(--color-primary-red);
  padding-left: 20px;
}
.quote-block p {
  font-weight: 700; font-style: italic;
  font-size: 20px; line-height: 1.5;
  color: var(--color-white) !important;
}

/* ============================================
   PAGE: MEDIA - VIDEOS
   ============================================ */
.media-section { padding: 0; }
.media-section + .media-section { margin-top: 100px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter); margin-top: 40px;
}
.video-card { cursor: pointer; }
.video-card__thumbnail-wrapper {
  position: relative; overflow: hidden;
}
.video-card__thumbnail {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  background-color: #333;
}
.video-card__overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 300ms ease-out;
}
.video-card:hover .video-card__overlay { background: rgba(0, 0, 0, 0.5); }
.video-card__play {
  width: 50px; height: 50px;
  background-color: var(--color-primary-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 300ms ease-out;
}
.video-card:hover .video-card__play { transform: scale(1.1); }
.video-card__play svg {
  width: 26px; height: 26px;
  fill: var(--color-white); margin-left: 2px;
}
.video-card__info { padding-top: 12px; }
.video-card__title { font-size: 16px; font-weight: 600; }
.video-card__description {
  font-size: 14px; color: var(--color-subtle-white);
  line-height: 1.5; margin-top: 8px;
}

/* ============================================
   PAGE: MEDIA - PHOTOGRAPHY
   ============================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); margin-top: 40px;
}
.photo-card { overflow: hidden; cursor: pointer; }
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 300ms ease-out;
}
.photo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.photo-card--span-4 { grid-column: span 4; }
.photo-card--span-6 { grid-column: span 6; }
.photo-card--span-8 { grid-column: span 8; }

/* ============================================
   PAGE: STUFF (SHOP)
   ============================================ */
.shop-section { padding: 0; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 394px);
  gap: var(--gutter); margin-top: 40px;
  justify-content: center;
}
.shop-card { position: relative; overflow: hidden; cursor: pointer; }
.shop-card__image-wrapper {
  position: relative; overflow: hidden; aspect-ratio: 1/1;
}
.shop-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-out;
}
.shop-card:hover .shop-card__image { transform: scale(1.05); }
.shop-card__overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex; align-items: center; justify-content: center;
  transition: background 300ms ease-out;
}
.shop-card:hover .shop-card__overlay { background: rgba(0, 0, 0, 0.2); }
.shop-card__buy-btn {
  opacity: 0; transform: translateY(10px);
  transition: all 300ms ease-out;
}
.shop-card:hover .shop-card__buy-btn {
  opacity: 1; transform: translateY(0);
}
.shop-card__info { padding: 15px 0; }
.shop-card__name { font-size: 18px; font-weight: 600; }
.shop-card__price {
  font-size: 18px; color: var(--color-white);
  font-weight: 400; margin-top: 4px;
}
.shop-card:hover .shop-card__buy-btn {
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
  color: var(--color-white);
}

/* ============================================
   PAGE: CONTACT
   ============================================ */
.contact-section {
  position: relative; min-height: 100vh; overflow: hidden;
  padding-top: 20px; padding-bottom: 100px;
}
.contact-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.contact-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
  z-index: 2;
}
.contact-section .section-heading {
  position: relative; z-index: 3;
  padding-bottom: 60px;
}
.contact-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 500px 500px;
  gap: 30px; align-items: start;
  max-width: 1030px; margin: 0 auto;
  padding: 0;
}
.contact-info {
  display: flex; flex-direction: column; gap: 30px;
}
.contact-info__item {
  display: flex; flex-direction: column; gap: 5px;
}
.contact-info__label {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
}
.contact-info__value {
  font-size: 18px; font-weight: 700;
  color: var(--color-subtle-white);
}
.contact-info__value a { transition: color 300ms ease-out; }
.contact-info__value a:hover { color: var(--color-primary-red); }
.contact-form-wrapper {
  background-color: #1A1A1A;
  padding: 40px;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; }
.modal__overlay {
  position: absolute; inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__dialog {
  position: relative; z-index: 1;
  background-color: var(--color-secondary-black);
  border: 1px solid var(--color-border);
  padding: 20px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
}
.modal__close {
  position: absolute; top: 8px; right: 14px;
  font-size: 32px; line-height: 1;
  cursor: pointer; color: var(--color-white);
  background: transparent;
  transition: color 300ms ease-out;
}
.modal__close:hover { color: var(--color-primary-red); }
.modal__title {
  font-size: 24px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; padding-right: 30px;
  color: var(--color-white);
}
.modal__success {
  text-align: center; padding: 20px 0;
}
.modal__success p {
  font-size: 18px; line-height: 1.5;
  color: var(--color-subtle-white);
}
body.modal-open { overflow: hidden; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-red { color: var(--color-primary-red); }
.spacer-100 { height: 100px; }
.spacer-150 { height: 150px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --page-margin: 60px;
    --block-spacing: 100px;
  }
  .hero__title { font-size: 72px; }
  h2, .h2 { font-size: 40px; }
}

.hero__bg--mobile { display: none; }

@media (max-width: 992px) {
  :root {
    --page-margin: 40px;
    --block-spacing: 80px;
  }
  .navbar { padding: 20px 40px; }
  .navbar__toggle { display: flex; }
  .navbar__menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background-color: var(--color-secondary-black);
    flex-direction: column; justify-content: center;
    padding: 40px;
    transition: right 300ms ease-out;
    border-left: 1px solid var(--color-border);
    z-index: 200;
  }
  .navbar__menu.active { right: 0; }
  .hero__bg { display: none; }
  .hero__bg--mobile {
    display: block;
    width: 400px; height: auto;
    object-fit: cover;
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    min-height: 100%; z-index: 1;
  }
  .hero { padding: 0; overflow: hidden; }
  .hero__title { font-size: 56px; }
  .hero__content { padding: 0 40px 60px; }
  .footer { padding: 50px 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__right { align-items: flex-start; }
  .footer__newsletter { align-items: flex-start; width: 100%; }
  .footer__email-wrapper { width: 100% !important; }
  .footer__email-input { width: 100% !important; }
  .container, .container--10col { padding: 0 20px; }
  .events-section .container--10col { padding: 0 20px; }
  .about-content,
  .contact-content { grid-template-columns: 1fr; }
  .contact-content { padding: 0 20px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); justify-content: start; }
  .photo-grid { grid-template-columns: repeat(6, 1fr); }
  .photo-card--span-4 { grid-column: span 3; }
  .photo-card--span-6 { grid-column: span 3; }
  .photo-card--span-8 { grid-column: span 6; }
  .spacer-100 { height: 100px; }
  .spacer-150 { height: 100px; }
}

@media (max-width: 576px) {
  :root {
    --page-margin: 20px;
    --block-spacing: 60px;
  }
  .hero { height: 600px; }
  .hero__title { font-size: 42px; }
  .hero__content { padding: 0 20px 40px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }
  .navbar { padding: 20px 20px; }
  .container, .container--10col { padding: 0 20px; }
  .events-section .container--10col { padding: 0 20px; }
  .contact-content { padding: 0 20px; }
  .footer { padding: 50px 20px; }
  .footer__email-wrapper { width: 100% !important; }
  .footer__email-input { width: 100% !important; }
  .event-item {
    grid-template-columns: 1fr;
    gap: 15px; text-align: center;
  }
  .event__actions { justify-content: center; }
  .video-grid, .shop-grid { grid-template-columns: 1fr; justify-content: start; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card--span-4,
  .photo-card--span-6,
  .photo-card--span-8 { grid-column: span 1; }
  .spacer-100 { height: 60px; }
  .spacer-150 { height: 60px; }
}
