:root {
  color-scheme: light;
  --sky: #87D6F6;
  --blue: #287294;
  --yellow: #FBD50B;
  --red: #E50617;
  --red-dark: #9B0D0F;
  --white: #FFFFFF;
  --cream: #FFFDF8;
  --text: #163B4D;
  --muted: #4f6470;
  --border: #dceff7;
  --shadow: 0 20px 48px rgba(22, 59, 77, 0.10);
  --navy: var(--blue);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 48px;
}

section {
  scroll-margin-top: 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 59, 77, 0.08);
  box-shadow: 0 6px 20px rgba(22, 59, 77, 0.05);
}

.nav-shell {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 116px;
  padding: 0 48px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-sign {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 13vw, 150px);
  max-width: 150px;
  margin-right: 0.25rem;
  transform: translateY(-2px);
}

.brand-sign-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(19, 35, 43, 0.12));
}

.brand-bulb-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-bulb {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9c2 0%, var(--yellow) 45%, #c59600 100%);
  opacity: 0.38;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(251, 213, 11, 0.25);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-bulb.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.16);
  box-shadow: 0 0 8px rgba(251, 213, 11, 0.72), 0 0 16px rgba(251, 213, 11, 0.3);
}

.logo-marquee {
  position: relative;
  width: 190px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marquee-sign {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 3px solid var(--blue);
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--white), var(--cream));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.marquee-label {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
}

.marquee-line {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.55rem;
  height: 4px;
  background: var(--red);
}

.marquee-bulbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.marquee-bulb {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.4;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.marquee-bulb.is-active {
  opacity: 1;
  transform: scale(1.2);
}

.marquee-bulb:nth-child(1) { top: 8px; left: 12px; }
.marquee-bulb:nth-child(2) { top: 8px; left: 36px; }
.marquee-bulb:nth-child(3) { top: 8px; left: 60px; }
.marquee-bulb:nth-child(4) { top: 8px; left: 84px; }
.marquee-bulb:nth-child(5) { top: 8px; left: 108px; }
.marquee-bulb:nth-child(6) { top: 8px; left: 132px; }
.marquee-bulb:nth-child(7) { top: 8px; left: 156px; }
.marquee-bulb:nth-child(8) { top: 28px; left: 12px; }
.marquee-bulb:nth-child(9) { top: 28px; left: 36px; }
.marquee-bulb:nth-child(10) { top: 28px; left: 60px; }
.marquee-bulb:nth-child(11) { top: 28px; left: 84px; }
.marquee-bulb:nth-child(12) { top: 28px; left: 108px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--blue);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.3rem 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: -0.1rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 59, 77, 0.12);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--blue);
}

.button-order {
  background: var(--red);
  color: var(--white);
  padding-inline: 1.2rem;
  box-shadow: 0 14px 24px rgba(229, 6, 23, 0.2);
}

.button-order:hover,
.button-order:focus-visible {
  background: var(--red-dark);
}

.hero {
  padding: 0 0 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, #fef8eb 100%);
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
}

.hero-grid,
.promo-grid,
.story-grid,
.visit-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  min-height: clamp(560px, 64vh, 660px);
  gap: clamp(2rem, 3vw, 3.5rem);
  width: 100%;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-copy {
  max-width: 500px;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1,
.promo-copy h2,
.section-heading h2,
.story-section h2,
.visit-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 0.95;
  color: var(--blue);
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-text,
.promo-copy p,
.story-section p,
.visit-card p,
.card-content p,
.footer-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-subtext {
  margin: 0.25rem 0 1.2rem;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 28rem;
}

.hours-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 360px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(22, 59, 77, 0.08);
  border-radius: 1rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue);
  font-weight: 700;
}

.hours-row span {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.press-page {
  min-height: auto;
  padding: 3rem 0 4rem;
}

.press-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.press-card {
  background: var(--white);
  border: 1px solid rgba(22, 59, 77, 0.08);
  border-radius: 1.25rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.press-card h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--blue);
}

.press-card p {
  margin: 0;
  color: var(--muted);
}

.press-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.press-publication {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.press-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}

.featured-press-card {
  grid-column: span 2;
}

.hero-media,
.promo-media,
.visit-visual {
  position: relative;
}

.promo-media img,
.visit-visual img,
.category-card img {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 43vw, 560px);
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
}

.hero-visual img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: none;
}

.promo-section {
  padding: 1rem 0 3rem;
}

.promo-grid {
  grid-template-columns: 0.95fr 1.05fr;
  background: linear-gradient(135deg, var(--sky) 0%, #dff8ff 100%);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 59, 77, 0.08);
}

.promo-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 1.15rem;
}

.preview-section {
  padding: 0.5rem 0 3.75rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.category-card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 59, 77, 0.08);
}

.category-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 0;
}

.card-content {
  padding: 1.15rem 1.2rem 1.35rem;
}

.card-content h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.story-section {
  padding: 1rem 0 3rem;
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border: 1px solid rgba(22, 59, 77, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.visit-section {
  padding: 0 0 3.5rem;
}

.visit-grid {
  grid-template-columns: 0.9fr 1.1fr;
  background: linear-gradient(135deg, var(--cream), #fef8e8);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.visit-card address {
  font-style: normal;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1rem;
}

.hours {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.visit-visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 2.5rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-logo {
  margin-bottom: 0.85rem;
}

.footer-logo .marquee-bulbs {
  display: none;
}

.footer-logo .marquee-sign {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-logo .marquee-label {
  color: #fff;
}

.footer-logo .marquee-line {
  background: var(--mustard);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .container {
    padding: 0 32px;
  }

  .nav-shell {
    padding: 0 32px;
  }

  .hero-grid,
  .promo-grid,
  .story-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
    max-width: none;
  }

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

@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }

  .nav-shell {
    position: relative;
    align-items: center;
    min-height: 96px;
    padding: 0 20px;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(19, 35, 43, 0.12);
    display: none;
    min-width: 220px;
    z-index: 10;
  }

  .site-nav.is-open {
    display: flex;
  }

  .button-order {
    margin-top: 0.3rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual img,
  .promo-media img,
  .visit-visual img {
    min-height: 260px;
  }

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

  .brand-sign {
    width: 128px;
  }

  .brand-bulb {
    width: 6px;
    height: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-bulb {
    transition: none;
    opacity: 0.74;
  }

  .brand-bulb.is-active {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 6px rgba(255, 213, 92, 0.4);
  }
}
