@import url("https://use.typekit.net/bxc4oou.css");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "cofo-raffine", sans-serif;
  color: #2c2c2c;
  background: #e9e9df;
  overflow-x: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.main-header.scrolled {
  background: rgba(233, 233, 223, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
}
@media (max-width: 39.9375em) {
  .main-header.scrolled {
    padding: 0.75rem 1rem;
  }
}
.main-header.scrolled .header-center .conference-title {
  color: #2c2c2c !important;
  transition: color 0.3s ease;
}
@media (max-width: 39.9375em) {
  .main-header {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
.main-header .header-left,
.main-header .header-right {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #2c2c2c;
  text-transform: uppercase;
}
@media (max-width: 39.9375em) {
  .main-header .header-left,
  .main-header .header-right {
    font-size: 0.75rem;
  }
}
@media (max-width: 39.9375em) {
  .main-header .header-center {
    order: -1;
    margin-bottom: 0.5rem;
  }
}
.main-header .header-center .conference-title {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.3em;
  color: #2c2c2c;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 39.9375em) {
  .main-header .header-center .conference-title {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
    letter-spacing: 0.2em;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  -webkit-playsinline: true;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
}
.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/overlay.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  animation: overlayGlitch 6s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
@media (max-width: 39.9375em) {
  .hero-content {
    padding: 6rem 1rem 4rem;
  }
}

.hero-logo {
  text-align: center;
}
.hero-logo .main-logo {
  max-width: 100%;
  width: clamp(400px, 70vw, 900px);
  height: auto;
  margin-bottom: 2rem;
  position: relative;
  animation: filmGlitch 4s infinite;
}
@media (max-width: 39.9375em) {
  .hero-logo .main-logo {
    margin-bottom: 1.5rem;
    width: clamp(300px, 85vw, 500px);
  }
}
.hero-logo .main-logo::before, .hero-logo .main-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  opacity: 0;
}
.hero-logo .main-logo::before {
  animation: glitchTop 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
  transform: translate(-2px);
}
.hero-logo .main-logo::after {
  animation: glitchBottom 2.5s infinite;
  clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
  transform: translate(2px);
}
.hero-logo .speakers {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  letter-spacing: 0.1em;
  color: #e9e9df;
  text-transform: uppercase;
}

.hero-actions {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media (max-width: 39.9375em) {
  .hero-actions {
    bottom: 2rem;
  }
}

.btn-primary {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2c2c2c;
  background: #e9e9df;
  border: 2px solid #e9e9df;
  padding: 1rem 2.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(233, 233, 223, 0.3);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transition: left 0.5s ease;
}
.btn-primary:hover {
  background: #c73e1d;
  border-color: #c73e1d;
  color: #e9e9df;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 62, 29, 0.4);
}
.btn-primary:hover::before {
  left: 100%;
}
@media (max-width: 39.9375em) {
  .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
}

.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, rgba(233, 233, 223, 1) 100%);
  position: relative;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c73e1d, transparent);
}
@media (max-width: 39.9375em) {
  .about-section {
    padding: 4rem 1.5rem;
  }
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #2c2c2c;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
}
.about-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #c73e1d;
}

.divine-text {
  font-family: "p22-cezanne-pro", serif;
  font-style: italic;
  color: #c73e1d;
  text-transform: lowercase;
  letter-spacing: normal;
  font-weight: normal;
  font-size: 1.8em;
}

.about-content .about-lead {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #c73e1d;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.about-content .about-description {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(44, 44, 44, 0.9);
  line-height: 1.8;
  letter-spacing: 0.02em;
  max-width: 800px;
  margin: 0 auto;
}

.guests-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9df 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 39.9375em) {
  .guests-section {
    padding: 4rem 1rem;
  }
}
.guests-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/overlay.png") repeat;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.guests-section .guests-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.guests-section .guests-title {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: #2c2c2c;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media (max-width: 39.9375em) {
  .guests-section .guests-title {
    margin-bottom: 3rem;
  }
}
.guests-section .guests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 39.9375em) {
  .guests-section .guests-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.guests-section .guest-card {
  background: rgba(233, 233, 223, 0.05);
  border: 1px solid rgba(233, 233, 223, 0.1);
  border-radius: 0;
  overflow: visible;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.guests-section .guest-card {
  position: relative;
}

.guests-section .guest-card:hover {
  transform: translateY(-10px);
  border-color: rgba(233, 233, 223, 0.3);
  background: rgba(233, 233, 223, 0.08);
}

.guests-section .guest-card::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -10px;
  right: -15px;
  bottom: -12px;
  pointer-events: none;
  z-index: 999;
  transform: translateY(0) rotate(-0.8deg);
  border: 3px solid #c73e1d;
  border-radius:
    25px 8px 30px 12px / 15px 28px 10px 20px;
  box-shadow:
    2px 1px 0 0 #c73e1d,
    -1px 2px 0 0 #c73e1d,
    1px -1px 0 0 #c73e1d;
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  transition: transform 0.4s ease;
}

.guests-section .guest-card:hover::after {
  animation: drawBox 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  transform: translateY(-10px) rotate(-0.8deg);
}

/* Mobile scroll animation */
@media (max-width: 768px) {
  .guests-section .guest-card:hover::after {
    animation: none !important;
  }

  .guests-section .guest-card.mobile-animating::after {
    animation: drawBox 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards !important;
    transform: rotate(-0.8deg);
  }

  .guests-section .guest-card:not(.mobile-animating)::after {
    animation: eraseBox 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards !important;
  }
}

/* Touch device specific styles */
@media (hover: none) and (pointer: coarse) {
  .guests-section .guest-card:hover::after {
    animation: none !important;
  }

  .guests-section .guest-card.mobile-animating::after {
    animation: drawBox 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards !important;
    transform: rotate(-0.8deg);
  }
}

.guests-section .guest-card:not(:hover)::after {
  animation: eraseBox 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes drawBox {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  10% {
    clip-path: polygon(0% 0%, 15% 0%, 15% 0%, 0% 0%);
  }
  20% {
    clip-path: polygon(0% 0%, 50% 0%, 50% 0%, 0% 0%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  40% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 25%, 100% 25%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 100% 60%);
  }
  60% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  70% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 70% 100%);
  }
  80% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30% 100%);
  }
  90% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes eraseBox {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  5% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 85%);
  }
  10% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70%);
  }
  15% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 55%);
  }
  20% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40%);
  }
  25% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
  }
  35% {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  40% {
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 15% 100%);
  }
  45% {
    clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 30% 100%);
  }
  50% {
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 45% 100%);
  }
  55% {
    clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 60% 100%);
  }
  60% {
    clip-path: polygon(90% 0%, 100% 0%, 100% 100%, 75% 100%);
  }
  65% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 90% 100%);
  }
  70% {
    clip-path: polygon(100% 15%, 100% 15%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(100% 30%, 100% 30%, 100% 85%, 100% 85%);
  }
  80% {
    clip-path: polygon(100% 45%, 100% 45%, 100% 70%, 100% 70%);
  }
  85% {
    clip-path: polygon(100% 60%, 100% 60%, 100% 55%, 100% 55%);
  }
  90% {
    clip-path: polygon(100% 75%, 100% 75%, 100% 40%, 100% 40%);
  }
  95% {
    clip-path: polygon(100% 90%, 100% 90%, 100% 25%, 100% 25%);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
}
.guests-section .guest-card .guest-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 39.9375em) {
  .guests-section .guest-card .guest-image {
    height: 300px;
  }
}
.guests-section .guest-card .guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.4s ease;
}
.guests-section .guest-card .guest-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(233, 233, 223, 0.7));
  pointer-events: none;
}
.guests-section .guest-card:hover .guest-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}
.guests-section .guest-card:hover .guest-info .guest-name {
  color: #c73e1d !important;
}

.guests-section .guest-card .guest-info {
  padding: 2rem;
  background: rgba(233, 233, 223, 0.9);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 39.9375em) {
  .guests-section .guest-card .guest-info {
    padding: 1.5rem;
  }
}
.guests-section .guest-card .guest-info .guest-name {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}
.guests-section .guest-card .guest-info .guest-title {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.guests-section .guest-card .guest-info .guest-description {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.85);
  line-height: 1.6;
  letter-spacing: 0.02em;
  flex: 1;
}

/* Handwritten Notes */
.handwritten-note {
  position: absolute;
  font-family: 'p22-cezanne-pro', serif;
  font-weight: 400;
  color: #c73e1d;
  z-index: 10;
  pointer-events: none;
  font-style: italic;
}

.note-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(-2deg);
  border: 2px solid #c73e1d;
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  opacity: 0.4;
  z-index: -1;
}

.handwritten-note .note-text {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  transform: rotate(-8deg);
  display: inline-block;
}

.handwritten-note .note-arrow {
  position: absolute;
  width: 180px;
  height: 1px;
  background: #c73e1d;
  transform: rotate(-25deg);
  transform-origin: left center;
}

/* Specific positioning for speakers note */
.guests-container {
  position: relative;
}

.speakers-note {
  top: -3.5rem;
  left: 50px;
  transform: translateX(0);
}

.speakers-note .note-arrow {
  top: 30px;
  left: 120px;
  width: 120px;
  transform: rotate(15deg);
}

@media (max-width: 39.9375em) {
  .speakers-note {
    left: 2%;
    top: -2.5rem;
  }

  .speakers-note .note-text {
    font-size: 1.3rem;
  }

  .speakers-note .note-arrow {
    width: 160px;
    top: 25px;
    left: 80px;
  }
}

/* Schedule date note */
.schedule-note {
  position: absolute;
  bottom: -40px;
  right: -30px;
  transform: rotate(3deg);
}

.schedule-note .note-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  display: inline-block;
  color: #c73e1d;
}

.schedule-note .note-arrow {
  position: absolute;
  width: 140px;
  height: 1px;
  background: #c73e1d;
  right: 100%;
  top: 50%;
  margin-right: 10px;
  transform: translateY(-50%) rotate(13deg);
  transform-origin: right center;
}

@media (max-width: 39.9375em) {
  .schedule-note {
    bottom: -35px;
    right: 10px;
  }

  .schedule-note .note-text {
    font-size: 1rem;
  }

  .schedule-note .note-arrow {
    width: 50px;
    margin-right: 5px;
  }
}
.guests-section .more-speakers {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 39.9375em) {
  .guests-section .more-speakers {
    margin-top: 3rem;
  }
}
.guests-section .more-speakers p {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: rgba(233, 233, 223, 0.6);
  letter-spacing: 0.05em;
  font-style: italic;
}

.schedule-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #e9e9df 0%, #f5f5f5 100%);
  position: relative;
}
@media (max-width: 39.9375em) {
  .schedule-section {
    padding: 4rem 1rem;
  }
}
.schedule-section .schedule-container {
  max-width: 1000px;
  margin: 0 auto;
}
.schedule-title-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.schedule-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 140%;
  transform: translate(-50%, -50%) rotate(-1deg);
  background: transparent;
  border: 3px solid #c73e1d;
  border-radius:
    45% 55% 40% 60% / 35% 45% 55% 65%;
  z-index: 1;
  opacity: 0.6;
}

.schedule-section .schedule-container h2 {
  font-family: "p22-cezanne-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: 0.05em;
  color: #2c2c2c;
  margin: 0;
  text-transform: none;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 39.9375em) {
  .schedule-section .schedule-container h2 {
    margin-bottom: 3rem;
  }
}

.schedule-location {
  margin-bottom: 4rem;
}
.schedule-location:last-child {
  margin-bottom: 0;
}
.schedule-location h3 {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #c73e1d;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}
.schedule-location .location-date {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.7);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.schedule-location .coming-soon {
  text-align: center;
  padding: 3rem 0;
}
.schedule-location .coming-soon p {
  font-family: "p22-cezanne-pro", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  font-style: italic;
}

.day {
  margin-bottom: 2.5rem;
}
.day:last-child {
  margin-bottom: 0;
}
.day h4 {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #2c2c2c;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(199, 62, 29, 0.3);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: rgba(233, 233, 223, 0.02);
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}
@media (max-width: 39.9375em) {
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
}
.schedule-item:hover {
  background: rgba(233, 233, 223, 0.05);
  border-left-color: #c73e1d;
}
.schedule-item.lunch {
  background: rgba(212, 175, 55, 0.1);
  border-left-color: #c73e1d;
}
.schedule-item.lunch .event {
  color: #c73e1d;
  font-weight: 500;
}
.schedule-item .time {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #c73e1d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 120px;
  text-align: left;
}
@media (max-width: 39.9375em) {
  .schedule-item .time {
    min-width: auto;
  }
}
.schedule-item .event {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.9);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: left;
}
@media (max-width: 39.9375em) {
  .schedule-item .event {
    font-size: 0.9rem;
  }
}

.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4rem 2rem 2rem;
  position: relative;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 62, 29, 0.3), transparent);
}
@media (max-width: 39.9375em) {
  .main-footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 39.9375em) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.footer-logo {
  position: relative;
}
.footer-logo h1 {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #e9e9df;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0;
}
.footer-logo .footer-year {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(199, 62, 29, 0.8);
  letter-spacing: 0.2em;
  display: block;
  margin-top: 0.5rem;
}

.footer-info {
  text-align: center;
}
.footer-info .footer-tagline {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #c73e1d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
.footer-info .footer-copyright {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(233, 233, 223, 0.6);
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-social {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 39.9375em) {
  .footer-social {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.footer-social a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(233, 233, 223, 0.8);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
}
.footer-social a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c73e1d;
  transition: width 0.3s ease;
}
.footer-social a:hover {
  color: #c73e1d;
}
.footer-social a:hover::before {
  width: 100%;
}

@keyframes filmGlitch {
  0%, 75%, 100% {
    filter: none;
    opacity: 1;
    transform: translate(0);
  }
  76% {
    filter: brightness(1.4) contrast(1.2);
    opacity: 0.95;
    transform: translate(-1px, 0);
  }
  76.5% {
    filter: brightness(0.7) contrast(1.6) saturate(0.6);
    opacity: 0.8;
    transform: translate(2px, -1px);
  }
  77% {
    filter: brightness(1.6) contrast(0.9) hue-rotate(3deg);
    opacity: 0.9;
    transform: translate(-3px, 1px);
  }
  77.5% {
    filter: brightness(0.5) contrast(1.8) saturate(1.4);
    opacity: 0.7;
    transform: translate(4px, 0);
  }
  78% {
    filter: brightness(1.3) contrast(1.1) hue-rotate(-2deg);
    opacity: 0.85;
    transform: translate(-2px, -2px);
  }
  78.5% {
    filter: brightness(0.9) contrast(1.5) saturate(0.8);
    opacity: 0.95;
    transform: translate(1px, 1px);
  }
  79% {
    filter: brightness(1.7) contrast(0.8) hue-rotate(5deg);
    opacity: 0.75;
    transform: translate(-4px, 0);
  }
  79.5% {
    filter: brightness(0.6) contrast(1.9) saturate(1.2);
    opacity: 0.8;
    transform: translate(3px, -1px);
  }
  80% {
    filter: brightness(1.2) contrast(1.3) hue-rotate(-4deg);
    opacity: 0.9;
    transform: translate(-1px, 2px);
  }
  80.5% {
    filter: brightness(0.8) contrast(1.4) saturate(0.7);
    opacity: 0.85;
    transform: translate(2px, 0);
  }
  81% {
    filter: brightness(1.5) contrast(1);
    opacity: 0.95;
    transform: translate(-3px, -1px);
  }
  81.5% {
    filter: brightness(0.4) contrast(2) hue-rotate(2deg);
    opacity: 0.7;
    transform: translate(5px, 1px);
  }
  82% {
    filter: none;
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes glitchTop {
  0%, 74%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  75% {
    opacity: 0.8;
    transform: translate(-12px, -1px);
  }
  75.2% {
    opacity: 0.9;
    transform: translate(8px, 0);
  }
  75.4% {
    opacity: 0.6;
    transform: translate(-6px, -2px);
  }
  75.6% {
    opacity: 0.85;
    transform: translate(10px, 1px);
  }
  75.8% {
    opacity: 0.7;
    transform: translate(-4px, 0);
  }
  76% {
    opacity: 0.9;
    transform: translate(7px, -1px);
  }
  76.2% {
    opacity: 0.5;
    transform: translate(-9px, 2px);
  }
  76.4% {
    opacity: 0.8;
    transform: translate(5px, 0);
  }
  76.6% {
    opacity: 0.6;
    transform: translate(-11px, -1px);
  }
  76.8% {
    opacity: 0.85;
    transform: translate(3px, 1px);
  }
  77% {
    opacity: 0;
    transform: translate(0);
  }
}
@keyframes glitchBottom {
  0%, 76%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  77% {
    opacity: 0.7;
    transform: translate(9px, 2px);
  }
  77.2% {
    opacity: 0.85;
    transform: translate(-7px, -1px);
  }
  77.4% {
    opacity: 0.6;
    transform: translate(11px, 0);
  }
  77.6% {
    opacity: 0.8;
    transform: translate(-5px, 2px);
  }
  77.8% {
    opacity: 0.9;
    transform: translate(8px, -1px);
  }
  78% {
    opacity: 0.7;
    transform: translate(-10px, 1px);
  }
  78.2% {
    opacity: 0.85;
    transform: translate(6px, 0);
  }
  78.4% {
    opacity: 0.6;
    transform: translate(-8px, -2px);
  }
  78.6% {
    opacity: 0.8;
    transform: translate(4px, 1px);
  }
  78.8% {
    opacity: 0.75;
    transform: translate(-12px, 0);
  }
  79% {
    opacity: 0;
    transform: translate(0);
  }
}
@keyframes overlayGlitch {
  0%, 85%, 100% {
    opacity: 1;
    transform: translate(0);
    filter: none;
  }
  86% {
    opacity: 0.95;
    transform: translate(1px, -1px);
    filter: brightness(1.1) contrast(1.05);
  }
  86.5% {
    opacity: 0.9;
    transform: translate(-2px, 1px);
    filter: brightness(0.95) contrast(1.1);
  }
  87% {
    opacity: 0.98;
    transform: translate(1px, 0);
    filter: brightness(1.05) contrast(0.98);
  }
  87.5% {
    opacity: 0.92;
    transform: translate(-1px, -1px);
    filter: brightness(0.98) contrast(1.03);
  }
  88% {
    opacity: 1;
    transform: translate(0);
    filter: none;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 233, 223, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(233, 233, 223, 0.2);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(100px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 39.9375em) {
  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #2c2c2c;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #e9e9df;
  transition: all 0.3s ease;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close:hover {
  transform: scale(1.1);
}
.modal-close:hover::before, .modal-close:hover::after {
  background: #c73e1d;
  width: 28px;
}
.modal-close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
.modal-close:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 39.9375em) {
  .modal-close {
    top: 1rem;
    right: 1rem;
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 3rem;
}
.modal-header h2 {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #e9e9df;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.modal-header .modal-subtitle {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 1rem;
  color: rgba(233, 233, 223, 0.7);
  letter-spacing: 0.05em;
}

.modal-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 39.9375em) {
  .modal-locations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.location-card {
  background: rgba(233, 233, 223, 0.02);
  border: 1px solid rgba(233, 233, 223, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}
.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 233, 223, 0.3);
  background: rgba(233, 233, 223, 0.05);
}
.location-card:hover .location-image h3 {
  transform: scale(1.05);
}
.location-card:hover .location-overlay {
  opacity: 0.8;
}
.location-card .location-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.location-card .location-image .location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/overlay.png") center/cover;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.location-card .location-image h3 {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #e9e9df;
  letter-spacing: 0.3em;
  z-index: 2;
  position: relative;
  transition: transform 0.4s ease;
}
.location-card .location-details {
  padding: 2rem;
  text-align: center;
}
.location-card .location-details .location-date {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #e9e9df;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.location-card .location-details .location-venue {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #e9e9df;
  margin-bottom: 0.5rem;
}
.location-card .location-details .location-address {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 0.875rem;
  color: rgba(233, 233, 223, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.location-card .location-details .location-btn {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #f4c1c1 0%, #c73e1d 25%, #fff5f5 50%, #c73e1d 75%, #f4c1c1 100%);
  background-size: 200% auto;
  border: none;
  padding: 0.875rem 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
}
.location-card .location-details .location-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transition: left 0.5s ease;
}
.location-card .location-details .location-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.35);
}
.location-card .location-details .location-btn:hover::before {
  left: 100%;
}

.modal-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(233, 233, 223, 0.1);
}
.modal-footer p {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 0.875rem;
  color: rgba(233, 233, 223, 0.5);
  letter-spacing: 0.05em;
  font-style: italic;
}

/*# sourceMappingURL=styles.css.map */
