:root {
  --ink: #171717;
  --muted: #5e6269;
  --paper: #f6f2ea;
  --panel: #ffffff;
  --line: #d8d1c5;
  --red: #b3242c;
  --blue: #244a73;
  --gold: #b9872c;
  --shadow: 0 18px 48px rgba(18, 24, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans HK", "Avenir Next", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  background:
    linear-gradient(rgba(246, 242, 234, 0.82), rgba(246, 242, 234, 0.94)),
    url("https://static.wixstatic.com/media/6c485b_2bad9c9c4b3641dca4ee9203c2a8c1cc.jpg/v1/fill/w_1200,h_900,al_c,q_80,enc_avif,quality_auto/6c485b_2bad9c9c4b3641dca4ee9203c2a8c1cc.jpg");
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 234, 0.88);
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "Noto Sans HK", "Avenir Next", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 9px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-bottom-color: var(--red);
  color: var(--ink);
}

.language-switcher {
  align-items: center;
  border: 1px solid rgba(23, 23, 23, 0.16);
  display: inline-flex;
  flex-shrink: 0;
}

.language-switcher button {
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-left: 1px solid rgba(23, 23, 23, 0.16);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  height: 34px;
  letter-spacing: 0;
  padding: 0 10px;
}

.language-switcher button:first-child {
  border-left: 0;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.menu-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-button span {
  background: var(--paper);
  display: block;
  height: 2px;
  position: absolute;
  width: 18px;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 92px 32px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  min-height: calc(100vh - 76px);
  padding-top: 58px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-weight: 900;
  line-height: 1.05;
}

h1,
h2 {
  margin: 0 0 22px;
}

h1 {
  font-size: 96px;
}

.hero-title {
  font-family: "Barlow", "Noto Sans HK", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.92;
  max-width: 100%;
  white-space: nowrap;
}

.hero-tagline {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  margin: -8px 0 24px;
}

.tagline-heart {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 24px;
  margin: 0 0 16px;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-link,
.secondary-link,
.contact-links a,
.video-placeholder a {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 16px;
  text-decoration: none;
}

.primary-link {
  background: var(--ink);
  color: #fff;
}

.secondary-link,
.contact-links a,
.video-placeholder a {
  background: rgba(255, 255, 255, 0.54);
}

.hero-photo {
  margin: 0;
}

.hero-photo img,
.feature-image,
.wide-image,
.media-embed,
.gallery-item {
  box-shadow: var(--shadow);
}

.hero-photo img {
  background: rgba(255, 255, 255, 0.72);
  height: auto;
  padding: 8px;
  width: 100%;
}

.split {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
}

.feature-image {
  background: rgba(255, 255, 255, 0.72);
  height: auto;
  padding: 8px;
  width: 100%;
}

.feature-image.square {
  aspect-ratio: 1;
}

.wide-image {
  background: rgba(255, 255, 255, 0.72);
  height: auto;
  margin-top: 36px;
  padding: 8px;
  width: 100%;
}

.closing-line {
  color: var(--red);
  font-weight: 800;
}

.schedule-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.schedule-grid article {
  background: rgba(255, 255, 255, 0.76);
  border-left: 5px solid var(--red);
  min-height: 158px;
  padding: 18px;
}

.schedule-grid strong,
.schedule-grid span {
  display: block;
}

.schedule-grid strong {
  font-size: 18px;
  margin-bottom: 12px;
}

.schedule-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head p:last-child {
  color: var(--blue);
  font-weight: 700;
  max-width: 360px;
}

.media-embed {
  background: #101216;
  overflow: hidden;
  width: 100%;
}

.story-video,
.adult-video {
  aspect-ratio: 16 / 9;
}

.story-video {
  margin-top: 44px;
}

.adult-video {
  margin: 8px 0 34px;
}

.media-embed iframe,
.media-embed video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.calendar-embed {
  background: #fff;
  height: 600px;
  margin-top: 34px;
}

.contact-video {
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.belt-video-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  margin-top: 30px;
}

.belt-video-card {
  min-width: 0;
}

.belt-video {
  aspect-ratio: 9 / 16;
  margin-bottom: 16px;
}

.photo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-item {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 8px;
}

.gallery-item img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.compact {
  max-width: 760px;
}

.video-placeholder {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  margin-top: 22px;
  padding: 26px;
}

.contact-section .note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 24px;
  text-align: center;
}

.site-footer strong {
  font-family: "Barlow", "Noto Sans HK", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

@media (max-width: 940px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-button {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    background: rgba(246, 242, 234, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 14px 20px 20px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 12px;
    text-align: center;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
  }

  .hero-photo {
    max-width: 430px;
  }

  h1 {
    font-size: 86px;
  }

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

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 68px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    min-height: 72px;
    padding: 0 10px;
  }

  .brand {
    font-size: 18px;
  }

  .language-switcher button {
    font-size: 10px;
    height: 32px;
    padding: 0 4px;
  }

  .menu-button {
    height: 38px;
    width: 38px;
  }

  h1 {
    font-size: 48px;
  }

  .section {
    padding: 66px 18px;
  }

  .site-nav.is-open,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

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

  .belt-video-grid {
    grid-template-columns: minmax(0, 340px);
  }

  .calendar-embed {
    height: 520px;
  }

  .lead {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 6px;
    padding: 0 8px;
  }

  .brand {
    font-size: 16px;
  }

  .language-switcher button {
    padding: 0 3px;
  }

  .menu-button {
    height: 36px;
    width: 36px;
  }
}
