@charset "UTF-8";
/* PAGE STYLES */
/* COLORS */
.eventsPage {
  width: 100%;
  background: #F3ECDC;
  padding: 0 0 4.5rem;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.eventsPage .eventsHero {
  position: relative;
  width: 100%;
  height: clamp(16rem, 36vw, 28rem);
  margin: 0 0 2rem;
  overflow: hidden;
  background: #4A2F1E;
}
.eventsPage .eventsHero .eventsHeroImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(2px) brightness(0.35);
  transform: scale(1.1);
}
.eventsPage .eventsHero .eventsHeroInner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.eventsPage .eventsHero .eventsHeroInner .eventsHeroTitle {
  margin-top: 2.5rem;
  font-size: 2.75rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F3ECDC;
}
.eventsPage .featuredEventSection,
.eventsPage .upcomingEventsSection,
.eventsPage .pastEventsSection {
  width: 100%;
  margin: 0 0 4rem;
  padding: 0 1.3rem;
}
.eventsPage .featuredEventSection .sectionHeading,
.eventsPage .upcomingEventsSection .sectionHeading,
.eventsPage .pastEventsSection .sectionHeading {
  margin: 0 0 1.5rem;
}
.eventsPage .featuredEventSection .sectionHeading .sectionHeadingRow,
.eventsPage .upcomingEventsSection .sectionHeading .sectionHeadingRow,
.eventsPage .pastEventsSection .sectionHeading .sectionHeadingRow {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eventsPage .featuredEventSection .sectionHeading .sectionTitle,
.eventsPage .upcomingEventsSection .sectionHeading .sectionTitle,
.eventsPage .pastEventsSection .sectionHeading .sectionTitle {
  margin: 0;
  flex-shrink: 0;
  font-size: 1.9rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #4A2F1E;
}
.eventsPage .featuredEventSection .sectionHeading .sectionRule,
.eventsPage .upcomingEventsSection .sectionHeading .sectionRule,
.eventsPage .pastEventsSection .sectionHeading .sectionRule {
  width: 100%;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(to right, #dd9104 0%, rgba(216, 180, 106, 0.82) 40%, rgba(216, 180, 106, 0.22) 100%);
}
.eventsPage .featuredEventSection .sectionHeading.sectionHeadingCentered,
.eventsPage .upcomingEventsSection .sectionHeading.sectionHeadingCentered,
.eventsPage .pastEventsSection .sectionHeading.sectionHeadingCentered {
  text-align: center;
}
.eventsPage .featuredEventSection .sectionHeading.sectionHeadingCentered .sectionHeadingRow,
.eventsPage .upcomingEventsSection .sectionHeading.sectionHeadingCentered .sectionHeadingRow,
.eventsPage .pastEventsSection .sectionHeading.sectionHeadingCentered .sectionHeadingRow {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.eventsPage .featuredEventSection .sectionHeading.sectionHeadingCentered .sectionTitle,
.eventsPage .upcomingEventsSection .sectionHeading.sectionHeadingCentered .sectionTitle,
.eventsPage .pastEventsSection .sectionHeading.sectionHeadingCentered .sectionTitle {
  flex-shrink: 1;
}
.eventsPage .featuredEventSection .sectionHeading.sectionHeadingCentered .sectionRule,
.eventsPage .upcomingEventsSection .sectionHeading.sectionHeadingCentered .sectionRule,
.eventsPage .pastEventsSection .sectionHeading.sectionHeadingCentered .sectionRule {
  width: min(11rem, 42vw);
}
.eventsPage .featuredEventSection .featuredEventCard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 180, 106, 0.38);
  box-shadow: 0 18px 40px rgba(74, 47, 30, 0.08);
  backdrop-filter: blur(8px);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap {
  position: relative;
  width: 100%;
  min-height: 16rem;
  background: rgba(74, 47, 30, 0.08);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 47, 30, 0.3) 0%, rgba(74, 47, 30, 0.1) 38%, rgba(74, 47, 30, 0.02) 100%);
  pointer-events: none;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap .featuredEventImage {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap .featuredEventTag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(243, 236, 220, 0.96);
  color: #4A2F1E;
  border: 1px solid rgba(216, 180, 106, 0.55);
  box-shadow: 0 8px 24px rgba(74, 47, 30, 0.14);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 1.4rem 0;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(216, 180, 106, 0.34);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventIcon {
  width: 1.5rem;
  height: 1.5rem;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventIcon .featuredEventCalendar {
  display: block;
  width: 100%;
  height: 100%;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventMonth {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #B54A2F;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventDay {
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4A2F1E;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo {
  padding: 0 1.4rem;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventTitle {
  margin: 0 0 0.95rem;
  font-size: 1.8rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #4A2F1E;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventMeta .featuredEventMetaItem {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(74, 47, 30, 0.94);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventMeta .featuredEventMetaDot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #D8B46A;
  flex-shrink: 0;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventDescription {
  margin: 0 0 1.35rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A2F1E;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  background: #B54A2F;
  color: #F3ECDC;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventBtn:hover {
  transform: translateY(-1px);
  background: rgb(88.5153846154, 56.2192307692, 35.8846153846);
  box-shadow: 0 12px 24px rgba(74, 47, 30, 0.16);
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventSecondaryLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(74, 47, 30, 0.14);
  border-radius: 5px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: transparent;
  color: #4A2F1E;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventSecondaryLink:hover {
  transform: translateY(-1px);
  background: rgba(216, 180, 106, 0.12);
  border-color: rgba(216, 180, 106, 0.48);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid,
.eventsPage .pastEventsSection .upcomingEventsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(216, 180, 106, 0.34);
  box-shadow: 0 10px 28px rgba(74, 47, 30, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard:hover,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(74, 47, 30, 0.1);
  border-color: rgba(216, 180, 106, 0.5);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap {
  position: relative;
  width: 100%;
  height: 13.5rem;
  background: rgba(74, 47, 30, 0.08);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap::after,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 47, 30, 0.26) 0%, rgba(74, 47, 30, 0.08) 45%, rgba(74, 47, 30, 0.01) 100%);
  pointer-events: none;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap .upcomingEventImage,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap .upcomingEventImage {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap .upcomingEventStatus,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventImageWrap .upcomingEventStatus {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.76rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(243, 236, 220, 0.95);
  color: #4A2F1E;
  border: 1px solid rgba(216, 180, 106, 0.48);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 0 1.25rem;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(216, 180, 106, 0.28);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventIcon,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventIcon {
  width: 1.5rem;
  height: 1.5rem;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventIcon .upcomingEventCalendar,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventIcon .upcomingEventCalendar {
  height: 100%;
  width: 100%;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventMonth,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventMonth {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #B54A2F;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventDay,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventDate .upcomingEventDay {
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #4A2F1E;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent {
  padding: 0 1.15rem;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventTitle,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventTitle {
  margin: 0 0 0.72rem;
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4A2F1E;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.92rem;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta span,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta span {
  font-size: 0.93rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(74, 47, 30, 0.86);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta .upcomingEventMetaDot,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventMeta .upcomingEventMetaDot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #D8B46A;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventDescription,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventDescription {
  margin: 0 0 1.15rem;
  font-size: 0.97rem;
  line-height: 1.72;
  color: #4A2F1E;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.82rem 1.1rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: #B54A2F;
  color: #F3ECDC;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn:hover,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn:hover {
  transform: translateY(-2px);
  background: rgb(88.5153846154, 56.2192307692, 35.8846153846);
  box-shadow: 0 10px 20px rgba(74, 47, 30, 0.16);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventImageWrap .upcomingEventStatus,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventImageWrap .upcomingEventStatus {
  background: rgba(74, 47, 30, 0.92);
  color: #F3ECDC;
  border-color: rgba(243, 236, 220, 0.14);
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn {
  background: #4A2F1E;
  color: #F3ECDC;
  border-color: transparent;
}
.eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn:hover,
.eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard.pastEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn:hover {
  background: rgb(190.944, 125.28, 3.456);
  box-shadow: 0 10px 20px rgba(221, 145, 4, 0.2);
}

.eventGalleryOverlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.eventGalleryOverlay.isOpen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.eventGalleryOverlay .eventGalleryBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 47, 30, 0.42);
}
.eventGalleryOverlay .eventGalleryPanel {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  background: #F3ECDC;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.eventGalleryOverlay .eventGalleryHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.15rem 1rem;
  background: #4A2F1E;
  color: white;
  border-bottom: 1px solid rgba(243, 236, 220, 0.12);
}
.eventGalleryOverlay.isOpen .eventGalleryPanel {
  transform: translateY(0);
}
.eventGalleryOverlay .eventGalleryBackBtn,
.eventGalleryOverlay .eventGalleryCloseBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  color: #F3ECDC;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.eventGalleryOverlay .eventGalleryBackBtn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.eventGalleryOverlay .eventGalleryBackBtn img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.eventGalleryOverlay .eventGalleryCloseBtn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}
.eventGalleryOverlay .eventGalleryCloseBtn .eventGalleryCloseImg {
  display: block;
  height: 100%;
  width: 100%;
}
.eventGalleryOverlay .eventGalleryHeaderIcon {
  height: 2.5rem;
  width: 2.5rem;
}
.eventGalleryOverlay .eventGalleryHeaderText {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eventGalleryOverlay .eventGalleryTitle {
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
}
.eventGalleryOverlay .eventGalleryDate {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgba(243, 236, 220, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eventGalleryOverlay .eventGalleryBody {
  padding: 1rem 1.25rem 5rem;
}
.eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaCard {
  min-width: 0;
  padding: 0.95rem 0.5rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(216, 180, 106, 0.28);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 18px rgba(74, 47, 30, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}
.eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaIcon {
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaLabel {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: #4A2F1E;
}
.eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaValue {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
  color: black;
  overflow-wrap: anywhere;
}
.eventGalleryOverlay .eventGalleryIntro {
  margin-bottom: 1.4rem;
}
.eventGalleryOverlay .eventGalleryDescription {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: black;
}
.eventGalleryOverlay .sectionTitle {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #4A2F1E;
}
.eventGalleryOverlay .eventGallery {
  margin-top: 1.25rem;
}
.eventGalleryOverlay .eventGalleryMain {
  margin-bottom: 1rem;
}
.eventGalleryOverlay .eventGalleryMainSwiper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(216, 180, 106, 0.34);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 26px rgba(74, 47, 30, 0.08);
}
.eventGalleryOverlay .eventGalleryMainSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 17rem;
  background: rgba(74, 47, 30, 0.03);
}
.eventGalleryOverlay .eventGalleryImage {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.eventGalleryOverlay .eventGalleryPagination {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 0 1rem;
}
.eventGalleryOverlay .eventGalleryPagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(74, 47, 30, 0.24);
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.eventGalleryOverlay .eventGalleryPagination .swiper-pagination-bullet-active {
  background: #B54A2F;
  transform: scale(1.15);
}
.eventGalleryOverlay .eventGalleryArrow {
  display: none;
  position: absolute;
  top: 45%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(243, 236, 220, 0.92);
  color: #4A2F1E;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(74, 47, 30, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
  padding-bottom: 0.2rem;
}
.eventGalleryOverlay .eventGalleryArrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.04);
}
.eventGalleryOverlay .eventGalleryArrowPrev {
  left: 1rem;
}
.eventGalleryOverlay .eventGalleryArrowNext {
  right: 1rem;
}
.eventGalleryOverlay .eventGalleryThumbsWrap {
  margin-bottom: 3rem;
}
.eventGalleryOverlay .eventGalleryThumbsSwiper {
  overflow: visible;
  padding: 0.2rem 0 0.3rem;
}
.eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-wrapper {
  align-items: center;
}
.eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-slide {
  width: 8rem;
  height: 6rem;
  opacity: 0.8;
  transform: scale(0.84);
  transition: transform 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}
.eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1.1);
}
.eventGalleryOverlay .eventGalleryThumbImage {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid rgba(216, 180, 106, 0.28);
  box-shadow: 0 8px 20px rgba(74, 47, 30, 0.08);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.65rem;
  height: 6rem;
}

body.galleryOpen {
  overflow: hidden;
}

@media (min-width: 768px) {
  .eventsPage {
    padding-bottom: 5.5rem;
  }
  .eventsPage .eventsHero {
    margin-bottom: 3.5rem;
  }
  .eventsPage .featuredEventSection,
  .eventsPage .upcomingEventsSection,
  .eventsPage .pastEventsSection {
    margin-bottom: 4.25rem;
    padding: 0 2rem;
  }
  .eventsPage .featuredEventSection .sectionHeading,
  .eventsPage .upcomingEventsSection .sectionHeading,
  .eventsPage .pastEventsSection .sectionHeading {
    margin-bottom: 1.75rem;
  }
  .eventsPage .featuredEventSection .sectionHeading .sectionHeadingRow,
  .eventsPage .upcomingEventsSection .sectionHeading .sectionHeadingRow,
  .eventsPage .pastEventsSection .sectionHeading .sectionHeadingRow {
    gap: 1.2rem;
  }
  .eventsPage .featuredEventSection .sectionHeading .sectionTitle,
  .eventsPage .upcomingEventsSection .sectionHeading .sectionTitle,
  .eventsPage .pastEventsSection .sectionHeading .sectionTitle {
    font-size: 2.2rem;
  }
  .eventsPage .featuredEventSection .sectionHeading.sectionHeadingCentered .sectionRule,
  .eventsPage .upcomingEventsSection .sectionHeading.sectionHeadingCentered .sectionRule,
  .eventsPage .pastEventsSection .sectionHeading.sectionHeadingCentered .sectionRule {
    width: 12rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap {
    min-height: 21rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap .featuredEventImage {
    min-height: 21rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent {
    padding: 1.6rem 0;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock {
    margin: 0 1.6rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo {
    padding: 0 1.6rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventTitle {
    font-size: 2rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions {
    flex-direction: row;
    align-items: center;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventBtn,
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventActions .featuredEventSecondaryLink {
    width: auto;
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid,
  .eventsPage .pastEventsSection .upcomingEventsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .eventGalleryOverlay .eventGalleryHeader {
    padding: 1.15rem 1.2rem 1.15rem 0.95rem;
  }
  .eventGalleryOverlay .eventGalleryTitle {
    font-size: 1.75rem;
  }
  .eventGalleryOverlay .eventGalleryBody {
    padding: 1.6rem 1.5rem 1.8rem;
  }
  .eventGalleryOverlay .eventGalleryMainSwiper .swiper-slide {
    height: 22rem;
  }
  .eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-slide {
    width: 6.5rem;
  }
}
@media (min-width: 1024px) {
  .eventsPage {
    padding-bottom: 6.5rem;
  }
  .eventsPage .eventsHero {
    height: clamp(18rem, 32vw, 28rem);
    margin-bottom: 4rem;
  }
  .eventsPage .eventsHero .eventsHeroInner .eventsHeroTitle {
    letter-spacing: 0.04rem;
    font-size: 3rem;
  }
  .eventsPage .featuredEventSection,
  .eventsPage .upcomingEventsSection,
  .eventsPage .pastEventsSection {
    padding: 0 3.5vw;
  }
  .eventsPage .featuredEventSection .sectionHeading .sectionTitle,
  .eventsPage .upcomingEventsSection .sectionHeading .sectionTitle,
  .eventsPage .pastEventsSection .sectionHeading .sectionTitle {
    font-size: 2.3rem;
  }
  .eventsPage .featuredEventSection .sectionHeading .sectionRule,
  .eventsPage .upcomingEventsSection .sectionHeading .sectionRule,
  .eventsPage .pastEventsSection .sectionHeading .sectionRule {
    height: 0.26rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap {
    min-height: 100%;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventImageWrap .featuredEventImage {
    min-height: 100%;
    height: 100%;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent {
    justify-content: center;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock {
    margin: 0 2rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventMonth {
    font-size: 1.02rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventDateBlock .featuredEventDay {
    font-size: 1.55rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo {
    padding: 0 2rem;
  }
  .eventsPage .featuredEventSection .featuredEventCard .featuredEventContent .featuredEventInfo .featuredEventTitle {
    font-size: 2.35rem;
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid,
  .eventsPage .pastEventsSection .upcomingEventsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard,
  .eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard {
    height: 100%;
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody,
  .eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody {
    height: calc(100% - 14rem);
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent,
  .eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventDescription,
  .eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventDescription {
    flex-grow: 1;
  }
  .eventsPage .upcomingEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn,
  .eventsPage .pastEventsSection .upcomingEventsGrid .upcomingEventCard .upcomingEventBody .upcomingEventContent .upcomingEventBtn {
    align-self: flex-start;
  }
  .eventGalleryOverlay {
    align-items: center;
    padding: 2rem;
  }
  .eventGalleryOverlay .eventGalleryPanel {
    width: min(60rem, 100%);
    min-height: auto;
    max-height: calc(100vh - 4rem);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(74, 47, 30, 0.22);
    transform: translateY(24px) scale(0.98);
    display: flex;
    flex-direction: column;
  }
  .eventGalleryOverlay .eventGalleryHeader {
    flex-shrink: 0;
    padding: 1.25rem 2rem;
  }
  .eventGalleryOverlay .eventGalleryHeader .eventGalleryHeaderText {
    gap: 2rem;
  }
  .eventGalleryOverlay .eventGalleryHeader .eventGalleryHeaderIcon {
    width: 3.5rem;
    height: 3.5rem;
  }
  .eventGalleryOverlay .eventGalleryBody {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 2rem 1rem;
  }
  .eventGalleryOverlay.isOpen .eventGalleryPanel {
    transform: translateY(0) scale(1);
  }
  .eventGalleryOverlay .eventGalleryCloseBtn {
    width: 1.75rem;
    height: 1.75rem;
  }
  .eventGalleryOverlay .eventGalleryBackBtn {
    display: none;
  }
  .eventGalleryOverlay .eventGalleryTitle {
    font-size: 1.95rem;
  }
  .eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards {
    gap: 1.25rem;
  }
  .eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaCard {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 0.5rem 0.8rem 0;
  }
  .eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaCard .eventGalleryMetaIcon {
    height: 2.25rem;
    width: 2.25rem;
    padding-top: 0.05rem;
  }
  .eventGalleryOverlay .eventGalleryMeta .eventGalleryMetaCards .eventGalleryMetaCard .eventGalleryMetaValue {
    font-size: 1.25rem;
  }
  .eventGalleryOverlay .eventGalleryDate {
    font-size: 1rem;
  }
  .eventGalleryOverlay .eventGalleryDescription {
    font-size: 1.02rem;
  }
  .eventGalleryOverlay .eventGalleryArrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .eventGalleryOverlay .sectionTitle {
    font-size: 1.5rem;
  }
  .eventGalleryOverlay .eventGalleryDescription {
    font-size: 1.15rem;
  }
  .eventGalleryOverlay .eventGalleryMainSwiper {
    margin: 0 2rem;
  }
  .eventGalleryOverlay .eventGalleryMainSwiper .swiper-slide {
    height: 22rem;
  }
  .eventGalleryOverlay .eventGalleryThumbsSwiper {
    overflow: visible;
    padding: 0.2rem 0 0.3rem;
  }
  .eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-wrapper {
    align-items: center;
  }
  .eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-slide {
    width: 8rem;
    height: 6rem;
    opacity: 0.8;
    transform: scale(0.84);
    transition: transform 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
  }
  .eventGalleryOverlay .eventGalleryThumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1.1);
  }
  .eventGalleryOverlay .eventGalleryThumbImage {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid rgba(216, 180, 106, 0.28);
    box-shadow: 0 8px 20px rgba(74, 47, 30, 0.08);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.65rem;
    height: 6rem;
  }
}
/* VARIABLES */
.eventsHero {
  position: relative;
  width: 100%;
  height: clamp(16rem, 36vw, 28rem);
  margin: 0 0 2rem;
  overflow: hidden;
  background: #4A2F1E;
}
.eventsHero .eventsHeroImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(2px) brightness(0.35);
  transform: scale(1.1);
}
.eventsHero .eventsHeroInner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.eventsHero .eventsHeroInner .eventsHeroTitle {
  margin-top: 2.5rem;
  font-size: 2.75rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F3ECDC;
}

@media screen and (min-width: 768px) {
  .teamPage .eventsHero {
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .teamPage {
    padding-bottom: 6.5rem;
  }
  .teamPage .eventsHero {
    height: clamp(18rem, 32vw, 28rem);
    margin-bottom: 4rem;
  }
  .teamPage .eventsHero .eventsHeroInner .eventsHeroTitle {
    letter-spacing: 0.04rem;
    font-size: 3rem;
  }
}
.teamPage {
  padding-bottom: 2.25rem;
  background: transparent;
}
.teamPage .teamPageTitle {
  text-align: center;
  font-size: 2.15rem;
  margin: 0.75rem 0 1.75rem;
  font-weight: 900;
  color: #4A2F1E;
  letter-spacing: 0.2px;
}
.teamPage .teamSection {
  margin-bottom: 2.25rem;
  padding: 0 0.75rem;
}
.teamPage .teamSection .teamSectionHeader {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.teamPage .teamSection .teamSectionHeader .teamSectionTitle {
  margin: 0;
  color: #4A2F1E;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: 0.2px;
}
.teamPage .teamSection .teamSectionHeader .teamSectionRule {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 180, 106, 0.9), rgba(221, 145, 4, 0.9), rgba(181, 74, 47, 0.25));
  opacity: 0.95;
}
.teamPage .teamSection .teamGrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.teamPage .teamSection .teamGrid .memberCard {
  background: #fff;
  border: 1px solid rgba(74, 47, 30, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(74, 47, 30, 0.08);
  margin: 0.5rem 0.75rem;
  max-height: 400px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.teamPage .teamSection .teamGrid .memberCard:hover {
  border-color: rgba(216, 180, 106, 0.55);
  box-shadow: 0 16px 34px rgba(74, 47, 30, 0.14);
  transform: translateY(-2px);
}
.teamPage .teamSection .teamGrid .memberCard .memberCardMedia {
  position: relative;
  background: rgba(243, 236, 220, 0.55);
  border-right: 1px solid rgba(74, 47, 30, 0.1);
}
.teamPage .teamSection .teamGrid .memberCard .memberCardMedia::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #D8B46A, #dd9104);
  opacity: 0.95;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardMedia .memberCardAvatar {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody {
  padding: 0.8rem 0.85rem 0.9rem;
  position: relative;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(216, 180, 106, 0.9), rgba(221, 145, 4, 0.9));
  opacity: 0.95;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardName {
  margin: 0;
  color: #4A2F1E;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.15;
  flex: 1 1 auto;
  min-width: 0;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardPill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(243, 236, 220, 0.85);
  border: 1px solid rgba(216, 180, 106, 0.45);
  color: #4A2F1E;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardPill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #B54A2F;
  box-shadow: 0 0 0 3px rgba(181, 74, 47, 0.14);
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardProgram {
  margin: 0.45rem 0 0.65rem;
  color: rgba(74, 47, 30, 0.72);
  font-weight: 750;
  font-size: 0.98rem;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(243, 236, 220, 0.55);
  border: 1px solid rgba(216, 180, 106, 0.28);
  position: relative;
  text-align: center;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote::after {
  content: "“";
  position: absolute;
  top: -16px;
  right: 6px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(216, 180, 106, 0.5);
  pointer-events: none;
}
.teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote p {
  margin: 0;
  color: rgba(74, 47, 30, 0.88);
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .teamPage .teamPageTitle {
    font-size: 2.75rem;
    margin-top: 1.5rem;
  }
  .teamPage .teamSection {
    padding: 0 1.25rem;
  }
  .teamPage .teamSection .teamSectionHeader {
    margin: 1.5rem 1.5rem;
    gap: 1rem;
  }
  .teamPage .teamSection .teamSectionHeader .teamSectionTitle {
    font-size: 2rem;
  }
  .teamPage .teamSection .teamSectionHeader .teamSectionRule {
    height: 4px;
  }
  .teamPage .teamSection .teamGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .teamPage .teamSection .teamGrid .memberCard {
    max-height: 300px;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardMedia .memberCardAvatar {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody {
    padding: 1.25rem 1rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardName {
    font-size: 1.65rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardProgram {
    font-size: 1.25rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardPill {
    font-size: 1.1rem;
    margin: 0.5rem 0 1.5rem;
    padding: 0.5rem 0.75rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote::after {
    top: -16px;
    right: 8px;
    font-size: 3.5rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote p {
    font-size: 1.3rem;
    padding: 0.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .teamPage .teamPageTitle {
    font-size: 2.5rem;
    margin-top: 1rem;
  }
  .teamPage .teamSection .teamSectionHeader {
    margin: 1.5rem 1.5rem;
    gap: 1rem;
  }
  .teamPage .teamSection .teamSectionHeader .teamSectionTitle {
    font-size: 1.9rem;
  }
  .teamPage .teamSection .teamSectionHeader .teamSectionRule {
    height: 3px;
  }
  .teamPage .teamSection .teamGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
  }
  .teamPage .teamSection .teamGrid .memberCard {
    max-height: 320px;
    grid-template-columns: 43% 57%;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardMedia .memberCardAvatar {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody {
    padding: 1rem 0.8rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardName {
    font-size: 1.4rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardProgram {
    font-size: 1.1rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardPill {
    font-size: 0.9rem;
    margin: 0.25rem 0 1rem;
    padding: 0.5rem 0.5rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote::after {
    top: -16px;
    right: 8px;
    font-size: 3.5rem;
  }
  .teamPage .teamSection .teamGrid .memberCard .memberCardBody .memberCardQuote p {
    font-size: 1.15rem;
    padding: 0.25rem;
  }
}
/* VARIABLES */
.contactPage {
  background: #F3ECDC;
  color: #4A2F1E;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
.contactPage .contactWrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.contactPage .contactWrap .contactHeader {
  text-align: center;
  margin-bottom: 2rem;
}
.contactPage .contactWrap .contactHeader .contactTitle {
  margin: 0;
  font-size: 3rem;
  letter-spacing: -0.6px;
  line-height: 1.1;
}
.contactPage .contactWrap .contactHeader .contactSubtitle {
  margin: 12px auto 0;
  max-width: 680px;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(74, 47, 30, 0.82);
}
.contactPage .contactWrap .contactHeader .contactRule {
  width: 140px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 180, 106, 0) 0%, #D8B46A 35%, #dd9104 65%, rgba(216, 180, 106, 0) 100%);
  box-shadow: 0 6px 16px rgba(74, 47, 30, 0.12);
}
.contactPage .contactWrap .contactGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.contactPage .contactWrap .contactGrid .contactCard {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(216, 180, 106, 0.55);
  box-shadow: 0 16px 40px rgba(74, 47, 30, 0.1), 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  padding: 18px 18px 16px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.contactPage .contactWrap .contactGrid .contactCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 10%, rgba(221, 145, 4, 0.18), transparent 55%), radial-gradient(circle at 85% 20%, rgba(181, 74, 47, 0.14), transparent 55%), radial-gradient(circle at 40% 90%, rgba(216, 180, 106, 0.14), transparent 60%);
  pointer-events: none;
}
.contactPage .contactWrap .contactGrid .contactCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 0, transparent 60%, rgba(216, 180, 106, 0.08) 100%);
  pointer-events: none;
}
.contactPage .contactWrap .contactGrid .contactCard:hover {
  transform: translateY(-1.5px);
  border-color: rgba(221, 145, 4, 0.65);
  box-shadow: 0 18px 52px rgba(74, 47, 30, 0.14), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardTop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardTop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 180, 106, 0) 0%, rgba(216, 180, 106, 0.85) 30%, rgba(221, 145, 4, 0.85) 70%, rgba(216, 180, 106, 0) 100%);
  opacity: 0.95;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardTop .contactIcon {
  height: 2rem;
  width: 2rem;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardTop .contactCardHeading {
  flex: 1;
  min-width: 0;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardTop .contactCardHeading .contactCardTitle {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.2px;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardBody {
  position: relative;
  padding: 2px 2px 10px;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardBody .contactValue {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15px;
  color: #4A2F1E;
  text-decoration: none;
  border-bottom: 2px solid rgba(216, 180, 106, 0);
  transition: border-color 160ms ease, color 160ms ease;
  margin-top: 0.25rem;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardBody .contactValue:hover {
  color: #B54A2F;
  text-decoration: underline;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions {
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnPrimary,
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnGhost {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.75rem 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnPrimary {
  flex: 1;
  background: linear-gradient(135deg, #dd9104, #D8B46A);
  color: #4A2F1E;
  box-shadow: 0 10px 22px rgba(74, 47, 30, 0.14);
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnPrimary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnPrimary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnGhost {
  min-width: 96px;
  background: rgba(255, 255, 255, 0.55);
  color: #4A2F1E;
  border: 1px solid rgba(216, 180, 106, 0.8);
  box-shadow: 0 10px 18px rgba(74, 47, 30, 0.1);
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnGhost:hover {
  border-color: rgba(221, 145, 4, 0.9);
  filter: brightness(1.02);
}
.contactPage .contactWrap .contactGrid .contactCard .contactCardActions .btnGhost:active {
  filter: brightness(0.98);
}

@media screen and (max-width: 1024px) {
  .contactPage .contactWrap .contactGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .contactPage {
    margin-top: 2.5rem;
  }
  .contactPage .contactWrap .contactHeader .contactTitle {
    font-size: 2.15rem;
  }
  .contactPage .contactWrap .contactHeader .contactSubtitle {
    font-size: 1.15rem;
  }
  .contactPage .contactWrap .contactGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .contactPage .contactWrap .contactGrid .contactCard .contactCardTop .contactCardHeading .contactCardTitle {
    font-size: 1.3rem;
  }
}
/* VARIABLES */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.homeBody {
  background: #F3ECDC;
}
.homeBody .comingSoon {
  display: grid;
  place-content: center;
  color: #4A2F1E;
  font-size: 5rem;
  height: 65vh;
}
.homeBody .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4A2F1E;
  padding: 1rem 7rem 1rem 6rem;
}
.homeBody .header.transparent {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  gap: 16rem;
}
.homeBody .header .headerLogo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
}
.homeBody .header .header-nav-desktop {
  display: flex;
  gap: 5.5rem;
  font-size: 1.8rem;
}
.homeBody .header .header-nav-desktop .header-link,
.homeBody .header .header-nav-desktop .header-link:visited {
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.homeBody .header .header-nav-desktop {
  /* Hover */
}
.homeBody .header .header-nav-desktop .header-link:hover {
  color: #D8B46A;
  transform: translateY(-2px);
}
.homeBody .header .header-nav-desktop {
  /* Active page */
}
.homeBody .header .header-nav-desktop .header-link.active {
  font-weight: 500;
}
.homeBody .header .header-nav-desktop .header-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background-color: #D8B46A;
  border-radius: 2px;
}
.homeBody .header .header-nav-desktop {
  /* Focus (keyboard accessibility) */
}
.homeBody .header .header-nav-desktop .header-link:focus-visible {
  outline: none;
}
.homeBody .header .header-nav-desktop .header-link:focus-visible::after {
  content: "";
  position: absolute;
  inset: -0.4rem;
  border: 2px solid #D8B46A;
  border-radius: 6px;
}
.homeBody .header .burgerBtn,
.homeBody .header .header-nav-mobile,
.homeBody .header .mobileNavBackdrop {
  display: none;
}
.homeBody .productSection {
  background: #F3ECDC;
  padding: 0 2rem 2rem;
}
.homeBody .productSection .merchHeaderRow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.homeBody .productSection .merchHeaderRow .merchTitle {
  margin-bottom: 0;
  font-size: 2.5rem;
}
.homeBody .productSection .merchHeaderRow .cancelOrderBtn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #4A2F1E;
  border: 1px solid rgba(74, 47, 30, 0.25);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}
.homeBody .productSection .merchHeaderRow .cancelOrderBtn:hover {
  transform: translateY(-50%) translateY(-2px);
  border-color: #D8B46A;
  background: #D8B46A;
  box-shadow: 0 10px 22px rgba(74, 47, 30, 0.12);
}
.homeBody .productSection .merchHeaderRow .cancelOrderBtn:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .productSection .deadlineRow {
  max-width: 500px;
  text-align: center;
  font-size: 1.25rem;
  margin: 0 auto 2rem;
  padding: 1rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  background: rgba(107, 31, 31, 0.06);
  border-left: 4px solid #B54A2F;
  border-right: 4px solid #B54A2F;
  border-radius: 6px;
  color: #2b2b2b;
}
.homeBody .productSection .productGrid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.homeBody .productSection .productGrid .productCard {
  background: #fff;
  width: 320px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(74, 47, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}
.homeBody .productSection .productGrid .productCard:hover {
  box-shadow: 0 14px 32px rgba(74, 47, 30, 0.15);
}
.homeBody .productSection .productGrid .productCard .productImage img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.homeBody .productSection .productGrid .productCard .productInfo {
  display: flex;
  flex-flow: column nowrap;
  padding: 1.4rem;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.homeBody .productSection .productGrid .productCard .productInfo .productName {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4A2F1E;
}
.homeBody .productSection .productGrid .productCard .productInfo .productPrice {
  font-size: 1.6rem;
  font-weight: 800;
  color: #dd9104;
  margin-bottom: 0.35rem;
}
.homeBody .productSection .productGrid .productCard .productInfo .orderButton {
  background: #B54A2F;
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.homeBody .productSection .productGrid .productCard .productInfo .orderButton:hover {
  background: rgb(168.8539473684, 69.0342105263, 43.8460526316);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(181, 74, 47, 0.35);
}
.homeBody .productSection .productGrid .productCard .productInfo .orderButton:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 47, 30, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 999;
}
.homeBody .modalOverlay.isOpen {
  display: flex;
}
.homeBody .modalOverlay .modalCard {
  position: relative;
  width: min(950px, 94vw);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}
.homeBody .modalOverlay .modalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(74, 47, 30, 0.15);
  background: #fff;
  color: #4A2F1E;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}
.homeBody .modalOverlay .modalClose:hover {
  transform: translateY(-1px);
  border-color: #D8B46A;
  box-shadow: 0 8px 18px rgba(74, 47, 30, 0.18);
}
.homeBody .modalOverlay .modalClose:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit {
  display: flex;
  min-height: 520px;
}
.homeBody .modalOverlay .modalSplit .modalLeft,
.homeBody .modalOverlay .modalSplit .modalRight {
  flex: 0 0 50%;
}
.homeBody .modalOverlay .modalSplit .modalLeft {
  background: #F3ECDC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeBody .modalOverlay .modalSplit .modalLeft .modalSlider {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 520px;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderViewport {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderImage.isActive {
  opacity: 1;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(74, 47, 30, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #4A2F1E;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  z-index: 5;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav:hover {
  transform: translateY(-50%) scale(1.03);
  border-color: #D8B46A;
  box-shadow: 0 10px 24px rgba(74, 47, 30, 0.18);
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav.sliderPrev {
  left: 12px;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav.sliderPrev .chev {
  display: block;
  line-height: 1;
  padding-bottom: 0.25rem;
  padding-right: 0.15rem;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav.sliderNext {
  right: 12px;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderNav.sliderNext .chev {
  display: block;
  line-height: 1;
  padding-bottom: 0.25rem;
  padding-left: 0.15rem;
}
.homeBody .modalOverlay .modalSplit .modalLeft .sliderDots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.homeBody .modalOverlay .modalSplit .modalLeft .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #F3ECDC;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.homeBody .modalOverlay .modalSplit .modalLeft .dot.isActive {
  background: #D8B46A;
  transform: scale(1.15);
}
.homeBody .modalOverlay .modalSplit .modalLeft .dot:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight {
  padding: 1.5rem 2.25rem 1.5rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep {
  display: none;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep.isActive {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .sizeReference {
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup {
  margin-bottom: 0.75rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .optionLabel {
  display: block;
  font-size: 1.3rem;
  font-weight: 650;
  color: #4A2F1E;
  margin-bottom: 0.5rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions .sizeOption {
  border: 1px solid rgba(74, 47, 30, 0.22);
  background: #fff;
  color: #4A2F1E;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, border 0.15s ease, box-shadow 0.15s ease;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions .sizeOption:hover {
  transform: translateY(-1px);
  border-color: #D8B46A;
  box-shadow: 0 8px 18px rgba(74, 47, 30, 0.12);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions .sizeOption.isSelected {
  border-color: #D8B46A;
  box-shadow: 0 0 0 2px rgba(215, 180, 106, 0.35);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions .sizeOption:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(74, 47, 30, 0.22);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #fff;
  margin-bottom: 0.25rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyBtn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #F3ECDC;
  color: #4A2F1E;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(74, 47, 30, 0.12);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyBtn:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyValue {
  min-width: 24px;
  font-size: 1.15rem;
  text-align: center;
  font-weight: 700;
  color: #4A2F1E;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .textInput {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(74, 47, 30, 0.22);
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  color: #4A2F1E;
  background: #fff;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .textInput:focus-visible {
  outline: 2px solid #D8B46A;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .textInput.isInvalid {
  border: 2px solid #B54A2F;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .fieldError {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #B54A2F;
  font-weight: 600;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox {
  border: 1px solid rgba(74, 47, 30, 0.18);
  border-radius: 14px;
  padding: 0.5rem 1.1rem;
  background: rgba(243, 236, 220, 0.55);
  margin: 1rem 0 1.25rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryTitle {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(74, 47, 30, 0.65);
  padding-bottom: 0.6rem;
  margin: 0.5rem 0 0.6rem;
  border-bottom: 2px solid rgba(74, 47, 30, 0.18);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow:not(:last-child) {
  border-bottom: 1px solid rgba(74, 47, 30, 0.12);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow .summaryLabel {
  color: rgba(74, 47, 30, 0.7);
  font-weight: 650;
  font-size: 1.2rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow .summaryValue {
  color: #4A2F1E;
  font-weight: 700;
  font-size: 1.1rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalTitle {
  color: #4A2F1E;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalTitle.contactTitle {
  margin-bottom: 1.5rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalPrice {
  color: #dd9104;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalDesc {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalDesc .modalLink {
  color: black;
  text-underline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .emailText {
  color: #4A2F1E;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .confirmationText {
  color: #4A2F1E;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions button {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 650;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalPrimary {
  background: #B54A2F;
  color: #fff;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(181, 74, 47, 0.35);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalPrimary:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalSecondary {
  background: #fcfcfc;
  color: #4A2F1E;
  border: 1px solid rgba(74, 47, 30, 0.22);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalSecondary:hover {
  transform: translateY(-2px);
  border-color: #D8B46A;
  box-shadow: 0 10px 22px rgba(74, 47, 30, 0.12);
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions .modalSecondary:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .modalTitle {
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  color: #B54A2F;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .receivalText {
  max-width: 320px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  color: #000;
  margin-bottom: 2rem;
}
.homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .modalActions {
  margin-top: 0;
  justify-content: center;
}
.homeBody .cancelModal .cancelCard {
  width: min(560px, 94vw);
}
.homeBody .cancelModal .cancelCard .cancelBody {
  padding: 2.25rem 2.25rem 2rem;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelTitle {
  font-size: 2.25rem;
  font-weight: 700;
  color: #4A2F1E;
  margin-bottom: 1rem;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelText {
  font-size: 1.15rem;
  color: rgba(74, 47, 30, 0.75);
  margin-bottom: 1.5rem;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup {
  margin-bottom: 1.25rem;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup .optionLabel {
  display: block;
  font-size: 1.5rem;
  font-weight: 650;
  color: #4A2F1E;
  margin-bottom: 0.75rem;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup .textInput {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(74, 47, 30, 0.22);
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  color: #4A2F1E;
  background: #fff;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup .textInput:focus-visible {
  outline: 2px solid #D8B46A;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup .textInput.isInvalid {
  border: 2px solid #B54A2F;
}
.homeBody .cancelModal .cancelCard .cancelBody .optionGroup .fieldError {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #B54A2F;
  font-weight: 600;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelActions {
  text-align: center;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelActions button {
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  font-weight: 650;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelActions .modalPrimary {
  background: #B54A2F;
  color: #fff;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelActions .modalPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(181, 74, 47, 0.35);
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelActions .modalPrimary:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(74, 47, 30, 0.18);
  background: rgba(243, 236, 220, 0.55);
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmText {
  color: #4A2F1E;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions button {
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  font-weight: 650;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalPrimary {
  background: #B54A2F;
  color: #fff;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(181, 74, 47, 0.35);
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalPrimary:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalSecondary {
  background: #fcfcfc;
  color: #4A2F1E;
  border: 1px solid rgba(74, 47, 30, 0.22);
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalSecondary:hover {
  transform: translateY(-2px);
  border-color: #D8B46A;
  box-shadow: 0 10px 22px rgba(74, 47, 30, 0.12);
}
.homeBody .cancelModal .cancelCard .cancelBody .cancelConfirmBox .cancelConfirmActions .modalSecondary:focus-visible {
  outline: 2px solid #D8B46A;
  outline-offset: 2px;
}
.homeBody .cancelModal .cancelCard .cancelBody.isConfirming .cancelSubmitBtn {
  display: none;
}
.homeBody .cancelModal .cancelCard .cancelBody.isConfirming .cancelConfirmBox {
  display: block;
}
.homeBody .cancelModal .cancelCard .cancelBody.isConfirming #cancelEmail,
.homeBody .cancelModal .cancelCard .cancelBody.isConfirming #cancelOrderId {
  opacity: 0.65;
  pointer-events: none;
}
.homeBody .snackbar {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  background: rgba(74, 47, 30, 0.95);
  color: #F3ECDC;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 2000;
}
.homeBody .snackbar.isOpen {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 1024px) {
  .homeBody .header {
    padding: 1.5rem 5rem 1.5rem 5rem;
    position: relative;
  }
  .homeBody .header .headerLogo {
    width: 6rem;
    height: 6rem;
  }
  .homeBody .header .header-nav-desktop {
    display: none;
  }
  .homeBody .header .burgerBtn {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
  }
  .homeBody .header .burgerBtn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .homeBody .header .burgerBtn:focus {
    outline: none;
  }
  .homeBody .header .burgerBtn:focus-visible {
    outline: 2px solid #D8B46A;
    outline-offset: 3px;
  }
  .homeBody .header .burgerBtn .burgerLine {
    display: block;
    width: 64px;
    height: 4px;
    background: #F3ECDC;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .homeBody .header {
    /* drawer (hidden by default) */
  }
  .homeBody .header .header-nav-mobile {
    position: absolute;
    top: calc(100% + 10px);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    z-index: 1500;
  }
  .homeBody .header .header-nav-mobile .header-link,
  .homeBody .header .header-nav-mobile .header-link:visited {
    color: #4A2F1E;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    padding: 0.85rem 0.9rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom: 2px solid rgba(216, 180, 106, 0.25);
  }
  .homeBody .header .header-nav-mobile .header-link:last-child,
  .homeBody .header .header-nav-mobile .header-link:visited:last-child {
    border-bottom: none;
  }
  .homeBody .header .header-nav-mobile .header-link.active {
    background: rgba(216, 180, 106, 0.15);
    color: #4A2F1E;
  }
  .homeBody .header {
    /* backdrop behind drawer */
  }
  .homeBody .header .mobileNavBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1400;
  }
  .homeBody .header {
    /* when menu open */
  }
  .homeBody .header.isMenuOpen .header-nav-mobile {
    display: flex;
  }
  .homeBody .header.isMenuOpen .mobileNavBackdrop {
    display: block;
  }
  .homeBody .header.isMenuOpen {
    /* X animation */
  }
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(1) {
    transform: translateY(21px) rotate(45deg);
    width: 56px;
  }
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(2) {
    opacity: 0;
  }
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(3) {
    transform: translateY(-21px) rotate(-45deg);
    width: 56px;
  }
  .homeBody .productSection {
    padding: 2rem 1.5rem;
  }
  .homeBody .productSection .merchHeaderRow .merchTitle {
    font-size: 3.5rem;
  }
  .homeBody .productSection .deadlineRow {
    max-width: 360px;
    font-size: 1.6rem;
    font-weight: 550;
    padding: 1.1rem 0.75rem;
    margin-bottom: 3rem;
  }
  .homeBody .productSection .productGrid {
    gap: 2.5rem;
  }
  .homeBody .productSection .productGrid .productCard {
    width: 360px;
  }
  .homeBody .productSection .productGrid .productCard .productImage img {
    height: 300px;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .productName {
    font-size: 2rem;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .productPrice {
    font-size: 2rem;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .orderButton {
    font-size: 1.5rem;
    padding: 0.9rem 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .homeBody .modalOverlay {
    padding: 1.25rem;
    align-items: center;
    justify-content: center;
  }
  .homeBody .modalOverlay .modalCard {
    width: min(720px, 96vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .homeBody .modalOverlay .modalSplit {
    /* override desktop split */
    display: flex;
    flex-direction: column;
    min-height: 0; /* allow children to scroll */
    height: 100%; /* so left/right can use % heights */
  }
  .homeBody .modalOverlay .modalClose {
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
    top: 12px;
    right: 12px;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft,
  .homeBody .modalOverlay .modalSplit .modalRight {
    flex: 0 0 auto; /* kill desktop 50/50 */
    width: 100%;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft {
    /* IMPORTANT: don't center content for tablet */
    align-items: stretch;
    justify-content: stretch;
    /* give the left side a real height */
    height: clamp(280px, 38vh, 440px);
    min-height: 280px;
    padding: 0;
    position: relative;
    background: #F3ECDC;
    /* make the slider fill left */
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .modalSlider {
    flex: 1;
    width: 100%;
    height: 100%;
    max-height: none;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft {
    /* ensure viewport is the full height box */
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderViewport {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #fff;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft {
    /* absolute images need a real box */
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderImage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft {
    /* dots should anchor to the bottom of the slider */
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderDots {
    bottom: 20px;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft {
    /* optional: slightly bigger dots for tablet */
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .dot {
    width: 16px;
    height: 16px;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderNav {
    width: 64px;
    height: 64px;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderNav .chev {
    transform: scale(1.5);
  }
  .homeBody .modalOverlay .modalSplit .modalRight {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 1.25rem 1.75rem 1.25rem;
    background: #fff;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalInfo {
    display: flex;
    justify-content: space-between;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalInfo .modalTitle {
    font-size: 2.65rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalInfo .modalPrice {
    font-size: 2.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalDesc {
    font-size: 2rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups {
    display: flex;
    gap: 4rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups .optionGroup .optionLabel {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups .optionGroup .sizeOptions .sizeOption {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups .optionGroup .quantityPicker {
    gap: 2rem;
    padding: 0.75rem 1.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups .optionGroup .quantityPicker .qtyBtn {
    width: 56px;
    height: 56px;
    font-size: 2rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroups .optionGroup .quantityPicker .qtyValue {
    font-size: 2rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions button {
    font-size: 1.75rem;
    padding: 1rem 1.75rem;
    width: auto;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalTitle.contactTitle {
    font-size: 2.65rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .optionGroup .optionLabel {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .optionGroup .textInput {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .optionGroup .fieldError {
    margin-top: 0.75rem;
    font-size: 1.4rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .emailText {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .summaryBox {
    margin: 1.5rem 0;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .summaryBox .summaryTitle {
    font-size: 1.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .summaryBox .summaryRow {
    padding: 0.75rem 0;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .summaryBox .summaryRow .summaryLabel {
    font-size: 1.4rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .summaryBox .summaryRow .summaryValue {
    font-size: 1.4rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive {
    margin: 2rem 0;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .modalTitle {
    font-size: 3rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .receivalText {
    font-size: 2rem;
    max-width: 450px;
  }
}
/* ---------- <= 768px (phone / small tablet) ---------- */
@media screen and (max-width: 768px) {
  /* ===== Header -> Burger + Drawer ===== */
  .homeBody .header {
    padding: 1.5rem 2.5rem;
    position: relative;
  }
  .homeBody .header.transparent {
    gap: 15rem;
  }
  .homeBody .comingSoon {
    font-size: 3rem;
  }
  .homeBody .header .headerLogo {
    width: 4rem;
    height: 4rem;
  }
  /* Hide desktop nav */
  .homeBody .header .header-nav-desktop {
    display: none;
  }
  /* Show burger */
  .homeBody .header .burgerBtn {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    /* remove the “circle” look by default */
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
  }
  /* only show a subtle background on hover/focus */
  .homeBody .header .burgerBtn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .homeBody .header .burgerBtn:focus {
    outline: none;
  }
  .homeBody .header .burgerBtn:focus-visible {
    outline: 2px solid #D8B46A; /* gold */
    outline-offset: 3px;
  }
  .homeBody .header .burgerBtn .burgerLine {
    display: block;
    width: 40px;
    height: 3.5px;
    background: #F3ECDC;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .homeBody .header .burgerBtn {
    gap: 4px;
  }
  /* Drawer (hidden by default) */
  .homeBody .header .header-nav-mobile {
    position: absolute;
    top: calc(100% + 10px);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    z-index: 1500;
  }
  .homeBody .header .header-nav-mobile .header-link,
  .homeBody .header .header-nav-mobile .header-link:visited {
    color: #4A2F1E;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.85rem 0.9rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
  }
  .homeBody .header .header-nav-mobile .header-link.active {
    background: rgba(216, 180, 106, 0.15);
    color: #4A2F1E;
  }
  /* Backdrop behind drawer */
  .homeBody .header .mobileNavBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1400;
  }
  /* When header has menu open */
  .homeBody .header.isMenuOpen .header-nav-mobile {
    display: flex;
  }
  .homeBody .header.isMenuOpen .mobileNavBackdrop {
    display: block;
  }
  /* Nice "X" animation (optional but clean) */
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(1) {
    transform: translateY(17px) rotate(45deg);
    width: 40px;
  }
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(2) {
    opacity: 0;
  }
  .homeBody .header.isMenuOpen .burgerBtn .burgerLine:nth-child(3) {
    transform: translateY(-17px) rotate(-45deg);
    width: 40px;
  }
  .homeBody .header .burgerBtn .burgerLine {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  /* ===== Product section ===== */
  .homeBody .productSection {
    padding: 0 1rem 1.5rem;
  }
  .homeBody .productSection .merchHeaderRow .merchTitle {
    font-size: 2.25rem;
  }
  .homeBody .productSection .deadlineRow {
    font-size: 1.1rem;
    padding: 0.85rem 0.75rem;
    margin: 0 auto 2rem;
    max-width: 75vw;
    font-weight: 550;
  }
  /* Make cards full-width on phone */
  .homeBody .productSection .productGrid {
    gap: 1.25rem;
  }
  .homeBody .productSection .productGrid .productCard {
    width: min(370px, 80%);
  }
  .homeBody .productSection .productGrid .productCard .productImage img {
    height: 200px;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .productName {
    font-size: 1.65rem;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .productPrice {
    font-size: 1.7rem;
  }
  .homeBody .productSection .productGrid .productCard .productInfo .orderButton {
    font-size: 1.25rem;
    padding: 0.7rem;
  }
  /* ===== Modal (<=768): FULL SCREEN stacked (image top, content bottom) ===== */
  .homeBody .modalOverlay {
    padding: 0;
    align-items: stretch; /* full height */
  }
  .homeBody .modalOverlay .modalCard {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  /* stack image then content */
  .homeBody .modalOverlay .modalSplit {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* enables internal scrolling */
  }
  .homeBody .modalOverlay .modalLeft,
  .homeBody .modalOverlay .modalRight {
    width: 100%;
    flex: 0 0 auto;
  }
  /* --- Image/Gallery area --- */
  .homeBody .modalOverlay .modalLeft {
    background: #F3ECDC;
    padding: 0; /* full bleed image area */
    position: relative;
    max-height: 28vh; /* responsive gallery height */
    min-height: 250px; /* prevents tiny gallery */
  }
  /* IMPORTANT: give the slider a REAL height so absolute images show */
  .homeBody .modalOverlay .modalSplit .modalLeft .modalSlider {
    height: 100%;
    width: 100%;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderViewport {
    height: 100%;
    width: 100%;
    border-radius: 0; /* full bleed on phone */
  }
  /* keep slider arrows/dots usable */
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderNav {
    width: 44x;
    height: 44px;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderDots {
    bottom: 14px;
    gap: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalLeft .sliderDots .dot {
    width: 9px;
    height: 9px;
  }
  /* --- Content area --- */
  .homeBody .modalOverlay .modalSplit .modalRight {
    flex: 1;
    min-height: 45vh;
    overflow: auto; /* scroll the form area */
    padding: 1rem 1.4rem 1.25rem;
    background: #fff;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalInfo .modalTitle {
    font-size: 1.6rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalTitle.contactTitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalInfo .modalPrice {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalDesc {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .sizeReference {
    font-size: 0.9rem;
    font-weight: 600;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="1"].isActive .optionGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="1"].isActive .optionGroup .optionLabel {
    margin-bottom: 0;
    font-size: 1.35rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .optionGroup .textInput {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions {
    gap: 1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .sizeOptions .sizeOption {
    margin-bottom: 0;
    font-size: 1rem;
    padding: 0.5rem 0.95rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker {
    gap: 1.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyBtn {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .quantityPicker .qtyValue {
    font-size: 1.25rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .modalActions button {
    font-size: 1.15rem;
    padding: 0.7rem 1.45rem;
  }
  /* buttons stack */
  .homeBody .modalOverlay .modalRight .modalActions button {
    width: 100%;
    justify-content: center;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="2"].isActive .optionGroup {
    margin-bottom: 0.75rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .optionLabel {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .emailText {
    font-size: 1.1rem;
    margin-bottom: 0rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .optionGroup .fieldError {
    font-size: 0.9rem;
    margin-top: 0.3rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox {
    margin: 0.75rem 0 1rem;
    padding: 0.5rem 0.8rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryTitle {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow {
    padding: 0.45rem 0;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow .summaryLabel {
    font-size: 1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep .summaryBox .summaryRow .summaryValue {
    font-size: 1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="3"].isActive .modalTitle {
    font-size: 1.6rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive {
    padding-bottom: 10rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .modalTitle {
    font-size: 2.1rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .receivalText {
    font-size: 1.4rem;
  }
  .homeBody .modalOverlay .modalSplit .modalRight .modalStep[data-step="4"].isActive .modalActions button {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */