.thi-site-header {
  left: 0;
  padding: 0.75rem 1rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: padding var(--thi-speed) var(--thi-ease);
  z-index: 1000;
}

.thi-header-inner {
  align-items: center;
  backdrop-filter: blur(var(--thi-glass-blur));
  background: color-mix(in srgb, var(--thi-surface-raised) var(--thi-glass-opacity), transparent);
  border: 1px solid var(--thi-border-soft);
  border-radius: var(--thi-radius-pill);
  box-shadow: var(--thi-shadow-sm);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  margin-inline: auto;
  max-width: var(--thi-wide);
  min-height: 64px;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
}

.thi-site-header.is-scrolled {
  padding-top: 0.45rem;
}

.thi-brand {
  align-items: center;
  color: var(--thi-ink);
  display: flex;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.thi-brand .custom-logo {
  max-height: 46px;
  width: auto;
}

.thi-brand-name {
  font-family: var(--wp--preset--font-family--amiri);
  font-size: 1.2rem;
  font-weight: 700;
}

.thi-brand-tagline {
  border-left: 1px solid var(--thi-border-ink);
  color: color-mix(in srgb, var(--thi-ink) 68%, transparent);
  font-size: 0.75rem;
  line-height: 1.35;
  max-width: 220px;
  padding-left: 0.7rem;
}

.thi-menu,
.thi-footer-menu {
  align-items: center;
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.thi-menu a {
  border-radius: var(--thi-radius-pill);
  color: var(--thi-ink);
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 0.8rem;
  text-decoration: none;
}

.thi-menu a:hover,
.thi-menu .current-menu-item > a,
.thi-menu .current_page_item > a {
  background: var(--thi-mist);
  color: var(--thi-accent-1);
}

.thi-header-cta,
.wp-element-button,
.wp-block-button__link {
  background: var(--thi-accent-1);
  border: 1px solid var(--thi-accent-1);
  border-radius: var(--thi-radius-pill);
  color: var(--wp--preset--color--pure-white);
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  padding: 0.8rem 1.15rem;
  text-decoration: none;
  transition: transform var(--thi-speed-fast) var(--thi-ease), background var(--thi-speed-fast) var(--thi-ease);
}

.thi-header-actions {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.thi-header-cta--secondary {
  background: transparent;
  color: var(--thi-accent-1);
}

.thi-header-cta--secondary:hover {
  background: var(--thi-mist);
  color: var(--thi-accent-1);
}

.thi-header-cta:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  background: color-mix(in srgb, var(--thi-accent-1) 86%, var(--thi-ink));
  color: var(--wp--preset--color--pure-white);
  transform: translateY(-2px);
}

.is-style-outline > .wp-block-button__link {
  background: transparent;
  color: var(--thi-accent-1);
}

.thi-menu-toggle {
  background: transparent;
  border: 0;
  border-radius: var(--thi-radius-pill);
  display: none;
  height: 44px;
  place-items: center;
  width: 44px;
}

.thi-menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.thi-menu-toggle-lines span {
  background: var(--thi-ink);
  display: block;
  height: 2px;
  transition: transform var(--thi-speed-fast) ease;
  width: 22px;
}

.thi-hero {
  align-items: end;
  background: var(--thi-ink);
  display: grid;
  min-height: min(780px, 92svh);
  overflow: hidden;
  padding: clamp(8rem, 16vw, 12rem) max(1.25rem, calc((100vw - var(--thi-wide)) / 2)) clamp(3rem, 8vw, 6rem);
  position: relative;
}

.thi-hero::before {
  background: linear-gradient(120deg, color-mix(in srgb, var(--thi-accent-1) 30%, var(--thi-ink)) 0 48%, transparent 48%), radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--thi-accent-2) 22%, transparent), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.thi-hero::after {
  background-image: linear-gradient(30deg, transparent 48%, color-mix(in srgb, var(--thi-accent-1) 5%, transparent) 49%, color-mix(in srgb, var(--thi-accent-1) 5%, transparent) 51%, transparent 52%);
  background-size: 42px 72px;
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.thi-hero-photo {
  border-radius: var(--thi-radius-lg);
  box-shadow: var(--thi-shadow-md);
  height: min(58vw, 650px);
  margin: 0;
  overflow: hidden;
  position: absolute !important;
  right: max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
  top: 15%;
  width: min(52vw, 680px);
  z-index: 0 !important;
}

.thi-hero-photo::after {
  background: linear-gradient(90deg, color-mix(in srgb, var(--thi-surface) 88%, transparent), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.thi-hero-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thi-hero > .wp-block-group__inner-container,
.thi-hero > * {
  position: relative;
  z-index: 1;
}

.thi-hero-panel {
  backdrop-filter: blur(var(--thi-glass-blur));
  background: color-mix(in srgb, var(--thi-surface-raised) var(--thi-glass-opacity), transparent);
  border: 1px solid var(--thi-border-soft);
  border-radius: var(--thi-radius-lg);
  box-shadow: var(--thi-shadow-md);
  max-width: 760px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.thi-hero h1 {
  font-size: var(--wp--preset--font-size--hero);
  max-width: 13ch;
}

.thi-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 58ch;
}

.thi-section {
  padding: clamp(4rem, 9vw, 7rem) max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
}

.thi-section-title {
  font-size: var(--wp--preset--font-size--section);
  margin-bottom: 0.25em;
}

.thi-section-lead {
  color: color-mix(in srgb, var(--thi-ink) 72%, transparent);
  max-width: 65ch;
}

.thi-level-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.thi-level-nav a {
  background: var(--thi-surface-raised);
  border: 1px solid var(--thi-border-ink);
  border-radius: var(--thi-radius-pill);
  color: var(--thi-ink);
  font-weight: 600;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.thi-level-nav a:hover {
  background: var(--thi-mist);
  border-color: var(--thi-accent-1);
  color: var(--thi-accent-1);
}

.thi-unit-grid,
.thi-post-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.thi-unit-card,
.thi-post-card,
.thi-faux-glass {
  background: color-mix(in srgb, var(--thi-surface-raised) 88%, transparent);
  border: 1px solid var(--thi-border-soft);
  border-radius: var(--thi-radius-md);
  box-shadow: var(--thi-shadow-sm);
}

.thi-unit-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--thi-speed) var(--thi-ease), transform var(--thi-speed) var(--thi-ease), box-shadow var(--thi-speed) var(--thi-ease);
}

.thi-unit-card-photo {
  border-radius: calc(var(--thi-radius-md) - 1px) calc(var(--thi-radius-md) - 1px) var(--thi-radius-sm) var(--thi-radius-sm);
  height: 150px;
  margin: -1.5rem -1.5rem 1.25rem;
  overflow: hidden;
}

.thi-unit-card-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thi-unit-card::before {
  background: var(--thi-accent-1);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform var(--thi-speed) var(--thi-ease);
}

.thi-unit-card:hover {
  border-color: color-mix(in srgb, var(--thi-accent-1) 30%, transparent);
  box-shadow: var(--thi-shadow-md);
  transform: translateY(-5px);
}

.thi-unit-card:hover::before {
  transform: scaleX(1);
}

.thi-unit-card h3 {
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--card);
}

.thi-unit-card .wp-block-buttons {
  margin-top: auto;
}

.thi-story {
  background: var(--thi-mist);
  overflow: hidden;
  position: relative;
}

.thi-story::after {
  border: 1px solid color-mix(in srgb, var(--thi-accent-1) 14%, transparent);
  border-radius: 50%;
  content: "";
  height: min(56vw, 680px);
  position: absolute;
  right: -18vw;
  top: -18vw;
  width: min(56vw, 680px);
}

.thi-story-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  position: relative;
  z-index: 1;
}

.thi-story-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--wp--preset--gradient--green-veil);
  border-radius: 50% 50% 46% 54% / 58% 42% 58% 42%;
  color: var(--wp--preset--color--pure-white);
  display: flex;
  font-family: var(--wp--preset--font-family--amiri);
  font-size: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding: 15%;
  text-align: center;
}

.thi-difference {
  background: color-mix(in srgb, var(--thi-mist) 62%, var(--thi-surface));
}

.thi-value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.thi-value-card {
  border-bottom: 1px solid var(--thi-border-ink);
  padding: 1.5rem 0;
}

.thi-value-card h3 {
  font-family: var(--wp--preset--font-family--inter);
  font-size: 1.1rem;
}

.thi-value-mark {
  align-items: center;
  background: var(--thi-accent-1);
  border-radius: var(--thi-radius-sm);
  color: var(--wp--preset--color--pure-white);
  display: flex;
  font-family: var(--wp--preset--font-family--amiri);
  font-size: 1.35rem;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.thi-stat-strip {
  background: var(--thi-ink);
  color: var(--wp--preset--color--pure-white);
  padding: clamp(2.5rem, 6vw, 4rem) max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
}

.thi-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  text-align: center;
}

.thi-stat-grid h3 {
  color: var(--wp--preset--color--pure-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.thi-stat-grid p {
  color: color-mix(in srgb, var(--wp--preset--color--pure-white) 72%, transparent);
  font-size: var(--wp--preset--font-size--meta);
  margin: 0;
}

.thi-journey-section {
  background: var(--thi-surface-raised);
}

.thi-journey {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}

.thi-journey-card {
  background: var(--thi-surface);
  border: 1px solid var(--thi-border-ink);
  border-radius: var(--thi-radius-md);
  min-height: 170px;
  padding: 1.25rem;
  position: relative;
}

.thi-journey-card:not(:last-child)::after {
  background: var(--thi-accent-2);
  content: "";
  height: 2px;
  position: absolute;
  right: -1.05rem;
  top: 50%;
  width: 1.1rem;
  z-index: 2;
}

.thi-journey-card h3 {
  color: var(--thi-accent-1);
  font-family: var(--wp--preset--font-family--inter);
  font-size: 1.05rem;
}

.thi-team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.thi-team-card {
  background: var(--wp--preset--gradient--ivory-mist);
  border: 1px solid var(--thi-border-ink);
  border-radius: var(--thi-radius-md);
  min-height: 170px;
  padding: 1.5rem;
}

.thi-team-card p {
  color: var(--thi-accent-2);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.thi-team-card h3 {
  font-family: var(--wp--preset--font-family--inter);
  font-size: 1.05rem;
}

.thi-action-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thi-action-card {
  border-radius: var(--thi-radius-lg);
  min-height: 280px;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}

.thi-action-card:first-child {
  background: var(--wp--preset--gradient--green-veil);
  color: var(--wp--preset--color--pure-white);
}

.thi-action-card:last-child {
  background: var(--thi-surface-raised);
  border: 1px solid var(--thi-border-ink);
}

.thi-post-card {
  overflow: hidden;
}

.thi-post-card img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  object-fit: cover;
  width: 100%;
}

.thi-post-card-body,
.wp-block-post-template .wp-block-post > *:not(.wp-block-post-featured-image) {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}

.thi-post-card-body {
  padding-block: 1.25rem;
}

.thi-gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.thi-gallery-grid .wp-block-image,
.thi-gallery-grid figure {
  height: 100%;
  margin: 0;
}

.thi-gallery-grid img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.thi-instagram-shell {
  contain-intrinsic-size: 600px;
  content-visibility: auto;
  min-height: 320px;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.thi-instagram-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  opacity: 0;
  padding: 2rem;
  text-align: center;
  transition: opacity var(--thi-speed) var(--thi-ease);
}

.thi-instagram-shell.is-near:not(.has-feed) .thi-instagram-empty {
  opacity: 1;
}

.thi-instagram-shell.has-feed .thi-instagram-empty {
  display: none;
}

.thi-final-cta {
  background: var(--thi-surface-raised);
  border: 1px solid var(--thi-border-ink);
  border-radius: var(--thi-radius-lg);
  box-shadow: var(--thi-shadow-md);
  margin: clamp(2rem, 5vw, 4rem) auto;
  max-width: var(--thi-wide);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
}

.thi-site-footer {
  background: var(--thi-ink);
  color: color-mix(in srgb, var(--wp--preset--color--pure-white) 80%, transparent);
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

.thi-footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 1fr) auto;
  margin-inline: auto;
  max-width: var(--thi-wide);
}

.thi-footer-brand .custom-logo {
  filter: brightness(0) invert(1);
  max-height: 58px;
  width: auto;
}

.thi-footer-brand p {
  margin-top: 1rem;
  max-width: 46ch;
}

.thi-footer-menu {
  align-items: flex-start;
  flex-direction: column;
}

.thi-footer-menu a {
  color: var(--wp--preset--color--pure-white);
}

.thi-copyright {
  border-top: 1px solid color-mix(in srgb, var(--wp--preset--color--pure-white) 14%, transparent);
  font-size: var(--wp--preset--font-size--meta);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.25rem;
}

@supports not (backdrop-filter: blur(1px)) {
  .thi-header-inner,
  .thi-hero-panel {
    background: var(--thi-surface-raised);
  }
}

@media (max-width: 960px) {
  .thi-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .thi-menu-toggle {
    display: grid;
  }

  .thi-primary-nav {
    background: var(--thi-surface-raised);
    border-radius: var(--thi-radius-md);
    box-shadow: var(--thi-shadow-md);
    display: none;
    grid-column: 1 / -1;
    padding: 0.6rem;
  }

  .thi-primary-nav.is-open {
    display: block;
  }

  .thi-menu {
    align-items: stretch;
    flex-direction: column;
  }

  .thi-menu a {
    padding: 0.8rem 1rem;
  }

  .thi-header-actions {
    display: none;
  }

  .thi-brand-tagline {
    display: none;
  }

  .thi-unit-grid,
  .thi-post-grid,
  .thi-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 700px) {
  :root {
    --thi-header-height: 72px;
  }

  .thi-site-header {
    padding-inline: 0.65rem;
  }

  .thi-header-inner {
    border-radius: var(--thi-radius-md);
  }

  .thi-hero {
    min-height: 88svh;
  }

  .thi-hero-photo {
    height: 44%;
    left: 1.25rem;
    right: 1.25rem;
    top: 12%;
    width: auto;
  }

  .thi-hero-photo::after {
    background: linear-gradient(0deg, color-mix(in srgb, var(--thi-surface) 88%, transparent), transparent 70%);
  }

  .thi-hero-panel {
    margin-top: 42vh;
  }

  .thi-unit-grid,
  .thi-post-grid,
  .thi-action-grid,
  .thi-story-grid,
  .thi-footer-inner,
  .thi-value-grid,
  .thi-team-grid {
    grid-template-columns: 1fr;
  }

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

  .thi-journey {
    grid-template-columns: 1fr;
  }

  .thi-journey-card:not(:last-child)::after {
    bottom: -1.05rem;
    height: 1.1rem;
    left: 50%;
    right: auto;
    top: auto;
    width: 2px;
  }

  .thi-unit-card {
    min-height: 210px;
  }

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

  .thi-gallery-grid > :first-child {
    grid-column: 1 / -1;
  }

}

/* THI Cinematic 2.0 -------------------------------------------------------- */

.thi-cinematic-home {
  --thi-pointer-x: 0;
  --thi-pointer-y: 0;
}

.thi-cinema-hero {
  background: #0b2b20;
  height: min(900px, 100svh);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.thi-cinema-slide {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 1s var(--thi-ease), visibility 1s;
  visibility: hidden;
}

.thi-cinema-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.thi-cinema-bg {
  inset: -4%;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.thi-cinema-bg::after {
  background: linear-gradient(90deg, rgba(7,31,23,.94) 0%, rgba(7,31,23,.68) 42%, rgba(7,31,23,.12) 76%), linear-gradient(0deg, rgba(7,31,23,.58), transparent 46%);
  content: '';
  inset: 0;
  position: absolute;
}

.thi-cinema-bg img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translate3d(calc(var(--thi-pointer-x) * -10px), calc(var(--thi-pointer-y) * -8px), 0);
  width: 100%;
}

.thi-cinema-slide.is-active .thi-cinema-bg img {
  animation: thi-cinema-zoom 8s ease-out both;
}

@keyframes thi-cinema-zoom {
  from { transform: scale(1.15) translate3d(calc(var(--thi-pointer-x) * -10px), calc(var(--thi-pointer-y) * -8px), 0); }
  to { transform: scale(1.06) translate3d(calc(var(--thi-pointer-x) * -10px), calc(var(--thi-pointer-y) * -8px), 0); }
}

.thi-cinema-copy {
  bottom: clamp(8.5rem, 17vh, 12rem);
  color: #fff;
  left: max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
  max-width: 920px;
  position: absolute;
  right: 1.25rem;
  z-index: 3;
}

.thi-cinema-copy > * {
  opacity: 0;
  transform: translateY(32px);
}

.thi-cinema-slide.is-active .thi-cinema-copy > * {
  animation: thi-cinema-copy-in .9s var(--thi-ease) forwards;
}

.thi-cinema-slide.is-active .thi-cinema-copy > *:nth-child(1) { animation-delay: .16s; }
.thi-cinema-slide.is-active .thi-cinema-copy > *:nth-child(2) { animation-delay: .28s; }
.thi-cinema-slide.is-active .thi-cinema-copy > *:nth-child(3) { animation-delay: .42s; }
.thi-cinema-slide.is-active .thi-cinema-copy > *:nth-child(4) { animation-delay: .54s; }

@keyframes thi-cinema-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.thi-cinema-kicker,
.thi-overline {
  color: var(--thi-accent-2);
  font-size: .76rem !important;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.thi-cinema-copy h1,
.thi-cinema-copy h2 {
  color: #fff;
  font-size: clamp(3.3rem, 7.4vw, 7.2rem);
  letter-spacing: -.045em;
  line-height: .91;
  margin-bottom: .28em;
  max-width: 12ch;
  text-shadow: 0 16px 55px rgba(0,0,0,.22);
}

.thi-cinema-copy h1 em,
.thi-cinema-copy h2 em {
  color: var(--thi-accent-2);
  font-style: normal;
}

.thi-cinema-copy > p:not(.thi-cinema-kicker) {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 58ch;
}

.thi-cinema-copy .is-style-outline > .wp-block-button__link {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

.thi-cinema-shape {
  border: 1px solid rgba(130,111,79,.55);
  border-radius: 50%;
  height: min(42vw, 540px);
  position: absolute;
  right: max(2rem, calc((100vw - var(--thi-wide)) / 2));
  top: 19%;
  transform: translate3d(calc(var(--thi-pointer-x) * 22px), calc(var(--thi-pointer-y) * 18px), 0);
  transition: transform .5s ease-out;
  width: min(42vw, 540px);
  z-index: 2;
}

.thi-cinema-shape::before,
.thi-cinema-shape::after {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: inherit;
  content: '';
  inset: 12%;
  position: absolute;
}

.thi-cinema-shape::after { inset: 25%; }

.thi-cinema-shape > span {
  background: var(--thi-accent-2);
  border-radius: 50%;
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--thi-accent-2) 15%, transparent);
  height: 11px;
  left: 50%;
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
  width: 11px;
}

.thi-cinema-slide.is-active .thi-cinema-shape {
  animation: thi-shape-in 1.35s var(--thi-ease) both;
}

.thi-cinema-shape--square { border-radius: 30% 70% 58% 42% / 44% 38% 62% 56%; rotate: 12deg; }
.thi-cinema-shape--small { height: min(32vw, 410px); top: 27%; width: min(32vw, 410px); }

@keyframes thi-shape-in {
  from { opacity: 0; scale: .68; rotate: -16deg; }
  to { opacity: 1; scale: 1; rotate: 0deg; }
}

.thi-cinema-controls {
  align-items: center;
  bottom: 3.4rem;
  display: flex;
  gap: .85rem;
  left: max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
  position: absolute;
  z-index: 5;
}

.thi-cinema-controls button {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.2rem;
  height: 46px;
  justify-content: center;
  transition: background var(--thi-speed-fast), transform var(--thi-speed-fast);
  width: 46px;
}

.thi-cinema-controls button:hover {
  background: var(--thi-accent-2);
  color: #fff;
  transform: scale(1.08);
}

.thi-cinema-controls > div {
  align-items: center;
  color: rgba(255,255,255,.58);
  display: flex;
  font-size: .72rem;
  font-weight: 800;
  gap: .5rem;
  letter-spacing: .1em;
}

.thi-cinema-controls > div span:first-child { color: #fff; }
.thi-cinema-controls i { background: rgba(255,255,255,.28); height: 1px; width: 28px; }

.thi-cinema-progress {
  background: rgba(255,255,255,.16);
  bottom: 0;
  height: 3px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 5;
}

.thi-cinema-progress span {
  background: var(--thi-accent-2);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
}

.thi-cinema-hero.is-ticking .thi-cinema-progress span { animation: thi-progress 7.2s linear forwards; }
@keyframes thi-progress { to { transform: scaleX(1); } }

.thi-cinema-scroll {
  align-items: center;
  bottom: 3.8rem;
  color: rgba(255,255,255,.64);
  display: flex;
  font-size: .68rem;
  font-weight: 800;
  gap: .7rem;
  letter-spacing: .13em;
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
  text-transform: uppercase;
  z-index: 4;
}

.thi-cinema-scroll i { animation: thi-scroll-line 1.8s ease-in-out infinite; background: var(--thi-accent-2); height: 1px; width: 55px; }
@keyframes thi-scroll-line { 0%,100% { transform: scaleX(.4); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

.thi-word-ribbon {
  background: var(--thi-accent-2);
  color: #fff;
  overflow: hidden;
  padding: 1rem max(1.25rem, calc((100vw - var(--thi-wide)) / 2));
}

.thi-word-ribbon > div {
  align-items: center;
  display: flex;
  font-family: var(--wp--preset--font-family--amiri);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  gap: clamp(1rem, 3vw, 2.5rem);
  justify-content: space-between;
  white-space: nowrap;
}

.thi-word-ribbon i { background: currentColor; border-radius: 50%; height: 5px; opacity: .6; width: 5px; }

.thi-editorial-intro { background: var(--thi-surface); }

.thi-editorial-grid,
.thi-editorial-heading {
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.thi-editorial-grid h2,
.thi-editorial-heading h2,
.thi-immersive-copy h2,
.thi-cinema-cta h2 {
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
  letter-spacing: -.04em;
  line-height: .98;
}

.thi-editorial-grid > div:last-child { padding-top: 2.2rem; }
.thi-editorial-grid > div:last-child > p { color: color-mix(in srgb, var(--thi-ink) 72%, transparent); font-size: clamp(1.08rem, 1.8vw, 1.25rem); }

.thi-arrow-link {
  align-items: center;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 800;
  gap: .55rem;
  text-decoration: none;
}

.thi-arrow-link span { transition: transform var(--thi-speed) var(--thi-ease); }
.thi-arrow-link:hover span { transform: translateX(6px); }

.thi-immersive-values {
  align-items: stretch;
  background: var(--thi-ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
}

.thi-immersive-photo { min-height: 720px; overflow: hidden; }
.thi-immersive-photo img { height: 110%; object-fit: cover; width: 100%; }
.thi-immersive-copy { padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem); }
.thi-immersive-copy h2 { color: #fff; }

.thi-value-lines { margin-top: 3rem; }
.thi-value-lines article { border-top: 1px solid rgba(255,255,255,.15); display: grid; gap: 1.2rem; grid-template-columns: 38px 1fr; padding: 1.25rem 0; transition: padding-left var(--thi-speed) var(--thi-ease); }
.thi-value-lines article:hover { padding-left: .75rem; }
.thi-value-lines article > span { color: var(--thi-accent-2); font-size: .76rem; font-weight: 800; }
.thi-value-lines h3 { color: #fff; font-family: var(--wp--preset--font-family--inter); font-size: 1.08rem; margin-bottom: .25rem; }
.thi-value-lines p { color: rgba(255,255,255,.65); font-size: .92rem; margin: 0; }

.thi-units-editorial { background: #fff; }
.thi-editorial-heading { align-items: end; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.thi-editorial-heading > p { color: color-mix(in srgb, var(--thi-ink) 68%, transparent); max-width: 46ch; }

.thi-unit-editorial-grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.thi-unit-editorial-card { background: var(--thi-surface); border-radius: var(--thi-radius-md); min-height: 430px; overflow: hidden; position: relative; }
.thi-unit-editorial-card > a { color: var(--thi-ink); display: block; height: 100%; text-decoration: none; }
.thi-unit-editorial-card figure { height: 210px; margin: 0; overflow: hidden; }
.thi-unit-editorial-card img { height: 100%; object-fit: cover; transition: transform .7s var(--thi-ease); width: 100%; }
.thi-unit-editorial-card > a > div { padding: 1.4rem; }
.thi-unit-editorial-card p { color: var(--thi-accent-2); font-size: .72rem; font-weight: 800; letter-spacing: .09em; margin-bottom: .6rem; text-transform: uppercase; }
.thi-unit-editorial-card h3 { font-size: 1.55rem; margin-bottom: .45rem; }
.thi-unit-editorial-card span { color: color-mix(in srgb, var(--thi-ink) 68%, transparent); display: block; font-size: .9rem; }
.thi-unit-editorial-card b { align-items: center; bottom: 1.3rem; display: flex; font-size: .82rem; gap: .5rem; position: absolute; }
.thi-unit-editorial-card b i { font-style: normal; transition: transform var(--thi-speed) var(--thi-ease); }
.thi-unit-editorial-card:hover img { transform: scale(1.07); }
.thi-unit-editorial-card:hover b i { transform: translate(4px,-4px); }

.thi-cinema-stats h3 { color: var(--thi-accent-2); }
.thi-cinema-news { background: var(--thi-surface); }
.thi-cinema-news-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.thi-cinema-news-grid article { background: #fff; border: 1px solid var(--thi-border-ink); border-radius: var(--thi-radius-md); overflow: hidden; transition: box-shadow var(--thi-speed), transform var(--thi-speed); }
.thi-cinema-news-grid article:hover { box-shadow: var(--thi-shadow-md); transform: translateY(-6px); }
.thi-cinema-news-grid article > div { padding: 1.4rem; }
.thi-cinema-news-image { align-items: center; aspect-ratio: 16/10; background: linear-gradient(135deg,var(--thi-accent-1),var(--thi-ink)); color: rgba(255,255,255,.65); display: flex; font-family: var(--wp--preset--font-family--amiri); font-size: 2rem; justify-content: center; overflow: hidden; text-decoration: none; }
.thi-cinema-news-image img { height: 100%; object-fit: cover; transition: transform .7s var(--thi-ease); width: 100%; }
.thi-cinema-news-grid article:hover img { transform: scale(1.06); }
.thi-cinema-news-grid time { color: var(--thi-accent-2); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.thi-cinema-news-grid h3 { font-size: 1.5rem; margin-top: .65rem; }
.thi-cinema-news-grid h3 a { color: var(--thi-ink); text-decoration: none; }

.thi-cinema-cta { background: var(--thi-ink); color: #fff; padding: clamp(5rem, 12vw, 9rem) 1.25rem; position: relative; text-align: center; }
.thi-cinema-cta::before { background: radial-gradient(circle, color-mix(in srgb,var(--thi-accent-2) 22%,transparent), transparent 65%); content: ''; inset: 0; pointer-events: none; position: absolute; }
.thi-cinema-cta > div { margin: auto; max-width: 850px; position: relative; }
.thi-cinema-cta h2 { color: #fff; }
.thi-cinema-cta > div > p:not(.thi-overline) { color: rgba(255,255,255,.72); margin-inline: auto; max-width: 58ch; }
.thi-cinema-cta .wp-block-buttons { justify-content: center; }
.thi-cinema-cta .is-style-outline > .wp-block-button__link { border-color: rgba(255,255,255,.48); color: #fff; }

@media (max-width: 1060px) {
  .thi-unit-editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .thi-cinema-hero { height: 92svh; min-height: 680px; }
  .thi-cinema-copy { bottom: 8rem; left: 1.25rem; }
  .thi-cinema-copy h1, .thi-cinema-copy h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .thi-cinema-shape { height: 72vw; opacity: .48; right: -16vw; top: 17%; width: 72vw; }
  .thi-cinema-controls { bottom: 2.2rem; }
  .thi-cinema-scroll { display: none; }
  .thi-word-ribbon > div { justify-content: flex-start; overflow: hidden; }
  .thi-editorial-grid, .thi-editorial-heading, .thi-immersive-values { grid-template-columns: 1fr; }
  .thi-editorial-grid > div:last-child { padding-top: 0; }
  .thi-immersive-photo { min-height: 70svh; }
  .thi-unit-editorial-grid, .thi-cinema-news-grid { grid-template-columns: 1fr; }
}
