/* ===================================
   Design Tokens / CSS Custom Properties
   =================================== */
:root {
  /* Colors */
  --color-orange: #F55931;
  --color-dark-orange: #EF3116;
  --color-red: #FF3A28;
  --color-turquoise: #00C9D4;
  --color-yellow: #F6CA1C;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-dark: #202020;
  --color-gray-darker: #262626;
  --color-gray-medium: #292929;
  --color-gray-light: #BCBCBC;
  --color-gray-muted: #939393;

  /* Typography - Using Cormorant Garamond as closest match to Lyon */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --container-width: 1440px;
  --section-padding: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   Accessibility
   =================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-turquoise);
  color: var(--color-black);
  padding: 8px 16px;
  font-weight: 600;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

:focus {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 2px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

h1 {
  font-size: 80px;
  letter-spacing: 0.8px;
}

h2 {
  font-size: 48px;
  letter-spacing: 0.96px;
}

h3 {
  font-size: 25px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-gray-light);
}

p {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1.4;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1.5px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-gray-dark);
}

.btn-outline--yellow {
  border-color: var(--color-yellow);
}

.btn-outline--yellow:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.btn svg {
  width: 8px;
  height: 16px;
}

/* ===================================
   Header
   =================================== */
.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  background-color: var(--color-orange);
  min-height: 317px;
}

.logo {
  grid-row: 1 / 3;
  grid-column: 1;
  padding: 40px 40px 40px 96px;
  align-self: start;
}

.logo img {
  width: 370px;
  height: 151px;
}

.main-nav {
  grid-row: 1;
  grid-column: 3;
  background-color: var(--color-dark-orange);
  padding: 23px 96px 23px 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

.main-nav a:hover {
  opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background-color: var(--color-dark-orange);
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger--active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger--active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header-headline {
  grid-row: 2;
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 100px 40px 40px;
}

.header-headline h1 {
  max-width: 877px;
  text-align: right;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 600px;
  overflow: visible;
}

.hero-image {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30.764%);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 87px;
  height: 87px;
  transition: transform 0.3s ease;
  z-index: 10;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button img {
  width: 100%;
  height: 100%;
}

.hero-accent {
  position: absolute;
  right: -29px;
  top: 33%;
  width: 58px;
  height: 522px;
  display: flex;
  flex-direction: column;
  gap: 17.4px;
  z-index: 10;
}

.hero-accent-bar {
  width: 58px;
  height: 6px;
  background-color: var(--color-red);
  border-radius: 3px;
  animation: slideInRight 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(100%);
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered animation delays for each bar */
.hero-accent-bar:nth-child(1) { animation-delay: 0.5s; }
.hero-accent-bar:nth-child(2) { animation-delay: 0.55s; }
.hero-accent-bar:nth-child(3) { animation-delay: 0.6s; }
.hero-accent-bar:nth-child(4) { animation-delay: 0.65s; }
.hero-accent-bar:nth-child(5) { animation-delay: 0.7s; }
.hero-accent-bar:nth-child(6) { animation-delay: 0.75s; }
.hero-accent-bar:nth-child(7) { animation-delay: 0.8s; }
.hero-accent-bar:nth-child(8) { animation-delay: 0.85s; }
.hero-accent-bar:nth-child(9) { animation-delay: 0.9s; }
.hero-accent-bar:nth-child(10) { animation-delay: 0.95s; }
.hero-accent-bar:nth-child(11) { animation-delay: 1s; }
.hero-accent-bar:nth-child(12) { animation-delay: 1.05s; }
.hero-accent-bar:nth-child(13) { animation-delay: 1.1s; }
.hero-accent-bar:nth-child(14) { animation-delay: 1.15s; }
.hero-accent-bar:nth-child(15) { animation-delay: 1.2s; }
.hero-accent-bar:nth-child(16) { animation-delay: 1.25s; }
.hero-accent-bar:nth-child(17) { animation-delay: 1.3s; }
.hero-accent-bar:nth-child(18) { animation-delay: 1.35s; }
.hero-accent-bar:nth-child(19) { animation-delay: 1.4s; }
.hero-accent-bar:nth-child(20) { animation-delay: 1.45s; }
.hero-accent-bar:nth-child(21) { animation-delay: 1.5s; }
.hero-accent-bar:nth-child(22) { animation-delay: 1.55s; }

/* ===================================
   Introduction Section
   =================================== */
.intro {
  background-color: var(--color-gray-medium);
  padding: 99px var(--section-padding) 38px;
  text-align: center;
}

.intro-content {
  max-width: 784px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro h2 {
  margin-bottom: 0;
}

.intro p {
  margin-bottom: 0;
}

.intro p strong {
  font-weight: 600;
}

/* ===================================
   Exhibits Section
   =================================== */
.exhibits {
  background-color: var(--color-gray-medium);
  padding: 0 0 36px 100px;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.header-line {
  width: 64px;
  height: 1.5px;
  background-color: var(--color-white);
}

.exhibit-cards {
  display: flex;
  gap: 19px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-top: 12px;
  margin-top: -12px;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.exhibit-cards::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.exhibit-card {
  flex: 0 0 469px;
  height: 422px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  cursor: pointer;
  /* Button reset */
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.exhibit-card:hover {
  transform: translateY(-8px);
}

.exhibit-image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.exhibit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 54.638%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.exhibit-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 12px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.exhibit-label span {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1.4;
}

.exhibit-label--yellow {
  background-color: var(--color-yellow);
}

.exhibit-label--turq {
  background-color: var(--color-turquoise);
}

.exhibit-label--orange {
  background-color: var(--color-orange);
}

.exhibit-arrow {
  width: 22px;
  height: auto;
}

/* Exhibit Menu Icon (hamburger icon) */
.exhibit-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 14px;
  color: var(--color-black);
}

.exhibit-menu-icon svg {
  width: 22px;
  height: 14px;
}

/* ===================================
   Exhibit Info Overlay (slide-up card)
   =================================== */
.exhibit-info-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 49px 19px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.4s;
  pointer-events: none;
  visibility: hidden;
}

.exhibit-card.overlay-active .exhibit-info-overlay {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

/* Disable hover lift when overlay is active */
.exhibit-card.overlay-active {
  transform: none !important;
}

.exhibit-info-overlay--yellow {
  background-color: var(--color-yellow);
}

.exhibit-info-overlay--turq {
  background-color: var(--color-turquoise);
}

.exhibit-info-overlay--orange {
  background-color: #F56A3D;
}

.exhibit-info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.exhibit-info-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
}

.exhibit-info-description {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.32px;
  color: var(--color-black);
  margin: 0;
}

.exhibit-info-close {
  position: absolute;
  bottom: 12px;
  right: 19px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exhibit-info-close:hover {
  opacity: 0.7;
}

.exhibit-info-close svg {
  width: 24px;
  height: 24px;
}

.exhibit-nav {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 36px;
  padding-right: 100px; /* Keep nav within site container */
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: var(--color-white);
  color: var(--color-gray-dark);
}

.nav-arrow--prev {
  opacity: 0.5;
}

/* ===================================
   Must-See Section
   =================================== */
.must-see {
  background-color: var(--color-gray-dark);
  padding: 80px 99px 100px;
}

.must-see-content {
  max-width: 1245px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 62px;
  align-items: center;
}

.must-see-header {
  text-align: center;
  max-width: 752px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 99px;
}

.must-see-header h2 {
  margin-bottom: 0;
}

.must-see-header p {
  max-width: 679px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 300;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 63px;
  width: 100%;
}

.info-card {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(180px, 1fr);
  gap: 44px;
  align-items: center;
}

.info-card:last-child {
  gap: 47px;
}

.info-image {
  width: 100%;
  height: 226px;
  position: relative;
  overflow: hidden;
}

.info-image img {
  width: 131.68%;
  height: 100%;
  object-fit: cover;
  margin-left: -2.69%;
}

.info-card:last-child .info-image {
  height: 228px;
}

.info-card:last-child .info-image img {
  width: 100%;
  margin-left: 0;
}

.info-triangle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 42px;
  background-color: var(--color-yellow);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-details > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.info-details h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-gray-light);
  margin-bottom: 0;
}

.info-details p {
  margin: 0;
}

.info-details p strong {
  font-weight: 600;
}

/* ===================================
   Explore Section
   =================================== */
.explore {
  display: grid;
  grid-template-rows: repeat(5, 195px);
  grid-template-columns: 1fr;
  background-color: var(--color-gray-dark);
}

.explore-bg-patterns {
  grid-row: 1 / 4;
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.bg-pattern {
  width: 100%;
  height: 345px;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.25;
}

.explore-content {
  grid-row: 2 / -1;
  grid-column: 1;
  background: linear-gradient(180deg, #292929 0%, #202020 100%);
  margin: 0 99px;
  padding: 66px 21px 100px;
  z-index: 1;
}

.explore-header {
  text-align: center;
  max-width: 531px;
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.explore-header h2 {
  margin-bottom: 0;
}

.amenity-cards {
  display: flex;
  gap: 32px;
  max-width: 1035px;
  margin: 0 auto;
}

.amenity-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.amenity-image {
  height: 221px;
}

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

.amenity-content {
  background-color: var(--color-gray-medium);
  border-top: 3px solid var(--color-orange);
  padding: 28px 33px;
  min-height: 186px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-content h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 10px;
}

.amenity-content p {
  line-height: 1.4;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  background-color: var(--color-gray-dark);
  padding: 2rem 0 11rem;
}

.faq > h2 {
  text-align: center;
  margin-bottom: 52px;
}

.accordion {
  max-width: 1035px;
  margin: 0 auto;
}

.accordion-item {
  border-top: 1px solid var(--color-white);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--color-white);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 40px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header span {
  flex: 1;
}

.accordion-header:hover {
  background-color: rgba(255,255,255,0.05);
}

.accordion-icon {
  flex-shrink: 0;
  width: 32px;
  height: 22px;
  color: var(--color-turquoise);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 49px 40px;
  background-color: var(--color-gray-medium);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.accordion-content a {
  text-decoration: underline;
}

.accordion-content--open {
  max-height: 500px;
}

.accordion-item--active {
  background-color: var(--color-turquoise);
  border-top-color: var(--color-black);
}

.accordion-item--active .accordion-header {
  color: var(--color-black);
  font-weight: 700;
}

.accordion-item--active .accordion-icon {
  height: 11px;
  color: var(--color-turquoise);
  filter: brightness(0.7);
}

.accordion-item--active .accordion-header:hover {
  background-color: rgba(0,0,0,0.05);
}

.accordion-item--active + .accordion-item {
  border-top-color: var(--color-white);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
  display: flex;
  height: 478px;
}

.cta-content {
  background-color: var(--color-orange);
  width: 585px;
  flex-shrink: 0;
  padding: 80px 80px 80px 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-icon {
  width: 48px;
  height: 23.285px;
}

.cta-text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cta-text h2 {
  font-size: 70px;
  letter-spacing: 0.7px;
  max-width: 393px;
  line-height: 1;
}

.cta-arrow {
  display: block;
  width: 20px;
  height: 52px;
  transition: transform 0.3s ease;
}

.cta-arrow:hover {
  transform: translateX(5px);
}

.cta-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.cta-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 45.791%);
  mix-blend-mode: multiply;
  z-index: 1;
}

.cta-image img {
  width: 102.45%;
  height: 122.18%;
  object-fit: cover;
  margin-top: -6.52%;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: #1A1A1A;
  padding: 100px 105px 34px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5rem solid var(--color-gray-dark);
}

.footer-accent-pattern {
  position: absolute;
  top: -20px;
  right: -130px;
  width: 263px;
  height: 508px;
  pointer-events: none;
  z-index: 0;
}

.footer-lines {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 94px;
  max-width: 1077px;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 370px;
  height: 151px;
}

.footer-nav {
  margin-left: 40px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 226px;
}

.footer-nav a {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 251px;
}

.footer-contact p {
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.social-links a {
  width: 20px;
  height: 20px;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.28px;
  color: var(--color-gray-muted);
  line-height: 1.3;
  max-width: 600px;
}

.footer-bottom a {
  transition: color 0.3s ease;
}

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

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1440px) {
  .header-content {
    padding: 0;
  }

  .logo {
    padding: 30px 50px;
  }

  .logo img {
    width: 280px;
  }

  .main-nav {
    padding: 23px 50px 23px 30px;
  }

  .main-nav ul {
    gap: 15px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 60px;
    max-width: 650px;
  }
}

@media (max-width: 1200px) {
  :root {
    --section-padding: 60px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .explore {
    grid-template-rows: repeat(7, 195px);
  }

  .explore-bg-patterns {
    grid-row: 1 / 4;
    grid-template-columns: repeat(3, 1fr);
  }

  .explore-content {
    margin: 0 60px;
    padding: 50px 20px 80px;
  }

  .bg-pattern {
    height: 280px;
  }

  .amenity-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .amenity-card {
    flex: 0 1 calc(50% - 16px);
    max-width: 400px;
  }

  .cta {
    flex-direction: column;
  }

  .cta-content {
    width: 100%;
    padding: 60px;
  }

  .cta-image {
    height: 400px;
  }

  .footer-main {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-nav {
    margin-left: 0;
  }

  .footer-nav ul {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-logo img {
    width: 100%;
    max-width: 370px;
    height: auto;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* Mobile Header Layout */
  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .logo {
    grid-row: 1;
    grid-column: 1;
    padding: 20px 30px;
  }

  .logo img {
    width: 200px;
    height: auto;
  }

  .hamburger {
    display: flex;
    grid-row: 1;
    grid-column: 2;
    align-self: start;
  }

  .main-nav {
    grid-row: 2;
    grid-column: 1 / 3;
    display: none;
    flex-direction: column;
    padding: 20px 30px;
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

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

  .header-headline {
    grid-row: 3;
    grid-column: 1 / 3;
    padding: 20px 30px 40px;
    justify-content: flex-start;
  }

  .header-headline h1 {
    text-align: left;
    font-size: 36px;
  }

  .hero {
    height: 400px;
  }

  .hero-accent {
    display: none;
  }

  .exhibit-cards {
    gap: 15px;
  }

  .exhibit-card {
    flex: 0 0 85vw;
    height: 300px;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 30px;
  }

  h2 {
    font-size: 28px;
  }

  .intro {
    padding: 60px var(--section-padding);
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-image {
    width: 100%;
    height: 200px;
  }

  .info-details {
    text-align: center;
    align-items: center;
  }

  .explore {
    grid-template-rows: 200px 100px 100px auto;
  }

  .explore-bg-patterns {
    grid-row: 1 / 4;
    grid-template-columns: repeat(2, 1fr);
  }

  .bg-pattern {
    height: 200px;
  }

  .bg-pattern:nth-child(5),
  .bg-pattern:nth-child(6) {
    display: none;
  }

  .explore-content {
    margin: 0 30px;
    padding: 40px 15px 60px;
  }

  .amenity-card {
    flex: 1 1 100%;
  }

  .accordion-header {
    padding: 15px 20px;
    font-size: 16px;
  }

  .accordion-content p {
    padding: 30px 20px;
    font-size: 16px;
  }

  .cta-text h2 {
    font-size: 42px;
  }

  .footer {
    padding: 60px 30px;
  }

  .exhibits {
    padding: 0 20px 36px;
  }

  .exhibit-nav {
    padding-right: 20px;
  }

  .must-see {
    padding: 60px 30px 80px;
  }

  .cta-content {
    width: 100%;
    padding: 40px 30px;
  }

  .cta-text h2 {
    font-size: 36px;
    max-width: 280px;
  }

  .accordion {
    margin: 0 20px;
  }

  .faq {
    padding: 2rem 0 6rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 200px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  h2 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .exhibits {
    padding: 0 15px 30px;
  }

  .exhibit-nav {
    padding-right: 15px;
  }

  .must-see {
    padding: 40px 20px 60px;
  }

  .cta-content {
    padding: 30px 20px;
  }

  .cta-text h2 {
    font-size: 28px;
  }
}

/* ===================================
   Scroll-Triggered Animations (CSS Only)
   Using modern scroll-driven animations API
   Only applies in browsers that support animation-timeline
   (Chrome 115+, Edge 115+). Safari/Firefox gracefully degrade.
   =================================== */

@supports (animation-timeline: view()) {
  /* Keyframes for subtle fade-in with upward motion */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Keyframes for subtle fade-in only */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Keyframes for scale entrance */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Introduction Section Animation */
  .intro-content {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
  }

  /* Exhibits Section - Section header */
  .section-header {
    animation: fadeIn ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 85%;
  }


  /* Must-See Section */
  .must-see-header {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
  }

  /* Info Cards with staggered entrance */
  .info-card {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 100%;
  }

  .info-card:nth-child(2) {
    animation-range: entry 50% entry 100%;
  }

  /* Explore Section */
  .explore-header {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
  }

  /* Amenity Cards with staggered entrance */
  .amenity-card {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 100%;
  }

  .amenity-card:nth-child(2) {
    animation-range: entry 45% entry 100%;
  }

  .amenity-card:nth-child(3) {
    animation-range: entry 50% entry 100%;
  }

  /* FAQ Section */
  .faq > h2 {
    animation: fadeIn ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
  }

  .accordion-item {
    animation: fadeIn ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 95%;
  }

  /* CTA Section */
  .cta-content {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 100%;
  }

  .cta-image {
    animation: fadeIn ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 100%;
  }

  /* Footer */
  .footer-main {
    animation: fadeInUp ease-out both;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
  }
}

/* ===================================
   Reduced Motion Preference
   Respects user's system preference for reduced motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
  /* Disable all scroll-driven animations */
  .intro-content,
  .section-header,
  .exhibit-card,
  .must-see-header,
  .info-card,
  .explore-header,
  .amenity-card,
  .faq > h2,
  .accordion-item,
  .cta-content,
  .cta-image,
  .footer-main {
    animation: none;
  }

  /* Also disable the hero accent bar animations */
  .hero-accent-bar {
    animation: none;
    opacity: 1;
    transform: translateX(0);
  }

  /* Disable other transitions that could cause motion */
  html {
    scroll-behavior: auto;
  }

  /* Keep hover states but remove animated transitions */
  .btn,
  .main-nav a,
  .nav-arrow,
  .play-button,
  .accordion-header,
  .accordion-content,
  .cta-arrow,
  .footer-nav a,
  .social-links a,
  .footer-bottom a {
    transition: none;
  }
}
