* {
  box-sizing: border-box;
}

:root {
  --red: #ef2b26;
  --blue: #0b4b92;
  --black: #080808;
  --off-white: #f4f1ea;
  --white: #ffffff;
  --line: rgba(255,255,255,.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 82px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 32px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
}

.site-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 5vw 8vw;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(0,0,0,.82) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow,
.section-label,
.show-type {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero h1,
.section h2,
.statement h2 {
  font-family: "Archivo Black", Arial, sans-serif;
  margin: 12px 0 20px;
  line-height: .88;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(4.2rem, 11vw, 10rem);
}

.hero-copy {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid white;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: .8rem;
}

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

.button-secondary:hover,
.button-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 36px;
  padding: 17px 0;
  animation: ticker 25s linear infinite;
  font-family: "Archivo Black", Arial, sans-serif;
  letter-spacing: .03em;
}

.ticker-track span::after {
  content: "✦";
  margin-left: 36px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 110px 5vw;
  border-bottom: 1px solid var(--line);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8vw;
  align-items: start;
  margin-top: 45px;
}

.section h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.about-copy {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading-row p {
  max-width: 430px;
  color: rgba(255,255,255,.62);
}

.show-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.show-card {
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: .25s ease;
}

.show-card:hover {
  padding-left: 18px;
  background: rgba(255,255,255,.025);
}

.show-date {
  display: flex;
  flex-direction: column;
}

.show-date strong {
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.show-date span {
  font-size: .72rem;
  letter-spacing: .08em;
  margin-top: 8px;
}

.show-info h3 {
  margin: 4px 0 6px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
}

.show-info p {
  margin: 0;
  color: rgba(255,255,255,.63);
}

.show-arrow {
  font-size: 2rem;
  text-align: right;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-grid article {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-grid article span {
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
}

.project-grid h3 {
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  margin: 60px 0 14px;
}

.project-grid p {
  max-width: 440px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

.statement {
  min-height: 55vh;
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
  color: var(--black);
}

.statement p {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .11em;
  font-size: .8rem;
}

.statement h2 {
  font-size: clamp(4rem, 10vw, 10rem);
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links a {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links span {
  display: block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.contact-links strong {
  font-size: clamp(1rem, 2vw, 1.4rem);
  word-break: break-word;
}

.contact-grid > div:first-child p {
  max-width: 500px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

footer {
  padding: 34px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: .85rem;
}

.footer-brand img {
  width: 42px;
}

.footer-copy {
  display: flex;
  gap: 22px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 18px 5vw;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 6.5rem);
  }

  .about-grid,
  .contact-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .show-card {
    grid-template-columns: 88px 1fr 30px;
    gap: 16px;
  }

  .show-date strong {
    font-size: 2.6rem;
  }

  .project-grid article {
    min-height: 230px;
  }

  footer,
  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Home update — July 2026 */
.about-intro {
  min-width: 0;
}

.about-image {
  display: block;
  width: 100%;
  margin-top: 36px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  border: 1px solid var(--line);
}

.show-card {
  grid-template-columns: 112px 120px 1fr 50px;
  cursor: pointer;
}

.show-poster {
  width: 112px;
  height: 142px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255,255,255,.25);
  filter: grayscale(.15) contrast(1.04);
  transition: transform .25s ease, filter .25s ease;
}

.show-card:hover .show-poster {
  transform: rotate(-1.5deg) scale(1.025);
  filter: grayscale(0) contrast(1.04);
}

.project-grid h3 {
  margin-top: 18px;
}

.store {
  background: #101010;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--black);
  min-width: 0;
  transition: transform .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: var(--red);
}

.product-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #161616;
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  min-height: 150px;
}

.product-meta h3 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.03;
}

.product-meta span {
  margin-top: auto;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

footer {
  display: block;
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-title {
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-copy {
  justify-content: space-between;
  padding-top: 24px;
}

@media (max-width: 980px) {
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .show-card {
    grid-template-columns: 76px 70px 1fr 24px;
    gap: 12px;
    padding: 20px 0;
  }

  .show-poster {
    width: 76px;
    height: 98px;
  }

  .show-date strong {
    font-size: 2rem;
  }

  .show-date span {
    font-size: .58rem;
  }

  .show-info h3 {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  .show-info > p:last-child {
    font-size: .78rem;
  }

  .show-type {
    font-size: .58rem;
  }

  .show-arrow {
    font-size: 1.3rem;
  }

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

  .footer-main,
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .show-card {
    grid-template-columns: 68px 1fr 22px;
  }

  .show-poster {
    width: 68px;
    height: 88px;
  }

  .show-date {
    display: none;
  }
}

/* Mobile image sizing fix — July 2026 */
@media (max-width: 800px) {
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-grid {
    gap: 28px;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin-top: 24px;
  }

  .show-card {
    width: 100%;
    min-width: 0;
    grid-template-columns: 58px 64px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 16px 0;
  }

  .show-poster {
    width: 58px;
    height: 76px;
    max-width: 100%;
    object-fit: cover;
  }

  .show-info {
    min-width: 0;
  }

  .show-info h3,
  .show-info p {
    overflow-wrap: anywhere;
  }

  .show-info h3 {
    font-size: clamp(1.05rem, 5vw, 1.55rem);
  }

  .show-info > p:last-child {
    font-size: .7rem;
    line-height: 1.35;
  }

  .show-date strong {
    font-size: 1.65rem;
  }

  .show-date span,
  .show-type {
    font-size: .52rem;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .product-meta {
    padding: 12px;
    gap: 10px;
    min-height: 112px;
  }

  .product-meta h3 {
    font-size: clamp(.82rem, 3.7vw, 1.05rem);
    line-height: 1.12;
  }

  .product-meta span {
    font-size: .55rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .show-card {
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .show-poster {
    width: 54px;
    height: 72px;
  }

  .show-date {
    display: none;
  }

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

/* THPS responsive media lock — v4 */
@media (max-width: 800px) {
  .about-intro {
    width: 100%;
    overflow: hidden;
  }

  .about-image {
    display: block !important;
    width: 100% !important;
    max-width: 420px !important;
    height: min(58vw, 260px) !important;
    margin: 20px auto 0 !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .show-list {
    width: 100%;
    overflow: hidden;
  }

  .show-card {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 18px !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 13px 0 !important;
    overflow: hidden !important;
  }

  .show-poster {
    display: block !important;
    width: 48px !important;
    height: 64px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    object-fit: cover !important;
  }

  .show-date {
    display: none !important;
  }

  .show-info {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .show-info h3 {
    margin: 2px 0 4px !important;
    font-size: clamp(1rem, 5vw, 1.35rem) !important;
    line-height: 1 !important;
    white-space: normal !important;
  }

  .show-info p {
    max-width: 100% !important;
    font-size: .66rem !important;
    line-height: 1.25 !important;
  }

  .show-type {
    font-size: .48rem !important;
  }

  .show-arrow {
    font-size: 1rem !important;
  }

  .store-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .product-card {
    min-width: 0 !important;
    width: 100% !important;
  }

  .product-image-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .product-image-wrap img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }

  .product-meta {
    min-height: 88px !important;
    padding: 9px !important;
  }

  .product-meta h3 {
    font-size: clamp(.72rem, 3.2vw, .9rem) !important;
  }

  .product-meta span {
    font-size: .48rem !important;
  }
}

@media (max-width: 380px) {
  .about-image {
    height: 210px !important;
  }

  .show-card {
    grid-template-columns: 44px minmax(0, 1fr) 16px !important;
  }

  .show-poster {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 59px !important;
  }
}


/* Follow Us icon refinement — v5 */
.footer-social {
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.social-links svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: #fff;
}

@media (max-width: 800px) {
  .footer-main {
    align-items: flex-start;
  }

  .footer-social {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 24px;
    height: 24px;
  }

  .social-links svg {
    width: 16px;
    height: 16px;
  }
}
