/* =========================================================
   SECTION 01 — HERO
   ========================================================= */
.section-transition {
  position: relative;
  height: 190vh;
  min-height: 1180px;
}

.hero,
.services-intro,
.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.services-intro::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 30%, rgba(0,0,0,.10));
}

.hero > *,
.services-intro > *,
.contact-section > * {
  position: relative;
  z-index: 3;
}

.hero-grid,
.hero-glow,
.services-intro-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100vh;
  padding: 28px var(--page-pad) 34px;
  transform-origin: center;
  will-change: transform, opacity;
  background: transparent;
}

.hero-grid {
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: min(9vw, 120px) min(9vw, 120px);
  mask-image: radial-gradient(circle at 55% 45%, #000 0, transparent 75%);
}

.hero-glow {
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .16;
}

.hero-glow--one {
  right: 8vw;
  top: 8vh;
  background: var(--kraken);
}

.hero-glow--two {
  left: -12vw;
  bottom: -28vh;
  background: #4e173d;
}

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  display: block;
  width: clamp(132px, 11vw, 190px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-link {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .13em;
  transition: color .28s ease, background .28s ease, transform .28s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: #fff;
  color: var(--kraken);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s ease;
}

.hero-content {
  position: absolute;
  z-index: 8;
  left: clamp(24px, 8vw, 145px);
  top: 50%;
  transform: translateY(-48%);
  width: min(980px, 78vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.68);
  opacity: 1;
}

.eyebrow i {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.title-wrap {
  position: relative;
  width: max-content;
  max-width: 100%;
}

#heroTitle {
  margin: 0;
  font-family: Blacker, Georgia, serif;
  font-size: clamp(78px, 11.6vw, 188px);
  line-height: .76;
  letter-spacing: -.045em;
  font-weight: 900;
}

#heroTitle span {
  display: block;
}

#heroTitle .accent-word {
  color: var(--kraken);
}


.hero-copy {
  width: min(510px, 48vw);
  margin: 34px 0 0;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,.76);
  opacity: 1;
}

.hero-bottom {
  display: flex;
  gap: 44px;
  margin-top: 34px;
  font-size: 9px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.48);
  opacity: 1;
}

.tentacle-canvas {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.course-cta {
  position: absolute;
  z-index: 12;
  right: var(--page-pad);
  bottom: 44px;
}

.course-cta a {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 15px 18px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .14em;
  transition: background .28s ease, color .28s ease, transform .28s ease, gap .28s ease;
}

.course-cta a:hover {
  gap: 32px;
}

.course-cta strong {
  font-size: 18px;
}

.scroll-label {
  position: absolute;
  left: var(--page-pad);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.52);
  opacity: 1;
}

.scroll-label i {
  display: block;
  width: 46px;
  height: 1px;
  background: currentColor;
}

.cursor-orb {
  position: fixed;
  z-index: 40;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(220,31,116,.9);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

/* =========================================================
   SECTION 02A — SERVICES INTRO
   ========================================================= */
.services-intro {
  position: sticky;
  top: 0;
  z-index: 4;
  height: 100vh;
  margin-top: -100vh;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  background: transparent;
  backface-visibility: hidden;
}

.services-intro-bg {
  inset: 0;
}

.services-intro-bg::before,
.services-intro-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(220,31,116,.13);
  border-radius: 50%;
}

.services-intro-bg::before {
  width: 58vw;
  height: 33vh;
  left: 24vw;
  top: 34vh;
  transform: rotate(-11deg);
}

.services-intro-bg::after {
  width: 84vw;
  height: 53vh;
  left: 7vw;
  top: 24vh;
  transform: rotate(8deg);
}

.services-intro-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  will-change: transform;
}

.services-kicker {
  margin: 0 0 26px;
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.55);
  opacity: 1;
}

.services-logo {
  width: clamp(175px, 19.6vw, 329px);
  height: auto;
  margin-bottom: 38px;
  opacity: 0;
  transform: scale(.2);
  transform-origin: center;
  will-change: transform, opacity;
}

.services-intro h2 {
  margin: 0;
  font-family: Newake, InterK, sans-serif;
  font-size: clamp(56px, 8.7vw, 138px);
  line-height: .86;
  letter-spacing: -.025em;
}

.services-intro h2 span {
  display: inline-block;
  margin-top: .12em;
  color: var(--kraken);
  font-family: Blacker, Georgia, serif;
}

.services-lineup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 0;
  font-size: 9px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.50);
  opacity: 1;
}

.services-lineup i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--kraken);
}

.services-scroll-line {
  position: absolute;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 9px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.50);
  opacity: 1;
}

.services-scroll-line i {
  width: 46px;
  height: 1px;
  background: currentColor;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  min-height: 92svh;
  padding: 14vh var(--page-pad);
  display: flex;
  align-items: center;
  background: transparent;
}

.contact-inner {
  width: 100%;
}

.contact-inner h2 {
  margin: 0;
  font-family: Blacker, Georgia, serif;
  font-size: clamp(72px, 11vw, 176px);
  line-height: .78;
  letter-spacing: -.04em;
}

.contact-inner h2 span {
  color: var(--kraken);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
}

.contact-actions a {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  transition: background .25s ease, color .25s ease;
}

.contact-actions a:hover {
  background: #fff;
  color: var(--kraken);
}


/* =========================================================
   HIGH-CONTRAST TEXT SELECTION
   Small supporting text uses translucent RGBA instead of parent opacity,
   so selected text renders at full Kraken Magenta + pure white.
   ========================================================= */
.eyebrow ::selection,
.hero-copy::selection,
.hero-bottom ::selection,
.scroll-label ::selection,
.services-kicker::selection,
.services-lineup ::selection,
.services-scroll-line ::selection {
  background: #DC1F74 !important;
  color: #FFFFFF !important;
}

.eyebrow ::-moz-selection,
.hero-copy::-moz-selection,
.hero-bottom ::-moz-selection,
.scroll-label ::-moz-selection,
.services-kicker::-moz-selection,
.services-lineup ::-moz-selection,
.services-scroll-line ::-moz-selection {
  background: #DC1F74 !important;
  color: #FFFFFF !important;
}
