/* Color Palette */
:root {
  --sunrise-gold: #f3d26a;
  --sunrise-gold-dark: #dcb755;
  --clay-rose: #b75a43;
  --clay-rose-light: #c66a53;
  --clay-rose-dark: #8f3f2f;
  --cream: #f9f3e6;
  --shadow: rgba(34, 22, 17, 0.18);
  --charcoal: #352116;
  --body-font: "Montserrat", sans-serif;
  --display-font: "Cinzel Decorative", serif;
  --page-tint: linear-gradient(150deg, rgba(249, 243, 230, 0.92), rgba(243, 210, 106, 0.32));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  transition: opacity 1.4s ease;
}

body.page-fade-out {
  opacity: 0;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(120deg, var(--sunrise-gold) 0%, var(--clay-rose-light) 100%);
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand-mark {
  background: linear-gradient(150deg, var(--sunrise-gold) 0%, var(--clay-rose-dark) 100%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  box-shadow: 0 8px 20px rgba(183, 90, 67, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-mark.is-flying {
  cursor: grabbing;
}

.logo-scoreboard {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--display-font);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.08em;
  color: rgba(249, 243, 230, 0.92);
  text-transform: uppercase;
  text-shadow: 0 14px 35px rgba(53, 33, 22, 0.45);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}

.logo-scoreboard.is-visible {
  opacity: 1;
  transform: scale(1);
}

.logo-scoreboard.score-flash {
  animation: logoScorePop 0.35s ease;
}

@keyframes logoScorePop {
  0% {
    transform: scale(0.85);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

body.ice-mode > *:not(.ice-arena):not(#logo-scoreboard):not(.brand-mark--clone) {
  opacity: 0;
  pointer-events: none;
  filter: blur(4px);
  transition: opacity 0.5s ease, filter 0.6s ease;
}

.ice-arena {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(24, 46, 87, 0.65), rgba(14, 20, 30, 0.92));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1800;
}

.ice-arena.is-active {
  opacity: 1;
}

.ice-arena__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2.2rem);
}

.ice-arena__inner {
  position: relative;
  width: min(900px, 90vw);
  max-height: 90vh;
  aspect-ratio: 200 / 85;
  display: grid;
  place-items: center;
}

.ice-arena__rink {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.45));
}

.ice-arena__callout {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f9f3e6;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.ice-arena__callout.is-hidden {
  opacity: 0;
}

.ice-arena__goal-highlight {
  position: absolute;
  top: 32%;
  right: 8%;
  width: 18%;
  height: 36%;
  border-radius: 50px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.75), 0 0 30px rgba(255, 215, 0, 0.65),
    0 0 55px rgba(255, 160, 0, 0.45);
  animation: goalPulse 1.8s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.ice-arena__goal-highlight.is-hidden {
  opacity: 0;
}

@keyframes goalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.ice-arena__promo {
  font-family: var(--body-font);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 243, 230, 0.92);
  text-align: center;
  max-width: min(650px, 90vw);
  animation: icePromoPulse 3s ease-in-out infinite;
}

.ice-arena__reward-message {
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 243, 230, 0.9);
  text-align: center;
  max-width: min(720px, 92vw);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ice-arena__reward-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ice-arena__reward-message .reward-copy {
  font-size: 0.85em;
  display: inline;
}

.ice-arena__reward-message .reward-highlight {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: inherit;
}

@keyframes icePromoPulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

.ice-paddle {
  position: absolute;
  width: clamp(22px, 3vw, 32px);
  height: clamp(105px, 21vh, 180px);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.85), rgba(180, 210, 255, 0.45));
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.ice-paddle--logo {
  left: 12%;
  background: linear-gradient(150deg, rgba(243, 210, 106, 0.95), rgba(183, 90, 67, 0.85));
  box-shadow: 0 18px 30px rgba(183, 90, 67, 0.35);
}

.ice-paddle--logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.ice-paddle--user {
  left: 88%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(132, 182, 255, 0.75));
}

.ice-paddle--user::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.ice-paddle,
.ice-puck {
  will-change: transform;
}

.ice-puck {
  position: absolute;
  width: clamp(26px, 3vw, 36px);
  height: clamp(26px, 3vw, 36px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
}

.ice-puck::before {
  content: "";
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background:
    linear-gradient(150deg, var(--sunrise-gold) 0%, var(--clay-rose-dark) 100%);
  box-shadow: 0 8px 20px rgba(183, 90, 67, 0.35);
  display: block;
}

.ice-puck::after {
  content: "";
  position: absolute;
  inset: 12%;
  background-image: url("Assets/about/LogoWebsite.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.brand h1 {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.tagline {
  margin: 0.2rem 0 0;
  color: rgba(249, 243, 230, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-items: center;
}

.site-nav a {
  color: rgba(249, 243, 230, 0.95);
  position: relative;
  padding: 0.4rem 0.85rem;
  z-index: 0;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.site-nav a::before,
.cta::before,
.footer-links a::before {
  content: "";
  position: absolute;
  background: rgba(243, 210, 106, 0.35);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.site-nav a::before {
  inset: calc(-0.125in + 10px);
}

.cta::before {
  inset: 0;
}

.footer-links a::before {
  inset: 20% 12%;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(249, 243, 230, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cart-button {
  background: rgba(249, 243, 230, 0.18);
  border: 1px solid rgba(249, 243, 230, 0.35);
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cart-button:hover,
.cart-button:focus-visible {
  background: rgba(249, 243, 230, 0.28);
  transform: translateY(-1px);
}

.cart-count {
  background: var(--sunrise-gold);
  color: var(--charcoal);
  min-width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(243, 210, 106, 0.35);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(249, 243, 230, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.cta:hover::before,
.cta:focus-visible::before,
.footer-links a:hover::before,
.footer-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav a.active {
  color: #fff;
}

.site-nav a.active::after {
  transform: scaleX(1);
  height: 3px;
}

.hero {
  position: relative;
  min-height: clamp(540px, 74vh, 700px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  width: min(100vw, 100%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(
      140deg,
      rgba(243, 210, 106, 0.38),
      rgba(55, 31, 20, 0.35)
    ),
    linear-gradient(135deg, var(--clay-rose-light), var(--clay-rose-dark));
  color: var(--cream);
  overflow: hidden;
}

.hero-content {
  max-width: 640px;
  width: 100%;
  margin-left: 0;
  padding-right: clamp(1.5rem, 6vw, 5rem);
  display: grid;
  gap: clamp(1.2rem, 3.5vw, 1.8rem);
  text-align: left;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  }

  .hero-content {
    margin-left: 0;
    padding-right: 0;
    max-width: 100%;
    text-align: center;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 3rem;
  background: linear-gradient(150deg, rgba(243, 210, 106, 0.35), rgba(55, 31, 20, 0));
  filter: blur(0.5px);
}

@keyframes heroDrift {
  0% {
    transform: translate(-6%, -8%) rotate(20deg);
  }
  50% {
    transform: translate(8%, 10%) rotate(20deg);
  }
  100% {
    transform: translate(-6%, -8%) rotate(20deg);
  }
}

@keyframes heroDriftAlternate {
  0% {
    transform: translate(10%, 12%) rotate(20deg);
  }
  50% {
    transform: translate(-8%, -10%) rotate(20deg);
  }
  100% {
    transform: translate(10%, 12%) rotate(20deg);
  }
}

.hero::before {
  top: -10%;
  left: -15%;
  animation: heroDrift 36s ease-in-out infinite;
}

.hero::after {
  bottom: -20%;
  right: -10%;
  animation: heroDriftAlternate 42s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: saturate(140%) blur(0px);
  mix-blend-mode: soft-light;
}

.hero h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 0;
  position: relative;
  overflow: hidden;
  background: var(--sunrise-gold);
  color: var(--charcoal);
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px rgba(243, 210, 106, 0.3);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(243, 210, 106, 0.45);
}

.cta.secondary {
  background: transparent;
  color: var(--sunrise-gold);
  border: 2px solid rgba(243, 210, 106, 0.7);
}

.cta-script {
  background: #6d1f1f;
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(109, 31, 31, 0.35);
}

.cta-script::before {
  background: rgba(255, 255, 255, 0.12);
}

.cta-script:hover,
.cta-script:focus-visible {
  box-shadow: 0 22px 48px rgba(109, 31, 31, 0.45);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
}

.section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.8);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header--compact {
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}
.section-header--compact .section-accent {
  max-width: clamp(160px, 40%, 280px);
}

.section h2 {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--clay-rose-dark);
  text-transform: uppercase;
}

.section-accent {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--sunrise-gold), var(--clay-rose-dark));
  border-radius: 999px;
}

.about-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-size: 1.05rem;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 1.5rem;
}

.about-poster {
  margin: 0;
  max-width: clamp(240px, 30vw, 360px);
  justify-self: center;
}

.about-poster-link {
  display: block;
  border-radius: inherit;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.about-poster-link:focus {
  outline: none;
}

.about-poster-link:focus-visible img,
.about-poster-link:hover img {
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.26));
}

.about-poster img {
  width: 100%;
  border-radius: 1.25rem;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0.65) 75%,
    rgba(0, 0, 0, 0)
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0.65) 75%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-size: 125% 125%;
  mask-size: 125% 125%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-film {
  background: linear-gradient(
      140deg,
      rgba(243, 210, 106, 0.32),
      rgba(55, 31, 20, 0.16)
    ),
    linear-gradient(135deg, rgba(183, 90, 67, 0.65), rgba(53, 33, 22, 0.85));
  color: var(--cream);
  text-align: left;
  justify-items: start;
}

.hero-film-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-film .hero-content {
  max-width: 760px;
  text-align: left;
  gap: 1.75rem;
}

.hero-film-poster {
  margin: 0;
  max-width: clamp(240px, 32vw, 360px);
  justify-self: center;
}

.hero-film-poster img {
  width: 100%;
  border-radius: 1.25rem;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.22));
}

.hero-film .meta {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 243, 230, 0.75);
  margin: 0;
}

.cta-wrap--left {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-film-detail .cta.secondary {
  border-color: rgba(249, 243, 230, 0.8);
  color: rgba(249, 243, 230, 0.92);
}

.film-detail {
  background: rgba(255, 255, 255, 0.92);
}

.film-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.film-overview {
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
}

.film-overview h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  color: var(--clay-rose-dark);
  text-transform: uppercase;
}

.film-facts {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr);
  background: linear-gradient(150deg, rgba(243, 210, 106, 0.25), rgba(255, 255, 255, 0.8));
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.film-facts-column {
  display: grid;
  gap: 1.25rem;
}

.film-facts-column--cast {
  align-self: start;
}

.film-fact h4 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-rose);
}

.film-fact p,
.cast-list {
  margin: 0;
}

.cast-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.film-highlights {
  background: rgba(255, 255, 255, 0.85);
}

.film-highlights-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.film-press {
  background: linear-gradient(150deg, rgba(243, 210, 106, 0.18), rgba(183, 90, 67, 0.08));
}

.film-press-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  font-size: 0.95rem;
}

.film-press-grid h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-rose);
}

.page-film-detail .site-footer {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 210, 106, 0.35));
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(183, 90, 67, 0.08));
  pointer-events: none;
}

.card h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  color: var(--clay-rose);
  text-transform: uppercase;
}

.meta {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
}

.cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

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

.shop-column {
  display: grid;
  gap: 1.75rem;
}

.shop-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(243, 210, 106, 0.25));
  border-radius: 1.5rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(243, 210, 106, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover,
.shop-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.shop-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
}

.shop-card-media {
  position: relative;
  width: 100%;
  background: rgba(249, 243, 230, 0.7);
  border-bottom: 1px solid rgba(243, 210, 106, 0.2);
}

.shop-card--vertical .shop-card-media {
  aspect-ratio: 3 / 4;
}

.shop-card--horizontal .shop-card-media {
  aspect-ratio: 4 / 3;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.shop-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
}

.shop-card-body h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
  font-size: 1.1rem;
}

.shop-card-price {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(53, 33, 22, 0.75);
}

.shop-card-cta {
  align-self: end;
  justify-self: start;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--sunrise-gold-dark);
}

.product-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 6vw, 5rem);
}

.product-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.product-media {
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.75rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.product-media img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: contain;
  background: rgba(249, 243, 230, 0.8);
  padding: 0.75rem;
}

.product-info {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 232, 197, 0.5));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 1.75rem;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.1);
}

.product-back {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay-rose);
}

.product-info h2 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.product-starting {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(53, 33, 22, 0.6);
}

.product-price-block {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay-rose);
}

.product-form {
  display: grid;
  gap: 1.25rem;
}

.product-field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(53, 33, 22, 0.7);
}

.product-select,
.product-quantity {
  font-family: var(--body-font);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(53, 33, 22, 0.25);
  border-radius: 0.85rem;
  background: rgba(249, 243, 230, 0.85);
  color: var(--charcoal);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-select:focus,
.product-quantity:focus {
  outline: 3px solid rgba(243, 210, 106, 0.45);
  border-color: rgba(243, 210, 106, 0.6);
}

.product-submit {
  justify-self: start;
  padding-inline: 3rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: 100;
}

.cart-overlay.hidden {
  pointer-events: none;
  opacity: 0;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--cream);
  box-shadow: -18px 0 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
  z-index: 110;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.cart-panel.hidden {
  transform: translateX(100%);
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel-header h2 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--clay-rose);
}

.cart-empty {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(53, 33, 22, 0.65);
}

.cart-empty.hidden {
  display: none;
}

.cart-items {
  display: grid;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cart-item-media {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 0.8rem;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: grid;
  gap: 0.35rem;
}

.cart-item-info h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
}

.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.cart-item-meta input {
  width: 64px;
  padding: 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(53, 33, 22, 0.2);
  background: rgba(249, 243, 230, 0.85);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--clay-rose);
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-panel-footer {
  margin-top: auto;
  display: grid;
  gap: 1.2rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--clay-rose-dark);
}

.cart-actions {
  display: grid;
  gap: 0.75rem;
}

.contact {
  background: var(--page-tint);
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 1.5rem;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(53, 33, 22, 0.7);
}

.site-footer {
  background: var(--clay-rose-dark);
  color: rgba(249, 243, 230, 0.92);
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: rgba(249, 243, 230, 0.92);
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.footer-links a.footer-link {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link--icon {
  padding: 0.4rem;
}

.footer-link--icon .icon {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  color: inherit;
  filter: drop-shadow(0 0 6px rgba(243, 210, 106, 0.35));
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-instagram {
  border: 2px solid currentColor;
  border-radius: 0.45rem;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(243, 210, 106, 0.25),
      transparent 55%
    ),
    rgba(249, 243, 230, 0.08);
}

.icon-instagram::before {
  inset: 24%;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-instagram::after {
  top: 22%;
  right: 22%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: currentColor;
}

.icon-youtube {
  border: 2px solid currentColor;
  border-radius: 0.45rem;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(243, 210, 106, 0.22),
      transparent 60%
    ),
    rgba(249, 243, 230, 0.08);
}

.icon-youtube::before {
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.42rem 0 0.42rem 0.68rem;
  border-color: transparent transparent transparent currentColor;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.7;
}

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

.upcoming-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.upcoming-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 210, 106, 0.25));
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(243, 210, 106, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
}

.upcoming-card:hover,
.upcoming-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
}

.upcoming-card:focus-visible {
  outline: 3px solid rgba(243, 210, 106, 0.65);
  outline-offset: 4px;
}

.upcoming-card img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.upcoming-card h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
}

.upcoming-card p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(53, 33, 22, 0.7);
}

.media-chooser {
  padding-block: clamp(1.5rem, 5vw, 2.5rem);
  padding-inline: clamp(1.5rem, 6vw, 5rem);
  background: var(--page-tint);
}

.media-overview,
.services {
  background: var(--page-tint);
}

.media-chooser-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.media-chooser-label {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-rose-dark);
}

.media-switcher {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.media-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 140px;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 210, 106, 0.55);
  background: rgba(243, 210, 106, 0.2);
  color: var(--clay-rose-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.media-pill:hover,
.media-pill:focus-visible {
  outline: none;
  background: rgba(243, 210, 106, 0.35);
  transform: translateY(-2px);
}

.media-pill.is-active {
  background: linear-gradient(135deg, var(--clay-rose-light), var(--clay-rose));
  color: var(--cream);
  border-color: rgba(183, 90, 67, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(183, 90, 67, 0.25);
}

.media-pill.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.media-empty {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(53, 33, 22, 0.7);
  padding: clamp(2rem, 6vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  min-height: 80px;
}

.media-video {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  background: #000;
  aspect-ratio: 16 / 9;
}

.media-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hero-film-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  }

  .hero-film-poster {
    justify-self: end;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  }

  .about-poster {
    justify-self: end;
  }

  .film-facts {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  }
}

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

  .brand {
    justify-content: center;
    text-align: center;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cart-panel {
    width: min(100%, 420px);
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .hero {
    border-radius: 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

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

  .section-accent {
    width: 100%;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }

  .shop-gallery {
    grid-template-columns: 1fr;
  }
}
