*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #101010;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
[role="button"] {
  cursor: pointer;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.min-h-48 {
  min-height: 12rem;
}

.bg-kanyon-black {
  background-color: #101010;
}

.bg-kanyon-orange {
  background-color: #ff914d;
}

.bg-kanyon-coral {
  background-color: #ff695a;
}

.bg-kanyon-red {
  background-color: #f04438;
}

.bg-kanyon-magenta {
  background-color: #8b236b;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-container {
  width: min(100% - 184px, 1257px);
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  background: #111;
}

.mobile-quick-links {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 35px;
  overflow: hidden;
  background: linear-gradient(
    100deg,
    #ff914d 0%,
    #ff695a 44%,
    #ee3d35 68%,
    #852464 100%
  );
}

.mobile-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.mobile-quick-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 145, 77, 0.94) 0%,
      rgba(238, 61, 53, 0.9) 45%,
      rgba(133, 36, 100, 0.96) 100%
    ),
    #101010;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-panel {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: 52px 22px 30px;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 16, 0.12) 0%,
    rgba(16, 16, 16, 0.42) 100%
  );
  overflow-y: auto;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-menu-logo {
  display: inline-flex;
  width: 126px;
}

.mobile-menu-close {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 47px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mobile-search svg {
  width: 24px;
  height: 24px;
}

.mobile-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.mobile-menu-nav {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: clamp(29px, 8vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.mobile-menu-nav a::after {
  content: "→";
  font-size: 30px;
  font-weight: 500;
}

.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 42px;
}

.mobile-menu-footer label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
}

.mobile-menu-footer select {
  min-width: 116px;
  height: 46px;
  padding: 0 38px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.22);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 104px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1382px);
  margin-inline: auto;
  padding: 16px 30px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 126px;
  height: 67px;
}

.brand-mark {
  width: 126px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 57px);
  margin-left: 54px;
}

.primary-nav a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.94);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button,
.language-button {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.language-button {
  font-size: 18px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 31px;
  height: 24px;
  color: #fff;
  background: transparent;
  padding: 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 810px;
  overflow: hidden;
  background: #111;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: relative;
  display: grid;
  min-height: inherit;
  align-items: center;
  isolation: isolate;
}

.hero-picture,
.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -2;
}

.hero-image,
.hero-video {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.28) 43%,
      rgba(0, 0, 0, 0.34) 100%
    ),
    rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1266px);
  margin-inline: auto;
  padding: 82px 24px 0;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-slide-title {
  max-width: 820px;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  bottom: 50px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: transparent;
  padding: 0;
}

.hero-arrow svg {
  width: 31px;
  height: 31px;
  stroke-width: 3;
}

.hero-arrow-prev {
  left: 84px;
}

.hero-arrow-next {
  right: 84px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 39px;
  display: grid;
  justify-items: center;
  gap: 7px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 4px solid currentColor;
  border-radius: 999px;
  position: relative;
}

.mouse-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: mouse-wheel 1.45s ease-in-out infinite;
}

@keyframes mouse-wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@media (max-width: 1023px) {
  .site-header {
    top: 35px;
    height: 118px;
  }

  .header-inner {
    padding: 32px 22px 0;
  }

  .brand-link,
  .brand-mark {
    width: 126px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero-section {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-slide {
    align-items: end;
  }

  .hero-image,
  .hero-video {
    object-position: 46% center;
  }

  .hero-slide::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.17) 38%,
        rgba(0, 0, 0, 0.68) 100%
      ),
      rgba(0, 0, 0, 0.17);
  }

  .hero-content {
    padding: 0 22px 153px;
  }

  .hero-title {
    max-width: 350px;
    font-size: clamp(32px, 8.6vw, 36px);
    line-height: 1.13;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 18px;
    font-size: clamp(18px, 5.1vw, 21px);
    line-height: 1.52;
  }

  .hero-arrow {
    bottom: 21px;
    width: 34px;
    height: 34px;
  }

  .hero-arrow-prev {
    left: 26px;
  }

  .hero-arrow-next {
    right: 26px;
  }

  .scroll-cue {
    bottom: 17px;
    font-size: 12px;
    gap: 5px;
  }

  .mouse-icon {
    width: 20px;
    height: 32px;
    border-width: 3px;
  }
}

@media (min-width: 1024px) {
  .mobile-quick-links {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

.discover-section {
  background: #101010;
  padding: 53px 0 0;
}

.section-heading h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.discover-slider {
  margin-top: 47px;
  overflow: hidden;
}

.discover-slider .swiper-wrapper {
  align-items: stretch;
}

.discover-card {
  position: relative;
  display: flex;
  min-height: 170px;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0 26px 22px 25px;
  color: #fff;
  overflow: hidden;
}

.discover-card span {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.discover-card svg {
  position: absolute;
  top: 22px;
  right: 19px;
  width: 48px;
  height: 48px;
}

.discover-card-orange {
  background: #ff914d;
}

.discover-card-coral {
  background: #ff695a;
}

.discover-card-red {
  background: #ee3d35;
}

.discover-card-magenta {
  background: #852464;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 !important;
  border-radius: 999px;
  background: #6a6a6a;
  opacity: 1;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: #e3e3e3;
}

.discover-pagination {
  display: none;
}

.events-section {
  background: #101010;
  padding: 78px 0 67px;
}

.events-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section-all-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 204px;
  min-height: 54px;
  justify-content: center;
  margin-top: 10px;
  border-bottom: 1px solid #ee3d35;
  border-radius: 0 0 30px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.section-all-link svg,
.detail-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.events-desktop-grid {
  display: grid;
  grid-template-columns: 505px 1fr;
  gap: 31px;
  margin-top: 59px;
}

.event-card {
  color: #fff;
}

.event-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card time {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.event-card h3 {
  margin: 17px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.event-card p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-card-featured .event-image-link {
  width: 505px;
  height: 360px;
}

.event-card-featured p {
  max-width: 520px;
}

.event-side-list {
  display: grid;
  gap: 32px;
}

.event-card-horizontal {
  display: grid;
  grid-template-columns: 241px minmax(0, 1fr);
  gap: 23px;
}

.event-card-horizontal .event-image-link {
  width: 241px;
  height: 239px;
}

.event-card-horizontal time {
  margin-top: 0;
}

.event-card-horizontal h3 {
  margin-top: 18px;
}

.event-card-horizontal p {
  max-width: 470px;
}

.event-card-horizontal .detail-link {
  margin-top: 29px;
}

.events-mobile-slider {
  display: none;
}

.flavour-section {
  background: #141414;
  padding: 29px 0 47px;
}

.flavour-slider {
  margin-top: 49px;
  overflow: hidden;
}

.flavour-slider .swiper-wrapper {
  align-items: stretch;
}

.flavour-card {
  color: #fff;
}

.flavour-image-link {
  display: block;
  overflow: hidden;
  height: 400px;
  border-radius: 8px;
  background: #222;
}

.flavour-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavour-card h3 {
  margin: 20px 0 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.flavour-card p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.flavour-card .detail-link {
  margin-top: 23px;
}

.flavour-pagination {
  display: none;
}

.entertainment-section {
  background: #101010;
  padding: 79px 0 91px;
}

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 30px;
  margin-top: 49px;
}

.entertainment-card {
  grid-column: span 5;
}

.entertainment-card-wide {
  grid-column: span 7;
}

.entertainment-card {
  position: relative;
  display: block;
  min-height: 258px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  isolation: isolate;
}

.entertainment-card-wide {
  min-height: 258px;
}

.entertainment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

.entertainment-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entertainment-card span,
.entertainment-card h2,
.entertainment-card svg {
  position: absolute;
  z-index: 2;
}

.entertainment-card span,
.entertainment-card h2 {
  left: 41px;
  bottom: 36px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.entertainment-card h2 {
  margin: 0;
}

.entertainment-card svg {
  right: 37px;
  bottom: 37px;
  width: 32px;
  height: 32px;
}

.pet-section {
  background: #101010;
}

.pet-slider {
  position: relative;
  width: 100%;
  height: 590px;
  overflow: hidden;
}

.pet-slide {
  position: relative;
  height: 590px;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.pet-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}

.pet-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.pet-content {
  position: absolute;
  z-index: 2;
  top: 171px;
  left: 50%;
  width: min(100% - 40px, 760px);
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.pet-icon {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  color: #fff;
}

.pet-content h2,
.pet-title {
  margin: 0;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.pet-content > p:not(.pet-title) {
  margin: 16px 0 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.22;
}

.pet-pagination {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: auto !important;
  bottom: 51px !important;
  width: 100%;
}

.site-footer {
  background: #101010;
  color: #fff;
}

.footer-main {
  padding: 67px 0 62px;
}

.footer-container {
  width: min(100% - 184px, 1257px);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.78fr 1fr;
  gap: 80px;
}

.footer-logo {
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin-bottom: 25px;
}

.footer-contact address,
.footer-phone {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.38;
}

.footer-phone {
  display: inline-block;
  margin-top: 29px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 244px;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #4bd45b;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.whatsapp-link svg {
  width: 22px;
  height: 22px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 25px;
}

.footer-nav p {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-bottom {
  position: relative;
  min-height: 264px;
  overflow: hidden;
  background: linear-gradient(106deg, #ff9445 0%, #f46d5f 50%, #7b1767 100%);
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: -29px;
  width: max-content;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(190px, 19vw, 272px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.footer-bottom-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: 44px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
}

.social-links svg {
  width: 29px;
  height: 29px;
}

.store-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 31px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  min-width: 179px;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 7px;
  color: #fff;
}

.store-badge svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  font-size: 21px;
  font-weight: 700;
  line-height: 0.95;
}

.store-badge small {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.footer-bottom-inner p {
  margin: 31px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1023px) {
  .content-container {
    width: auto;
    margin-inline: 20px;
  }

  .discover-section {
    padding-top: 25px;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .section-heading p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
  }

  .discover-slider {
    margin-top: 21px;
    overflow: hidden;
  }

  .discover-card {
    min-height: 169px;
    border-radius: 8px;
    padding: 0 25px 25px;
  }

  .discover-card span {
    font-size: 29px;
    line-height: 1.26;
  }

  .discover-card svg {
    top: 22px;
    right: 19px;
    width: 50px;
    height: 50px;
  }

  .discover-pagination {
    display: flex;
    margin-top: 24px;
  }

  .events-section {
    padding: 42px 0 38px;
  }

  .events-heading-row {
    display: block;
  }

  .section-all-link {
    display: none;
  }

  .events-desktop-grid {
    display: none;
  }

  .events-mobile-slider {
    display: block;
    margin-top: 31px;
    overflow: hidden;
  }

  .event-card-mobile .event-image-link {
    width: 100%;
    height: 248px;
  }

  .event-card time {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.2;
  }

  .event-card h3 {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.2;
  }

  .event-card p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .detail-link {
    margin-top: 18px;
    gap: 10px;
    font-size: 15px;
  }

  .events-pagination {
    margin-top: 19px;
  }
}

@media (max-width: 1279px) {
  .content-container {
    width: auto;
    margin-inline: 40px;
  }

  .discover-section {
    padding-top: 40px;
  }

  .discover-slider {
    overflow: hidden;
  }

  .discover-pagination {
    display: flex;
    margin-top: 24px;
  }

  .events-section {
    padding-top: 58px;
  }

  .events-heading-row {
    display: block;
  }

  .section-all-link {
    display: none;
  }

  .events-desktop-grid {
    display: none;
  }

  .events-mobile-slider {
    display: block;
    margin-top: 34px;
    overflow: hidden;
  }

  .event-card-mobile .event-image-link {
    width: 100%;
    height: clamp(248px, 42vw, 430px);
  }

  .flavour-section {
    padding: 58px 0 44px;
  }

  .flavour-slider {
    margin-top: 32px;
  }

  .flavour-pagination {
    display: flex;
    margin-top: 26px;
  }

  .entertainment-section {
    padding: 59px 0 70px;
  }

  .entertainment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
  }

  .entertainment-card,
  .entertainment-card-wide {
    min-height: clamp(220px, 28vw, 320px);
  }

  .pet-slider,
  .pet-slide {
    height: clamp(520px, 50vw, 590px);
  }

  .pet-content {
    top: clamp(120px, 14vw, 171px);
  }

  .footer-container {
    width: auto;
    margin-inline: 40px;
  }

  .footer-grid {
    gap: 46px;
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .footer-wordmark {
    font-size: clamp(150px, 21vw, 250px);
  }
}

@media (max-width: 1023px) {
  .content-container {
    margin-inline: 20px;
  }

  .discover-section {
    padding-top: 25px;
  }

  .events-section {
    padding-top: 42px;
  }

  .events-mobile-slider {
    margin-top: 31px;
  }

  .event-card-mobile .event-image-link {
    height: 248px;
  }

  .flavour-section {
    padding: 42px 0 39px;
  }

  .flavour-slider {
    margin-top: 31px;
  }

  .flavour-image-link {
    height: 232px;
  }

  .flavour-card h3 {
    margin-top: 22px;
    font-size: 21px;
  }

  .flavour-card p {
    margin-top: 11px;
    font-size: 16px;
    line-height: 1.45;
  }

  .flavour-card .detail-link {
    margin-top: 18px;
  }

  .flavour-pagination {
    margin-top: 47px;
  }

  .entertainment-section {
    padding: 32px 0 38px;
  }

  .entertainment-grid {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 31px;
  }

  .entertainment-card,
  .entertainment-card-wide {
    min-height: 258px;
  }

  .entertainment-card span,
  .entertainment-card h2 {
    left: 31px;
    bottom: 28px;
    font-size: 27px;
  }

  .entertainment-card svg {
    right: 26px;
    bottom: 31px;
    width: 31px;
    height: 31px;
  }

  .pet-slider,
  .pet-slide {
    height: 590px;
  }

  .pet-slide img {
    object-position: center;
  }

  .pet-content {
    top: 174px;
    width: calc(100% - 40px);
  }

  .pet-icon {
    width: 108px;
    height: 108px;
    margin-bottom: 20px;
  }

  .pet-content h2,
  .pet-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .pet-content > p:not(.pet-title) {
    max-width: 330px;
    margin: 11px auto 0;
    font-size: 24px;
    line-height: 1.32;
  }

  .pet-pagination {
    bottom: 53px !important;
  }

  .footer-main {
    padding: 39px 0 45px;
  }

  .footer-container {
    margin-inline: 20px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 44px;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-contact address,
  .footer-phone {
    font-size: 18px;
    line-height: 1.35;
  }

  .footer-phone {
    display: block;
    margin-top: 20px;
  }

  .whatsapp-link {
    display: inline-flex;
    min-width: 243px;
    min-height: 42px;
    margin-top: 18px;
    font-size: 16px;
  }

  .footer-nav {
    gap: 25px;
  }

  .footer-nav p {
    margin-bottom: 3px;
    font-size: 19px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .footer-bottom {
    min-height: 265px;
  }

  .footer-wordmark {
    left: 50%;
    bottom: -15px;
    font-size: 96px;
    line-height: 1;
  }

  .footer-bottom-inner {
    padding-top: 43px;
  }

  .social-links {
    gap: 23px;
  }

  .store-links {
    gap: 6px;
    margin-top: 28px;
  }

  .store-badge {
    min-width: 0;
    width: 138px;
    height: 47px;
    padding: 0 8px;
    gap: 5px;
  }

  .store-badge svg {
    width: 29px;
    height: 29px;
  }

  .store-badge span {
    font-size: 17px;
  }

  .store-badge small {
    font-size: 8px;
  }

  .footer-bottom-inner p {
    margin-top: 39px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .entertainment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .entertainment-card,
  .entertainment-card-wide {
    min-height: clamp(220px, 28vw, 320px);
  }
}

@media (min-width: 1280px) {
  .discover-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    transform: none !important;
  }

  .discover-slider .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .flavour-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    transform: none !important;
  }

  .flavour-slider .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.reference-preview .mobile-quick-links,
.reference-preview .site-header,
.reference-preview .hero-content,
.reference-preview .hero-arrow,
.reference-preview .scroll-cue {
  opacity: 0;
  pointer-events: none;
}

.reference-preview .hero-slide::after {
  display: none;
}

.inner-page .site-shell {
  background: #101010;
}

.page-header {
  position: relative;
  inset: auto;
  height: 100px;
  background: #151515;
}

.page-header .header-inner {
  height: 100%;
  padding-top: 0;
}

.primary-nav a.is-active,
.mobile-menu-nav a[aria-current="page"] {
  color: #ed5644;
}

.store-main {
  background: #101010;
}

.store-list-section {
  padding: 72px 0 64px;
}

.store-container {
  width: min(100% - 184px, 1257px);
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.store-head {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 37px;
  margin-top: 10px;
}

.store-head h1 {
  margin: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.store-filter {
  display: grid;
  grid-template-columns: minmax(320px, 450px) 212px 212px;
  gap: 20px;
  justify-content: end;
}

.store-search,
.filter-dropdown {
  display: grid;
  align-items: center;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: #101010;
}

.store-search {
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 13px;
  padding: 0 22px;
}

.store-search svg {
  width: 25px;
  height: 25px;
}

.store-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.store-search input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.filter-dropdown {
  position: relative;
}

.filter-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 27px 0 29px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.filter-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.filter-dropdown.is-open {
  border-color: rgba(237, 86, 68, 0.95);
}

.filter-dropdown.is-open .filter-trigger svg {
  transform: rotate(180deg);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.filter-dropdown.is-open .filter-menu {
  display: grid;
}

.filter-menu button {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.filter-menu button:hover,
.filter-menu button.is-selected {
  background: rgba(237, 86, 68, 0.18);
  color: #fff;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 29px;
  margin-top: 59px;
}

.store-no-results {
  display: none;
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.store-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #1f1f1f;
  aspect-ratio: 292 / 341;
  color: #fff;
}

.store-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.1) 43%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.store-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.store-card:hover .store-photo {
  transform: scale(1.035);
}

.store-logo,
.store-floor,
.store-name {
  position: absolute;
  z-index: 2;
}

.store-logo {
  top: 18px;
  left: 18px;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
}

.store-floor {
  top: 36px;
  right: 19px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.store-name {
  left: 19px;
  right: 19px;
  bottom: 25px;
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.store-detail-section {
  padding: 72px 0 48px;
}

.store-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.store-detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 508px) minmax(0, 1fr);
  align-items: center;
  gap: 51px;
  margin-top: 58px;
}

.store-detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
}

.store-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 508 / 590;
  object-fit: cover;
}

.store-detail-content {
  max-width: 631px;
  color: #fff;
}

.store-detail-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 26px;
}

.store-detail-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.36;
}

.store-detail-info {
  display: grid;
  gap: 20px;
  margin: 41px 0 0;
  padding: 0;
  list-style: none;
}

.store-detail-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.store-detail-info svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #ed5644;
}

.store-detail-info a {
  color: inherit;
  text-decoration: none;
}

.store-map {
  margin: 50px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #171717;
}

.store-map img {
  display: block;
  width: 100%;
  height: auto;
}

.flavour-list-section {
  padding: 72px 0 63px;
}

.flavour-filter {
  grid-template-columns: minmax(320px, 450px) 212px;
}

.flavour-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 30px;
  margin-top: 60px;
}

.flavour-list-grid .flavour-card h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.flavour-list-grid .flavour-card .detail-link {
  margin-top: 23px;
}

.event-list-section {
  padding: 72px 0 64px;
}

.event-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.event-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 30px;
  margin-top: 61px;
}

.event-list-card .event-image-link {
  height: 400px;
}

.event-list-card h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.entertainment-list-section {
  padding: 72px 0 64px;
}

.entertainment-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.entertainment-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 61px;
}

.entertainment-list-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
  color: #fff;
  text-decoration: none;
}

.entertainment-list-card img {
  width: 100%;
  aspect-ratio: 614 / 320;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.entertainment-list-card:hover img {
  transform: scale(1.04);
}

.entertainment-list-card h2 {
  margin: 0;
  padding: 22px 24px 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.entertainment-list-card svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 24px 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, transform 0.2s;
}

.entertainment-list-card:hover svg {
  color: #fff;
  transform: translateX(4px);
}

.flavour-detail-section {
  padding: 72px 0 59px;
}

.flavour-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.flavour-detail-hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 60px 0 0;
  height: 400px;
  border-radius: 8px;
  background: #191919;
}

.flavour-detail-hero > img:not(.flavour-detail-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavour-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.flavour-detail-logo {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.flavour-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 61px;
  align-items: start;
  margin-top: 55px;
}

.flavour-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.43;
}

.map-trigger {
  min-width: 210px;
  min-height: 57px;
  margin-top: 38px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid #ed3f32;
  border-radius: 0 0 28px 28px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.flavour-detail-info {
  margin-top: 0;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 32px;
}

.map-modal.is-open {
  display: grid;
  place-items: center;
}

.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.map-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  max-height: min(90vh, 760px);
  overflow: hidden;
  border-radius: 10px;
  background: #151515;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.map-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 22px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-modal-head h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.map-modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.map-modal-close svg {
  width: 22px;
  height: 22px;
}

.map-modal-figure {
  margin: 0;
  overflow: auto;
  max-height: calc(min(90vh, 760px) - 72px);
}

.map-modal-figure img {
  display: block;
  width: 100%;
  min-width: 820px;
  height: auto;
}

.store-promo-section {
  padding: 0 0 69px;
}

.store-promo-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  min-height: 203px;
  padding: 32px 45px 30px 38px;
  border-radius: 8px;
  background: #151515;
  color: #fff;
}

.store-promo-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #fff;
}

.store-promo-icon svg {
  width: 82px;
  height: 82px;
}

.store-promo-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.store-promo-copy time {
  display: block;
  margin-top: 8px;
  color: #ed3f32;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.store-promo-copy p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.43;
}

.related-stores-section {
  padding: 0 0 61px;
}

.related-stores-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.related-stores-head h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.related-stores-head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.section-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  min-height: 60px;
  padding: 0 29px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(11, 11, 11, 0.96))
      padding-box,
    linear-gradient(
        128deg,
        rgba(255, 255, 255, 0.52) 0%,
        rgba(255, 255, 255, 0.22) 51%,
        rgba(237, 86, 68, 0.72) 100%
      )
      border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.36);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.section-link span {
  font-size: 27px;
  line-height: 0;
}

.related-stores-slider {
  width: 100%;
  overflow: hidden;
}

.related-stores-slider .swiper-wrapper {
  align-items: stretch;
}

.related-stores-slider .swiper-slide {
  height: auto;
}

.related-stores-slider .store-card {
  width: 100%;
}

.related-stores-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.related-stores-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.32);
  opacity: 1;
}

.related-stores-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 1279px) {
  .store-container {
    width: auto;
    margin-inline: 40px;
  }

  .store-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .store-filter {
    grid-template-columns: minmax(280px, 1fr) 210px 210px;
    justify-content: stretch;
  }

  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .store-detail-hero {
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
    gap: 36px;
  }

  .store-detail-content p,
  .store-detail-info li {
    font-size: 19px;
  }

  .flavour-filter {
    grid-template-columns: minmax(280px, 1fr) 210px;
    justify-content: stretch;
  }

  .flavour-list-grid {
    gap: 42px 24px;
  }

  .event-list-grid {
    gap: 42px 24px;
  }

  .entertainment-list-grid {
    gap: 24px;
  }

  .flavour-detail-body {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 36px;
  }

  .flavour-detail-copy p {
    font-size: 19px;
  }
}

@media (max-width: 1023px) {
  .inner-page .page-header {
    top: auto;
    height: 104px;
    margin-top: 35px;
  }

  .inner-page .page-header .header-inner {
    padding: 0 22px;
  }

  .store-list-section {
    padding: 38px 0 52px;
  }

  .store-container {
    margin-inline: 20px;
  }

  .breadcrumb {
    font-size: 15px;
  }

  .store-head h1 {
    font-size: 42px;
  }

  .store-filter {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .flavour-filter {
    grid-template-columns: 1fr;
  }

  .store-search,
  .filter-dropdown {
    min-height: 54px;
  }

  .store-search input,
  .filter-trigger {
    font-size: 17px;
  }

  .filter-trigger {
    min-height: 52px;
    padding-inline: 22px;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .store-logo {
    width: 48px;
    height: 48px;
    top: 15px;
    left: 15px;
  }

  .store-floor {
    top: 30px;
    right: 15px;
    font-size: 18px;
  }

  .store-name {
    left: 15px;
    bottom: 20px;
    font-size: 24px;
  }

  .store-detail-section {
    padding: 38px 0 44px;
  }

  .store-detail-section h1 {
    font-size: 42px;
  }

  .store-detail-hero {
    grid-template-columns: minmax(360px, 508px) minmax(280px, 1fr);
    gap: 28px;
    margin-top: 34px;
  }

  .store-detail-media {
    max-width: none;
  }

  .store-detail-logo {
    width: 160px;
    margin-bottom: 20px;
  }

  .store-detail-content p,
  .store-detail-info li {
    font-size: 18px;
  }

  .store-detail-info {
    gap: 17px;
    margin-top: 28px;
  }

  .store-map {
    margin-top: 36px;
    overflow-x: auto;
  }

  .store-map img {
    width: 900px;
    max-width: none;
  }

  .flavour-list-section {
    padding: 38px 0 52px;
  }

  .flavour-list-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 34px;
  }

  .flavour-list-grid .flavour-image-link {
    height: auto;
    aspect-ratio: 614 / 400;
  }

  .event-list-section {
    padding: 38px 0 52px;
  }

  .event-list-section h1 {
    font-size: 42px;
  }

  .event-list-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 34px;
  }

  .event-list-card .event-image-link {
    height: auto;
    aspect-ratio: 614 / 400;
  }

  .entertainment-list-section {
    padding: 38px 0 52px;
  }

  .entertainment-list-section h1 {
    font-size: 42px;
  }

  .entertainment-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .flavour-detail-section {
    padding: 38px 0 52px;
  }

  .flavour-detail-section h1 {
    font-size: 42px;
  }

  .flavour-detail-hero {
    height: auto;
    aspect-ratio: 1258 / 400;
    margin-top: 34px;
  }

  .flavour-detail-logo {
    width: 142px;
    height: 142px;
  }

  .flavour-detail-body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
  }

  .flavour-detail-copy p {
    font-size: 18px;
  }

  .map-trigger {
    margin-top: 28px;
  }

  .map-modal {
    padding: 18px;
  }

  .map-modal-panel {
    max-height: 88vh;
  }

  .map-modal-figure {
    max-height: calc(88vh - 72px);
  }

  .store-promo-section {
    padding-bottom: 52px;
  }

  .store-promo-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 28px;
    min-height: auto;
    padding: 28px;
  }

  .store-promo-icon {
    width: 74px;
    height: 74px;
  }

  .store-promo-icon svg {
    width: 68px;
    height: 68px;
  }

  .store-promo-copy h2 {
    font-size: 23px;
  }

  .store-promo-copy p {
    font-size: 17px;
  }

  .related-stores-section {
    padding-bottom: 52px;
  }

  .related-stores-head {
    margin-bottom: 34px;
  }

  .related-stores-head h2 {
    font-size: 34px;
  }

  .related-stores-head p {
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .store-promo-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 22px 27px;
  }

  .store-promo-icon {
    width: 64px;
    height: 64px;
  }

  .store-promo-icon svg {
    width: 58px;
    height: 58px;
  }

  .related-stores-head {
    display: block;
  }

  .related-stores-head .section-link {
    display: none;
  }

  .related-stores-slider {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .store-detail-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store-detail-media {
    max-width: 508px;
  }
}

@media (max-width: 520px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-detail-section h1 {
    font-size: 40px;
  }

  .store-detail-content p {
    line-height: 1.45;
  }

  .store-detail-info li {
    align-items: flex-start;
    line-height: 1.25;
  }

  .store-map img {
    width: 760px;
  }

  .store-promo-section {
    padding-bottom: 44px;
  }

  .store-promo-copy h2 {
    font-size: 21px;
  }

  .store-promo-copy p {
    font-size: 16px;
  }

  .related-stores-head h2 {
    font-size: 30px;
  }

  .related-stores-head p {
    font-size: 16px;
  }

  .flavour-detail-section h1 {
    font-size: 40px;
  }

  .flavour-detail-hero {
    aspect-ratio: 343 / 260;
  }

  .flavour-detail-logo {
    width: 124px;
    height: 124px;
  }

  .flavour-detail-copy p {
    font-size: 16px;
  }

  .map-trigger {
    width: 100%;
    justify-content: center;
  }

  .map-modal {
    padding: 10px;
  }

  .map-modal-head {
    min-height: 62px;
    padding-inline: 18px 14px;
  }

  .map-modal-head h2 {
    font-size: 18px;
  }

  .map-modal-figure {
    max-height: calc(88vh - 62px);
  }

  .map-modal-figure img {
    min-width: 760px;
  }
}

.event-detail-section {
  padding: 72px 0 64px;
}

.event-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.event-detail-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
}

.event-detail-hero img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.event-detail-content {
  margin-top: 43px;
  color: #fff;
}

.event-detail-content time {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.event-detail-content h2 {
  margin: 28px 0 0;
  color: #fff;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.2;
}

.event-detail-content p {
  margin: 24px 0 0;
  max-width: 1258px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.52;
}

@media (max-width: 1023px) {
  .event-detail-section {
    padding: 38px 0 52px;
  }

  .event-detail-section h1 {
    font-size: 42px;
  }

  .event-detail-hero {
    margin-top: 34px;
  }

  .event-detail-hero img {
    height: auto;
    aspect-ratio: 1258 / 430;
  }

  .event-detail-content {
    margin-top: 32px;
  }

  .event-detail-content time {
    font-size: 18px;
  }

  .event-detail-content h2 {
    margin-top: 20px;
    font-size: 26px;
  }

  .event-detail-content p {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  .event-detail-section h1 {
    font-size: 40px;
  }

  .event-detail-hero img {
    aspect-ratio: 343 / 230;
  }

  .event-detail-content p {
    font-size: 16px;
  }
}

.entertainment-list-section {
  padding: 72px 0 64px;
}

.entertainment-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.entertainment-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 30px;
  margin-top: 61px;
}

.entertainment-list-card {
  min-height: 320px;
  aspect-ratio: 614 / 320;
}

.entertainment-list-card h2 {
  left: 40px;
  bottom: 36px;
  max-width: calc(100% - 120px);
  overflow-wrap: anywhere;
}

.entertainment-list-card svg {
  right: 35px;
  bottom: 38px;
}

@media (max-width: 1023px) {
  .entertainment-list-section {
    padding: 38px 0 52px;
  }

  .entertainment-list-section h1 {
    font-size: 42px;
  }

  .entertainment-list-grid {
    gap: 24px;
    margin-top: 34px;
  }

  .entertainment-list-card {
    min-height: 250px;
  }

  .entertainment-list-card h2 {
    left: 28px;
    bottom: 26px;
    max-width: calc(100% - 92px);
    font-size: 28px;
  }

  .entertainment-list-card svg {
    right: 25px;
    bottom: 28px;
  }
}

@media (max-width: 767px) {
  .entertainment-list-grid {
    grid-template-columns: 1fr;
  }

  .entertainment-list-card {
    min-height: 258px;
  }
}

@media (max-width: 520px) {
  .entertainment-list-section h1 {
    font-size: 40px;
  }

  .entertainment-list-grid {
    gap: 21px;
    margin-top: 31px;
  }

  .entertainment-list-card {
    min-height: 258px;
  }

  .entertainment-list-card h2 {
    left: 31px;
    bottom: 28px;
    font-size: 27px;
  }

  .entertainment-list-card svg {
    right: 26px;
    bottom: 31px;
    width: 31px;
    height: 31px;
  }
}

/* Entertainment list needs to mask text baked into temporary image assets. */
.entertainment-list-grid {
  overflow: visible;
}

.entertainment-list-card {
  min-height: 0;
  height: auto;
  aspect-ratio: 614 / 320;
}

.entertainment-list-card::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.34) 48%,
    rgba(0, 0, 0, 0.94) 100%
  );
}

.entertainment-list-card img {
  transform: scale(1.18);
  transform-origin: center center;
}

.entertainment-list-card h2 {
  z-index: 3;
  color: #fff;
  text-shadow: none;
}

.entertainment-list-card svg {
  z-index: 3;
}

@media (max-width: 1279px) and (min-width: 768px) {
  .entertainment-list-grid {
    gap: 36px 24px;
  }

  .entertainment-list-card h2 {
    left: 32px;
    bottom: 30px;
    font-size: clamp(26px, 2.6vw, 34px);
  }

  .entertainment-list-card svg {
    right: 28px;
    bottom: 31px;
  }
}

@media (max-width: 767px) {
  .entertainment-list-card {
    aspect-ratio: 353 / 258;
  }
}

.cinema-list-section {
  padding: 72px 0 68px;
}

.cinema-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.cinema-venue {
  display: grid;
  grid-template-columns: minmax(360px, 508px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  margin-top: 58px;
}

.cinema-venue-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #161616;
}

.cinema-venue-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 508 / 550;
  object-fit: cover;
}

.cinema-venue-content {
  min-width: 0;
  padding-block: 12px;
}

.cinema-venue-content > p {
  max-width: 680px;
  margin: 0 0 45px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.cinema-venue-content strong {
  color: #ed5644;
  font-weight: 600;
}

.cinema-info {
  gap: 20px;
  margin-top: 0;
}

.cinema-info a {
  overflow-wrap: anywhere;
}

.cinema-venue-content .map-trigger {
  margin-top: 42px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 59px 28px;
  margin-top: 49px;
}

.movie-card {
  min-width: 0;
}

.movie-poster-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
  aspect-ratio: 365 / 520;
}

.movie-poster-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .movie-poster-link img {
  transform: scale(1.03);
}

.movie-card h2 {
  margin: 24px 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.movie-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.movie-card .detail-link {
  margin-top: 20px;
}

@media (max-width: 1279px) {
  .cinema-venue {
    grid-template-columns: minmax(320px, 44%) minmax(0, 1fr);
    gap: 36px;
  }

  .cinema-list-section h1 {
    font-size: clamp(42px, 5vw, 56px);
  }

  .cinema-venue-content > p {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .cinema-info {
    gap: 15px;
  }

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

@media (max-width: 900px) {
  .cinema-venue {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .cinema-venue-media {
    max-width: 508px;
  }

  .cinema-venue-content {
    padding-block: 0;
  }
}

@media (max-width: 767px) {
  .cinema-list-section {
    padding: 38px 0 54px;
  }

  .cinema-list-section h1 {
    font-size: 42px;
  }

  .cinema-venue-media {
    max-width: none;
  }

  .cinema-venue-media img {
    aspect-ratio: 343 / 365;
  }

  .cinema-venue-content > p {
    font-size: 17px;
  }

  .movie-grid {
    gap: 42px 22px;
    margin-top: 42px;
  }

  .movie-card h2 {
    font-size: 24px;
  }

  .movie-card p {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cinema-list-section h1 {
    font-size: 38px;
  }

  .cinema-venue-content .map-trigger {
    width: 100%;
    justify-content: center;
  }
}

.cinema-detail-section {
  padding: 72px 0 68px;
}

.cinema-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.cinema-detail-cover {
  position: relative;
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  aspect-ratio: 1258 / 480;
}

.cinema-detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.52));
}

.cinema-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center 24%; */
  /* transform: scale(1.5); */
}

.trailer-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.trailer-play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.cinema-detail-content {
  max-width: 1040px;
  margin-top: 39px;
  color: #fff;
}

.movie-genres {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  font-weight: 600;
}

.movie-summary {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.45;
}

.movie-meta {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.movie-meta div {
  display: flex;
  gap: 6px;
  min-width: 0;
}

.movie-meta dt {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 700;
}

.movie-meta dd {
  margin: 0;
  min-width: 0;
}

.ticket-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 204px;
  margin-top: 58px;
  padding: 20px 22px 21px;
  border: 0;
  border-bottom: 1px solid #ed3f32;
  border-radius: 0 0 28px 28px;
  color: #fff;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.ticket-button svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #101010;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px 0 24px;
}

.video-modal-head h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.video-modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.video-modal-close svg {
  width: 22px;
  height: 22px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1023px) {
  .cinema-detail-section {
    padding: 38px 0 54px;
  }
  .cinema-detail-section h1 {
    font-size: 44px;
  }
  .cinema-detail-cover {
    margin-top: 38px;
  }
  .movie-summary {
    font-size: 23px;
  }
  .movie-meta {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cinema-detail-section h1 {
    font-size: 42px;
  }
  .cinema-detail-cover {
    aspect-ratio: 343 / 220;
  }
  .cinema-detail-cover img {
    transform: scale(1.65);
  }
  .trailer-play {
    width: 70px;
    height: 70px;
  }
  .cinema-detail-content {
    margin-top: 30px;
  }
  .movie-genres {
    font-size: 17px;
  }
  .movie-summary {
    font-size: 20px;
  }
  .movie-meta {
    gap: 10px;
    font-size: 16px;
  }
  .movie-meta div {
    display: block;
  }
  .movie-meta dt,
  .movie-meta dd {
    display: inline;
  }
  .ticket-button {
    width: 100%;
    margin-top: 40px;
  }
  .video-modal {
    padding: 12px;
  }
}

.usla-list-section {
  padding: 72px 0 68px;
}

.usla-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.usla-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #181818;
  aspect-ratio: 1258 / 430;
}

.usla-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.usla-copy {
  display: grid;
  gap: 39px;
  margin-top: 48px;
  max-width: 1240px;
}

.usla-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.usla-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.usla-card {
  min-width: 0;
}

.usla-card-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eee6d4;
  aspect-ratio: 1 / 1.16;
}

.usla-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.usla-card:hover .usla-card-image img {
  transform: scale(1.035);
}

.usla-card h2 {
  margin: 25px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.usla-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.usla-card .detail-link {
  margin-top: 21px;
}

@media (max-width: 1279px) {
  .usla-copy p {
    font-size: 20px;
  }

  .usla-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
}

@media (max-width: 767px) {
  .usla-list-section {
    padding: 38px 0 54px;
  }

  .usla-list-section h1 {
    font-size: 42px;
  }

  .usla-hero {
    margin-top: 38px;
    aspect-ratio: 343 / 245;
  }

  .usla-copy {
    gap: 28px;
    margin-top: 34px;
  }

  .usla-copy p {
    font-size: 17px;
    line-height: 1.5;
  }

  .usla-grid {
    gap: 42px 22px;
    margin-top: 38px;
  }

  .usla-card h2 {
    font-size: 25px;
  }

  .usla-card p {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .usla-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .usla-list-section h1 {
    font-size: 40px;
  }
}

.usla-detail-section {
  padding: 72px 0 68px;
}

.usla-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.usla-detail-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eee6d4;
  aspect-ratio: 1258 / 450;
}

.usla-detail-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.usla-detail-content {
  max-width: 1120px;
  margin-top: 49px;
}

.usla-detail-kicker {
  margin: 0 0 33px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 20px;
  font-weight: 600;
}

.usla-detail-content p {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.45;
}

.usla-detail-content p + p {
  margin-top: 28px;
}

.usla-detail-date {
  color: #f6bf16 !important;
  font-size: 20px !important;
  line-height: 1.7 !important;
}

.usla-detail-button {
  margin-top: 50px;
}

@media (max-width: 1023px) {
  .usla-detail-section {
    padding: 38px 0 54px;
  }

  .usla-detail-section h1 {
    font-size: 44px;
  }

  .usla-detail-hero {
    margin-top: 38px;
  }

  .usla-detail-content {
    margin-top: 36px;
  }

  .usla-detail-content p {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .usla-detail-section h1 {
    font-size: 40px;
  }

  .usla-detail-hero {
    aspect-ratio: 343 / 245;
  }

  .usla-detail-kicker {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .usla-detail-content p {
    font-size: 20px;
  }

  .usla-detail-date {
    font-size: 18px !important;
  }

  .usla-detail-button {
    width: 100%;
    margin-top: 40px;
  }
}

.jj-list-section {
  padding: 72px 0 68px;
}

.jj-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.jj-hero {
  position: relative;
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 1258 / 430;
}

.jj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 22%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.jj-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jj-hero figcaption {
  position: absolute;
  left: 49px;
  bottom: 56px;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.28;
}

.jj-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.jj-card {
  min-width: 0;
}

.jj-card-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #181818;
  aspect-ratio: 1 / 1.16;
}

.jj-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.jj-card:hover .jj-card-image img {
  transform: scale(1.035);
}

.jj-card h2 {
  margin: 25px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.jj-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.jj-card .detail-link {
  margin-top: 21px;
}

@media (max-width: 1279px) {
  .jj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .jj-hero figcaption {
    left: 38px;
    bottom: 42px;
    max-width: 560px;
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .jj-list-section {
    padding: 38px 0 54px;
  }

  .jj-list-section h1 {
    font-size: 42px;
  }

  .jj-hero {
    margin-top: 38px;
    aspect-ratio: 343 / 245;
  }

  .jj-hero figcaption {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: none;
    font-size: 15px;
    line-height: 1.34;
  }

  .jj-grid {
    gap: 42px 22px;
    margin-top: 38px;
  }

  .jj-card h2 {
    font-size: 25px;
  }

  .jj-card p {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .jj-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .jj-list-section h1 {
    font-size: 40px;
  }
}

.imagineer-list-section {
  padding: 72px 0 68px;
}

.imagineer-list-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.imagineer-hero {
  position: relative;
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 1258 / 430;
}

.imagineer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.imagineer-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.imagineer-hero figcaption {
  position: absolute;
  left: 49px;
  bottom: 56px;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.28;
}

.imagineer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.imagineer-card {
  min-width: 0;
}

.imagineer-card-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #20286a;
  aspect-ratio: 1 / 1.16;
}

.imagineer-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.imagineer-card:hover .imagineer-card-image img {
  transform: scale(1.035);
}

.imagineer-card h2 {
  margin: 25px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imagineer-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.imagineer-card .detail-link {
  margin-top: 21px;
}

@media (max-width: 1279px) {
  .imagineer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .imagineer-hero figcaption {
    left: 38px;
    bottom: 42px;
    max-width: 560px;
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .imagineer-list-section {
    padding: 38px 0 54px;
  }

  .imagineer-list-section h1 {
    font-size: 42px;
  }

  .imagineer-hero {
    margin-top: 38px;
    aspect-ratio: 343 / 245;
  }

  .imagineer-hero figcaption {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: none;
    font-size: 15px;
    line-height: 1.34;
  }

  .imagineer-grid {
    gap: 42px 22px;
    margin-top: 38px;
  }

  .imagineer-card h2 {
    font-size: 25px;
  }

  .imagineer-card p {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .imagineer-grid {
    grid-template-columns: 1fr;
  }

  .imagineer-card h2 {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

@media (max-width: 520px) {
  .imagineer-list-section h1 {
    font-size: 40px;
  }
}

.imagineer-detail-section {
  padding: 72px 0 68px;
}

.imagineer-detail-section h1 {
  max-width: 1220px;
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.imagineer-detail-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #24328c;
  aspect-ratio: 1258 / 450;
}

.imagineer-detail-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.imagineer-detail-content {
  max-width: 1080px;
  margin-top: 49px;
}

.imagineer-detail-kicker {
  margin: 0 0 33px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 20px;
  font-weight: 600;
}

.imagineer-detail-content p {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.45;
}

.imagineer-detail-button {
  margin-top: 50px;
}

@media (max-width: 1023px) {
  .imagineer-detail-section {
    padding: 38px 0 54px;
  }

  .imagineer-detail-section h1 {
    font-size: 44px;
  }

  .imagineer-detail-hero {
    margin-top: 38px;
  }

  .imagineer-detail-content {
    margin-top: 36px;
  }

  .imagineer-detail-content p {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .imagineer-detail-section h1 {
    font-size: 40px;
  }

  .imagineer-detail-hero {
    aspect-ratio: 343 / 245;
  }

  .imagineer-detail-kicker {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .imagineer-detail-content p {
    font-size: 20px;
  }

  .imagineer-detail-button {
    width: 100%;
    margin-top: 40px;
  }
}

.jj-detail-section {
  padding: 72px 0 68px;
}

.jj-detail-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.jj-detail-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
  aspect-ratio: 1258 / 450;
}

.jj-detail-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.jj-detail-content {
  max-width: 1120px;
  margin-top: 49px;
}

.jj-detail-kicker {
  margin: 0 0 39px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  font-weight: 600;
}

.jj-detail-content p {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.45;
}

.jj-detail-content p + p {
  margin-top: 30px;
}

.jj-detail-hours {
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 21px !important;
  line-height: 1.65 !important;
}

.jj-detail-hours span {
  color: #fff;
}

.jj-detail-note {
  color: #ed3f32 !important;
  font-size: 21px !important;
  line-height: 1.4 !important;
}

.jj-detail-button {
  margin-top: 50px;
}

@media (max-width: 1023px) {
  .jj-detail-section {
    padding: 38px 0 54px;
  }

  .jj-detail-section h1 {
    font-size: 44px;
  }

  .jj-detail-hero {
    margin-top: 38px;
  }

  .jj-detail-content {
    margin-top: 36px;
  }

  .jj-detail-content p {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .jj-detail-section h1 {
    font-size: 40px;
  }

  .jj-detail-hero {
    aspect-ratio: 343 / 245;
  }

  .jj-detail-kicker {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .jj-detail-content p {
    font-size: 20px;
  }

  .jj-detail-hours,
  .jj-detail-note {
    font-size: 18px !important;
  }

  .jj-detail-button {
    width: 100%;
    margin-top: 40px;
  }
}

.services-section {
  padding: 72px 0 68px;
}

.services-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 61px;
  align-items: start;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.service-accordion-item {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #171717;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.service-accordion-item.is-open {
  border-color: #ed3f32;
  background: #121212;
  box-shadow: 38px 0 78px rgba(237, 63, 50, 0.18);
}

.service-accordion-item h2 {
  margin: 0;
}

.service-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: 117px;
  padding: 28px 34px 28px 37px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-title-wrap {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 19px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.service-icon {
  display: inline-flex;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: rgba(255, 255, 255, 0.48);
}

.service-icon svg {
  display: block;
  width: 43px;
  height: 43px;
}

.service-chevron {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: #fff;
  transition: transform 0.22s ease;
}

.service-accordion-item.is-open .service-chevron {
  transform: rotate(180deg);
}

.service-accordion-panel {
  padding: 0 40px 45px 40px;
}

.service-accordion-panel p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .services-grid {
    gap: 24px;
  }

  .services-column {
    gap: 24px;
  }

  .service-accordion-trigger {
    min-height: 104px;
    padding-inline: 27px;
  }

  .service-title-wrap {
    gap: 15px;
    font-size: 22px;
  }

  .service-accordion-panel {
    padding-inline: 30px;
  }

  .service-accordion-panel p {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  .services-section {
    padding: 38px 0 54px;
  }

  .services-section h1 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  .services-column {
    gap: 18px;
  }

  .service-accordion-trigger {
    min-height: 86px;
    padding: 21px 22px;
  }

  .service-title-wrap {
    font-size: 20px;
  }

  .service-icon,
  .service-icon svg {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .service-accordion-panel {
    padding: 0 22px 31px 22px;
  }

  .service-accordion-panel p {
    max-width: none;
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .services-section h1 {
    font-size: 40px;
  }

  .service-accordion-trigger {
    gap: 14px;
  }
}

.about-section {
  padding: 72px 0 68px;
}

.about-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-hero {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 1258 / 430;
}

.about-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tabs {
  margin-top: 56px;
}

.about-tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-tab {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.about-tab.is-active,
.about-tab[aria-selected="true"] {
  color: #ed3f32;
}

.about-tab:focus-visible {
  outline: 2px solid #ed3f32;
  outline-offset: 8px;
  border-radius: 4px;
}

.about-tab-select-wrap {
  display: none;
  width: 100%;
}

.about-tab-dropdown {
  width: 100%;
}

.about-tab-dropdown .filter-trigger {
  font-size: 18px;
}

.about-tab-dropdown .filter-menu {
  border-radius: 22px;
}

.about-panels {
  margin-top: 55px;
}

.about-tab-panel[hidden] {
  display: none;
}

.about-tab-panel {
  max-width: 1240px;
}

.about-tab-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.about-tab-panel p + p {
  margin-top: 31px;
}

@media (max-width: 1180px) {
  .about-tabs-list {
    gap: 24px;
  }

  .about-tab {
    font-size: 24px;
  }

  .about-tab-panel p {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 38px 0 54px;
  }

  .about-section h1 {
    font-size: 42px;
  }

  .about-hero {
    margin-top: 38px;
    aspect-ratio: 343 / 245;
  }

  .about-tabs {
    margin-top: 32px;
  }

  .about-tabs-list {
    display: none;
  }

  .about-tab-select-wrap {
    display: block;
  }

  .about-panels {
    margin-top: 32px;
  }

  .about-tab-panel p {
    font-size: 17px;
    line-height: 1.56;
  }

  .about-tab-panel p + p {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .about-section h1 {
    font-size: 40px;
  }
}

.faq-section {
  padding: 72px 0 68px;
}

.faq-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 26px;
  margin-top: 60px;
}

.faq-accordion-item {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #171717;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.faq-accordion-item.is-open {
  border-color: #ed3f32;
  background: #151515;
  box-shadow: 38px 0 78px rgba(237, 63, 50, 0.18);
}

.faq-accordion-item h2 {
  margin: 0;
}

.faq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 117px;
  padding: 31px 35px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-accordion-trigger span {
  min-width: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: #fff;
  transition: transform 0.22s ease;
}

.faq-accordion-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-accordion-panel {
  padding: 0 35px 31px;
}

.faq-accordion-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1023px) {
  .faq-section {
    padding: 38px 0 54px;
  }

  .faq-section h1 {
    font-size: 44px;
  }

  .faq-list {
    gap: 20px;
    margin-top: 38px;
  }

  .faq-accordion-trigger {
    min-height: 92px;
    padding: 24px;
  }

  .faq-accordion-trigger span {
    font-size: 22px;
  }

  .faq-accordion-panel {
    padding: 0 24px 28px;
  }

  .faq-accordion-panel p {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .faq-section h1 {
    font-size: 40px;
  }

  .faq-accordion-trigger {
    gap: 16px;
    min-height: 82px;
    padding: 20px;
  }

  .faq-accordion-trigger span {
    font-size: 19px;
  }

  .faq-accordion-panel {
    padding: 0 20px 24px;
  }

  .faq-accordion-panel p {
    font-size: 17px;
  }
}

.info-tabs-list {
  gap: 31px;
}

.info-tab-panel h2 {
  margin: 41px 0 33px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.info-tab-panel ul {
  margin: 33px 0 31px;
  padding-left: 28px;
  color: #ed3f32;
}

.info-tab-panel li {
  margin: 0;
  color: #ed3f32;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.info-tab-panel li + li {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .info-tabs-list {
    gap: 23px;
  }

  .info-tabs-list .about-tab {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .info-tab-panel h2 {
    margin: 34px 0 24px;
    font-size: 23px;
  }

  .info-tab-panel li {
    font-size: 17px;
  }
}

.contact-section {
  padding: 72px 0 78px;
}

.contact-section h1 {
  margin: 11px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-map {
  margin: 60px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e7ecef;
  aspect-ratio: 1010 / 350;
}

.contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin: 50px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.28;
  text-align: center;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-divider {
  height: 1px;
  margin: 45px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  width: min(582px, 100%);
  margin: 48px auto 0;
}

.contact-form h2 {
  margin: 0 0 37px;
  color: #ed3f32;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.contact-fields {
  display: grid;
  gap: 24px;
}

.contact-field,
.contact-topic-dropdown {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #101010;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
}

.contact-field input {
  height: 58px;
  padding: 0 24px;
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
  padding: 24px;
  line-height: 1.45;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder,
.contact-topic-dropdown .filter-trigger span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-topic-dropdown {
  display: grid;
  border-radius: 7px;
}

.contact-topic-dropdown .filter-trigger {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 600;
}

.contact-topic-dropdown .filter-menu {
  border-radius: 14px;
}

.contact-message {
  min-height: 142px;
}

.contact-consents {
  display: grid;
  gap: 20px;
  margin-top: 31px;
}

.contact-check,
.contact-mini-check {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.contact-check input,
.contact-mini-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-check > span,
.contact-mini-check > span {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  background: transparent;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.contact-mini-check > span {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.contact-check input:checked + span,
.contact-mini-check input:checked + span {
  border-color: #ed3f32;
  background: #ed3f32;
  box-shadow: inset 0 0 0 4px #101010;
}

.contact-check em,
.contact-mini-check {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-check-long em {
  line-height: 1.55;
}

.contact-check a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-warning {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 13px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.52;
}

.contact-warning svg {
  width: 25px;
  height: 25px;
  color: #ed3f32;
}

.captcha {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.captcha img {
  width: 244px;
  max-width: 100%;
  height: auto;
}

.contact-preferences {
  margin: 34px 0 0;
  padding: 27px 35px 31px;
  border: 0;
  border-radius: 7px;
  background: #151515;
}

.contact-preferences legend {
  float: left;
  width: 100%;
  margin: 0 0 9px;
  padding: 0;
  color: #ed3f32;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-preferences p {
  clear: both;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.contact-preference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: space-evenly;
}

.contact-mini-check {
  display: grid;
  grid-template-columns: 15px max-content;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.2;
}

.contact-submit {
  left: 50%;
  min-width: 171px;
  margin-top: 53px;
  border-bottom-color: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

@media (max-width: 1023px) {
  .contact-section {
    padding: 38px 0 62px;
  }

  .contact-section h1 {
    font-size: 44px;
  }

  .contact-map {
    margin-top: 38px;
    aspect-ratio: 343 / 210;
  }

  .contact-info {
    margin-top: 34px;
    font-size: 19px;
  }

  .contact-form {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .contact-section h1 {
    font-size: 40px;
  }

  .contact-form h2 {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .contact-fields {
    gap: 18px;
  }

  .contact-info {
    font-size: 17px;
  }

  .contact-check,
  .contact-warning {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .contact-preferences {
    padding: 24px 20px 26px;
  }

  .contact-preference-list {
    display: grid;
    gap: 14px;
  }

  .contact-submit {
    width: auto;
    min-width: 164px;
  }
}

.rental-section {
  padding: 74px 0 90px;
}

.rental-section h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(44px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.rental-form {
  width: min(1038px, 100%);
  margin: 62px auto 0;
}

.rental-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 25px;
}

.rental-fields .contact-field,
.rental-fields .contact-topic-dropdown {
  background: #101010;
}

.rental-message {
  grid-column: 1 / -1;
  min-height: 175px;
}

.rental-message textarea {
  min-height: 173px;
}

.rental-form-bottom {
  width: min(704px, 100%);
  margin: 39px auto 0;
}

.rental-consents {
  margin-top: 0;
}

.rental-submit {
  margin-top: 52px;
}

.rental-feedback {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.rental-feedback--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.rental-feedback--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

@media (max-width: 1023px) {
  .rental-section {
    padding: 48px 0 72px;
  }

  .rental-form {
    margin-top: 46px;
  }

  .rental-fields {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .rental-section h1 {
    font-size: 42px;
  }

  .rental-form {
    margin-top: 38px;
  }

  .rental-fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rental-message {
    min-height: 150px;
  }

  .rental-message textarea {
    min-height: 148px;
  }

  .rental-form-bottom {
    margin-top: 31px;
  }
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 30px;
}

.search-modal.is-open {
  display: grid;
  place-items: start center;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.search-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin-top: 84px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(16, 16, 16, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.search-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px 0;
}

.search-modal-head h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.search-modal-close {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.search-modal-close svg {
  width: 22px;
  height: 22px;
}

.search-modal-form {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  margin: 28px 28px 0;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.search-modal-form svg {
  width: 25px;
  height: 25px;
}

.search-modal-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.search-modal-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.search-result-meta {
  margin: 22px 28px 0;
  color: #ed5644;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.search-result-list {
  display: grid;
  gap: 10px;
  max-height: min(54vh, 460px);
  margin-top: 14px;
  padding: 0 28px 28px;
  overflow-y: auto;
}

.search-result-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #151515;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  border-color: rgba(237, 86, 68, 0.8);
  background: #181818;
  transform: translateY(-1px);
  outline: 0;
}

.search-result-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(237, 86, 68, 0.13);
  color: #ed5644;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.search-result-item:has(small) .search-result-type {
  grid-row: 1 / span 2;
  align-self: center;
}

.search-result-item strong,
.search-result-item small {
  grid-column: 2;
  min-width: 0;
}

.search-result-item strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.search-result-item small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-item svg {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  color: #fff;
}

.search-empty {
  margin: 0;
  padding: 20px 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 600;
}

body.search-open {
  overflow: hidden;
}

.mobile-menu {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.mobile-menu-panel {
  background: linear-gradient(
    180deg,
    rgba(16, 16, 16, 0.94) 0%,
    rgba(16, 16, 16, 0.86) 100%
  );
}

.mobile-menu-nav a {
  border-bottom: 0;
}

.mobile-menu-footer span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
}

.mobile-language-link {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  font-size: 17px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .search-modal {
    padding: 16px;
  }

  .search-modal-panel {
    margin-top: 54px;
    border-radius: 13px;
  }

  .search-modal-head {
    padding: 21px 18px 0;
  }

  .search-modal-head h2 {
    font-size: 25px;
  }

  .search-modal-form {
    min-height: 58px;
    margin: 22px 18px 0;
    padding: 0 16px;
  }

  .search-modal-form input {
    font-size: 16px;
  }

  .search-result-meta {
    margin-inline: 18px;
  }

  .search-result-list {
    padding: 0 18px 22px;
  }

  .search-result-item {
    grid-template-columns: 1fr 24px;
    gap: 5px 12px;
    min-height: 0;
    padding: 14px 15px;
    align-items: start;
  }

  .search-result-type,
  .search-result-item strong,
  .search-result-item small {
    grid-column: 1;
  }

  .search-result-type {
    grid-row: auto;
    align-self: auto;
    justify-self: start;
  }

  .search-result-item strong {
    white-space: normal;
  }

  .search-result-item svg {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }
}

.site-header:not(.page-header) {
  isolation: isolate;
}

.site-header:not(.page-header)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(30, 30, 30, 0.7) 0%,
    rgba(68, 68, 68, 0.33) 60%,
    rgba(102, 102, 102, 0) 100%
  );
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
}

.search-result-list {
  padding: 1px 28px 28px;
}

.search-result-item {
  grid-template-columns: minmax(80px, auto) minmax(0, 1fr) 28px;
  overflow: hidden;
}

.search-result-type {
  min-width: 0;
  max-width: 160px;
}

.mobile-search-results {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(21, 21, 21, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.mobile-search-results.is-visible {
  display: grid;
  gap: 10px;
}

.mobile-search-result-meta {
  color: #ed5644;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-search-result-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 5px 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-search-result-item .search-result-type,
.mobile-search-result-item strong,
.mobile-search-result-item small {
  grid-column: 1;
  min-width: 0;
}

.mobile-search-result-item .search-result-type {
  justify-self: start;
  min-height: 26px;
  padding: 0 11px;
  font-size: 12px;
}

.mobile-search-result-item strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
}

.mobile-search-result-item small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-search-result-item svg {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 22px;
  height: 22px;
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .header-inner {
    padding-inline: 22px;
  }

  .brand-link,
  .brand-mark {
    width: 108px;
  }

  .primary-nav {
    gap: clamp(18px, 2.1vw, 30px);
    margin-left: 24px;
  }

  .primary-nav a {
    font-size: 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .icon-button,
  .language-button {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .site-header {
    top: 0;
    height: 96px;
  }

  .header-inner {
    padding: 20px 24px 0;
  }

  .brand-link,
  .brand-mark {
    width: 118px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-quick-links {
    display: none;
  }

  .mobile-menu.is-open {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .search-result-list {
    padding: 1px 18px 22px;
  }
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

input[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
}

.mobile-search-results.is-visible {
  max-height: min(54svh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 10px;
}

.mobile-search-results::-webkit-scrollbar {
  width: 4px;
}

.mobile-search-results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mobile-search-results::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-height: 780px) {
  .mobile-search-results.is-visible {
    max-height: 42svh;
  }
}

.site-header.home-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  isolation: isolate;
}

.site-header.home-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(30, 30, 30, 0.7) 0%,
    rgba(68, 68, 68, 0.33) 60%,
    rgba(102, 102, 102, 0) 100%
  );
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.site-header.page-header {
  position: relative;
  inset: auto;
  background: #151515;
}

.site-header.page-header::before {
  display: none;
}

/* Desktop: tasarımdaki asimetrik yerleşim */
@media (min-width: 1280px) {
  .entertainment-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .entertainment-card {
    grid-column: span 5;
  }

  .entertainment-card-wide {
    grid-column: span 7;
  }

  .entertainment-list-grid .entertainment-card {
    grid-column: auto;
  }
}

/* Ara çözünürlük: mevcut iyi çalışan 2 kolon davranışı */
@media (min-width: 768px) and (max-width: 1279px) {
  .entertainment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entertainment-card,
  .entertainment-card-wide {
    grid-column: auto;
  }
}

/* Mobil: mevcut iyi çalışan tek kolon davranışı */
@media (max-width: 767px) {
  .entertainment-grid {
    grid-template-columns: 1fr;
  }

  .entertainment-card,
  .entertainment-card-wide {
    grid-column: 1 / -1;
  }
}

.mobile-quick-link span img {height: 24px}