@charset "UTF-8";
/*
 * Trikaya Hero — front-end styles.
 * Compiled to `css/style.css` (loaded by both editor and view libraries).
 */
/*
 * Trikaya Hero — Figma node 447:21811 ("section_hero").
 *
 * Layout: full-width section with an absolutely-positioned right-hand
 * photo, a dark left panel with a diagonal cut (clip-path), and a
 * centered content column with heading, body copy and red pill CTA.
 */
.trikayaHero {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}
@media (min-width: 768px) {
  .trikayaHero {
    min-height: 720px;
    background: #0d0d10;
  }
}
@media (min-width: 1200px) {
  .trikayaHero {
    min-height: 800px;
  }
}
.trikayaHero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.trikayaHero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.trikayaHero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #0d0d10 0%, #0d0d10 40%, rgba(13, 13, 16, 0) 100%);
  /* Desktop: solid black panel on the left with a diagonal cut into the
   * photo, matching the Figma composition. */
}
@media (min-width: 768px) {
  .trikayaHero__overlay {
    background: #0d0d10;
    width: 65%;
    inset-inline-end: auto;
    clip-path: polygon(0 0, 100% 0, calc(100% - 180px) 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .trikayaHero__overlay {
    width: 58%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 220px) 100%, 0 100%);
  }
}
.trikayaHero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}
@media (min-width: 768px) {
  .trikayaHero__inner {
    padding: 120px 48px;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .trikayaHero__inner {
    padding: 160px 80px;
  }
}
.trikayaHero__content {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.trikayaHero__heading {
  margin: 0;
  color: #ffffff;
  font-family: "GillSansMTPro-Bold", "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4.4vw, 4.13rem); /* ~36 → 66px */
  line-height: 1.156; /* 76.32 / 66 from Figma */
  letter-spacing: -0.0109em; /* -0.72 / 66 from Figma */
}
@media (max-width: 767px) {
  .trikayaHero__heading {
    color: #0c2340;
    font-size: 1.75rem;
  }
}
.trikayaHero {
  /* Red marquee stripe under the heading. Its content scrolls right → left
   * in a seamless loop (two identical copies translated by -50%). */
}
.trikayaHero__stripe {
  position: relative;
  overflow: hidden;
  background: #c8102e;
  color: #ffffff;
  /* Up to 767px: break the stripe out of the centered content column so it
   * spans the full viewport width. */
}
@media (max-width: 767px) {
  .trikayaHero__stripe {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.trikayaHero {
  /* Holds the moving track; the red background lives on `&__stripe`, so the
   * edge fade below applies to the text only, not the red bar. */
}
.trikayaHero__stripeViewport {
  /* 768px and up: soften the left/right edges so the scrolling text fades
   * in and out of transparency instead of clipping abruptly. */
}
@media (min-width: 768px) {
  .trikayaHero__stripeViewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
}
.trikayaHero__stripeTrack {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  animation: trikayaHeroMarquee 24s linear infinite;
  /* Static, non-animated variant used inside the Gutenberg editor so the
   * text stays put while it is being edited. */
}
.trikayaHero__stripeTrack--static {
  animation: none;
}
.trikayaHero__stripeTrack:not(.trikayaHero__stripeTrack--static):hover {
  animation-play-state: paused;
}
.trikayaHero__stripeItem {
  display: inline-block;
  padding: 10px 48px 10px 0;
  font-family: "GillSansMTPro-Book", "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.trikayaHero__description {
  margin: 0;
  color: #ffffff;
  font-family: "GillSansMTPro-Book", "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.6; /* 28.8 / 18 */
  max-width: 460px;
}
@media (max-width: 767px) {
  .trikayaHero__description {
    font-size: 1rem;
    line-height: 1.55;
    color: #000;
  }
}
.trikayaHero__ctaWrap {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .trikayaHero__ctaWrap {
    text-align: center;
  }
}
.trikayaHero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #c8102e;
  color: #ffffff;
  font-family: "GillSansMTPro-Bold", "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 767px) {
  .trikayaHero__cta {
    padding: 6px 18px;
  }
}
.trikayaHero__cta:hover, .trikayaHero__cta:focus-visible {
  background: #ffffff;
  color: #c8102e;
  text-decoration: none;
}
.trikayaHero__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.trikayaHero__ctaLabel {
  display: inline-block;
  white-space: nowrap;
}
.trikayaHero__ctaIcon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .trikayaHero__ctaIcon {
    display: none;
  }
}
.trikayaHero {
  /* Mobile: photo becomes a soft header, dark panel fills the rest. */
}
@media (max-width: 767px) {
  .trikayaHero {
    min-height: auto;
  }
  .trikayaHero__media {
    inset: 0;
    display: none;
  }
  .trikayaHero__media img {
    object-position: center;
  }
  .trikayaHero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 16, 0.6) 0%, rgba(13, 13, 16, 0.85) 60%, #0d0d10 100%);
  }
  .trikayaHero__inner {
    align-items: flex-end;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .trikayaHero__content {
    gap: 32px;
  }
}

/* Seamless right → left scroll: the track holds two identical copies, so
 * translating by exactly -50% loops without a visible jump. */
@keyframes trikayaHeroMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Respect users who prefer reduced motion: stop the scroll. */
@media (prefers-reduced-motion: reduce) {
  .trikayaHero__stripeTrack {
    animation: none;
  }
}
/* Full-width alignment (Gutenberg): break out of container. */
.trikayaHero.alignfull,
[data-align=full] > .trikayaHero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
