/* Home page styles */

@property --hex-r {
  syntax: "<number>";
  inherits: true;
  initial-value: 0.15;
}
@property --hex-a {
  syntax: "<angle>";
  inherits: true;
  initial-value: 30deg;
}
/* Hero background and slide layers */
.hero {
  --ken-burns-scale-factor: 1.075;
  --hero-ken-burns-duration: 6000ms;
  --hero-fade-duration: 1000ms;
  position: relative;
  min-height: 770px;
  overflow: hidden;
  background-color: #1d1420;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 7, 12, 0) 45%, rgba(17, 10, 24, 0.62) 100%), radial-gradient(64% 58% at 74% 84%, rgba(168, 43, 204, 0.34) 0%, rgba(40, 3, 46, 0) 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(42, 3, 45, 0) 10.4%, rgba(42, 3, 45, 0.24) 64.5%), linear-gradient(73deg, rgba(42, 3, 45, 0) 38%, rgba(152, 40, 184, 0.22) 83.9%), var(--slide-image);
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, center;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 50%;
  transition: opacity var(--hero-fade-duration) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero:not(.hero-ready) .hero-bg-current,
.hero.hero-ready .hero-bg.is-visible {
  opacity: 1;
}

.hero-bg[data-zoom="out"] {
  transform: translate3d(0, 0, 0) scale(var(--ken-burns-scale-factor));
}

.hero-bg.is-animating[data-zoom="in"] {
  animation: heroZoomIn var(--hero-ken-burns-duration) 0s ease-in-out forwards;
}

.hero-bg.is-animating[data-zoom="out"] {
  animation: heroZoomOut var(--hero-ken-burns-duration) 0s ease-in-out forwards;
}

.hero-bg-current {
  --slide-image: url("../images/home/hero/slide-1.webp");
}

/* Home page controls */
.slider-controls button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

/* Hero title block and CTA buttons */
.hero-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(100% - 40px, 1200px);
  height: auto;
  text-align: center;
  color: #ffffff;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 20px 24px;
}

.hero-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: #ffffff;
}

.hero-repeat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px 6px;
  border-radius: 4px;
  background: linear-gradient(98deg, #f32cc6 2%, #bb2fd1 52%, #8f35d9 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  transform: rotate(-5.2deg);
}

.hero-heading {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-heading-unit {
  position: relative;
  display: inline-flex;
}

.hero-heading-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 72px;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  animation: heroTitleSlideUp 700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

.hero-heading-glow {
  position: absolute;
  inset: 0;
  color: rgba(194, 27, 181, 0.6);
  filter: blur(15px);
}

.hero-heading-row2 {
  display: contents;
}

.hero-face {
  width: clamp(48px, 6vw, 75px);
  height: clamp(48px, 6vw, 75px);
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(194, 27, 181, 0.7)) drop-shadow(0 0 28px rgba(194, 27, 181, 0.5));
  animation: heroTitleSlideUp 700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

.hero-actions {
  position: relative;
  left: auto;
  top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 0;
  transform: none;
  animation: heroActionsFadeIn 700ms cubic-bezier(0.22, 1, 0.36, 1) 400ms both;
  flex-wrap: wrap;
}

.hero-title .hero-actions {
  display: flex;
  align-items: center;
}

.hero-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  background: transparent;
  letter-spacing: -0.5px;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  flex: 0 1 auto;
}

.hero-pill-solid {
  width: auto;
  padding: 0 32px;
  border: 0;
  border-radius: 28px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: #111111;
  background: #ffffff;
}

.hero-pill:nth-of-type(2) {
  width: auto;
}

.hero-pill:nth-of-type(3) {
  width: auto;
}

.hero-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  transform-origin: center;
}

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

.hero-pill svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.33333;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-pill:not(.hero-pill-solid):hover {
  color: #1d1420;
  background: #ffffff;
}

/* Slider controls, chat button, and scroll cue */
.slider-controls {
  position: absolute;
  left: 58px;
  bottom: 44px;
  z-index: 2;
  display: flex;
  gap: 30px;
}

.slider-controls button {
  width: 34px;
  height: 34px;
  color: #ffffff;
  transition:
    transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 180ms ease;
}

.slider-controls button:hover {
  transform: scale(1.12);
  opacity: 0.8;
}

.slider-controls button:active {
  transform: scale(0.95);
}

.slider-controls svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 64px;
  height: 70px;
  color: #ffffff;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 100px;
}

.scroll-cue span::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
  animation: mouseDot 1.55s ease-in-out infinite;
}

.scroll-cue small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.7px;
  text-align: center;
}

/* Events section layout */
.events-section {
  /* Clip horizontally to contain the 100vw rail breakout, but leave the
     vertical axis visible so hover lift shadows aren't cut off. */
  overflow-x: clip;
  padding: 120px 0 120px;
  background: transparent;
}

.events-wrap {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 202px;
  margin-bottom: 46px;
}

.events-copy h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
  color: var(--color-purple);
  text-transform: uppercase;
}

.events-copy p {
  max-width: 932px;
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
}

.events-cta {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 48px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.5px;
  /* Gradient text: clip the pill gradient to the glyphs. */
  background-image: var(--gradient-btn-pill);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
/* Gradient border: a full-gradient layer masked into an even ring on all
   four sides. Follows border-radius exactly and never gaps at the corners. */
.events-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-btn-pill);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.events-cta::after {
  content: none;
}

.events-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(152, 40, 184, 0.28);
}

.events-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.events-rail {
  --events-gutter: max(40px, (100vw - 1280px) / 2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: var(--events-gutter);
  padding-right: var(--events-gutter);
  box-sizing: border-box;
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.events-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.events-dots,
.tenant-offers-dots,
.shop-love-dots {
  display: none;
}

.events-dot,
.tenant-offers-dot,
.shop-love-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(152, 40, 184, 0.22);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.events-dot.is-active,
.tenant-offers-dot.is-active,
.shop-love-dot.is-active {
  width: 24px;
  background: linear-gradient(116.58deg, #9828b8 -5.16%, #f002af 44.26%, #fa5d3e 92.31%, #fed955 137.62%);
}

/* Privileges & Offers section */
.tenant-offers-section {
  overflow: hidden;
  padding: 0px 0 120px;
  background: transparent;
}

.tenant-offers-wrap {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
}

.tenant-offers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.tenant-offers-copy h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
  color: var(--color-purple);
  text-transform: uppercase;
}

.tenant-offers-copy p {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}

.tenant-offers-rail {
  --events-gutter: max(40px, (100vw - 1280px) / 2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 48px;
  padding-left: var(--events-gutter);
  padding-right: var(--events-gutter);
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tenant-offers-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.tenant-offers-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.tenant-offer-card {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  height: 350px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f0f10;
  scroll-snap-align: none;
}

.tenant-offer-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tenant-offer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tenant-offer-card:hover .tenant-offer-overlay {
  opacity: 1;
}

.tenant-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(8px);
  transition: transform 0.25s ease;
}

.tenant-offer-card:hover .tenant-offer-btn {
  transform: translateY(0);
}

/* HCM smiles loyalty section */
.smiles-section {
  overflow: hidden;
  background: #9728b8 url("../images/home/smiles/bg.png") center / cover no-repeat;
}

.smiles-wrap {
  width: min(100% - 80px, 1280px);
  min-height: 580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.smiles-media {
  position: relative;
  z-index: 1;
}

.smiles-media img {
  width: 720px;
  height: auto;
  margin-left: 40px;
  margin-top: 24px;
}

.smiles-content {
  max-width: 580px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.smiles-content h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.smiles-heading-break,
.smiles-body-break {
  display: none;
}

.smiles-content p {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.94);
}

.smiles-content .smiles-highlight {
  margin-top: 0px;
  font-weight: 700;
  color: #ffffff;
}

.smiles-content h3 {
  margin: 24px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.smiles-download {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.smiles-qr {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 2px;
  background: #ffffff;
}

.smiles-badges {
  display: grid;
  gap: 8px;
  align-items: start;
}

.smiles-badges a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 153px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.smiles-badges a:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.smiles-badges img {
  display: block;
  width: 100%;
  height: auto;
}

.smiles-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.smiles-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.smiles-pill svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smiles-pill:hover {
  transform: translateY(-1px);
}

.smiles-pill-solid {
  border-color: #ffffff;
  color: #0e0e12;
  background: #ffffff;
}

.smiles-pill:not(.smiles-pill-solid):hover {
  color: #0e0e12;
  border-color: #ffffff;
  background: #ffffff;
}

/* Tablet and compact desktop adjustments */
@media (max-width: 1180px) {
  .events-section {
    padding-top: 92px;
    padding-bottom: 78px;
  }

  .events-wrap {
    width: min(100% - 64px, 1334px);
  }

  .events-copy h2 {
    font-size: 28px;
  }

  .events-copy p {
    font-size: 15px;
  }

  .event-card {
    flex-basis: 360px;
    width: 360px;
  }

  .event-card h3 {
    font-size: 16px;
  }

  .tenant-offers-section {
    padding-top: 82px;
    padding-bottom: 120px;
  }

  .tenant-offers-wrap {
    width: min(100% - 64px, 1280px);
  }

  .tenant-offers-copy h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .tenant-offers-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .tenant-offers-header {
    align-items: center;
  }

  .tenant-offer-card {
    flex-basis: 260px;
    width: 260px;
    height: 325px;
    border-radius: 22px;
  }

  .smiles-wrap {
    width: min(100% - 64px, 1334px);
    min-height: 0;
    padding: 76px 0;
    gap: 28px;
  }

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

  .smiles-content h3 {
    margin-top: 24px;
    font-size: 17px;
  }

  .smiles-actions {
    margin-top: 20px;
  }

  .smiles-pill {
    height: 46px;
    padding: 0 22px;
    font-size: 17px;
  }

  /* Floor guide → fluid, centred column (interactive building kept) */
  .floor-guide-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100% - 48px, 989px);
    height: auto;
    padding: 56px 0 44px;
    gap: 36px;
  }

  .floor-guide-copy {
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }

  .floor-guide-plan {
    --floor-side-inset: 0%;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: min(100%, 760px);
    height: auto;
    aspect-ratio: 820 / 547;
  }

  .floor-guide-cta {
    position: static;
    transform: none;
    margin: 0;
  }
}

/* Mobile navigation and component sizing */
@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    background-size:
      auto 100%,
      auto 100%,
      auto 100%;
    background-position:
      center top,
      center top,
      center top;
  }

  /* Mobile slider: default first slide (JS swaps the rest) */
  .hero-bg-current {
    --slide-image: url("../images/home/hero/mobile-sliders/Dining.png");
  }

  .hero-title {
    top: auto;
    bottom: 112px;
    width: min(100% - 36px, 100%);
    max-width: 90vw;
    height: auto;
    transform: translateX(-50%);
  }

  .hero-title-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 86px;
    padding: 16px 20px;
    gap: 12px;
  }

  .hero-eyebrow {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-eyebrow-text {
    font-size: 20px;
  }

  .hero-repeat {
    font-size: 12px;
    padding: 9px 16px 8px;
    border-radius: 8px;
  }

  .hero-heading-text {
    font-size: 37px;
  }

  .hero-heading {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hero-heading-row2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-face {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .hero-actions {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    gap: 14px;
    margin: 18px auto 0;
    transform: none;
  }

  .hero-pill,
  .hero-pill-solid,
  .hero-pill:nth-of-type(2),
  .hero-pill:nth-of-type(3) {
    width: 85%;
  }

  .hero-pill-solid {
    border: 0;
    color: inherit;
    background: #ffffff;
  }

  .hero-pill-solid .hero-pill-label {
    background: linear-gradient(116.58deg, #9828b8 -5.16%, #f002af 44.26%, #fa5d3e 92.31%, #fed955 137.62%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-pill span {
    flex: 0 0 auto;
  }

  .hero-pill svg {
    width: 22px;
    height: 22px;
  }

  .expolre_shop_arrow {
    color: #9f33d6;
  }

  .slider-controls {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .events-section {
    padding-top: 78px;
    padding-bottom: 68px;
  }

  .events-wrap {
    width: min(100% - 40px, 1334px);
  }

  .events-header {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
    text-align: center;
  }

  .events-copy h2 {
    font-size: 30px;
  }

  .events-copy p {
    max-width: 680px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }

  .events-cta {
    height: 44px;
    font-size: 13px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .events-track {
    width: max-content;
  }

  .events-rail {
    --events-gutter: 20px;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .event-card {
    flex: 0 0 min(86vw, 360px);
    width: min(86vw, 360px);
    min-height: 0;
    scroll-snap-align: start;
  }

  .event-card > img {
    height: 250px;
  }

  .event-card-body {
    min-height: 206px;
    padding: 24px 18px;
  }

  .event-card h3 {
    font-size: 16px;
  }

  .event-actions {
    flex-wrap: wrap;
  }

  .event-status {
    height: 32px;
    padding: 0 16px;
    font-size: 13px;
  }

  .tenant-offers-section {
    padding-top: 68px;
    padding-bottom: 86px;
  }

  .tenant-offers-wrap {
    width: min(100% - 40px, 1280px);
  }

  .tenant-offers-copy h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .tenant-offers-copy p {
    max-width: 680px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .tenant-offers-copy {
    text-align: center;
  }

  .tenant-offers-header {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .tenant-offers-rail {
    --events-gutter: 20px;
    margin-top: 28px;
    padding-bottom: 4px;
    padding-right: 0;
  }

  .tenant-offers-track {
    gap: 16px;
  }

  .tenant-offer-card {
    flex: 0 0 min(70vw, 250px);
    width: min(70vw, 250px);
    height: calc(min(70vw, 250px) * 1.25);
    border-radius: 24px;
  }

  .smiles-wrap {
    width: min(100% - 64px, 1334px);
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 64px 0;
  }

  .smiles-media {
    order: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .smiles-media img {
    max-height: 380px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .smiles-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .smiles-content h2 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .smiles-heading-break,
  .smiles-body-break {
    display: block;
  }

  .smiles-content p {
    font-size: 15px;
    line-height: 1.45;
  }

  .smiles-content h3 {
    margin-top: 20px;
    font-size: 17px;
  }

  .smiles-download {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .smiles-qr {
    width: 104px;
    height: 104px;
  }

  .smiles-badges a {
    width: auto;
  }

  .smiles-badges img {
    width: auto;
    height: 44px;
  }

  .smiles-actions {
    margin-top: 32px;
    gap: 12px;
    justify-content: center;
  }

  .smiles-pill {
    height: 46px;
    padding: 0 18px;
    font-size: 15px;
  }

  .smiles-pill svg {
    width: 24px;
    height: 24px;
  }
}

/* Entry and motion keyframes */
@keyframes mouseDot {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
  35%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

@keyframes heroZoomIn {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, 0, 0) scale(var(--ken-burns-scale-factor));
  }
}

@keyframes heroZoomOut {
  from {
    transform: translate3d(0, 0, 0) scale(var(--ken-burns-scale-factor));
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroTitleSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-bg.is-animating {
    animation: none;
  }

  .hero-bg {
    transition-duration: 1ms;
  }
}

/* Small phone sizing adjustments */
@media (max-width: 520px) {
  .hero {
    min-height: 720px;
  }

  .hero-title {
    bottom: 100px;
    width: min(100% - 20px, 100%);
  }

  .hero-title-wrap {
    min-height: 70px;
    padding: 8px 20px;
  }

  .hero-actions {
    width: min(100% - 20px, 100%);
    margin-top: 50px;
    gap: 12px;
  }

  .hero-pill {
    height: 52px;
    padding: 0 66px;
    font-size: 13px;
  }

  .hero-pill svg {
    width: 20px;
    height: 20px;
  }

  .events-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .events-wrap {
    width: min(100% - 32px, 358px);
  }

  .events-header {
    gap: 16px;
    margin-bottom: 40px;
  }

  .events-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(100%, 342px);
    max-width: 342px;
  }

  .events-copy h2 {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
  }

  .events-copy p {
    max-width: none;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .events-cta {
    min-width: 124px;
    height: 48px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .events-track {
    gap: 24px;
  }

  .events-rail {
    --events-gutter: max(16px, (100vw - 358px) / 2);
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-left: var(--events-gutter);
    padding-right: 0;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .events-track::after {
    content: "";
    flex: 0 0 var(--events-gutter);
    margin-left: -24px;
  }

  .events-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .event-card {
    flex: 0 0 min(86vw, 360px);
    width: min(86vw, 360px);
    min-height: 467px;
  }

  .event-card > img {
    height: 280px;
  }

  .event-card-body {
    gap: 16px;
    padding: 24px 21px;
  }

  .event-date {
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .event-card h3 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }

  .event-pill {
    width: 157px;
    height: 48px;
    padding: 8px 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .event-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: auto;
  }

  .event-status {
    min-width: 184px;
    min-height: 35px;
    padding: 8px;
    font-size: 16px;
    line-height: 19px;
  }

  .tenant-offers-section {
    padding-top: 0px;
    padding-bottom: 80px;
  }

  .tenant-offers-wrap {
    width: min(100% - 32px, 358px);
  }

  .tenant-offers-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(100%, 342px);
    max-width: 342px;
    margin: 0 auto;
  }

  .tenant-offers-header {
    gap: 16px;
  }

  .tenant-offers-copy h2 {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
  }

  .tenant-offers-copy p {
    max-width: none;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .tenant-offers-rail {
    --events-gutter: max(16px, (100vw - 358px) / 2);
    width: 100vw;
    max-width: none;
    margin: 40px 0 0;
    margin-left: calc(50% - 50vw);
    padding-left: var(--events-gutter);
    padding-right: 0;
    padding-bottom: 0;
  }

  .tenant-offers-track::after {
    content: "";
    flex: 0 0 calc(var(--events-gutter) - 16px);
  }

  .tenant-offers-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .tenant-offers-track {
    gap: 16px;
  }

  .tenant-offer-card {
    flex: 0 0 320px;
    width: 320px;
    height: 400px;
    border-radius: 24px;
  }

  .tenant-offer-overlay {
    opacity: 1;
    padding-bottom: 40px;
  }

  .tenant-offer-btn {
    width: 128px;
    min-width: 128px;
    height: 48px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    transform: none;
  }

  .smiles-wrap {
    width: min(100% - 24px, 1334px);
    gap: 20px;
    padding: 50px 0;
  }

  .smiles-media img {
    max-height: 320px;
  }

  .smiles-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .smiles-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .smiles-content h3 {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .smiles-download {
  }

  .smiles-qr {
    width: 90px;
    height: 90px;
  }

  .smiles-badges img {
    width: auto;
    height: 38px;
  }

  .smiles-actions {
    margin-top: 16px;
    gap: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  .smiles-pill {
    flex: 0 0 auto;
    justify-content: space-between;
    height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .smiles-pill svg {
    width: 20px;
    height: 20px;
  }
}

/* Welcome section */
/* ─── Welcome ─── */
.welcome-section {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
  background: url("../images/home/welcome/Welcome-bg-Desktop.jpg") center / cover no-repeat;
}

.welcome-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.welcome-wrap {
  position: relative;
  z-index: 1;
  max-width: 1440px; /* 1280px grid + 80px side padding each side */
  margin: 0 auto;
  padding: 0 80px;
}

/* Header */
.welcome-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  text-align: center;
}

.welcome-head-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.welcome-head-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.welcome-eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}

.welcome-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Mobile-only heading line breaks (hidden on desktop → single line) */
.welcome-title .wl-br {
  display: none;
}

.welcome-body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}

.welcome-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
  background: #ffffff;
  border-radius: 100px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.welcome-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(17, 7, 23, 0.24);
}

.welcome-cta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category grid */
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.welcome-card {
  display: flex;
  flex-direction: column;
  background: #9728b8;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.welcome-card-photo {
  display: block;
  aspect-ratio: 302 / 240;
  overflow: hidden;
}

.welcome-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 900px) {
  .welcome-wrap {
    padding: 0 40px;
  }

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

  .brands-section {
    padding: 0 0 0px !important;
  }
}

/* Mobile — 2-column grid per mobile Figma (390px frame) */
@media (max-width: 768px) {
  .welcome-section {
    padding: 40px 0 32px;
    background: url("../images/home/welcome/Welcome-bg-Mobile.jpg") center / cover no-repeat;
  }

  .welcome-wrap {
    padding: 0 24px;
  }

  .welcome-head,
  .welcome-head-text,
  .welcome-head-inner {
    gap: 16px;
  }

  .welcome-title {
    font-size: 24px;
    line-height: 28px;
  }

  .welcome-title .wl-br {
    display: inline;
  }

  .welcome-body {
    font-size: 16px;
    line-height: 24px;
  }

  .welcome-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    margin-top: 32px;
  }

  .welcome-card {
    border-radius: 9px;
  }

  .welcome-card-photo {
    aspect-ratio: 175 / 139;
  }

  .welcome-card-label {
    min-height: 36px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 19px;
  }
}

@media (max-width: 480px) {
  .welcome-wrap {
    padding: 0 16px;
  }
}

/* Brands strip */
.brands-section {
  background: transparent;
  padding: 0 0 120px;
  overflow: hidden;
  margin: 0;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brands-scroll 18s linear infinite;
  will-change: transform;
}

.brands-track img {
  height: 150px;
  width: 196.72px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .brands-section {
    padding: 0 0 80px;
  }

  .brands-track {
    gap: 0;
  }

  .brands-track img {
    height: 100px;
    width: 131px;
  }
}

/* Shop everything */
.shop-love-section {
  /* Clip horizontally to contain the 100vw rail breakout, but leave the
     vertical axis visible so hover lift shadows aren't cut off. */
  overflow-x: clip;
  padding: 0px 0 96px;
  padding-bottom: 0;
  background: transparent;
  margin: 0;
}

.shop-love-wrap {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
}

.shop-love-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.shop-love-copy h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.shop-love-copy p {
  margin: 10px 0 0;
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.55;
  color: #444444;
}

.shop-love-cta {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  background-image: var(--gradient-btn-pill);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.shop-love-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-btn-pill);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.shop-love-cta::after {
  content: none;
}

.shop-love-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(152, 40, 184, 0.32);
}

.shop-love-rail {
  /* Matches .tenant-offers-rail alignment: cards start under the 1280px content gutter, then scroll edge-to-edge. */
  --shop-gutter: max(40px, (100vw - 1280px) / 2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
  padding-left: var(--shop-gutter);
  padding-right: var(--shop-gutter);
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-love-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.shop-love-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.shop-love-card {
  flex: 0 0 260px;
  width: 260px;
}

.shop-love-card > a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #e0d8e8;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 220ms ease;
}

.shop-love-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shop-love-card > a:hover img,
.shop-love-card > a:focus-visible img {
  transform: scale(1.04);
}

.shop-love-card > a:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.shop-love-name {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}

.shop-love-level {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #777777;
}

/* Floor guide */
.floor-guide-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #7136ab 0%, #8b298e 100%);
  margin: 120px 0;
}

.floor-guide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floor-guide-wrap {
  position: relative;
  width: min(100%, 1439px);
  height: 850px;
  margin: 0 auto;
}

.floor-guide-copy {
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% - 15px));
  top: 64px;
  width: min(800px, 90%);
  text-align: center;
  color: #ffffff;
}

.floor-guide-copy h2 {
  margin: 0;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: #ffffff;
}

.floor-guide-copy p {
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
}

/* Plan: building image + floor hotspots */
.floor-guide-plan {
  position: absolute;
  left: 307px;
  top: 208px;
  width: 989px;
  height: 547px;
}

/* Building box: left 0% → right (--floor-side-inset) of the plan group. On
   desktop the 17.09% right gap + the plan's left offset centre the building in
   the section; on smaller screens the plan is centred directly and the inset is
   set to 0 so the building fills (and stays centred in) the plan.
   Isolated so the slices' hover z-index stays contained and never rises
   above the floor buttons layer (.floor-guide-floors). */
.floor-guide-building {
  position: absolute;
  left: 0%;
  right: var(--floor-side-inset, 17.09%);
  top: 0;
  bottom: 0;
  isolation: isolate;
}

/* Static mall image — shown only on the simplified mobile layout */
.floor-guide-mobile-img {
  display: none;
}

/* Floor slices: each fills the building box so they stack into one building.
   Hovering a band keeps its slice bright (with an exact pink outline traced
   around the image's shape) and dims the rest. */
.floor-guide-floor-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}

/* Translucent pink wash filling the exact slice shape (masked by the PNG),
   shown on hover so the floor reads as highlighted while the image stays
   visible underneath. */
.floor-guide-floor-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(240, 2, 175, 0.28);
  -webkit-mask: var(--floor-mask) center / 100% 100% no-repeat;
  mask: var(--floor-mask) center / 100% 100% no-repeat;
  transition: opacity 0.3s ease;
}

/* Overlay sits over the full 989×547 plan group; bands are invisible hit zones */
.floor-guide-floors {
  position: absolute;
  inset: 0;
}

/* Floor bands — invisible link hit zones; the highlight is drawn on the image.
   Same horizontal box as the building so the bands line up with the slices. */
.floor-guide-floor-band {
  position: absolute;
  left: 0%;
  right: var(--floor-side-inset, 17.09%);
  cursor: pointer;
  text-decoration: none;
}

/* Hover a band → the matching slice lifts above the stack and gets a hot-pink
   outline traced around its exact (alpha) silhouette. Other floors are left
   untouched (no dimming). */
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="5"]:hover) .floor-guide-floor-img[data-floor="5"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="4"]:hover) .floor-guide-floor-img[data-floor="4"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="3"]:hover) .floor-guide-floor-img[data-floor="3"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="2"]:hover) .floor-guide-floor-img[data-floor="2"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="1"]:hover) .floor-guide-floor-img[data-floor="1"] {
  opacity: 1;
  z-index: 2;
  filter: drop-shadow(2px 0 0 #f002af) drop-shadow(-2px 0 0 #f002af) drop-shadow(0 2px 0 #f002af) drop-shadow(0 -2px 0 #f002af) drop-shadow(0 0 6px rgba(240, 2, 175, 0.55));
}

/* ...and its matching pink wash fades in, layered above the bright slice. */
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="5"]:hover) .floor-guide-floor-tint[data-floor="5"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="4"]:hover) .floor-guide-floor-tint[data-floor="4"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="3"]:hover) .floor-guide-floor-tint[data-floor="3"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="2"]:hover) .floor-guide-floor-tint[data-floor="2"],
.floor-guide-plan:has(.floor-guide-floor-band[data-floor="1"]:hover) .floor-guide-floor-tint[data-floor="1"] {
  opacity: 1;
  z-index: 3;
}

/* Bands tile top → bottom with no overlap; edges sit at the midpoints between
   each slice's measured vertical centre, so every band wraps its own floor. */

/* 5th Floor — glass roof / atrium (top) */
.floor-guide-floor-band[data-floor="5"] {
  top: 8%;
  bottom: 63.5%;
}

/* 4th Floor — upper curved-facade window row */
.floor-guide-floor-band[data-floor="4"] {
  top: 36.5%;
  bottom: 50.7%;
}

/* 3rd Floor — HavelockCity mall sign level */
.floor-guide-floor-band[data-floor="3"] {
  top: 49.3%;
  bottom: 39.5%;
}

/* 2nd Floor — mid window band */
.floor-guide-floor-band[data-floor="2"] {
  top: 60.5%;
  bottom: 26.5%;
}

/* 1st Floor — entrance storefronts at bottom */
.floor-guide-floor-band[data-floor="1"] {
  top: 73.5%;
  bottom: 8%;
}

/* Drop each button onto its slice's true vertical centre (the bands are
   rectangles over a perspective image, so the geometric centre isn't enough). */
.floor-guide-floor-band[data-floor="5"] .floor-guide-floor-btn {
  top: 74%;
}
.floor-guide-floor-band[data-floor="4"] .floor-guide-floor-btn {
  top: 57%;
}
.floor-guide-floor-band[data-floor="3"] .floor-guide-floor-btn {
  top: 49%;
}
.floor-guide-floor-band[data-floor="2"] .floor-guide-floor-btn {
  top: 45%;
}
.floor-guide-floor-band[data-floor="1"] .floor-guide-floor-btn {
  top: 39%;
}

/* Explore button — hidden by default, slides up on hover */
.floor-guide-floor-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(6px) translateZ(0);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.floor-guide-floor-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floor-guide-arrow-color {
  display: none;
}

@media (hover: hover) {
  .floor-guide-floor-band:hover .floor-guide-floor-btn {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) translateZ(0);
  }
}

/* CTA pill */
.floor-guide-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(calc(-50% + 0.5px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 321px;
  height: 30px;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1000px;
  white-space: nowrap;
}

/* Gift cards */
.gift-card-section {
  padding: 0;
  background: transparent;
}

.gift-card-wrap {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
}

.gift-card-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 0px 72px;
  overflow: hidden;
  border-radius: 24px;
  background-image: url("../images/gift-cards/gift-card-banner-desktop.jpg");
  background-size: cover;
  background-position: center;
}

.gift-card-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 34%, rgba(8, 2, 7, 0.1) 54%, rgba(8, 2, 7, 0.06) 100%);
  pointer-events: none;
}

.gift-card-content {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin-left: auto;
  padding-top: 0;
  color: #ffffff;
}

.gift-card-content h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.gift-card-content p {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.gift-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 34px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #000000;
  background: #ffffff;
  border-radius: 100px;
}

.gift-card-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .shop-love-section {
    padding: 72px 0 80px;
  }

  .shop-love-wrap {
    width: min(100% - 64px, 1334px);
  }

  .shop-love-card {
    flex-basis: 232px;
    width: 232px;
  }

  .gift-card-section {
    padding-top: 64px;
  }

  .gift-card-wrap {
    width: min(100% - 40px, 1280px);
  }

  .gift-card-panel {
    min-height: 320px;
    padding: 40px 48px;
  }

  .gift-card-content {
    width: min(100%, 470px);
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .shop-love-section {
    padding: 56px 0 64px;
  }

  .shop-love-wrap {
    width: min(100% - 40px, 1334px);
  }

  .shop-love-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .shop-love-copy {
    margin: 0 auto;
  }

  .shop-love-rail {
    --shop-gutter: 20px;
    margin-top: 28px;
  }

  .shop-love-card {
    flex-basis: min(62vw, 220px);
    width: min(62vw, 220px);
  }

  .gift-card-section {
    padding-top: 48px;
  }

  .gift-card-wrap {
    width: min(100% - 24px, 1280px);
  }

  .gift-card-panel {
    min-height: 0;
    padding: 200px 24px 32px;
    background-position: top center;
  }

  .gift-card-panel::after {
    background: linear-gradient(180deg, rgba(17, 4, 15, 0) 0%, rgba(17, 4, 15, 0.18) 38%, rgba(36, 3, 28, 0.78) 68%, rgba(36, 3, 28, 0.94) 100%);
  }

  .gift-card-content {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gift-card-content p {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
}

@media (max-width: 520px) {
  .mobile-line-break {
    display: block;
  }

  .mobile-only-text {
    display: block;
  }

  .desktop-only-text {
    display: none;
  }

  .shop-love-section {
    padding: 0;
  }

  .floor-guide-section {
    margin: 80px 0;
  }

  .shop-love-wrap {
    width: min(calc(100% - 32px), 358px);
  }

  .shop-love-rail {
    --shop-gutter: max(16px, (100vw - 358px) / 2);
    width: 100vw;
    max-width: none;
    margin: 40px 0 0;
    margin-left: calc(50% - 50vw);
    padding-left: var(--shop-gutter);
    padding-right: 0;
    padding-bottom: 0;
  }

  .shop-love-track::after {
    content: "";
    flex: 0 0 var(--shop-gutter);
    margin-left: -20px;
  }

  .shop-love-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .shop-love-header {
    width: 100%;
  }

  .shop-love-copy {
    width: min(100%, 342px);
    max-width: 342px;
    margin: 0 auto;
  }

  .shop-love-copy h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .shop-love-copy .mobile-only-text {
    display: inline-block;
    white-space: nowrap;
  }

  .shop-love-copy p {
    margin-top: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .shop-love-cta {
    min-height: 48px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .shop-love-card {
    flex-basis: min(66vw, 196px);
    width: min(66vw, 196px);
  }

  .shop-love-name {
    font-size: 14px;
  }

  .floor-guide-copy h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .floor-guide-copy .mobile-only-text {
    display: inline-block;
    white-space: nowrap;
  }

  .floor-guide-copy p {
    font-size: 16px;
    line-height: 24px;
  }

  .gift-card-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .gift-card-wrap {
    width: min(100% - 33px, 1280px);
  }

  .gift-card-panel {
    min-height: 365px;
    padding: 168px 18px 22px;
    border-radius: 24px;
    background-image: url(../images/gift-cards/gift-card-banner-mobile.jpg);
    background-position: bottom;
  }

  .gift-card-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .gift-card-content p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 24px;
  }

  .gift-card-cta {
    min-height: 48px;
    margin-top: 24px;
    padding: 10px 16px 10px 18px;
    font-size: 16px;
    line-height: 20px;
  }

  .cinema-eyebrow,
  .newsletter-heading {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ── Floor guide: simplified mobile + tablet layout ──
   Desktop heading + description (unchanged) → static mall image → vertical
   floor buttons (Fifth → First) → basement CTA. The interactive building
   stack is hidden; this is the touch-friendly view for phones and tablets. */
@media (max-width: 1024px) {
  .floor-guide-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100% - 48px, 560px);
    height: auto;
    padding: 48px 0 40px;
    gap: 0;
  }

  .floor-guide-copy {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .floor-guide-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
  }

  .floor-guide-copy p {
    width: min(100%, 360px);
    margin: 14px auto 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .floor-guide-plan {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin-top: 30px;
  }

  /* Static mall image, shown as-is */
  .floor-guide-mobile-img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Interactive building stack is desktop-only */
  .floor-guide-building {
    display: none;
  }

  .floor-guide-floors {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 26px;
  }

  .floor-guide-floor-band {
    position: static;
    left: auto;
    right: auto;
    width: auto;
  }

  .floor-guide-floor-btn {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: none;
    justify-content: center;
    width: 190px;
    height: 40px;
    padding: 5.33px 13.33px;
    gap: 5.33px;
    font-size: 14px;
    font-weight: 700;
    line-height: 13.33px;
    letter-spacing: -0.33px;
    box-shadow: none;
  }

  .floor-guide-floor-btn svg {
    width: 12.8px;
    height: 12.8px;
  }

  .floor-guide-cta {
    position: static;
    transform: none;
    width: 222px;
    height: 30px;
    min-height: unset;
    margin: 24px auto 0;
    padding: 6px 12px;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Cinema: Now showing at Scope */
.cinema-section {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  background: url("../images/home/cinema/background.webp") center / cover no-repeat;
}

.cinema-wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 160px, 1280px);
  margin: 0 auto;
}

.cinema-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.cinema-brand {
  display: flex;
  flex-direction: column;
}

.cinema-eyebrow {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
  color: #ffffff;
}

.cinema-brand img {
  display: block;
  width: 207px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.cinema-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  width: 159px;
  height: 48px;
  padding: 8px 20px;
  border-radius: 100px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #000000;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.cinema-more-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: #000000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cinema-more-btn:hover {
  opacity: 0.88;
}

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

.cinema-card {
  display: flex;
  flex-direction: column;
}

.cinema-card-poster {
  position: relative;
  flex-shrink: 0;
}

.cinema-card-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 298.82 / 413.36;
  object-fit: cover;
  object-position: center top;
  border-radius: 11.29px 11.29px 0 0;
}

.cinema-badge {
  position: absolute;
  right: 19px;
  bottom: -12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transform: rotate(-4deg);
  z-index: 2;
}

.cinema-badge--trending {
  background: linear-gradient(90deg, #fc2a00 0%, #dd34ab 100%);
}

.cinema-badge--latest {
  background: linear-gradient(90deg, #7908fa 0%, #348ff7 100%);
}

.cinema-badge--imax {
  background: linear-gradient(90deg, #fa5d3e 0%, #fed955 100%);
}

.cinema-card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 17px 24px 24px;
  background: #ffffff;
  border-radius: 0 0 11.29px 11.29px;
}

.cinema-card-body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  color: #131211;
}

.cinema-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  height: 48px;
  border: 1px solid #000000;
  border-radius: 100px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #000000;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.cinema-book-btn:hover {
  background: #000000;
  color: #ffffff;
}

.mobile-line-break {
  display: none;
}

.mobile-only-text {
  display: none;
}

.desktop-only-text {
  display: inline;
}

@media (max-width: 640px) {
  .mobile-only-text {
    display: block;
  }

  .desktop-only-text {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cinema-wrap {
    width: min(100% - 80px, 1280px);
  }

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

@media (max-width: 640px) {
  .cinema-section {
    padding: 48px 0 40px;
  }

  .cinema-wrap {
    width: min(100% - 40px, 1280px);
  }

  .cinema-eyebrow {
    font-size: clamp(20px, 6vw, 32px);
    line-height: 1.2;
  }

  .cinema-brand img {
    width: clamp(120px, 40vw, 180px);
    height: auto;
  }

  .cinema-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
  }

  .cinema-brand {
    align-items: center;
  }

  .cinema-more-btn {
    width: auto;
  }

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

  .cinema-card-body {
    padding: 14px 16px 18px;
    gap: 12px;
  }

  .cinema-card-body h3 {
    font-size: 14px;
    line-height: 22px;
  }

  .cinema-book-btn {
    height: 40px;
    font-size: 13px;
  }
}

/* ── Today's event popup ─────────────────────────────────────────────────── */
.today-event-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}

.today-event-popup[hidden] {
  display: none;
}

.today-event-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 12px;
  gap: 8px;
  width: 350px;
  background: linear-gradient(0deg, rgba(151, 40, 184, 0.07), rgba(151, 40, 184, 0.07)), #ffffff;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25098);
  border-radius: 24px;
}

.today-event-close {
  position: absolute;
  top: -17px;
  right: -17px;
  width: 34px;
  height: 34px;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.101961);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
}

.today-event-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 269px;
}

.today-event-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-purple);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}

.today-event-img {
  width: 261px;
  height: 329px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.today-event-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  min-width: 117px;
  height: 48px;
  background-image: var(--gradient-btn-pill);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border: 0;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.today-event-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-btn-pill);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.today-event-btn::after {
  content: none;
}

@media (max-width: 768px) {
  .today-event-modal {
    width: 300px;
  }

  .today-event-inner {
    width: 240px;
  }

  .today-event-img {
    width: 232px;
    height: 280px;
  }

  .today-event-heading {
    font-size: 16px;
    line-height: 32px;
  }
}

/* ── Check out Latest on Facebook ───────────────────────────────── */

.fb-feed-section {
  padding: 120px 0 0 0;
}

.fb-feed-wrap {
  width: min(100% - 160px, 1280px);
  margin: 0 auto;
}

.fb-feed-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Left column: heading block + follow pill, vertically centred */
.fb-feed-text-col {
  flex: 0 0 525px;
  max-width: 525px;
  /* Reclaim 41px so the photo collage flex item reaches its design width of
     764px (525 text + 32 gap + 764 = 1321 > 1280 content; the collage overlaps
     the text block's empty corner, exactly as in Figma). */
  margin-right: -41px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.fb-feed-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}

.fb-feed-title {
  margin: 16px 0 0;
  max-width: 472px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--color-purple);
}

.fb-feed-desc {
  margin: 16px 0 0;
  max-width: 500px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.fb-feed-desc strong {
  font-weight: 700;
}

/* Social icons row */
.fb-feed-socials {
  align-self: flex-start;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fb-feed-social-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 58px;
  height: 58px;
  border-radius: 30px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

/* Thin gradient ring — a stroke-only circle, almost the full width of the
   button, exactly like the Figma frame's stroke-only circle. Uses the
   padding-box/border-box double-background technique rather than CSS mask:
   mask-composite rounding leaves a visible seam ("bump") on mobile Safari
   at small sizes, this approach doesn't rely on masking at all. */
.fb-feed-social-ring {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: 1.7px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(var(--color-page-bg), var(--color-page-bg)) padding-box,
    linear-gradient(270deg, #f002ae -8.11%, #9728b8 104.73%) border-box;
  pointer-events: none;
}

/* Icon glyph is only ~61% of the button (35.56 / 58 in the Figma frame),
   leaving a visible page-bg gap between it and the ring */
.fb-feed-social-btn svg {
  position: relative;
  width: 61.3%;
  height: 61.3%;
  border-radius: 50%;
  display: block;
}

.fb-feed-social-btn:hover,
.fb-feed-social-btn:focus-visible {
  transform: translateY(-2px);
}

/* Right column: staggered photo collage (764 × 460 design box) */
.fb-feed-photos {
  position: relative;
  flex: 1 1 0;
  max-width: 764px;
  margin-left: auto;
  aspect-ratio: 764 / 460;
}

.fb-feed-photo {
  position: absolute;
  width: 28.205%; /* 215.49 / 764 */
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(151, 40, 184, 0.06);
}

.fb-feed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fb-feed-photo:hover img,
.fb-feed-photo:focus-visible img {
  transform: scale(1.06);
}

/* Top row (y = 0) */
.fb-feed-photo:nth-child(1) {
  left: 0;
  top: 0;
}
.fb-feed-photo:nth-child(2) {
  left: 32.133%;
  top: 0;
} /* 245.49 / 764 */
.fb-feed-photo:nth-child(3) {
  left: 64.265%;
  top: 0;
} /* 490.98 / 764 */
/* Bottom row (y = 53.254% → 244.97 / 460), shifted right by 57.46px */
.fb-feed-photo:nth-child(4) {
  left: 7.521%;
  top: 53.254%;
} /* 57.46 / 764 */
.fb-feed-photo:nth-child(5) {
  left: 39.652%;
  top: 53.254%;
} /* 302.95 / 764 */
.fb-feed-photo:nth-child(6) {
  left: 71.785%;
  top: 53.254%;
} /* 548.44 / 764 */

/* ── Mobile / tablet: stacked + centred, two-column staggered photos ──
   Switches early (≤1024px) because the left column needs ~525px to read. */
@media (max-width: 1024px) {
  .fb-feed-section {
    padding: 80px 0 0px;
  }

  .fb-feed-wrap {
    width: min(100% - 80px, 1280px);
  }

  .fb-feed-inner {
    flex-direction: column;
    align-items: center;
    gap: 0; /* exact spacing set per-block via margins below */
  }

  /* Promote text + follow to direct children so they can be reordered. */
  .fb-feed-text-col {
    display: contents;
  }

  .fb-feed-text {
    order: 1;
    text-align: center;
    max-width: 342px;
  }

  .fb-feed-eyebrow,
  .fb-feed-desc {
    max-width: 342px;
  }

  .fb-feed-title {
    margin: 16px auto 0;
    max-width: 332px;
    font-size: 24px;
    line-height: 28px;
  }

  .fb-feed-photos {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 32px auto 0; /* gap below the heading block */
    aspect-ratio: 342 / 608; /* two columns of three, right col dropped 71px */
  }

  .fb-feed-photo {
    width: 47.661%;
    border-radius: 15px;
  } /* 163 / 342 */

  /* Left column (items 1–3) */
  .fb-feed-photo:nth-child(1) {
    left: 0;
    top: 0;
  }
  .fb-feed-photo:nth-child(2) {
    left: 0;
    top: 30.757%;
  } /* 187 / 608 */
  .fb-feed-photo:nth-child(3) {
    left: 0;
    top: 61.513%;
  } /* 374 / 608 */
  /* Right column (items 4–6), dropped down 71px */
  .fb-feed-photo:nth-child(4) {
    left: 52.339%;
    top: 11.678%;
  } /* 179/342 ; 71/608  */
  .fb-feed-photo:nth-child(5) {
    left: 52.339%;
    top: 42.434%;
  } /* 258 / 608 */
  .fb-feed-photo:nth-child(6) {
    left: 52.339%;
    top: 73.191%;
  } /* 445 / 608 */

  .fb-feed-socials {
    order: 3;
    align-self: center;
    margin-top: 40px;
  }

  .fb-feed-social-btn {
    width: 48px;
    height: 48px;
  }
}

/* ─────────────────────────────────────────────
   Consistent 24px page side-padding on phones.
   Content bands get a flat 24px gutter (cap removed);
   the three scrollers align their left inset + trailing
   spacer to the same 24px. Hero & welcome are full-bleed
   compositions and intentionally excluded.
   ───────────────────────────────────────────── */
@media (max-width: 520px) {
  .events-wrap,
  .tenant-offers-wrap,
  .shop-love-wrap,
  .cinema-wrap,
  .smiles-wrap,
  .gift-card-wrap,
  .floor-guide-wrap,
  .fb-feed-wrap {
    width: calc(100% - 48px);
    max-width: none;
  }

  .events-rail,
  .tenant-offers-rail {
    --events-gutter: 24px;
  }

  .shop-love-rail {
    --shop-gutter: 24px;
  }
}
