/*
 * T2S LP shared design system
 * Edit the tokens in :root to update every matching component at once.
 */
:root {
  /* Brand colors */
  --black: #0b0b0b;
  --charcoal: #1a1a1a;
  --ink: #171717;
  --gray: #171717;
  --light-gray: #eeeeec;
  --ivory: #f7f4ee;
  --white: #ffffff;
  --red: #8b1e1e;
  --red-dark: #640d0d;
  --gold: #c9ccd0;
  --gold-deep: #5f6367;
  --line: #d8dadd;

  /* Typography */
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --display: "Times New Roman", "Yu Mincho", serif;
  --component-body-size: 15px;
  --component-body-weight: 400;
  --component-body-line-height: 1.9;
  --component-heading-size: 44px;
  --component-heading-weight: 500;
  --component-heading-line-height: 1.48;
  --component-heading-space: 24px;
  --component-kicker-size: 14px;
  --component-kicker-weight: 500;
  --component-kicker-color: var(--gold-deep);

  /* Layout */
  --component-container-width: 1180px;
  --component-section-space: 104px;

  /* Buttons */
  --component-button-height: 52px;
  --component-button-padding-y: 13px;
  --component-button-padding-x: 26px;
  --component-button-gap: 12px;
  --component-button-radius: 3px;
  --component-button-font-size: 16px;
  --component-button-font-weight: 600;
  --component-button-hover-offset: -2px;
  --component-primary-bg: var(--red);
  --component-primary-hover: var(--red-dark);
  --component-primary-color: var(--white);
  --component-primary-border: #bc342f;

  /* Cards and effects */
  --component-card-radius: 4px;
  --component-shadow: 0 18px 46px rgba(11, 11, 11, 0.11);
  --shadow: var(--component-shadow);
}

body {
  font-size: var(--component-body-size);
  font-weight: var(--component-body-weight);
  line-height: var(--component-body-line-height);
}

/* Section heading component */
h2.component-heading {
  margin-bottom: var(--component-heading-space);
  font-family: var(--serif);
  font-size: var(--component-heading-size);
  font-weight: var(--component-heading-weight);
  line-height: var(--component-heading-line-height);
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--component-kicker-color);
  font-family: var(--display);
  font-size: var(--component-kicker-size);
  font-weight: var(--component-kicker-weight);
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before,
.section-heading.centered .section-kicker::after {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.section-kicker::before {
  margin-right: 12px;
}

.section-heading.centered .section-kicker::after {
  margin-left: 12px;
}

.section-kicker.light {
  --component-kicker-color: var(--gold);
  color: var(--component-kicker-color);
}

/* Button component */
.button {
  display: inline-flex;
  min-height: var(--component-button-height);
  align-items: center;
  justify-content: center;
  gap: var(--component-button-gap);
  padding: var(--component-button-padding-y) var(--component-button-padding-x);
  border: 1px solid transparent;
  border-radius: var(--component-button-radius);
  font-family: var(--serif);
  font-size: var(--component-button-font-size);
  font-weight: var(--component-button-font-weight);
  line-height: 1.3;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: var(--component-primary-color);
  border-color: var(--component-primary-border);
  background: var(--component-primary-bg);
  box-shadow: 0 9px 24px rgba(139, 30, 30, 0.26);
}

.button:hover {
  transform: translateY(var(--component-button-hover-offset));
}

.button-primary:hover {
  background: var(--component-primary-hover);
}

.button-outline-light {
  color: var(--ink);
  border-color: rgba(180, 184, 188, 0.75);
  background: var(--white);
}

.button-outline-light:hover {
  color: var(--ink);
  border-color: var(--gold-deep);
  background: var(--ivory);
}

.button-outline-dark {
  color: var(--white);
  border-color: var(--gold-deep);
  background: var(--gold-deep);
}

.button-outline-dark:hover {
  color: var(--ink);
  background: var(--gold);
}

.button .lucide-circle-play polygon {
  fill: currentColor;
  stroke: currentColor;
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
}

.button-compact-apply {
  width: 198px;
  min-width: 198px;
  font-weight: 500;
}

.button-premium-cta {
  position: relative;
  width: 446px;
  max-width: 100%;
  min-height: 90px;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 44px;
  overflow: hidden;
  color: var(--white);
  border: 2px solid var(--gold-deep);
  border-image: linear-gradient(180deg, #e4e6e8 0%, var(--gold-deep) 48%, #4b4e51 100%) 1;
  border-radius: 0;
  background: linear-gradient(180deg, #a9181d 0%, #760609 52%, #4a0002 100%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.05), 0 12px 28px rgba(72, 0, 2, 0.2);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.button-premium-cta::before {
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 230, 151, 0.24);
  content: "";
  pointer-events: none;
}

.button-premium-cta svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold);
  stroke-width: 1.4;
}

.button-premium-cta:hover {
  color: var(--white);
  background: linear-gradient(180deg, #b72025 0%, #82090c 52%, #560003 100%);
}

.button-large {
  min-width: 260px;
  min-height: 60px;
  font-size: 18px;
}

.button-wide {
  width: 100%;
}

.quick-cta,
.mobile-sticky-cta > a {
  background: var(--component-primary-bg);
}

.quick-cta:hover,
.mobile-sticky-cta > a:hover {
  background: var(--component-primary-hover);
}

/* Shared layout and surface components */
.container {
  width: min(var(--component-container-width), calc(100% - 64px));
}

.section {
  padding-top: var(--component-section-space);
  padding-bottom: var(--component-section-space);
}

.program-card,
.price-card,
.movie-link,
.video-frame,
.seat-map,
.briefing-image {
  border-radius: var(--component-card-radius);
}

br.codex-break-all,
br.codex-break-desktop {
  display: inline !important;
}

br.codex-break-mobile {
  display: none !important;
}

@media (max-width: 900px) {
  :root {
    --component-heading-size: 36px;
    --component-section-space: 88px;
  }

  h2.component-heading {
    font-size: min(var(--component-heading-size), 36px);
  }

  .section {
    padding-top: min(var(--component-section-space), 88px);
    padding-bottom: min(var(--component-section-space), 88px);
  }
}

@media (max-width: 680px) {
  :root {
    --component-heading-size: 28px;
    --component-kicker-size: 12px;
    --component-section-space: 76px;
    --component-button-padding-x: 20px;
  }

  br.codex-break-all,
  br.codex-break-mobile {
    display: inline !important;
  }

  br.codex-break-desktop {
    display: none !important;
  }

  .container {
    width: min(560px, calc(100% - 36px));
  }

  h2.component-heading {
    font-size: min(var(--component-heading-size), 28px);
  }

  .section {
    padding-top: min(var(--component-section-space), 76px);
    padding-bottom: min(var(--component-section-space), 76px);
  }

  .section-kicker {
    margin-bottom: 14px;
  }

  .section-kicker::before,
  .section-heading.centered .section-kicker::after {
    width: 22px;
  }
}
