/* ================================================
   RAMSTORE MALL — Internal Pages Stylesheet
   Premium editorial design system
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: hsl(350, 72%, 36%);
  --red-light: hsl(350, 72%, 95%);
  --red-dark: hsl(350, 72%, 28%);
  --teal: #31a5a1;
  --amber: #eb9800;
  --charcoal: hsl(0, 0%, 12%);
  --gray-900: hsl(0, 0%, 18%);
  --gray-700: hsl(0, 0%, 36%);
  --gray-500: hsl(0, 0%, 55%);
  --gray-300: hsl(0, 0%, 80%);
  --gray-200: hsl(0, 0%, 88%);
  --gray-100: hsl(30, 10%, 96%);
  --gray-50: hsl(30, 10%, 98%);
  --white: #fff;
  --border: hsl(0, 0%, 90%);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1200px;
  --header-h: 4rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* --- Container --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--charcoal); }

/* --- Spacing helpers --- */
.section-gap { margin-top: 5rem !important; }
.section-gap-sm { margin-top: 3rem !important; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.header-logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-weight: 700; font-size: .875rem; letter-spacing: .08em; color: var(--charcoal); }
.logo-mark {
  width: 2rem; height: 2rem; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; border-radius: var(--radius);
}
.logo-text { display: none; }
@media (min-width: 768px) { .logo-text { display: inline; } }

.nav-list { display: flex; gap: 2rem; }
.nav-link {
  font-size: .8125rem; font-weight: 500; letter-spacing: .02em;
  color: var(--gray-700) !important; transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width var(--transition);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--red) !important ; }
.nav-link:hover::after { width: 100%; }

.header-nav { display: none; }
@media (min-width: 1024px) { .header-nav { display: block; } }

/* Mobile menu button */
.header-menu-btn {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem;
}
.header-menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.header-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-menu-btn.active span:nth-child(2) { opacity: 0; }
.header-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .header-menu-btn { display: none; } }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  display: flex; flex-direction: column; padding: 2rem 1.5rem;
  transform: translateX(100%); transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: .875rem; font-weight: 500; padding: .5rem 0;
  color: var(--charcoal);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mobile-menu-info { margin-top: 1rem; }

/* ================================================
   PAGE DIVIDERS (demo only)
   ================================================ */
.page-divider {
  padding: 3rem 1.5rem; text-align: center;
  background: var(--gray-100); border-top: 3px solid var(--red);
  margin-top: 6rem;
}
.page-divider:first-of-type { margin-top: var(--header-h); }
.page-divider--sub {
  background: var(--gray-50);
  /* border-top: 2px dashed var(--gray-300); */
  margin-top: 4rem;
}
.page-divider__label {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gray-500);
}

/* ================================================
   PAGE INTRO
   ================================================ */
.page-intro { position: relative; }
.page-intro__content { padding: 1.5rem 0 3rem; max-width: 640px; }
.page-intro__eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.page-intro__title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1; margin-bottom: 1.25rem; color: var(--charcoal);
}
.page-intro__desc {
  font-size: 1.125rem; line-height: 1.65; color: var(--gray-700); max-width: 540px;
}
.page-intro__image-area { margin-top: 2rem; overflow: hidden; border-radius: var(--radius-lg); }

/* ================================================
   IMAGE PLACEHOLDERS
   ================================================ */
.img-placeholder {
  background: var(--gray-100);
  /* border: 1px dashed var(--gray-300); */
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .75rem;
  min-height: 260px;
  width: 100%;
  aspect-ratio: 16/9;
}
.promo-detail__main .img-placeholder{
  min-height: auto !important;
}
.dining-hero__img .img-placeholder {
aspect-ratio: 16/6 !important;
}
.img-placeholder--wide { aspect-ratio: 16/6; }
.img-placeholder--tall { aspect-ratio: 4/3; }

.event-detail__hero .img-placeholder--wide {
  aspect-ratio: 16 / 9;
}
.event-detail__hero img[sizes] {
  contain-intrinsic-size: none;
}

.promo-detail__main .img-placeholder--wide {
  aspect-ratio: 16 / 9;
}
.promo-detail__main img[sizes] {
  contain-intrinsic-size: none;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { margin-bottom: 2.5rem; }
.section-header__title {
  font-family: var(--font-display); font-size: 1.75rem; margin-bottom: .5rem;
}
.section-header__sub { font-size: .9375rem; color: var(--gray-500); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.75rem; font-size: .875rem; font-weight: 600;
  border-radius: var(--radius); transition: all var(--transition);
  letter-spacing: .02em;
}
.contact-page .btn{
  width: 100%;
}
.btn--primary {
  background: var(--red); color: var(--white); border: 2px solid var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline {
  background: transparent; color: var(--charcoal); border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--charcoal); }
.btn--full { width: 100%; }
.btn--sm { padding: .5rem 1.25rem; font-size: .8125rem; }

.text-link {
  font-size: .875rem; font-weight: 600; color: var(--red);
  transition: color var(--transition);
}
.text-link:hover { color: var(--red-dark); }

/* ================================================
   FEATURED BRANDS
   ================================================ */
.featured-brands-slider { position: relative; }
.featured-brands {
  display: flex; gap: 1.5rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding-bottom: .5rem;
  scrollbar-width: none;
}
.featured-brands::-webkit-scrollbar { display: none; }
.featured-brand {
  display: flex; gap: 1.25rem; padding: 1.5rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
  flex: 0 0 calc((100% - 3rem) / 3); scroll-snap-align: start;
}
@media (max-width: 900px) {
  .featured-brand { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 640px) {
  .featured-brand { flex: 0 0 85%; }
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-sm); z-index: 2;
  transition: background var(--transition); color: var(--charcoal);
}
.slider-arrow:hover { background: var(--gray-100); }
.slider-arrow--prev { left: -20px; }
.slider-arrow--next { right: -20px; }
@media (max-width: 900px) { .slider-arrow { display: none; } }
.featured-brand:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.featured-brand__logo {
  width: 80px; height: 60px; flex-shrink: 0; background: var(--gray-100);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: .75rem;
}
.featured-brand__tag {
  display: inline-block; font-size: .6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--teal); margin-bottom: .25rem;
}
.featured-brand__info h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.featured-brand__info p { font-size: .8125rem; color: var(--gray-500); margin-bottom: .5rem; }
.featured-brand__contact a:hover { color: var(--red); text-decoration: underline; }

/* ================================================
   FILTER CHIPS
   ================================================ */
.filter-chip {
  padding: .5rem 1rem; font-size: .8125rem; font-weight: 500;
  border-radius: 100px; border: 1px solid var(--border);
  background: var(--white); color: var(--gray-700);
  transition: all var(--transition); white-space: nowrap;
}
.filter-chip:hover { border-color: var(--gray-500); }
.filter-chip.active {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.floor-chip {
  padding: .5rem 1rem; font-size: .8125rem; font-weight: 500;
  border-radius: 100px; border: 1px solid var(--border);
  background: var(--white); color: var(--gray-700);
  transition: all var(--transition); white-space: nowrap;
}
.floor-chip:hover { border-color: var(--gray-500); }
.floor-chip.active {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}

/* ================================================
   STORE FILTERS BAR
   ================================================ */
.store-filters {
  position: sticky; top: var(--header-h); z-index: 30;
  background: hsla(0,0%,100%,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); padding: 1.25rem 0;
  margin-top: 3rem;
}
.store-filters__inner { display: flex; flex-direction: column; gap: 1rem; }
.store-filters__search {
  position: relative; max-width: 360px;
}
.store-filters__search svg {
  position: absolute; left: .875rem; top: 50%; transform: translateY(-50%);
  color: var(--gray-500);
}
.store-filters__search input {
  width: 100%; padding: .625rem 1rem .625rem 2.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--gray-50); color: var(--charcoal);
  font-size: .875rem; transition: border-color var(--transition);
}
.store-filters__search input:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px hsla(350,72%,36%,.1);
}
.store-filters__chips, .store-filters__floor {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
}

.store-count { font-size: .8125rem; color: var(--gray-500); margin-top: 1.5rem; margin-bottom: 1rem; }

/* ================================================
   STORE GRID
   ================================================ */
.store-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.store-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.store-card:hover { background: var(--gray-50); box-shadow: var(--shadow-sm); }
.store-card[hidden] { display: none; }
.store-card__logo {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--gray-700);
}
.store-card__body { flex: 1; min-width: 0; }
.store-card__name { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; margin-bottom: .125rem; }
.store-card__desc { font-size: .75rem; color: var(--gray-500); margin-bottom: .375rem; }
.store-card__meta { display: flex; gap: .75rem; }
.store-card__cat {
  font-size: .6875rem; font-weight: 600; color: var(--red);
  text-transform: uppercase; letter-spacing: .06em;
}
.store-card__floor { font-size: .6875rem; color: var(--gray-500); }
.store-card__link {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-500); transition: all var(--transition);
}
.store-card:hover .store-card__link { border-color: var(--red); color: var(--red); }

.store-no-results { text-align: center; padding: 4rem 0; }
.store-no-results p { color: var(--gray-500); font-size: 1.125rem; margin-bottom: 1rem; }

/* Store details modal */
.store-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 15, 15, .55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  padding: 1.5rem;
}
.store-modal-overlay.open { opacity: 1; visibility: visible; }
.store-modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 2rem; position: relative; box-shadow: var(--shadow-lg);
}
.store-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); color: var(--charcoal);
  transition: background var(--transition);
}
.store-modal__close:hover { background: var(--gray-200); }
.store-modal__header { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; padding-right: 2rem; }
.store-modal__logo {
  width: 100px; height: 100px; flex-shrink: 0; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; font-weight: 700; font-size: 1.5rem; color: var(--gray-700);
}
.store-modal__logo img { width: 100%; height: 100%; object-fit: contain; }
.store-modal__name { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; margin-bottom: .25rem; }
.store-modal__category { font-size: .8125rem; color: var(--gray-500); }
.store-modal__desc { font-size: .9375rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1.25rem; }
.store-modal__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .9375rem;
}
.store-modal__row:last-child { border-bottom: none; }
.store-modal__row strong {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray-500); flex-shrink: 0;
}
.store-modal__row a { color: var(--red); }
.store-modal__row a:hover { text-decoration: underline; }

/* ================================================
   STORE DETAIL
   ================================================ */
.store-detail__cover { position: relative; overflow: hidden; }
.breadcrumb { font-size: .8125rem; margin-top: 1.5rem; }
.breadcrumb ol { display: flex; gap: .5rem; }
.breadcrumb li::after { content: '›'; margin-left: .5rem; color: var(--gray-300); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--red); }

.store-detail__grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .store-detail__grid { grid-template-columns: 2fr 1fr; } }

.store-detail__brand-bar { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; }
.store-detail__brand-logo {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--gray-700);
}
.store-detail__name { font-family: var(--font-display); font-size: 2rem; }
.store-detail__tagline { font-size: .9375rem; color: var(--gray-500); margin-top: .25rem; }
.store-detail__body p { margin-bottom: 1rem; color: var(--gray-700); line-height: 1.75; }

.store-detail__promo {
  margin-top: 2rem; padding: 1.5rem; background: var(--red-light);
  border-left: 4px solid var(--red); border-radius: var(--radius);
}
.store-detail__promo-tag {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--red); margin-bottom: .5rem; display: block;
}
.store-detail__promo h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-bottom: .375rem; }
.store-detail__promo p { font-size: .875rem; color: var(--gray-700); }

.store-detail__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.store-detail__info-block { padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.store-detail__info-block h4 { font-family: var(--font-body); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: .375rem; }
.store-detail__info-block p { font-size: .9375rem; line-height: 1.6; }

/* Nearby stores */
.nearby-stores { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.nearby-store {
  display: flex; align-items: center; gap: .75rem; padding: 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.nearby-store:hover { border-color: var(--red); background: var(--gray-50); }
.nearby-store__logo {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius);
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--gray-700);
  overflow: hidden;
}
.nearby-store__logo img {
  width: 100%; height: 100%; object-fit: contain; padding: 4px;
}
.nearby-store__name { font-size: .875rem; font-weight: 500; }
.nearby-store__floor { font-size: .75rem; color: var(--gray-500); margin-left: auto; white-space: nowrap; }

/* ================================================
   DINING PAGE
   ================================================ */
.dining-hero { position: relative; }
.dining-hero__content.container { padding: 1.5rem 1.5rem 3rem; max-width: 640px; }
.dining-hero__img { margin-top: 2rem; overflow: hidden; border-radius: var(--radius-lg); }

.dining-featured {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 2rem; background: var(--gray-50); border-radius: var(--radius-lg);
}
@media (min-width: 768px) { .dining-featured { grid-template-columns: 1fr 1fr; padding: 2.5rem; } }
.dining-featured__img { overflow: hidden; border-radius: var(--radius-lg); }
.dining-featured__img .img-placeholder { aspect-ratio: 4/3; }
.dining-featured__content { display: flex; flex-direction: column; justify-content: center; }
.dining-featured__tag {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--amber); margin-bottom: .75rem;
}
.dining-featured__content h2 { font-size: 2rem; margin-bottom: .75rem; }
.dining-featured__content p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.7; }
.dining-featured__meta {
  display: flex; flex-direction: column; gap: .5rem; font-size: .8125rem; color: var(--gray-500);
  margin-bottom: 1rem;
}
.dining-featured__meta span { display: block; }
.dining-featured__meta strong { color: var(--charcoal); }

.dining-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }

.dining-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.dining-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.dining-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dining-card[hidden] { display: none; }
.dining-card__img { overflow: hidden; }
.dining-card__img .img-placeholder { aspect-ratio: 16/10; border-radius: 0; }
.dining-card__body { padding: 1.25rem; }
.dining-card__cat {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--amber); margin-bottom: .25rem; display: block;
}
.dining-card__body h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; margin-bottom: .25rem; }
.dining-card__body p { font-size: .8125rem; color: var(--gray-500); margin-bottom: .75rem; }

/* Detail split layout */
.detail-hero-split {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem;
}
@media (min-width: 768px) { .detail-hero-split { grid-template-columns: 1fr 1fr; } }
.detail-hero-split__img { overflow: hidden; border-radius: var(--radius-lg); }
.detail-hero-split__content { display: flex; flex-direction: column; justify-content: center; }
.detail-hero-split__content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.detail-hero-split__content p { color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.7; }
.detail-meta-list { display: flex; flex-direction: column; gap: .75rem; }
.detail-meta-list div { display: flex; justify-content: space-between; padding-bottom: .75rem; border-bottom: 1px solid var(--border); font-size: .9375rem; }
.detail-meta-list strong { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.detail-meta-list__social { display: flex; gap: .75rem; }
.detail-meta-list__social a { color: var(--gray-500); transition: color var(--transition); }
.detail-meta-list__social a:hover { color: var(--red); }

.dining-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.dining-social a { color: var(--gray-500); transition: color var(--transition); }
.dining-social a:hover { color: var(--red); }

/* Gallery strip */
.gallery-strip {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem;
}
.gallery-strip .img-placeholder { aspect-ratio: 4/3; min-height: 120px; overflow: hidden; }

.gallery-single .img-placeholder {
  aspect-ratio: unset;
  min-height: unset;
  overflow: visible;
  background: transparent;
}
.gallery-single .img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.gallery-strip .img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery lightbox */
.js-gallery-item { cursor: zoom-in; position: relative; }
.js-gallery-item:hover::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .15);
}

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 15, 15, .92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  padding: 3rem 1rem;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  width: auto; height: auto;
  border-radius: var(--radius-lg);
  display: block;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, .25);
}
.lightbox-close {
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  font-size: 1.75rem; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 2rem; line-height: 1;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-close { top: .75rem; right: .75rem; }
}

/* Dining video */
.dining-video { display: flex; flex-direction: column; gap: 1.5rem; }
.dining-video__embed {
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dining-video__embed iframe,
.dining-video__embed video {
  width: 100%;
  display: block;
}
.dining-video__embed:has(iframe) { aspect-ratio: 16/9; }
.dining-video__embed iframe { height: 100%; }

/* ================================================
   ENTERTAINMENT PAGE
   ================================================ */
.entertainment-intro { padding: 1.5rem 0 0; max-width: 640px; }

.ent-block {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .ent-block { grid-template-columns: 1fr 1fr; } }
.ent-block--reverse .ent-block__content { order: -1; }
@media (max-width: 767px) { .ent-block--reverse .ent-block__content { order: 0; } }
.ent-block__visual { overflow: hidden; border-radius: var(--radius-lg); }
.ent-block__content { display: flex; flex-direction: column; justify-content: center; }
.ent-block__label {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--teal); margin-bottom: .5rem;
}
.ent-block__content h2 { font-size: 2rem; margin-bottom: .75rem; }
.ent-block__content p { color: var(--gray-700); line-height: 1.7; margin-bottom: .75rem; }
.ent-block__links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.ent-block__features { margin: .75rem 0; padding-left: 1.25rem; list-style: disc; }
.ent-block__features li { font-size: .9375rem; color: var(--gray-700); margin-bottom: .375rem; }
.ent-block__loc { font-size: .8125rem; color: var(--gray-500); font-weight: 500; }
.ent-block__content h3 { font-size: 1.375rem; margin: 1.5rem 0 .75rem; }

/* Gaming zone */
.gaming-zone-block .ent-block__visual .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.gaming-zone__subtitle {
  font-family: var(--font-display);
  font-size: 1.125rem; color: var(--charcoal); line-height: 1.5;
  margin-bottom: 1rem;
}
.gaming-zone__text { max-width: none; }
.gaming-zone__text p { color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; }
.gaming-zone__lede { font-size: 1.125rem; color: var(--charcoal); }

.gaming-zone__features {
  list-style: none; display: flex; flex-direction: column; gap: 1rem;
  margin: 1.75rem 0 2rem; padding: 1.5rem;
  background: var(--gray-50); border-radius: var(--radius-lg);
}
.gaming-zone__features li { display: flex; align-items: flex-start; gap: .75rem; }
.gaming-zone__features svg { flex-shrink: 0; color: var(--teal); margin-top: .125rem; }
.gaming-zone__features span { font-size: .9375rem; font-weight: 500; color: var(--charcoal); line-height: 1.5; }

.gaming-zone__text h3 {
  font-size: 1.5rem; margin: 2.5rem 0 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}

.photo-slider-wrap { position: relative; }
.photo-slider {
  display: flex; gap: 1.25rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding-bottom: .5rem;
  scrollbar-width: none;
}
.photo-slider::-webkit-scrollbar { display: none; }
.photo-slider .img-placeholder {
  flex: 0 0 320px; scroll-snap-align: start;
  aspect-ratio: 4/3; overflow: hidden;
}
.photo-slider .img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .photo-slider .img-placeholder { flex-basis: 260px; }
}

.gaming-zone__closing { max-width: 34rem; margin: 0 auto; text-align: center; }
.gaming-zone__closing p { color: var(--gray-700); line-height: 1.7; margin-bottom: 1rem; }
.gaming-zone__tagline {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--teal); margin: 1.5rem 0;
}
.gaming-zone__signoff { font-family: var(--font-display); font-size: .8125rem; color: var(--gray-500); margin-top: 1.5rem; }

.ent-duo { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .ent-duo { grid-template-columns: 1fr 1fr; } }
.ent-duo__item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.ent-duo__item .img-placeholder { border-radius: 0; aspect-ratio: 16/9; }
.ent-duo__body { padding: 1.5rem; }
.ent-duo__body h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin: .5rem 0; }
.ent-duo__body p { font-size: .875rem; color: var(--gray-700); line-height: 1.65; }

/* ================================================
   EVENTS PAGE
   ================================================ */
.events-month-strip {
  padding: 2rem; background: var(--red-light); border-left: 4px solid var(--red);
  border-radius: var(--radius);
}
.events-month-strip h2 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; }
.events-month-strip p { font-size: .9375rem; color: var(--gray-700); }

.events-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }

.list-label {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500);
  margin-bottom: 1.5rem; display: block;
}

.events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.event-card {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: box-shadow var(--transition);
}
@media (min-width: 768px) {
  .event-card { grid-template-columns: 72px 200px 1fr; align-items: start; }
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-card[hidden] { display: none; }
.event-card__date { text-align: center; }
.event-card__day {
  display: block; font-family: var(--font-display); font-size: 2rem;
  line-height: 1; color: var(--red);
}
.event-card__month {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray-500);
}
.event-card__img { overflow: hidden; border-radius: var(--radius); }
.event-card__img .img-placeholder { aspect-ratio: 3/2; min-height: 100px; }
.event-card__tag {
  display: inline-block; font-size: .6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--teal);
  margin-bottom: .25rem;
}
.event-card__body h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-bottom: .375rem; }
.event-card__body p { font-size: .875rem; color: var(--gray-700); margin-bottom: .5rem; line-height: 1.6; }
.event-card__meta { display: flex; gap: 1rem; font-size: .8125rem; color: var(--gray-500); margin-bottom: .5rem; }

/* Events archive */
.events-archive { display: flex; flex-direction: column; }
.event-archive-row {
  display: flex; align-items: center; gap: 1.5rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border); font-size: .9375rem;
}
.event-archive-row__date { width: 120px; flex-shrink: 0; color: var(--gray-500); font-size: .8125rem; }
.event-archive-row__title { flex: 1; font-weight: 500; }
.event-archive-row__type { font-size: .75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }

/* Event detail */
.event-detail-hero { margin-top: 2rem; overflow: hidden; border-radius: var(--radius-lg); }
.event-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .event-detail-grid { grid-template-columns: 2fr 1fr; } }
.event-detail__main h1 { font-size: 2.25rem; margin: .75rem 0 1rem; }
.event-detail__lead { font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.5rem; }
.event-detail__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* ================================================
   PROMOTIONS PAGE
   ================================================ */
.promo-featured {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--charcoal);
}
.promo-featured__img { overflow: hidden; }
.promo-featured__img .img-placeholder { aspect-ratio: 16/6; border-radius: 0; opacity: .6; }
.promo-featured__content {
  padding: 2.5rem; color: var(--white);
}
@media (min-width: 768px) {
  .promo-featured { display: grid; grid-template-columns: 1.5fr 1fr; }
  .promo-featured__content { display: flex; flex-direction: column; justify-content: center; }
}
.promo-featured__badge {
  display: inline-block; font-size: .6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--red); color: var(--white);
  padding: .25rem .75rem; border-radius: 100px; margin-bottom: 1rem;
}
.promo-featured__content h2 { font-size: 1.75rem; color: var(--white); margin-bottom: .75rem; }
.promo-featured__content p { color: hsla(0,0%,100%,.8); margin-bottom: .75rem; }
.promo-featured__validity { font-size: .8125rem; color: hsla(0,0%,100%,.6); margin-bottom: 1.25rem; }

.promo-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }

.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.promo-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition);
}
.promo-card:hover { box-shadow: var(--shadow-md); }
.promo-card[hidden] { display: none; }
.promo-card__img .img-placeholder { aspect-ratio: 16/10; border-radius: 0; }
.promo-card__body { padding: 1.25rem; }
.promo-card__store { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); display: block; margin-bottom: .25rem; }
.promo-card__body h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; margin-bottom: .25rem; }
.promo-card__body p { font-size: .8125rem; color: var(--gray-500); margin-bottom: .5rem; }
.promo-card__validity { font-size: .75rem; font-weight: 600; display: block; margin-bottom: .5rem; }
.promo-card__validity--active { color: var(--teal); }
.promo-card__validity--expired { color: var(--gray-500); }

/* Promo detail */
.promo-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2rem;
}
@media (min-width: 768px) { .promo-detail-grid { grid-template-columns: 2fr 1fr; } }
.promo-detail__main h1 { font-size: 2rem; margin: 1.25rem 0 1rem; }
.promo-detail__lead { font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.5rem; }
.promo-detail__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* ================================================
   MALL MAP PAGE
   ================================================ */
.map-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .map-layout { grid-template-columns: 280px 1fr; } }

.map-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.map-search { position: relative; }
.map-search svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: var(--gray-500); }
.map-search input {
  width: 100%; padding: .625rem .75rem .625rem 2.5rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .875rem; background: var(--gray-50);
}
.map-search input:focus { outline: none; border-color: var(--red); }

.map-floor-tabs { display: flex; gap: .25rem; background: var(--gray-100); border-radius: var(--radius); padding: .25rem; }
.map-floor-tab {
  flex: 1; padding: .5rem; font-size: .8125rem; font-weight: 500;
  text-align: center; border-radius: calc(var(--radius) - 2px);
  color: var(--gray-700); transition: all var(--transition);
}
.map-floor-tab.active { background: var(--white); color: var(--charcoal); box-shadow: var(--shadow-sm); }

.map-store-list { display: flex; flex-direction: column; max-height: 300px; overflow-y: auto; }
.map-store-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem; border-bottom: 1px solid var(--border); text-align: left;
  transition: background var(--transition);
}
.map-store-item:hover { background: var(--gray-50); }
.map-store-item.active { background: var(--red-light); }
.map-store-item__name { font-size: .875rem; font-weight: 500; }
.map-store-item__cat { font-size: .6875rem; color: var(--gray-500); }

.map-legend { display: flex; flex-wrap: wrap; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.map-legend__item { display: flex; align-items: center; gap: .375rem; font-size: .75rem; color: var(--gray-700); }
.map-legend__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.map-viewport { position: relative; }
.map-floor-plan { display: none; }
.map-floor-plan.active { display: block; }
.map-placeholder { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.map-svg { width: 100%; height: auto; }

.map-info-panel {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; min-width: 200px;
  box-shadow: var(--shadow-lg);
}
.map-info-panel[hidden] { display: none; }
.map-info-panel__close {
  position: absolute; top: .5rem; right: .75rem;
  font-size: 1.25rem; color: var(--gray-500); cursor: pointer;
}
.map-info-panel h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.map-info-panel p { font-size: .8125rem; color: var(--gray-500); margin-bottom: .5rem; }

/* ================================================
   PLAN YOUR VISIT
   ================================================ */
.visit-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-module {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.visit-module--wide { grid-column: 1 / -1; }
.visit-module__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.visit-module__header svg { color: var(--red); flex-shrink: 0; }
.visit-module__header h2 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; }
.visit-module__text { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; }

.visit-hours__row {
  display: flex; justify-content: space-between; padding: .75rem 0;
  border-bottom: 1px solid var(--border); font-size: .9375rem;
}
.visit-hours__row--note { color: var(--gray-500); font-size: .875rem; }

.visit-map-placeholder { margin-top: 1.25rem; }
.visit-map-placeholder .img-placeholder { aspect-ratio: 16/9; min-height: 180px; }

.visit-info-detail { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.visit-info-detail div { display: flex; justify-content: space-between; font-size: .9375rem; padding: .5rem 0; border-bottom: 1px solid var(--border); }

.visit-access-list { padding-left: 1.25rem; list-style: disc; }
.visit-access-list li { font-size: .9375rem; color: var(--gray-700); margin-bottom: .5rem; }

.visit-guidelines {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .visit-guidelines { grid-template-columns: 1fr 1fr; } }
.visit-guideline h4 { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; margin-bottom: .375rem; }
.visit-guideline p { font-size: .8125rem; color: var(--gray-700); line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1.25rem 0; font-size: 1rem; font-weight: 500;
  text-align: left; color: var(--charcoal); cursor: pointer;
}
.faq-item__question svg { flex-shrink: 0; transition: transform var(--transition); color: var(--gray-500); }
.faq-item__question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-item__answer {
  padding: .25rem 0 1.5rem 1.25rem;
  margin-bottom: .25rem;
  border-left: 2px solid var(--red-light);
}
.faq-item__answer p { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; margin-bottom: .75rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul,
.faq-item__answer ol { margin: 0 0 .75rem; padding-left: 1.25rem; }
.faq-item__answer ul { list-style: disc; }
.faq-item__answer ol { list-style: decimal; }
.faq-item__answer li { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; margin-bottom: .25rem; }
.faq-item__answer li::marker { color: var(--red); }
.faq-item__answer strong { color: var(--charcoal); font-weight: 600; }
.faq-item__answer a { color: var(--red); }
.faq-item__answer a:hover { text-decoration: underline; }

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-bands { display: flex; flex-direction: column; }
.service-band {
  display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.service-band:first-child { border-top: 1px solid var(--border); }
.service-band__marker {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gray-300);
  padding-top: .25rem;
}
.service-band__content h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; }
.service-band__content p { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; margin-bottom: .5rem; }
.service-band__loc { font-size: .8125rem; color: var(--gray-500); }

/* ================================================
   NEWS PAGE
   ================================================ */
.news-featured {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 2rem; background: var(--gray-50); border-radius: var(--radius-lg);
}
@media (min-width: 768px) { .news-featured { grid-template-columns: 1fr 1fr; padding: 0; overflow: hidden; } }
.news-featured__img { overflow: hidden; border-radius: var(--radius-lg); }
@media (min-width: 768px) { .news-featured__img { border-radius: 0; } .news-featured__img .img-placeholder { min-height: 100%; } }
.news-featured__content { display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .news-featured__content { padding: 3rem; } }
.news-featured__cat {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--red); margin-bottom: .375rem; display: block;
}
.news-featured__date { font-size: .8125rem; color: var(--gray-500); display: block; margin-bottom: .75rem; }
.news-featured__content h2 { font-size: 1.75rem; margin-bottom: .75rem; }
.news-featured__content p { color: var(--gray-700); line-height: 1.7; margin-bottom: 1rem; }

.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.news-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card__img .img-placeholder { aspect-ratio: 16/10; border-radius: 0; }
.news-card__body { padding: 1.25rem; }
.news-card__cat {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--red); display: block; margin-bottom: .125rem;
}
.news-card__date { font-size: .75rem; color: var(--gray-500); display: block; margin-bottom: .5rem; }
.news-card__body h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .375rem; }
.news-card__body p { font-size: .8125rem; color: var(--gray-500); line-height: 1.55; margin-bottom: .5rem; }

/* News article */
.news-article__hero { margin-top: 2rem; overflow: hidden; border-radius: var(--radius-lg); }
.news-article__header { margin-top: 2rem; max-width: 720px; }
.news-article__header h1 { font-size: 2.25rem; margin-top: .75rem; }

.news-article__body { max-width: 720px; margin-top: 2rem; }
.news-article__inline-img { margin: 2rem 0; }
.news-article__inline-img .img-placeholder { aspect-ratio: 2/1; }
.news-article__inline-img figcaption { font-size: .8125rem; color: var(--gray-500); margin-top: .5rem; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-hero { padding: 1.5rem 0 0; }
.about-hero__title { font-size: clamp(2.5rem, 6vw, 4rem); }
.about-hero__img { margin-top: 2.5rem; overflow: hidden; border-radius: var(--radius-lg); }

.about-story {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story__text h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.about-story__text p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.about-story__img { overflow: hidden; border-radius: var(--radius-lg); }

.about-facts { background: var(--gray-50); padding: 4rem 0; }
.about-facts__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (min-width: 768px) { .about-facts__grid { grid-template-columns: repeat(4, 1fr); } }
.about-fact { text-align: center; }
.about-fact__number {
  display: block; font-family: var(--font-display); font-size: 3rem;
  color: var(--red); margin-bottom: .25rem;
}
.about-fact__label { font-size: .8125rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

.about-vision { max-width: 720px; }
.about-vision h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.about-vision__lead { font-size: 1.25rem; line-height: 1.6; color: var(--charcoal); margin-bottom: 1rem; }
.about-vision p { color: var(--gray-700); line-height: 1.8; }

.about-media {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 600px;
}
.about-media h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; }
.about-media p { font-size: .9375rem; color: var(--gray-700); }

/* ================================================
   LEASING PAGE
   ================================================ */
.leasing-advantages {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem;
}
.leasing-adv { padding: 1.5rem 0; border-top: 3px solid var(--red); }
.leasing-adv__num {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gray-300);
  display: block; margin-bottom: .75rem;
}
.leasing-adv h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; margin-bottom: .5rem; }
.leasing-adv p { font-size: .875rem; color: var(--gray-700); line-height: 1.65; }

.leasing-form-section {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .leasing-form-section { grid-template-columns: 1fr 1.5fr; } }
.leasing-form-intro h2 { font-size: 2rem; margin-bottom: .75rem; }
.leasing-form-intro p { color: var(--gray-700); margin-bottom: 1.5rem; }

.leasing-brochure {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.leasing-brochure svg { flex-shrink: 0; color: var(--red); margin-top: .125rem; }
.leasing-brochure strong { display: block; font-size: .9375rem; margin-bottom: .25rem; }
.leasing-brochure p { font-size: .8125rem; color: var(--gray-500); margin: 0; }

/* ================================================
   FORMS
   ================================================ */
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; margin-bottom: .5rem; }
.form-group label {
  font-size: .8125rem; font-weight: 500; color: var(--gray-700);
  margin-bottom: .375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px hsla(350,72%,36%,.1);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: #e53e3e; }
.form-group .form-error {
  font-size: .75rem; color: #e53e3e; margin-top: .25rem; display: none;
}
.form-group input.invalid + .form-error,
.form-group textarea.invalid + .form-error { display: block; }
.form-success {
  padding: 1rem; background: hsla(150, 60%, 50%, .1);
  border: 1px solid hsla(150, 60%, 50%, .3);
  border-radius: var(--radius); color: hsl(150, 60%, 30%);
  font-size: .9375rem; display: none;
}
.form-success.show { display: block; }

/* ================================================
   CAREERS PAGE
   ================================================ */
.careers-intro { max-width: 720px; font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; }
.jobs-list { display: flex; flex-direction: column; }
.job-card {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.job-card__main h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; margin-bottom: .25rem; }
.job-card__main p { font-size: .8125rem; color: var(--gray-500); }
.job-card__meta { display: flex; align-items: center; gap: 1rem; }
.job-card__dept {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray-500);
  padding: .375rem .75rem; background: var(--gray-100); border-radius: 100px;
}
.careers-form-section { max-width: 640px; }
.careers-form-section h2 { font-size: 1.75rem; margin-bottom: .75rem; }
.careers-form-section > p { color: var(--gray-700); margin-bottom: 1.5rem; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.25fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__block h3 { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; margin-bottom: .375rem; }
.contact-info__block p { font-size: .9375rem; color: var(--gray-700); line-height: 1.6; }
.contact-info__block a { color: var(--red); }
.contact-info__block a:hover { text-decoration: underline; }
.contact-social { display: flex; gap: 1.25rem; margin-top: .5rem; }
.contact-social a {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 500; color: var(--gray-700);
  transition: color var(--transition);
}
.contact-social a:hover { color: var(--red); }

.contact-staff { display: flex; flex-direction: column; gap: 1.25rem; margin-top: .5rem; }
.contact-staff__person {
  display: flex; flex-direction: column; gap: .125rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.contact-staff__person:last-child { border-bottom: none; padding-bottom: 0; }
.contact-staff__role {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--red); margin-bottom: .125rem;
}
.contact-staff__name { font-size: .9375rem; font-weight: 600; color: var(--charcoal); }
.contact-staff__footer { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }

.contact-map { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; min-height: 320px; }
.contact-map iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) { .contact-map { aspect-ratio: 4/3; } }

.contact-form { display: flex; flex-direction: column; }

/* ================================================
   POLICY PAGES
   ================================================ */
.policy-content { max-width: 720px; }
.policy-updated { font-size: .8125rem; color: var(--gray-500); margin-bottom: 2rem; }

/* ================================================
   RICH TEXT (shared)
   ================================================ */
.rich-text h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.rich-text h3 { font-size: 1.25rem; margin: 1.75rem 0 .75rem; font-family: var(--font-body); font-weight: 600; }
.rich-text p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.rich-text p.lead { font-size: 1.125rem; }
.rich-text ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.rich-text li { font-size: .9375rem; color: var(--gray-700); margin-bottom: .375rem; line-height: 1.6; }
.rich-text a { color: var(--red); }
.rich-text a:hover { text-decoration: underline; }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter-section {
  padding: 5rem 0; margin-top: 5rem;
  background: var(--charcoal); color: var(--white);
}
.newsletter-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .newsletter-inner { flex-direction: row; text-align: left; justify-content: space-between; }
}
.newsletter-text h2 { font-size: 1.75rem; color: var(--white); margin-bottom: .375rem; }
.newsletter-text p { color: hsla(0,0%,100%,.65); }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input {
  padding: .75rem 1.25rem; border: 1px solid hsla(0,0%,100%,.2);
  border-radius: var(--radius); background: hsla(0,0%,100%,.08);
  color: var(--white); font-size: .9375rem; min-width: 260px;
}
.newsletter-form input::placeholder { color: hsla(0,0%,100%,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--red); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--gray-900);
  color: hsla(0, 0%, 100%, .7);
  margin-top: 5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding-bottom: 3rem; border-bottom: 1px solid hsla(0,0%,100%,.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-body); font-weight: 700; font-size: .875rem; letter-spacing: .08em; color: var(--white); display: block; margin-bottom: .75rem; }
.footer-desc { font-size: .8125rem; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-body); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .8125rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-address { margin-top: .75rem; font-size: .8125rem; line-height: 1.6; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem; padding-top: 1.5rem;
}
.footer-bottom p { font-size: .75rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ================================================
   ANIMATIONS
   ================================================ */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ================================================
   FOCUS STATES
   ================================================ */
:focus-visible {
  outline: 2px solid var(--red); outline-offset: 2px;
}

/* ================================================
   RESPONSIVE FINE-TUNING
   ================================================ */
@media (max-width: 640px) {
  .page-intro__content { padding: 2.5rem 0 2rem; }
  .section-gap { margin-top: 3rem !important; }
  .store-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__date { display: flex; gap: .5rem; align-items: baseline; }
}


@media(min-width: 992px){
  .dining-card__img{
    height: 300px;
    align-content: center;
  }
}


.detail-hero-split__img .img-placeholder {
  aspect-ratio: unset;
  min-height: unset;
  background: transparent;
}
.detail-hero-split__img .img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.detail-hero-split__img{
  align-content: center;
}