:root {
  --yellow: #ffea00;
  --black: #090909;
  --red: #ed321c;
  --paper: #fffdf0;
  --muted: #5c5c56;
  --line: rgba(9, 9, 9, 0.18);
  color: var(--black);
  font-family: "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.9), transparent 12rem),
    linear-gradient(135deg, #ffe900 0%, #fff34f 42%, #222 42.2%, #111 57%, #ffe900 57.3%);
  color: var(--black);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 235, 0, 0.92);
  border-bottom: 3px solid var(--black);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 168px;
}

nav {
  display: flex;
  gap: 8px;
  font-weight: 900;
}

nav a {
  padding: 10px 14px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
}

nav a:hover {
  border-color: var(--black);
  background: #fff;
}

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(32px, 7vw, 86px) clamp(18px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  width: 42vw;
  height: 120vh;
  left: 46%;
  top: -16vh;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(14deg);
}

.hero-copy,
.hero-art,
.section,
.promo-band,
.site-footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  color: #fff;
  background: var(--red);
  border: 3px solid var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    5px 5px 0 var(--black),
    -3px -3px 0 var(--black),
    0 0 18px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 3px solid var(--black);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--black);
}

.button.primary {
  background: var(--black);
  color: var(--yellow);
}

.button.secondary {
  background: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.quick-facts div,
.info-panel,
.map-card {
  border: 4px solid var(--black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.9);
}

.quick-facts div {
  padding: 16px;
}

dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.hero-art {
  margin: 0;
}

.hero-art img {
  width: min(100%, 560px);
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px clamp(16px, 5vw, 70px);
  background: var(--black);
}

.category-strip a {
  padding: 18px 14px;
  background: #fff;
  border: 3px solid var(--yellow);
  border-radius: 8px;
  color: var(--black);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.section,
.promo-band {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: #222;
  font-size: 20px;
  font-weight: 800;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.showcase-item {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 4px solid var(--black);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.9);
}

.showcase-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.showcase-item:hover img {
  transform: scale(1.04);
}

.showcase-item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 2px 2px 0 var(--black);
}

.info-panel li {
  color: #282820;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  background: var(--black);
  color: #fff;
}

.promo-band h2 {
  color: var(--yellow);
}

.promo-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 180px;
}

#event .promo-actions {
  display: none !important;
}

.promo-actions .button {
  width: 100%;
  text-align: center;
}

.promo-band p:not(.eyebrow) {
  color: #fffbe0;
  font-size: 20px;
  font-weight: 800;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 20px;
}

.info-panel {
  padding: 24px;
}

.info-panel ul {
  margin: 0;
  padding-left: 20px;
}

.visit-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.visit-panel p {
  margin-bottom: 8px;
  color: #282820;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
}

.visit-panel .button {
  width: fit-content;
}

.map-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

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

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 18px 92px;
  background: #fff;
  border-top: 4px solid var(--black);
  text-align: center;
}

.site-footer img {
  width: 220px;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.fine-print {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: none;
  width: min(92vw, 520px);
  transform: translateX(-50%);
  border: 3px solid var(--black);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.sticky-cta a {
  flex: 1;
  padding: 14px 12px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.sticky-cta a:first-child {
  background: var(--black);
  color: var(--yellow);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(100%, 500px);
  }

  .quick-facts,
  .category-strip,
  .product-showcase,
  .location-grid,
  .promo-band {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    gap: 16px;
  }

  .showcase-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .showcase-item img {
    min-height: 220px;
  }

  .category-strip {
    gap: 8px;
  }

  .promo-band .button {
    width: 100%;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 50px;
  }

  .lead {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .quick-facts div,
  .info-panel,
  .showcase-item {
    box-shadow: 4px 4px 0 var(--black);
  }

  .showcase-item figcaption {
    font-size: 14px;
  }
}
