/* 
 * ============================================================================
 * HOVER EFFECTS ARCHITECTURE
 * ============================================================================
 * 
 * This site uses CSS custom properties to control hover effects, ensuring they
 * only work on devices that support hover (desktop with mouse) and are disabled
 * on touch devices (mobile, tablets).
 * 
 * USAGE FOR NEW INTERACTIVE ELEMENTS:
 * 
 * 1. Use the pre-defined hover variables in your :hover states:
 *    - var(--hover-scale-sm)     : 1.1 scale for buttons/icons
 *    - var(--hover-scale-md)     : 1.15 scale for larger elements  
 *    - var(--hover-scale-img)    : 1.05 scale for images
 *    - var(--hover-lift)         : translateY(-4px) for cards
 *    - var(--hover-opacity-full) : opacity: 1 (for buttons, etc)
 *    - var(--hover-opacity-show) : opacity: 0 → 1 (for showing elements)
 *    - var(--hover-underline)    : width for underline animations (0 → 100%)
 * 
 * 2. For background color changes, use opacity overlays:
 *    - var(--hover-bg-light-alpha) : background alpha for light theme (0.08 → 0.15)
 *    - var(--hover-bg-dark-alpha)  : background alpha for dark theme (0.1 → 0.2)
 * 
 * 3. For box shadows:
 *    - var(--hover-shadow-light) : box shadow for light theme
 *    - var(--hover-shadow-dark)  : box shadow for dark theme
 * 
 * EXAMPLE:
 * .my-button {
 *   transition: transform 0.2s ease;
 * }
 * .my-button:hover {
 *   transform: var(--hover-scale-sm);
 * }
 * 
 * On touch devices, these variables default to "no change" values, so hover
 * effects are automatically disabled without additional media queries.
 * ============================================================================
 */

/* Default values for non-hover devices (mobile/touch) - NO EFFECTS */
:root {
  --hover-scale-sm: scale(1);
  --hover-scale-md: scale(1);
  --hover-scale-img: scale(1);
  --hover-lift: translateY(0);
  --hover-opacity-full: 0.6;
  --hover-opacity-show: 0;
  --hover-underline: 0;
  --hover-bg-light-alpha: 0.08;
  --hover-bg-dark-alpha: 0.1;
  --hover-shadow-light: none;
  --hover-shadow-dark: none;
}

/* Active values for hover-capable devices (desktop with mouse) */
@media (hover: hover) {
  :root {
    --hover-scale-sm: scale(1.1);
    --hover-scale-md: scale(1.15);
    --hover-scale-img: scale(1.05);
    --hover-lift: translateY(-4px);
    --hover-opacity-full: 1;
    --hover-opacity-show: 1;
    --hover-underline: 100%;
    --hover-bg-light-alpha: 0.15;
    --hover-bg-dark-alpha: 0.2;
    --hover-shadow-light: 0 8px 24px rgba(0, 0, 0, 0.1);
    --hover-shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

[data-theme="light"] {
  background-color: #cadee1;
  --header-fg: #1a1a1a;
  --header-control-bg: rgba(0, 0, 0, 0.08);
  --header-control-bg-strong: rgba(0, 0, 0, 0.1);
  --header-control-bg-hover: rgba(0, 0, 0, var(--hover-bg-light-alpha));
}

[data-theme="dark"] {
  background-color: #13191a;
  --header-fg: #f5f5f5;
  --header-control-bg: rgba(255, 255, 255, 0.1);
  --header-control-bg-strong: rgba(255, 255, 255, 0.15);
  --header-control-bg-hover: rgba(255, 255, 255, var(--hover-bg-dark-alpha));
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: system-ui, -apple-system, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Section pages: allow scrolling */
[data-section] body {
  justify-content: flex-start;
  padding-bottom: 4rem;
}

/* Full-bleed panoramic sections on section pages: sit flush to bottom */
[data-section] body:has(.home-panoramic:last-child) {
  padding-bottom: 0;
}

[data-section] .content:has(> .home-panoramic:last-child) {
  padding-bottom: 0;
}

[data-section] .home-panoramic {
  margin-top: 5rem;
}

/* Background image as pseudo-element for opacity control */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Light theme backgrounds */
[data-theme="light"] body::before {
  background-image: url('/images/bg-light-mobile.webp');
}

@media (min-width: 768px) {
  [data-theme="light"] body::before {
    background-image: url('/images/bg-light-desktop.webp');
  }
}

/* Dark theme backgrounds */
[data-theme="dark"] body::before {
  background-image: url('/images/bg-dark-mobile.webp');
}

@media (min-width: 768px) {
  [data-theme="dark"] body::before {
    background-image: url('/images/bg-dark-desktop.webp');
  }
}

/* Section pages: background at 10% opacity */
[data-section] body::before {
  opacity: 0.1;
}

/* Site header: single sticky container owning all top-of-page chrome. */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--header-fg);
  isolation: isolate;
}

[data-theme="light"] .site-header {
  background: #cadee1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .site-header {
  background: #13191a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
  background: inherit;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-header__identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-header__identity .header-line {
  margin: 0;
  text-align: left;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__controls .lang-switcher + .theme-toggle {
  margin-left: 0.75rem;
}

.header-divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: var(--header-fg);
  opacity: 0.3;
  margin: 0 0.25rem;
  flex-shrink: 0;
}

.site-header__billboard {
  text-align: center;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--header-fg);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 36px;
  padding: 0 0.75rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

.lang-link:hover {
  opacity: var(--hover-opacity-full);
}

.lang-link.active {
  opacity: 1;
  background-color: var(--header-control-bg-strong);
}

/* Site nav (section pages only) */
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  position: relative;
  color: var(--header-fg);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--header-fg);
  transition: width 0.3s ease;
}

.site-nav__link:hover {
  opacity: var(--hover-opacity-full);
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
  width: var(--hover-underline);
}

.site-nav__link.active {
  opacity: 1;
}

/* Theme toggle button */
.theme-toggle {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.2s ease, background-color 0.3s ease;
  overflow: hidden;
  background-color: var(--header-control-bg-strong);
  color: var(--header-fg);
}

.theme-toggle:hover {
  transform: var(--hover-scale-sm);
}

.theme-toggle:active {
  transform: scale(0.92);
}

/* Hamburger / nav toggle — visible only on small screens */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
  color: var(--header-fg);
  transition: transform 0.2s ease;
  overflow: hidden;
  padding: 0;
}

.nav-toggle:hover { transform: var(--hover-scale-sm); }
.nav-toggle:active { transform: scale(0.92); }

.nav-toggle .icon-menu,
.nav-toggle .icon-close {
  position: absolute;
  width: 20px;
  height: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle .icon-close { opacity: 0; transform: rotate(-90deg) scale(0.7); }
.site-header[data-menu-open] .nav-toggle .icon-menu { opacity: 0; transform: rotate(90deg) scale(0.7); }
.site-header[data-menu-open] .nav-toggle .icon-close { opacity: 1; transform: rotate(0) scale(1); }

@media (max-width: 1000px) {
  .site-header__left {
    flex: 1 1 auto;
    gap: 1rem;
  }
  .nav-toggle { display: inline-flex; }

  /* Put padding on the bar instead of the header so the slide-down nav
     can sit flush with the header's bottom edge and span edge-to-edge. */
  .site-header { padding: 0; }
  .site-header__bar { padding: 1.5rem; }

  /* Nav slides out from behind the header using clip-path instead of
     z-index (the nav is a descendant of the bar, so z-index can't cover
     it — clipping removes the glitch entirely). */
  .site-header__left .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem 1.25rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  [data-theme="light"] .site-header__left .site-nav {
    background: #cadee1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  [data-theme="dark"] .site-header__left .site-nav {
    background: #13191a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .site-header[data-menu-open] .site-header__left .site-nav {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .site-nav__link { font-size: 0.95rem; letter-spacing: 0.08em; height: auto; padding: 0.25rem 0; text-align: right; }
  .site-nav__link::after { bottom: 0; }
}

.site-nav__controls { display: none; }

@media (max-width: 500px) {
  .site-header__controls > .lang-switcher,
  .site-header__controls > .theme-toggle,
  .site-header__controls > .header-divider {
    display: none;
  }

  .site-nav__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
  }
}

.icon-sun,
.icon-moon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* Main content */
.content {
  text-align: center;
  padding: 2rem;
}

/* Home page: remove padding so sections sit flush */
html:not([data-section]) .content {
  padding: 0;
}

/* Home page: background covers the hero seamlessly */
html:not([data-section]) body::before {
  position: absolute;
  height: 100vh;
  bottom: auto;
}

/* Extend background color behind the hero to prevent gap */
.home-hero {
  position: relative;
}

/* Home sections — stacked full-width */
.home-hero,
.home-films,
.home-panoramic,
.home-about,
.home-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Only the hero takes the full viewport */
.home-hero {
  min-height: 100vh;
  width: 100%;
  margin-left: 0;
}

/* Home panoramic image */
.home-panoramic {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.home-panoramic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.home-panoramic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-panoramic-overlay .newsletter-text {
  color: #f5f5f5;
}

.home-panoramic-overlay .newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f5f5f5;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  min-width: 220px;
}

.home-panoramic-overlay .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-panoramic-overlay .newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #f5f5f5;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.home-panoramic-overlay .newsletter-form button {
  background: #f5f5f5;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-panoramic-overlay .newsletter-form button:hover {
  background: #ffffff;
  transform: var(--hover-scale-sm);
}

.home-panoramic-overlay .newsletter-status {
  width: 100%;
  text-align: center;
  color: #f5f5f5;
}

@media (max-width: 600px) {
  .home-panoramic-overlay {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 10px;
  }

  .home-panoramic-overlay .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .home-panoramic-overlay .newsletter-form input[type="email"] {
    min-width: unset;
    width: 100%;
  }

  .home-panoramic-overlay .newsletter-form button {
    width: 100%;
  }
}

/* Home section title */
.home-section-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 2.5rem;
}

[data-theme="light"] .home-section-title {
  color: #1a1a1a;
}

[data-theme="dark"] .home-section-title {
  color: #f5f5f5;
}

/* Home about section */
.home-about {
  padding: 4rem 2rem;
}

.home-about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .home-about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.home-about-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(70%);
}

.home-about-text {
  flex: 1;
}

.home-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

[data-theme="light"] .home-about-text {
  color: #1a1a1a;
}

[data-theme="light"] .home-about-text strong {
  color: #000;
}

[data-theme="dark"] .home-about-text {
  color: #f5f5f5;
}

[data-theme="dark"] .home-about-text strong {
  color: #fff;
}

.home-about-link {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.home-about-link:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .home-about-link {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

[data-theme="light"] .home-about-link:hover {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .home-about-link {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

[data-theme="dark"] .home-about-link:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
}

/* Home films section */
.home-films {
  padding: 4rem 2rem;
  text-align: center;
}

[data-theme="light"] .home-films {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .home-films {
  background: rgba(255, 255, 255, 0.03);
}

.home-films-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.home-film-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  padding: 0.75rem;
  padding-bottom: 1rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

@media (min-width: 640px) {
  .home-film-card {
    width: calc(33.333% - 1.34rem);
  }
}

.home-film-card {
  cursor: pointer;
}

.home-film-card:hover {
  transform: var(--hover-lift);
}

.home-film-card:hover .film-thumbnail img {
  transform: var(--hover-scale-img);
}

.home-film-card:hover .film-play {
  opacity: var(--hover-opacity-show);
}

[data-theme="light"] .home-film-card {
  color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .home-film-card:hover {
  box-shadow: var(--hover-shadow-light);
}

[data-theme="dark"] .home-film-card {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .home-film-card:hover {
  box-shadow: var(--hover-shadow-dark);
}

.home-films-link {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.home-films-link:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .home-films-link {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

[data-theme="light"] .home-films-link:hover {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .home-films-link {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

[data-theme="dark"] .home-films-link:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
}

/* Home newsletter section — inline below films */

.home-newsletter {
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 3rem 2rem;
}


@media (max-width: 600px) {
  .home-newsletter {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 10px;
  }

  .home-newsletter .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .home-newsletter .newsletter-form input[type="email"] {
    min-width: unset;
    width: 100%;
  }

  .home-newsletter .newsletter-form button {
    width: 100%;
  }
}

.home-location {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  text-align: center;
}

.home-claim {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin: 0 0 4rem;
  text-align: center;
  opacity: 0.8;
}

[data-theme="light"] .home-location,
[data-theme="light"] .home-claim {
  color: #1a1a1a;
}

[data-theme="dark"] .home-location,
[data-theme="dark"] .home-claim {
  color: #f5f5f5;
}

@media (max-width: 700px) {
  .home-location {
    font-size: 1.1rem;
  }

  .home-claim {
    font-size: 0.75rem;
    margin-bottom: 2.5rem;
  }
}

.title {
  font-family: 'Sedan', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .title {
    margin-bottom: -9px;
  }
}

[data-theme="light"] .title {
  color: #1a1a1a;
  -webkit-text-stroke: 2px #1a1a1a;
}

[data-theme="dark"] .title {
  color: #f5f5f5;
  -webkit-text-stroke: 2px #f5f5f5;
}

.subtitle {
  font-family: 'Sedan', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8rem;
}

[data-theme="light"] .subtitle {
  color: #1a1a1a;
}

[data-theme="dark"] .subtitle {
  color: #f5f5f5;
}

/* Billboard lines inside .site-header__billboard */
.header-line {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.header-line + .header-line {
  margin-top: 0.75rem;
}

.header-claim {
  font-size: 1.5rem;
}

.header-location {
  font-size: 0.75rem;
  opacity: 0.8;
}

.header-name {
  font-family: 'Sedan', serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  -webkit-text-stroke: 1px var(--header-fg);
}

.header-name-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-name-link:hover {
  opacity: 0.75;
}

.header-name--logo {
  -webkit-text-stroke: 0;
  line-height: 0;
}

.header-name-logo {
  display: block;
  width: auto;
  height: 2.4rem;
  color: var(--header-fg);
  transform-origin: center 60%;
  transition: transform 650ms cubic-bezier(0.25, 0.9, 0.25, 1);
}

.header-name-logo path {
  transition: stroke-width 650ms cubic-bezier(0.25, 0.9, 0.25, 1);
}

.header-name--logo .header-name-link:hover {
  opacity: 1;
}

.header-name--logo .header-name-link:hover .header-name-logo {
  transform: scale(1.06);
}

.header-name--logo .header-name-link:hover .header-name-logo path {
  stroke-width: 9;
}

@media (max-width: 700px) {
  .header-claim {
    font-size: 1.1rem;
  }

  .header-line + .header-line {
    margin-top: 0.35rem;
  }

  .header-location {
    font-size: 0.55rem;
  }
}

/* Home hero nav (films button + sections list) */
.home-hero nav {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Films Button - Hero CTA with glass effect */
.films-button {
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.films-button:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .films-button {
  color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .films-button:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .films-button {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .films-button:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* Navigation sections - 3 items: About / Contact / Press Kit */
.nav-sections {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 420px;
  width: 100%;
}

.nav-sections li {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 1.25rem;
}

.nav-sections li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.1em;
  width: 1px;
}

[data-theme="light"] .nav-sections li:not(:last-child)::after {
  background-color: rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .nav-sections li:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.nav-sections a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}

.nav-sections a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease;
}

.nav-sections a:hover::after {
  width: var(--hover-underline);
}

[data-theme="light"] .nav-sections a {
  color: #1a1a1a;
}

[data-theme="light"] .nav-sections a::after {
  background-color: #1a1a1a;
}

[data-theme="dark"] .nav-sections a {
  color: #f5f5f5;
}

[data-theme="dark"] .nav-sections a::after {
  background-color: #f5f5f5;
}

@media (max-width: 540px) {
  .nav-sections {
    flex-wrap: wrap;
    max-width: 300px;
  }
  .nav-sections li {
    flex: 0 0 auto;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
  }
  .nav-sections li:nth-child(2)::after {
    display: none;
  }
}

/* Social links */
.socials-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Compact spacing for small screens */
@media (max-height: 1000px) {
  .subtitle {
    margin-bottom: 2.5rem;
  }

  nav {
    margin-bottom: 2.5rem;
  }

  .socials {
    gap: 1rem;
  }

  .socials a {
    width: 40px;
    height: 40px;
  }

  .socials a svg {
    width: 20px;
    height: 20px;
  }
}

.socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  text-decoration: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.socials a:hover {
  transform: var(--hover-scale-md);
}

.socials a svg {
  width: 24px;
  height: 24px;
}

.social-label {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  height: 1rem;
}

.social-label.visible {
  opacity: 1;
}

[data-theme="light"] .socials a {
  color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .socials a:hover {
  background-color: rgba(0, 0, 0, var(--hover-bg-light-alpha));
}

[data-theme="light"] .social-label {
  color: #1a1a1a;
  text-shadow: 
    2px -1px 14px rgba(202, 222, 225, 0.95),
    -1px 2px 22px rgba(202, 222, 225, 0.7),
    0 -2px 18px rgba(202, 222, 225, 0.85),
    3px 1px 25px rgba(202, 222, 225, 0.6),
    -2px 0 16px rgba(202, 222, 225, 0.75),
    1px 3px 28px rgba(202, 222, 225, 0.9),
    -3px -1px 20px rgba(202, 222, 225, 0.5),
    0 2px 32px rgba(202, 222, 225, 0.8),
    2px -3px 24px rgba(202, 222, 225, 0.65),
    -1px 0 15px rgba(202, 222, 225, 1)
}

[data-theme="dark"] .socials a {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .socials a:hover {
  background-color: rgba(255, 255, 255, var(--hover-bg-dark-alpha));
}

[data-theme="dark"] .social-label {
  color: #f5f5f5;
}


/* Section Container (common styles for section pages) */
.section-container {
  width: 100%;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Films Container */
.films-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.film-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  padding: 0.75rem;
  padding-bottom: 2.75rem;
  position: relative;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  cursor: pointer;
}

@media (min-width: 640px) {
  .film-card {
    width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .film-card {
    width: calc(33.333% - 1.34rem);
  }
}

.film-card:hover {
  transform: var(--hover-lift);
}

.film-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

/* Skeleton loading animation */
.film-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.film-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 2;
  position: relative;
}

/* Fade in when image loads */
.film-thumbnail img.loaded {
  opacity: 1;
}

/* Hide skeleton when image is loaded */
.film-thumbnail:has(img.loaded)::before {
  display: none;
}

.film-card:hover .film-thumbnail img {
  transform: var(--hover-scale-img);
}

.film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.film-card:hover .film-play {
  opacity: var(--hover-opacity-show);
}

.film-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

[data-theme="light"] .film-play {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
}

[data-theme="dark"] .film-play {
  background-color: rgba(0, 0, 0, 0.8);
  color: #f5f5f5;
}

.film-info {
  padding: 1rem 0 0 0;
  text-align: center;
}

.film-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.film-location,
.film-date {
  position: absolute;
  bottom: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.film-location {
  left: 0.75rem;
}

.film-date {
  right: 0.75rem;
}

.film-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 85%;
  margin: 0 auto;
}

.film-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  opacity: 0.6;
}

.film-tag:first-child {
  opacity: 1;
  font-weight: 600;
  font-size: 0.7rem;
}

/* Smaller tags on mobile */
@media (max-width: 639px) {
  .film-tags {
    max-width: 95%;
  }

  .film-tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
  }
}

[data-theme="light"] .film-card {
  color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .film-card:hover {
  box-shadow: var(--hover-shadow-light);
}

[data-theme="light"] .film-thumbnail {
  background-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .film-tag {
  background-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .film-tag:first-child {
  background-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .film-card--live {
  background-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .film-card--live .film-tag:first-child {
  background: linear-gradient(165deg, #000000 0%, #13191a 40%, #3d4f5233 100%);
  color: #f5f5f5;
}

[data-theme="light"] .home-film-card.film-card--live {
  background-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .home-film-card.film-card--live .film-tag:first-child {
  background: linear-gradient(165deg, #000000 0%, #13191a 40%, #3d4f5233 100%);
  color: #f5f5f5;
}

[data-theme="dark"] .film-card {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .film-card:hover {
  box-shadow: var(--hover-shadow-dark);
}

[data-theme="dark"] .film-thumbnail {
  background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .film-tag {
  background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .film-tag:first-child {
  background-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .film-card--live {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 32px rgba(255, 255, 255, 0.18), 0 0 16px rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .film-card--live .film-tag:first-child {
  background: linear-gradient(165deg, #9bbcc0 0%, #cadee1 50%, #e8f5f7 100%);
  color: #1a1a1a;
}

[data-theme="dark"] .home-film-card.film-card--live {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 32px rgba(255, 255, 255, 0.18), 0 0 16px rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-film-card.film-card--live .film-tag:first-child {
  background: linear-gradient(165deg, #9bbcc0 0%, #cadee1 50%, #e8f5f7 100%);
  color: #1a1a1a;
}

/* About Page */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 3rem;
  }

  .about-image {
    grid-column: 1;
    grid-row: 1;
  }

  .about-content {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .about-socials {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }
}

.about-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(70%);
}

.about-content {
  flex: 1;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  font-weight: 600;
}

[data-theme="light"] .about-content {
  color: #1a1a1a;
}

[data-theme="light"] .about-content strong {
  color: #000000;
}

[data-theme="dark"] .about-content {
  color: #f5f5f5;
}

[data-theme="dark"] .about-content strong {
  color: #ffffff;
}

.about-socials {
  margin-top: 0;
}

@media (max-width: 767px) {
  .about-socials {
    margin-top: 0.5rem;
  }
}

/* Editorial hero — reused on each section page */
.page-hero-wrap {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

/* Contact Page */
.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Editorial header */
.contact-hero {
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

.contact-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.55;
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.contact-hero-title {
  font-family: 'Sedan', serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.contact-hero-title em {
  font-style: italic;
  opacity: 0.75;
}

.contact-hero-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38ch;
  opacity: 0.8;
}

[data-theme="light"] .contact-hero-title,
[data-theme="light"] .contact-eyebrow,
[data-theme="light"] .contact-hero-sub { color: #1a1a1a; }
[data-theme="dark"]  .contact-hero-title,
[data-theme="dark"]  .contact-eyebrow,
[data-theme="dark"]  .contact-hero-sub { color: #f5f5f5; }
[data-theme="light"] .contact-hero-title { -webkit-text-stroke: 0.5px #1a1a1a; }
[data-theme="dark"]  .contact-hero-title { -webkit-text-stroke: 0.5px #f5f5f5; }

/* Glass card */
.contact-card {
  border-radius: 14px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 820px) {
  .contact-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    padding: 3rem;
  }
}

[data-theme="light"] .contact-card {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .contact-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left column — contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 820px) {
  .contact-details {
    padding-right: 3rem;
    border-right: 1px solid;
  }
  [data-theme="light"] .contact-details { border-color: rgba(0, 0, 0, 0.12); }
  [data-theme="dark"]  .contact-details { border-color: rgba(255, 255, 255, 0.12); }
}

.contact-row-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.contact-row-value {
  font-size: 1rem;
  line-height: 1.55;
}

.contact-row-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.contact-row-value a:hover { opacity: 0.65; }

[data-theme="light"] .contact-details { color: #1a1a1a; }
[data-theme="dark"]  .contact-details { color: #f5f5f5; }

/* Socials row inside the details column */
.contact-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.contact-socials a:hover { transform: var(--hover-scale-md); }
.contact-socials svg { width: 20px; height: 20px; }

[data-theme="light"] .contact-socials a {
  color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .contact-socials a:hover {
  background-color: rgba(0, 0, 0, var(--hover-bg-light-alpha));
}
[data-theme="dark"] .contact-socials a {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .contact-socials a:hover {
  background-color: rgba(255, 255, 255, var(--hover-bg-dark-alpha));
}

/* Right column — form (BOXED inputs) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
  max-width: none;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

[data-theme="light"] .field label { color: rgba(26, 26, 26, 0.75); }
[data-theme="dark"]  .field label { color: rgba(245, 245, 245, 0.85); }

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  border: 1px solid;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

[data-theme="light"] .field input,
[data-theme="light"] .field textarea {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .field input:focus,
[data-theme="light"] .field textarea:focus {
  border-color: #1a1a1a;
  background-color: rgba(0, 0, 0, 0.04);
}
[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea {
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.03);
}
[data-theme="dark"] .field input:focus,
[data-theme="dark"] .field textarea:focus {
  border-color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.06);
}

.field input::placeholder,
.field textarea::placeholder { opacity: 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* Submit button — matches .home-about-link / .home-films-link exactly */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.form-submit {
  display: inline-block;
  font-size: 0.9rem;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  border: 1px solid;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.form-submit:hover { transform: var(--hover-scale-sm); }

[data-theme="light"] .form-submit {
  color: #1a1a1a;
  border-color: #1a1a1a;
}
[data-theme="light"] .form-submit:hover {
  background-color: #1a1a1a;
  color: #f5f5f5;
}
[data-theme="dark"] .form-submit {
  color: #f5f5f5;
  border-color: #f5f5f5;
}
[data-theme="dark"] .form-submit:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
}

.form-note {
  font-size: 0.7rem;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.contact-status {
  font-size: 0.9rem;
  min-height: 1.25rem;
  margin-top: 0.25rem;
  text-align: left;
}

.contact-status.success { color: #2d8a4e; }
.contact-status.error   { color: #c43c3c; }
[data-theme="dark"] .contact-status.success { color: #5fd87f; }
[data-theme="dark"] .contact-status.error   { color: #ff6b6b; }

/* Mobile — stack the card, remove the divider */
@media (max-width: 819px) {
  .contact-card { padding: 1.75rem; }
  .contact-details {
    padding-right: 0;
    border-right: none;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid;
  }
  [data-theme="light"] .contact-details { border-bottom-color: rgba(0, 0, 0, 0.12); }
  [data-theme="dark"]  .contact-details { border-bottom-color: rgba(255, 255, 255, 0.12); }
}

/* reCAPTCHA branding (required by Google) */
.recaptcha-branding {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  text-align: center;
  opacity: 0.25;
  max-width: 320px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  z-index: 10;
}

.recaptcha-branding a {
  text-decoration: none;
  opacity: 0.8;
}

.recaptcha-branding a:hover {
  text-decoration: underline;
  opacity: 1;
}

[data-theme="light"] .recaptcha-branding,
[data-theme="light"] .recaptcha-branding a {
  color: #1a1a1a;
}

[data-theme="dark"] .recaptcha-branding,
[data-theme="dark"] .recaptcha-branding a {
  color: #f5f5f5;
}

/* Hide the floating reCAPTCHA badge since we show text */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* 404 Error Page */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  min-height: calc(100vh - 10rem);
}

/* Fade the full-bleed background image on the 404 page so the
   performance photo doesn't bleed through behind the error copy. */
html:has(.error-page) body::before {
  position: fixed;
  height: 100%;
  bottom: auto;
  opacity: 0.12;
}

html:has(.error-page) body::after {
  display: none;
}

.error-code {
  font-family: 'Sedan', serif;
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2rem;
  opacity: 0.25;
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.error-description {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.error-link {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.error-link:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .error-code,
[data-theme="light"] .error-message,
[data-theme="light"] .error-description {
  color: #1a1a1a;
}

[data-theme="light"] .error-link {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

[data-theme="light"] .error-link:hover {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .error-code,
[data-theme="dark"] .error-message,
[data-theme="dark"] .error-description {
  color: #f5f5f5;
}

[data-theme="dark"] .error-link {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

[data-theme="dark"] .error-link:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
}

/* ============================================================================
 * NEWSLETTER BANNER
 * ============================================================================ */

.newsletter-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.newsletter-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  padding: 4px 8px;
  line-height: 1;
}

.newsletter-close:hover {
  opacity: 1;
}

.newsletter-text {
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  position: relative;
}

.newsletter-form input[type="email"] {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid;
  font-size: 0.9rem;
  min-width: 220px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.newsletter-form button:hover {
  transform: var(--hover-scale-sm);
}

.newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-status {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  margin: 0;
}

.newsletter-status:empty {
  display: none;
}

.newsletter-status.error {
  color: #ef4444;
}

/* Thank you message */
.newsletter-thank-you {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  text-align: center;
  font-size: 0.95rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #22c55e;
}

.newsletter-thank-you.visible {
  transform: translateY(0);
}

/* Newsletter styles — always dark (sits on dark panoramic overlay) */
.newsletter-text {
  color: #f5f5f5;
}

.newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f5f5f5;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: #f5f5f5;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .newsletter-banner {
    padding: 14px 16px 18px;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-close {
    top: 4px;
    right: 8px;
  }
  
  .newsletter-text {
    font-size: 0.9rem;
    text-align: center;
    padding-right: 20px;
  }
  
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    min-width: unset;
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

/* ============================================================================
 * VIDEO MODAL & VIDSTACK PLAYER
 * ============================================================================ */

/* Fullscreen overlay */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  display: flex;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop as a pseudo-element — opacity-only transition survives rapid open/close */
.video-modal::before {
  content: '';
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: -1;
}

/* Active state — dark backdrop, interactable */
.video-modal.active {
  pointer-events: auto;
  opacity: 1;
}

.video-modal.active::before {
  opacity: 1;
}

/* Player wrapper — scales in on open */
.video-modal .video-modal-wrapper {
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.video-modal.active .video-modal-wrapper {
  transform: scale(1);
}

.video-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: auto;
  margin-bottom: auto;
}

/* The container that holds the player */
.video-modal-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

/* Glow shadow on the player while splash is visible */
.video-modal-content:has(.video-splash:not(.fade-out)) {
  animation: player-glow 3s ease-in-out infinite;
}

@keyframes player-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(209, 210, 211, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(209, 210, 211, 0.3);
  }
}

/* --- Player Customisation --- */

.video-modal-content media-player {
  width: 100%;
  height: 100%;
  --media-brand: #cadee1;
  --media-focus-ring-color: #cadee1;
  --media-slider-track-fill-bg: #cadee1;
  --media-slider-track-progress-bg: rgba(255, 255, 255, 0.3);
  --media-controls-color: white;
}

.video-modal-content media-player[data-view-type="video"] {
  aspect-ratio: 16/9;
}

/* Ensure controls render correctly */
.video-modal-content media-video-layout {
  display: contents;
}

.video-modal-content [data-media-controls] {
  z-index: 10;
}

/* Hide video title from controls */
.video-modal-content .vds-chapter-title,
.video-modal-content [data-part="title"],
.video-modal-content .vds-title {
  display: none !important;
}

/* Hide settings/gear icon */
.video-modal-content .vds-settings-button,
.video-modal-content [data-part="settings"],
.video-modal-content .vds-menu-button {
  display: none !important;
}

/* Mobile YouTube iframe — hidden on desktop */
.video-mobile-iframe {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

/* On mobile: show iframe, hide Vidstack */
@media (max-width: 750px) {
  .video-mobile-iframe {
    display: block;
  }

  .video-modal-content media-player {
    display: none !important;
  }

  .video-splash {
    display: none !important;
  }

  .play-pause-feedback {
    display: none !important;
  }
}

/* Tighten time display spacing */
.video-modal-content .vds-time {
  margin-left: 0.25rem !important;
}

/* Reduce gap between time separator */
.video-modal-content .vds-time-divider {
  margin: 0 0.15rem !important;
}

/* Push fullscreen button to the far right */
.video-modal-content .vds-fullscreen-button {
  margin-left: auto !important;
}

/* --- Video info (title + tags) below the player --- */

.video-modal-info {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 0;
  gap: 0.75rem;
}

.video-modal-info-left {
  min-width: 0;
}

.video-modal-info-right {
  text-align: left;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

@media (min-width: 768px) {
  .video-modal-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }

  .video-modal-info-left {
    flex: 1;
  }

  .video-modal-info-right {
    text-align: right;
    flex-shrink: 0;
    display: block;
  }
}

.video-modal-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  text-align: left;
}

.video-modal-title-main {
  color: rgba(255, 255, 255, 0.9);
}

.video-modal-title-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.video-modal-location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-modal-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .video-modal-date {
    margin-top: 0.25rem;
  }
}

/* --- Video recommendations --- */

.video-modal-recs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 2.5rem 0 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  mask-image: linear-gradient(to bottom, transparent, black 4rem, black);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 4rem, black);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

@media (min-width: 768px) {
  .video-modal-recs {
    grid-template-columns: repeat(3, 1fr);
    max-height: 350px;
  }
}

.video-modal-recs::-webkit-scrollbar {
  width: 4px;
}

.video-modal-recs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.video-rec-card {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.video-rec-card:hover {
  transform: var(--hover-scale-sm);
  opacity: 1;
  z-index: 1;
  position: relative;
}

.video-rec-card.active {
  display: none;
}

.video-rec-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}

.video-rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-rec-info {
  padding: 0.4rem 0.15rem;
}

.video-rec-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-rec-meta {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* --- Tags below the video --- */

.video-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
}

.video-modal-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.video-modal-tag:first-child {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
}

/* --- Splash screen --- */

.video-splash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0a0909;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.video-splash.fade-out {
  opacity: 0;
}

/* Hide Vidstack loading spinner while splash is visible */
.video-modal-content:has(.video-splash:not(.fade-out)) .vds-buffering-indicator {
  display: none !important;
}

.video-splash-logo {
  width: 100px;
  height: auto;
  opacity: 0.5;
  filter: drop-shadow(0 0 20px rgba(209, 210, 211, 0.3));
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(209, 210, 211, 0.2));
    transform: translateY(0) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(209, 210, 211, 0.5));
    transform: translateY(-4px) scale(1.05);
  }
}

/* --- TV-style watermark logo --- */

.video-watermark {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 12;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.video-watermark img {
  width: 50px;
  height: auto;
}

/* Hide watermark when controls are showing */
.video-modal-content:has(media-player[data-controls]) .video-watermark {
  opacity: 0;
}

/* Hide watermark while splash is visible */
.video-modal-content:has(.video-splash:not(.fade-out)) .video-watermark {
  opacity: 0;
}

/* Hide on mobile (YouTube native player) */
@media (max-width: 750px) {
  .video-watermark {
    display: none;
  }
}

/* Hide when YouTube iframe is active */
.video-modal-content:has(.video-mobile-iframe[src]) .video-watermark {
  display: none;
}

/* --- Close Button --- */

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 0;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
}

/* Show close button when player controls are visible */
.video-modal-wrapper:has(media-player[data-controls]) > .video-modal-close {
  opacity: 1;
  pointer-events: auto;
}

/* On small screens, move close button above the video, always visible */
@media (max-width: 750px) {
  .video-modal-close {
    top: -44px;
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }
}

.video-modal-close:hover {
  transform: scale(1.15);
}

/* --- YouTube-style Play/Pause Feedback --- */

.play-pause-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
}

.play-pause-feedback svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.play-pause-feedback.animate {
  animation: play-pause-pop 0.5s ease-out forwards;
}

@keyframes play-pause-pop {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* ============================================================================
   LIVE hero pill — home page, sits above Films button
   ============================================================================ */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(15px);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  font-family: inherit;
}

.live-pill:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .live-pill {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .live-pill {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.live-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
  animation: beat 0.47619s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes beat {
  0%, 100% { opacity: 0.55; }
  12% { opacity: 1; }
}

.live-pill .next {
  opacity: 0.7;
  font-weight: 400;
}

/* ============================================================================
   /LIVE
   ============================================================================ */
.live-container {
  max-width: 900px;
  margin: 0 auto;
}

.live-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 4rem;
  opacity: 0.85;
}

[data-theme="light"] .live-intro { color: #1a1a1a; }
[data-theme="dark"] .live-intro { color: #f5f5f5; }

.live-section-label {
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
  margin: 0 auto 2rem;
  padding-bottom: 0;
  max-width: 560px;
}

.live-section-label--past {
  margin-top: 4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
}

[data-theme="light"] .live-section-label {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .live-section-label {
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.2);
}

.live-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.live-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.live-card:hover {
  transform: var(--hover-lift);
}

[data-theme="light"] .live-card {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .live-card:hover {
  box-shadow: var(--hover-shadow-light);
}

[data-theme="dark"] .live-card {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .live-card:hover {
  box-shadow: var(--hover-shadow-dark);
}

.live-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.live-date .day {
  font-family: 'Sedan', serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.live-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 0.35rem;
  opacity: 0.75;
}

.live-date .year {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.2rem;
  opacity: 0.45;
}

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

.live-event {
  font-family: 'Sedan', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.live-venue {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.live-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 42ch;
}

.live-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.live-time {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  white-space: nowrap;
}

.live-map {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.live-map svg {
  width: 12px;
  height: 12px;
}

.live-map:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .live-map {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .live-map:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .live-map {
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .live-map:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* past list — slimmer */
.live-card.is-past {
  grid-template-columns: 90px 1fr auto;
  padding: 1.25rem 1.75rem;
  opacity: 0.55;
}

.live-card.is-past .live-date .day {
  font-size: 2.5rem;
}

.live-card.is-past .live-event {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.live-card.is-past .live-desc {
  display: none;
}

.live-card.is-past:hover {
  opacity: 0.85;
}

/* empty state */
.live-empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem;
}

.live-empty-title {
  font-family: 'Sedan', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.live-empty-body {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 2rem;
}

[data-theme="light"] .live-empty-title,
[data-theme="light"] .live-empty-body { color: #1a1a1a; }

[data-theme="dark"] .live-empty-title,
[data-theme="dark"] .live-empty-body { color: #f5f5f5; }

@media (max-width: 700px) {
  .live-card {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1.25rem;
    padding: 1.25rem 1.25rem;
  }
  .live-date {
    grid-row: 1 / 3;
  }
  .live-date .day {
    font-size: 2.5rem;
  }
  .live-meta {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 0.5rem;
  }
  .live-time {
    font-size: 0.75rem;
  }
  .live-desc {
    display: none;
  }
  .live-card.is-past {
    grid-template-columns: 70px 1fr;
  }
  .live-card.is-past .live-date .day {
    font-size: 2rem;
  }
}

/* ============================================================================
   /PRESS-KIT
   ============================================================================ */
.presskit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.presskit-download-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border: 1px solid;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.presskit-download-all svg {
  width: 16px;
  height: 16px;
}

.presskit-download-all:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .presskit-download-all {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

[data-theme="light"] .presskit-download-all:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .presskit-download-all {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

[data-theme="dark"] .presskit-download-all:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* section headings shared */
.pk-section {
  padding: 3rem 0;
  border-top: 1px solid;
}

.pk-section:first-child {
  border-top: none;
  padding-top: 0;
}

[data-theme="light"] .pk-section { border-color: rgba(0, 0, 0, 0.12); }
[data-theme="dark"] .pk-section { border-color: rgba(255, 255, 255, 0.12); }

.pk-section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pk-section-num {
  font-family: 'Sedan', serif;
  font-size: 0.9rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.pk-section-title {
  font-family: 'Sedan', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

[data-theme="light"] .pk-section-num,
[data-theme="light"] .pk-section-title { color: #1a1a1a; }

[data-theme="dark"] .pk-section-num,
[data-theme="dark"] .pk-section-title { color: #f5f5f5; }

/* bio */
.pk-bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pk-bio-grid {
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.pk-bio-sticker {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pk-bio-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.75;
}

[data-theme="light"] .pk-bio-label { color: #1a1a1a; }
[data-theme="dark"] .pk-bio-label { color: #f5f5f5; }

.pk-bio-length-toggle {
  display: flex;
  border: 1px solid;
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.pk-bio-length-toggle button {
  background: transparent;
  border: none;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: all 0.2s ease;
}

.pk-bio-length-toggle button.active {
  font-weight: 500;
}

[data-theme="light"] .pk-bio-length-toggle {
  border-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .pk-bio-length-toggle button {
  color: #1a1a1a;
}

[data-theme="light"] .pk-bio-length-toggle button.active {
  background: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .pk-bio-length-toggle {
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .pk-bio-length-toggle button {
  color: #f5f5f5;
}

[data-theme="dark"] .pk-bio-length-toggle button.active {
  background: #f5f5f5;
  color: #1a1a1a;
}

.pk-bio-copy {
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.pk-bio-copy p {
  margin-bottom: 1.25rem;
}

.pk-bio-copy p:last-child {
  margin-bottom: 0;
}

.pk-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.pk-copy-btn svg {
  width: 12px;
  height: 12px;
}

.pk-copy-btn:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .pk-bio-copy,
[data-theme="light"] .pk-copy-btn {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .pk-copy-btn:hover {
  background: #1a1a1a;
  color: #f5f5f5;
  border-color: #1a1a1a;
}

[data-theme="dark"] .pk-bio-copy,
[data-theme="dark"] .pk-copy-btn {
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .pk-copy-btn:hover {
  background: #f5f5f5;
  color: #1a1a1a;
  border-color: #f5f5f5;
}

:root {
  --pk-copy-success: #2d6a4f;
}

.pk-copy-btn.is-copied,
[data-theme="light"] .pk-copy-btn.is-copied,
[data-theme="dark"] .pk-copy-btn.is-copied {
  background: var(--pk-copy-success);
  color: #ffffff;
  border-color: var(--pk-copy-success);
}

/* set formats */
.pk-formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pk-formats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pk-format {
  padding: 1.75rem;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  border: 1px solid;
}

[data-theme="light"] .pk-format {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

[data-theme="dark"] .pk-format {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.pk-format-name {
  font-family: 'Sedan', serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.pk-format-kind {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.pk-format-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
}

/* logos */
.pk-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pk-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pk-logo {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  text-decoration: none;
  transition: transform 0.2s ease;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.pk-logo:hover {
  transform: var(--hover-lift);
}

[data-theme="light"] .pk-logo {
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

[data-theme="dark"] .pk-logo {
  border-color: rgba(255, 255, 255, 0.12);
  color: #f5f5f5;
}

.pk-logo-frame {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.pk-logo-frame.light-bg { background: #cadee1; }
.pk-logo-frame.dark-bg { background: #13191a; }

.pk-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pk-logo-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

[data-theme="light"] .pk-logo-meta {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pk-logo-meta {
  background: rgba(255, 255, 255, 0.04);
}

.pk-logo-meta .pk-logo-ext {
  opacity: 0.55;
}

/* rider */
.pk-rider-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pk-rider-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.pk-rider-block {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .pk-rider-block {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

[data-theme="dark"] .pk-rider-block {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.pk-rider-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid;
}

[data-theme="light"] .pk-rider-head {
  border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .pk-rider-head {
  border-color: rgba(255, 255, 255, 0.15);
}

.pk-rider-name {
  font-family: 'Sedan', serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.pk-rider-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
}

[data-theme="light"] .pk-rider-badge {
  border-color: rgba(0, 0, 0, 0.3);
  color: #1a1a1a;
}

[data-theme="dark"] .pk-rider-badge {
  border-color: rgba(255, 255, 255, 0.35);
  color: #f5f5f5;
}

.pk-rider-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.pk-rider-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 0.75rem 0;
  align-items: baseline;
  border-bottom: 1px dashed;
}

.pk-rider-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

[data-theme="light"] .pk-rider-list li {
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pk-rider-list li {
  border-color: rgba(255, 255, 255, 0.08);
}

.pk-rider-qty {
  font-family: 'Sedan', serif;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  min-width: 2.5rem;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.pk-rider-item {
  font-size: 0.9rem;
  line-height: 1.45;
}

.pk-rider-item .pk-rider-item-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.pk-rider-item .pk-rider-item-meta {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.pk-rider-foot {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pk-rider-note {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.pk-rider-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pk-rider-download svg {
  width: 12px;
  height: 12px;
}

.pk-rider-download:hover {
  transform: var(--hover-scale-sm);
}

[data-theme="light"] .pk-rider-download {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .pk-rider-download:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

[data-theme="dark"] .pk-rider-download {
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .pk-rider-download:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.pk-rider-global {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  justify-content: center;
  opacity: 0.7;
}

[data-theme="light"] .pk-rider-global { color: #1a1a1a; }
[data-theme="dark"] .pk-rider-global { color: #f5f5f5; }

.pk-rider-global svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* weddings & corporate */
.pk-weddings-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
  opacity: 0.85;
}

[data-theme="light"] .pk-weddings-intro { color: #1a1a1a; }
[data-theme="dark"] .pk-weddings-intro { color: #f5f5f5; }

.pk-weddings-credit {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pk-weddings-credit:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
}

.pk-weddings-credit svg {
  width: 12px;
  height: 12px;
}

.pk-weddings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .pk-weddings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pk-wedding {
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid;
}

[data-theme="light"] .pk-wedding {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pk-wedding {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.pk-wedding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%);
}

.pk-weddings-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid;
  aspect-ratio: 3 / 2;
  outline: none;
}

[data-theme="light"] .pk-weddings-carousel {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pk-weddings-carousel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.pk-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.pk-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.pk-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%);
  user-select: none;
  -webkit-user-drag: none;
}

.pk-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.pk-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.pk-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.pk-carousel-prev { left: 0.75rem; }
.pk-carousel-next { right: 0.75rem; }

@media (hover: none) and (pointer: coarse) {
  .pk-carousel-btn {
    opacity: 0;
    pointer-events: none;
  }
}

.pk-carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.pk-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pk-carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.pk-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .pk-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pk-service {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border: 1px solid;
}

[data-theme="light"] .pk-service {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

[data-theme="dark"] .pk-service {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.pk-service-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.55;
  margin-bottom: 0.4rem;
}

.pk-service-name {
  font-family: 'Sedan', serif;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.pk-service-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0.8;
}

/* contact card — split layout with primary email + booking CTA */
.pk-contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid;
  position: relative;
  isolation: isolate;
}

@media (min-width: 820px) {
  .pk-contact-card {
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
  }
}

[data-theme="light"] .pk-contact-card {
  border-color: rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(0, 0, 0, 0.03));
  color: #1a1a1a;
}

[data-theme="dark"] .pk-contact-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  color: #f5f5f5;
}

.pk-contact-main {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 820px) {
  .pk-contact-main {
    padding: 2.75rem;
    gap: 1.75rem;
  }
}

.pk-contact-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.55;
  font-weight: 500;
}

.pk-contact-email-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.pk-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
  font-family: 'Sedan', serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  word-break: break-word;
  flex-wrap: wrap;
  transition: opacity 0.2s ease;
}

.pk-contact-email svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  flex-shrink: 0;
}

.pk-contact-email-text {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

@media (hover: hover) {
  .pk-contact-email:hover .pk-contact-email-text {
    border-bottom-color: currentColor;
  }
  .pk-contact-email:hover svg {
    opacity: 1;
  }
}

.pk-contact-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid;
  background: transparent;
  color: inherit;
  font: inherit;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.pk-contact-copy svg {
  width: 13px;
  height: 13px;
  opacity: 1;
}

[data-theme="light"] .pk-contact-copy {
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="dark"] .pk-contact-copy {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (hover: hover) {
  .pk-contact-copy:hover {
    opacity: 1;
  }
  [data-theme="light"] .pk-contact-copy:hover {
    background: rgba(0, 0, 0, 0.06);
  }
  [data-theme="dark"] .pk-contact-copy:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.pk-contact-copy.is-copied {
  opacity: 1;
}

.pk-contact-copy.is-copied,
[data-theme="light"] .pk-contact-copy.is-copied,
[data-theme="dark"] .pk-contact-copy.is-copied {
  background: var(--pk-copy-success);
  color: #ffffff;
  border-color: var(--pk-copy-success);
}

.pk-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pk-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid;
  color: inherit;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pk-contact-chip svg {
  width: 15px;
  height: 15px;
  opacity: 0.75;
}

[data-theme="light"] .pk-contact-chip {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.02);
}
[data-theme="dark"] .pk-contact-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

@media (hover: hover) {
  a.pk-contact-chip:hover {
    transform: var(--hover-lift);
  }
  [data-theme="light"] a.pk-contact-chip:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
  }
  [data-theme="dark"] a.pk-contact-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
  }
}

.pk-contact-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s ease;
  min-height: 220px;
}

@media (min-width: 820px) {
  .pk-contact-cta {
    padding: 2.75rem;
    border-left: 1px solid;
  }
  [data-theme="light"] .pk-contact-cta {
    border-left-color: rgba(0, 0, 0, 0.1);
  }
  [data-theme="dark"] .pk-contact-cta {
    border-left-color: rgba(255, 255, 255, 0.12);
  }
}

[data-theme="light"] .pk-contact-cta {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(0, 0, 0, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.01));
}

[data-theme="dark"] .pk-contact-cta {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.pk-contact-cta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pk-contact-cta-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.6;
  font-weight: 500;
}

.pk-contact-cta-arrow {
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 999px;
  border: 1px solid;
  transition: transform 0.3s ease, background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

[data-theme="light"] .pk-contact-cta-arrow {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
}
[data-theme="dark"] .pk-contact-cta-arrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.pk-contact-cta-title {
  font-family: 'Sedan', serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.pk-contact-cta-sub {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.72;
  max-width: 32ch;
}

@media (hover: hover) {
  .pk-contact-cta:hover .pk-contact-cta-arrow {
    transform: translate(4px, -4px);
  }
  [data-theme="light"] .pk-contact-cta:hover .pk-contact-cta-arrow {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #f5f5f5;
  }
  [data-theme="dark"] .pk-contact-cta:hover .pk-contact-cta-arrow {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #13191a;
  }
}
