@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #191b1d;
  --muted: #5f5f5f;
  --navy: #003840;
  --teal: #007f78;
  --teal-soft: #2d7f7d;
  --cyan: #00dcff;
  --lime: #7ed957;
  --dark: #111618;
  --paper: #f3f6fa;
  --line: #d8e0e5;
  --white: #fff;
  --max: 1180px;
  --font: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  z-index: 1000;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--navy);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

main,
footer {
  overflow-x: clip;
  max-width: 100%;
}

.site-header.is-stuck {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.utility-strip {
  height: 33px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}

.utility-strip a {
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.utility-strip span {
  opacity: .65;
}

.nav-row {
  height: 98px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 238px;
  color: var(--navy);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-cluster {
  position: relative;
}

.nav-link,
.nav-trigger {
  min-height: 52px;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .9;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -28px;
  width: 312px;
  padding: 20px 24px 22px;
  background: var(--white);
  border-top: 5px solid var(--cyan);
  box-shadow: 0 22px 38px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(9px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-cluster:nth-last-child(-n+2) .nav-menu {
  left: auto;
  right: -28px;
}

.nav-cluster:hover .nav-menu,
.nav-cluster:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 9px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  margin-left: 0;
}

.solid-button {
  min-height: 48px;
  border: 0;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.solid-button:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-button {
  min-width: 54px;
  min-height: 48px;
  border: 1px solid rgba(0, 56, 64, .24);
  border-radius: 999px;
  margin-left: auto;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 56, 64, .04);
  color: var(--navy);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-button:hover,
.menu-button[aria-expanded="true"] {
  border-color: var(--cyan);
  background: var(--navy);
  color: var(--white);
}

.menu-button:focus-visible {
  outline: 3px solid rgba(0, 220, 255, .36);
  outline-offset: 3px;
}

.menu-button-bars {
  width: 26px;
  height: 22px;
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.menu-button-bars span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0;
  position: absolute;
  left: 0;
  border-radius: 999px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.menu-button-bars span:nth-child(1) {
  top: 4px;
}

.menu-button-bars span:nth-child(2) {
  top: 10px;
}

.menu-button-bars span:nth-child(3) {
  top: 16px;
}

.menu-button-text {
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.menu-button[aria-expanded="true"] .menu-button-bars span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button-bars span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button-bars span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 131px;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 80;
  width: min(440px, calc(100vw - 48px));
  padding: 22px;
  overflow-y: auto;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(0, 56, 64, .14);
  border-top: 5px solid var(--cyan);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

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

.mobile-menu-top {
  margin-bottom: 14px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-top span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-menu-top a {
  display: inline-flex;
  margin-top: 7px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
}

.mobile-section,
.mobile-link {
  width: 100%;
  min-height: 56px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, padding 160ms ease;
}

.mobile-section:hover,
.mobile-section[aria-expanded="true"],
.mobile-link:hover {
  color: var(--teal);
  background: rgba(0, 220, 255, .08);
  border-color: rgba(0, 220, 255, .18);
  padding-inline: 14px;
}

.mobile-section::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.mobile-section[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-1px);
}

.mobile-links {
  padding: 10px 0 16px;
  display: grid;
  gap: 8px;
}

.mobile-links a {
  display: block;
  padding: 11px 14px;
  border: 1px solid rgba(0, 56, 64, .1);
  border-radius: 10px;
  background: rgba(243, 246, 250, .72);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.mobile-links a:hover {
  border-color: var(--cyan);
  background: rgba(0, 220, 255, .08);
  color: var(--teal);
}

.home-hero {
  min-height: calc(100vh - 131px);
  min-height: 810px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #1a1f20 center / cover no-repeat;
}

.home-hero::before,
.marquee::before,
.image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 84px));
  margin: 0 auto;
  padding: 72px 0 68px;
}

.home-hero h1 {
  max-width: 850px;
  margin: 0 0 58px;
  color: var(--white);
  font-size: clamp(58px, 7.8vw, 108px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -3px;
}

.hero-rule {
  height: 2px;
  width: 100%;
  margin: 0 0 58px;
  background: rgba(255, 255, 255, .86);
}

.hero-intro {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.22;
  font-weight: 800;
}

.map-embed {
  width: 100%;
  min-height: 288px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  overflow: hidden;
  background: var(--paper);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 288px;
  border: 0;
  filter: saturate(.94) contrast(1.03);
}

.dark-search {
  background: var(--dark);
  color: var(--white);
  padding: 40px 24px 48px;
  text-align: center;
}

.dark-search h2 {
  max-width: 880px;
  margin: 0 auto 36px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  font-weight: 800;
}

.search-pill {
  width: min(520px, 100%);
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
}

.search-pill input {
  flex: 1;
  height: 100%;
  border: 0;
  padding: 0 22px;
  color: var(--ink);
  outline: 0;
}

.search-pill button {
  width: 52px;
  height: 52px;
  margin-right: 3px;
  border: 0;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.section {
  padding: 88px 0;
  background: var(--white);
}

.section.paper {
  background: var(--paper);
}

.section.dark {
  background: var(--dark);
  color: var(--white);
}

.wrap {
  width: min(var(--max), calc(100vw - 84px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--teal);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section h2,
.section-title {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.section.dark h2,
.section.dark p {
  color: var(--white);
}

.lead,
.body-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lead {
  max-width: 890px;
  margin: 0 0 28px;
}

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.image-card {
  min-height: 470px;
  background: center / cover no-repeat;
}

.gradient-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--teal) 0%, #225d80 100%);
  color: var(--white);
  padding: 58px 0;
}

.gradient-band .wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.gradient-band h1,
.gradient-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gradient-band p {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  line-height: 1.28;
  font-weight: 700;
}

.marquee {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: center / cover no-repeat;
}

.marquee .wrap {
  position: relative;
  z-index: 1;
  padding: 72px 0 78px;
}

.marquee h1 {
  max-width: 950px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
}

.breadcrumb-bar {
  background: var(--dark);
  color: var(--white);
  padding: 24px 0;
}

.breadcrumb-bar a,
.breadcrumb-bar span {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  opacity: .86;
}

.breadcrumb-bar b {
  color: var(--cyan);
  margin: 0 10px;
}

.image-banner {
  min-height: 500px;
  position: relative;
  background: center / cover no-repeat;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.roof-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.roof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
}

.roof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--paper);
}

.roof-card-body {
  padding: 28px 28px 32px;
}

.roof-card .tag {
  display: block;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.roof-card h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 800;
}

.roof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.locations-cinema {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 22, 24, .94), rgba(17, 22, 24, .99));
  color: var(--white);
}

.locations-cinema .eyebrow {
  color: var(--cyan);
}

.locations-cinema h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 800;
}

.locations-section-head {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.location-cinema-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(238px, auto);
  gap: 16px;
}

.location-cinema-card {
  min-height: 238px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: center / cover no-repeat;
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-cinema-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .82)),
    linear-gradient(90deg, rgba(0, 56, 64, .72), rgba(0, 0, 0, .08));
  transition: opacity 180ms ease;
}

.location-cinema-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, .12);
  transition: transform 260ms ease;
}

.location-cinema-card:hover {
  transform: translateY(-2px);
}

.location-cinema-card:hover::before {
  opacity: .86;
}

.location-cinema-card.feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 492px;
}

.location-card-content {
  width: 100%;
  padding: 24px;
}

.location-cinema-card.feature .location-card-content {
  padding: 32px;
}

.location-card-content span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-card-content strong {
  display: block;
  color: var(--white);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 800;
}

.location-cinema-card.feature .location-card-content strong {
  max-width: 560px;
  font-size: clamp(36px, 4.5vw, 58px);
}

.location-card-content em {
  display: block;
  max-width: 500px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 600;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: center / cover no-repeat;
  color: var(--white);
}

.home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 56, 64, .9), rgba(17, 22, 24, .74) 48%, rgba(17, 22, 24, .92));
}

.home-final-cta .wrap {
  position: relative;
  z-index: 1;
}

.home-final-cta .eyebrow {
  color: var(--cyan);
}

.home-final-cta h2 {
  max-width: 880px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  font-weight: 800;
}

.home-final-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ghost-button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .56);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ghost-button:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.info-tile {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.info-tile h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
}

.info-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
}

.contact-box {
  min-width: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-box p,
.contact-box a {
  overflow-wrap: anywhere;
}

.contact-box h2,
.contact-box h3 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hp-field {
  display: none !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  padding: 12px 15px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 148px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-button::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
}

.accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  padding: 18px 0 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  width: min(var(--max), calc(100vw - 84px));
  margin: 0 auto;
  padding: 62px 0 46px;
  display: grid;
  grid-template-columns: 1.35fr .75fr .75fr .75fr;
  gap: 48px;
}

.footer .brand {
  width: 278px;
  filter: brightness(0) invert(1);
}

.footer .map-embed {
  min-height: 210px;
  margin-top: 22px;
}

.footer .map-embed iframe {
  min-height: 210px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.55;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  text-decoration: none;
}

.footer a:hover {
  color: var(--cyan);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 18px 0;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.footer-bottom a {
  display: inline;
  margin-left: 20px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .nav-row {
    height: 65px;
    padding: 0 17px;
  }

  .utility-strip {
    display: none;
  }

  .brand {
    width: 152px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
    min-width: 50px;
    min-height: 46px;
    padding-inline: 13px;
  }

  .mobile-menu {
    top: 65px;
    right: 14px;
    bottom: 14px;
    width: min(420px, calc(100vw - 28px));
  }

  .home-hero {
    min-height: 565px;
  }

  .hero-content {
    width: calc(100vw - 32px);
    padding: 28px 0 42px;
  }

  .home-hero h1 {
    max-width: 360px;
    margin-bottom: 34px;
    font-size: clamp(48px, 13vw, 64px);
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .hero-rule {
    margin-bottom: 32px;
  }

  .hero-intro {
    max-width: 340px;
    font-size: 25px;
  }

  .section {
    padding: 64px 0;
  }

  .wrap {
    width: calc(100vw - 34px);
  }

  .split,
  .gradient-band .wrap,
  .card-grid,
  .locations-section-head,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .location-cinema-card.feature {
    grid-column: span 2;
  }

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

  .footer-main {
    width: calc(100vw - 34px);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .menu-button {
    min-width: 46px;
    padding-inline: 10px;
  }

  .menu-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .mobile-menu {
    top: 65px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 17px 38px;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .mobile-menu-top a {
    font-size: 21px;
  }

  .marquee {
    min-height: 340px;
  }

  .marquee .wrap {
    padding: 54px 0 48px;
  }

  .marquee h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .image-banner {
    min-height: 320px;
  }

  .gradient-band {
    padding: 38px 0;
  }

  .gradient-band .wrap {
    gap: 20px;
  }

  .gradient-band h1,
  .gradient-band h2 {
    font-size: 33px;
    letter-spacing: .8px;
  }

  .gradient-band p {
    font-size: 18px;
  }

  .section h2,
  .section-title {
    font-size: 36px;
  }

  .locations-cinema,
  .home-final-cta {
    padding: 64px 0;
  }

  .location-cinema-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, auto);
  }

  .location-cinema-card,
  .location-cinema-card.feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 248px;
  }

  .location-cinema-card.feature .location-card-content strong {
    font-size: 36px;
  }

  .cta-actions {
    display: grid;
  }

  .cta-actions .solid-button,
  .cta-actions .ghost-button {
    width: 100%;
  }

  .lead,
  .body-copy p {
    font-size: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-tile {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom .wrap {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 9px 16px 0 0;
  }
}

/* brand-logo (raster brand image swap) — added once */
.brand{width:auto}
.brand-logo{height:34px;width:auto;display:block;max-width:320px}
.footer .brand{width:auto;filter:none}
.footer .brand-logo{height:46px;width:auto;display:block;max-width:300px}
