/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: auto; } /* let JS handle smooth */

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  background: #fafafa;
  color: #111;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  .hover-zone {
    cursor: none !important;
  }
}

.brand-mark-home {
  position: fixed;
  top: 32px;
  left: 32px;
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: none;
  z-index: 1200;
  mix-blend-mode: normal;
}

.brand-mark-home__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-cluster {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 1200;
  width: 260px;
  height: 240px;
}

.menu-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 1200;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.14s ease 0.18s;
}

.menu-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.16);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.menu-panel {
  position: absolute;
  top: -10px;
  right: 3px;
  width: 232px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(200, 200, 200, 0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 30px rgba(107, 107, 99, 0.12);
  display: grid;
  gap: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(14px, 0, 0);
  transition:
    opacity 0.18s ease 0.18s,
    transform 0.22s ease 0.18s;
}

.menu-cluster:hover .menu-panel,
.menu-cluster:focus-within .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.menu-cluster:hover .menu-dots,
.menu-cluster:focus-within .menu-dots {
  opacity: 0;
  pointer-events: none;
  gap: 24px;
  transform: translate3d(-8px, 26px, 0);
}

.menu-panel__item {
  display: grid;
  grid-template-columns: 1fr 10px;
  align-items: center;
  column-gap: 18px;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.82);
}

.menu-panel__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: background 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
}

.menu-panel__label {
  font-size: clamp(1rem, 1.02vw, 1.02rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: color 0.14s ease;
}

.menu-panel__item:hover .menu-panel__dot,
.menu-panel__item:focus-visible .menu-panel__dot {
  background: #111;
  transform: scale(1.12);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.menu-panel__item:hover .menu-panel__label,
.menu-panel__item:focus-visible .menu-panel__label {
  color: #111;
  font-weight: 400;
}

.menu-panel__item:focus-visible {
  outline: none;
}

.menu-dots:hover,
.menu-dots:focus-visible {
  opacity: 0.72;
}

.menu-dots:focus-visible {
  outline: none;
}

.brand-mark-home:hover,
.brand-mark-home:focus-visible {
  opacity: 0.72;
}

.brand-mark-home:focus-visible {
  outline: none;
}

@media (max-width: 900px) {
  .brand-mark-home {
    top: 20px;
    left: 20px;
    width: 34px;
    height: 34px;
  }

  .menu-dots {
    top: 0;
    right: 0;
  }

  .menu-panel {
    top: calc(100% + 18px);
    right: -6px;
    transform: translateY(-8px);
  }

  .menu-cluster:hover .menu-panel,
  .menu-cluster:focus-within .menu-panel {
    transform: translateY(0);
  }

  .menu-cluster:hover .menu-dots,
  .menu-cluster:focus-within .menu-dots {
    transform: none;
    gap: 9px;
  }

  .menu-cluster {
    top: 20px;
    right: 20px;
  }
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: difference;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.cursor-frame,
.cursor-core {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.cursor-frame {
  width: 22px;
  height: 22px;
}

.cursor-bracket {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(255, 255, 255, 0.96);
  border-style: solid;
  border-width: 0;
}

.cursor-bracket--tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.cursor-bracket--tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.cursor-bracket--bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.cursor-bracket--br {
  right: 0;
  bottom: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.cursor-core {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 999px;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #f8f8f6;
  color: #111;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__mark {
  position: relative;
  width: 54px;
  height: 54px;
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.site-loader__mark span {
  position: absolute;
  width: 17px;
  height: 17px;
  border-color: rgba(17, 17, 17, 0.62);
  border-style: solid;
  border-width: 0;
}

.site-loader__mark span:nth-child(1) {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.site-loader__mark span:nth-child(2) {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.site-loader__mark span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.site-loader__mark span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.site-loader__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
}

.site-loader__text {
  position: fixed;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}

@keyframes loader-breathe {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__mark {
    animation: none;
  }
}


/* ═══════════════════════════════════════════════
   1. HERO — 100vh
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.section-cta {
  font: inherit;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.66);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  white-space: nowrap;
  text-align: right;
}

.section-cta:hover,
.section-cta:focus-visible {
  opacity: 0.72;
}

.section-cta--hero {
  position: absolute;
  right: 32px;
  bottom: 7vh;
  z-index: 12;
}

/* Page-level flower actor */
.page-flower-stack {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-flower {
  position: fixed;
  /*
    Figma: W 756.68, H 1051.01 on a 1512px-wide screen
    → width = 756.68 / 1512 ≈ 50vw
    Rotation: 2.16deg
  */
  width: min(50vw, 756.68px);
  height: auto;
  left: 0;
  top: 0;
  object-fit: contain;
  pointer-events: none;
  will-change: opacity, transform;
  transform-origin: top left;
}

/* Brand block */
.hero-brand {
  position: absolute;
  left: 50%;
  top: 28vh;
  transform: translateX(-64%);
  z-index: 10;
  width: min(61.9vw, 934px);
}

.hero-eyebrow {
  margin-bottom: clamp(-0.85rem, -0.45vw, -0.35rem);
  font-size: clamp(1rem, 2vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: rgba(0, 0, 0, 0.38);
  text-align: left;
  padding-left: clamp(2.5rem, 6.6vw, 5.8rem);
  transform: translateY(3rem);
}

/* Align wordmark: width = screen / golden ratio */
.wordmark {
  width: 100%;
  height: auto;
  margin: 0;
}

.wordmark-fallback {
  display: none;
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-ux {
  width: fit-content;
  margin-top: clamp(-0.65rem, -0.35vw, -0.2rem);
  margin-left: auto;
  margin-right: clamp(-1.5rem, -0.2vw, -0.5rem);
  font-size: clamp(1.618rem, 3.236vw, 4.854rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: rgba(0, 0, 0, 0.38);
  text-align: left;
  transform: translate(calc(-25px - 25%), -121px);
}


/* ═══════════════════════════════════════════════
   2–4. TEXT FLIP JOURNEY — 300vh
═══════════════════════════════════════════════ */
.text-journey {
  height: 360vh;
  position: relative;
}

.text-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* subtle perspective for the 3-D flip feel */
  perspective: 1000px;
  padding: 0 6vw;
  z-index: 10;
}

.flip-stage {
  position: relative;
  width: min(100%, 1100px);
  height: 100vh;
  text-align: center;
}

/*
  Each line starts invisible, slightly below center.
  JS adds .active / .exit to animate.
*/
.flip-line {
  --line-offset: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 30px + var(--line-offset)));
  opacity: 0;
  width: min(88vw, 18ch);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 250;
  letter-spacing: -0.04em;
  color: #111;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.55s ease,
    filter    0.55s ease;
}

.flip-line[data-index="0"] {
  --line-offset: -30px;
}

.flip-line[data-index="1"] {
  --line-offset: -34px;
}

.flip-line[data-index="2"] {
  --line-offset: -30px;
}

/* In view */
.flip-line.active {
  transform: translate(-50%, calc(-50% + var(--line-offset)));
  opacity: 1;
  filter: blur(0);
}

/* Exited (scrolled past) */
.flip-line.exit {
  transform: translate(-50%, calc(-50% - 28px + var(--line-offset)));
  opacity: 0;
  filter: blur(3px);
}


/* ═══════════════════════════════════════════════
   5. THE SYSTEM — 100vh
═══════════════════════════════════════════════ */
.system-screen {
  position: relative;
  height: 260vh;
  background: transparent;
  overflow: hidden;
  z-index: 10;
}

.system-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 20;
}

.system-prompt-heading {
  position: absolute;
  left: 50%;
  top: 22vh;
  transform: translateX(-50%);
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.system-prompt-heading.is-visible {
  opacity: 1;
}

.system-prompt-heading.is-dismissed {
  opacity: 0;
}

.system-hover-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 24;
}

.system-box {
  position: absolute;
  border: 1px dashed rgba(0, 0, 0, 0.38);
  background: transparent;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.system-box.is-active {
  opacity: 1;
}

.box-rhythm {
  left: 50%;
  top: 50%;
  width: 400px;
  height: 575px;
  transform: translate(calc(-50% + 100px), calc(-50% - 37.5px));
}

.box-sense {
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-8%, calc(-70% - 75px));
}

.box-structure {
  left: 50%;
  top: 50%;
  width: 300px;
  height: 350px;
  transform: translate(calc(-116% + 100px), calc(-6% - 50px));
}

.flower-hover-zones {
  position: fixed;
  pointer-events: none;
  z-index: 26;
}

.hover-zone {
  position: absolute;
  cursor: crosshair;
}

.zone-top    { top: 0; left: 50%; width: 50%; height: 50%; z-index: 4; }
.zone-left   { top: 0; left: 0; width: 50%; height: 50%; z-index: 3; }
.zone-right  { top: 50%; left: 50%; width: 50%; height: 50%; z-index: 5; }
.zone-bottom { top: 50%; left: 0; width: 50%; height: 50%; z-index: 6; }

.system-copy {
  position: fixed;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  color: #111;
  z-index: 32;
}

.system-copy.is-active {
  opacity: 1;
  pointer-events: auto;
}

.copy-system.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.system-copy h3,
.system-copy h2 {
  margin: 0 0 6px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.system-copy h3 {
  font-size: clamp(0.92rem, 1.25vw, 1.25rem);
}

.system-copy h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.system-copy p {
  margin: 0;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.18;
  font-weight: 300;
}

.copy-rhythm {
  left: calc(50% + 200px + 15px + 100px);
  top: calc(50% - 250px - 75px);
}

.copy-sense {
  left: calc(50% + 141px + 300px - 135px);
  top: calc(50% - 285px);
  text-align: left;
}

.copy-structure {
  left: calc(9.5vw + 167px);
  top: calc(50vh - 70px);
}

.copy-system {
  left: 4.6vw;
  bottom: 7vh;
  opacity: 0;
}

.system-copy-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.section-cta--system {
  position: fixed;
  right: 32px;
  bottom: 7vh;
  z-index: 34;
}


/* ═══════════════════════════════════════════════
   6. THE FLOW — 100vh, black
═══════════════════════════════════════════════ */
.flow-screen {
  position: relative;
  min-height: 100vh;
  margin-top: -50vh;
  background: #000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9vh 8vw 10vh;
  overflow: hidden;

  /* Flip-in entry animation — starts face-down, rotates up */
  transform-origin: top center;
  transform: perspective(1600px) rotateX(-88deg) scaleY(0.92);
  opacity: 0.98;
  backface-visibility: hidden;
  will-change: transform;
  z-index: 10;
}

.flow-flower {
  position: absolute;
  width: 50vw;
  height: auto;
  top: 50%;
  right: 6vw;
  transform: translateY(-50%) rotate(2.16deg);
  /* Inverted — white flower on black */
  filter: invert(1);
  opacity: 0.8;
  pointer-events: none;
}

.flow-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.flow-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}

.flow-body {
  font-size: clamp(15.3px, 1.6575vw, 19.125px);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  transform: translateX(5px);
}

.flow-body--secondary {
  margin-top: 22px;
}

.flow-details {
  display: grid;
  grid-template-columns: minmax(0, 0.99fr) minmax(0, 1.625fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  margin-top: clamp(10rem, 20vh, 14rem);
  max-width: min(82rem, 90vw);
}

.flow-detail-block {
  max-width: 24rem;
}

.flow-detail-block:last-child {
  max-width: 30rem;
  transform: translateX(75px);
}

.flow-detail-heading {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.flow-detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.flow-detail-list li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.flow-detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-cta--flow {
  position: absolute;
  right: 32px;
  bottom: 7vh;
  color: rgba(255, 255, 255, 0.72);
  z-index: 2;
}


/* ═══════════════════════════════════════════════
   7. GRADIENT STRIP — 50vh
═══════════════════════════════════════════════ */
.gradient-strip {
  height: 50vh;
  background: linear-gradient(to bottom, #000 0%, #fafafa 100%);
}


/* ═══════════════════════════════════════════════
   8. CLOSING — 80vh
═══════════════════════════════════════════════ */
.closing-screen {
  min-height: 80vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding: 10vh 4.6vw 5vh;
  gap: clamp(2rem, 4vh, 3.5rem);
}

.closing-text {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #333;
  align-self: center;
}

.closing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-self: center;
  justify-content: center;
}

.closing-cta-button {
  min-width: 15rem;
  padding: 16px 22px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #111;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.closing-cta-button:hover,
.closing-cta-button:focus-visible {
  opacity: 0.72;
}

.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: auto;
}

.site-footer--page {
  padding: 7vh 4.6vw 5vh;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column--social {
  justify-self: end;
  text-align: right;
}

.footer-column--social .footer-link:first-child {
  order: 3;
}

.footer-column--nav,
.footer-column--nav-secondary {
  justify-self: center;
  text-align: center;
}

.footer-heading {
  font-size: clamp(0.92rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #111;
}

.footer-link,
.footer-copy {
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: none;
}

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

.footer-column--nav,
.footer-column--nav-secondary,
.footer-column--social {
  gap: 8px;
}

.detail-page {
  min-height: 100vh;
  background: #fafafa;
}

.detail-shell {
  min-height: 100vh;
  padding: 16vh 8vw 8vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54rem;
}

.detail-kicker {
  margin-bottom: 18px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.42);
}

.detail-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.detail-body {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
}

.detail-back {
  width: fit-content;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  letter-spacing: 0.08em;
}

.detail-shell--form {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(3rem, 6vw, 7rem);
}

.detail-form-copy {
  max-width: 28rem;
}

.initiate-form {
  width: min(100%, 32rem);
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: rgba(0, 0, 0, 0.64);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 16px 18px;
  font: inherit;
  font-size: 1rem;
  color: #111;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.42);
}

.form-submit {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  color: #111;
}

.engage-page {
  min-height: 100vh;
  background: #fafafa;
}

.engage-main {
  position: relative;
  z-index: 1;
}

.engage-intro {
  position: relative;
  min-height: 100vh;
  padding: 10vh 8vw 8vh;
  overflow: hidden;
}

.engage-intro__blob {
  position: absolute;
  top: 10vh;
  right: -4vw;
  width: min(46vw, 620px);
  height: min(68vh, 760px);
  background: url('assets/flower-single.png') no-repeat center / contain;
  opacity: 0.12;
  filter: blur(1.8px);
  pointer-events: none;
}

.engage-intro__copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.engage-kicker {
  margin-bottom: 18px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.42);
}

.engage-title {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #111;
}

.engage-lead {
  max-width: 28rem;
  margin-top: 48px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 300;
  line-height: 1.38;
  color: rgba(17, 17, 17, 0.72);
}

.engage-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  height: 100vh;
}

.engage-split__left,
.engage-split__right {
  padding: 8vh 8vw;
}

.engage-split__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.54);
}

.engage-editorial {
  max-width: 29rem;
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.engage-editorial p {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.56;
  color: rgba(17, 17, 17, 0.72);
}

.engage-call-link {
  width: fit-content;
  margin-top: auto;
  border: 0;
  background: #A92023;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.engage-call-link:hover,
.engage-call-link:focus-visible {
  opacity: 0.9;
}

.engage-split__right {
  display: flex;
  position: relative;
  background: rgba(244, 244, 241, 0.7);
}

.engage-form-shell {
  max-width: 34rem;
  width: 100%;
  display: block;
  padding-bottom: 86px;
}

.engage-form {
  margin-top: 14px;
  display: grid;
  gap: 27px;
  align-content: start;
}

.engage-form-actions {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: calc(8vh - 4px);
  max-width: 34rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.engage-field {
  display: grid;
  gap: 4px;
}

.engage-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 7px;
}

.engage-field span,
.engage-field legend {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.74);
}

.engage-required-mark {
  display: inline-block;
  margin-left: 0.16em;
  color: #A92023;
}

.engage-field em {
  font-style: normal;
  color: rgba(17, 17, 17, 0.42);
}

.engage-field input,
.engage-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0);
  padding: 4px 0 6px;
  font: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  color: #111;
  outline: none;
  border-radius: 0;
  transition: border-bottom-color 0.16s ease, background-color 0.16s ease;
}

.engage-field input::placeholder,
.engage-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.36);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
}

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

.engage-field input:focus,
.engage-field textarea:focus {
  border-bottom-color: rgba(17, 17, 17, 0.48);
}

.engage-field.is-invalid input,
.engage-field.is-invalid textarea {
  border-bottom-color: #A92023;
  background: rgba(169, 32, 35, 0.035);
}

.engage-field--service {
  border: 0;
  padding: 0;
  margin: 0;
}

.engage-service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 10px;
}

.engage-service-options label {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.engage-service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.engage-service-options span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1.15;
  white-space: nowrap;
  color: rgba(17, 17, 17, 0.66);
  transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.engage-service-options input:checked + span,
.engage-service-options label:hover span {
  border-color: rgba(17, 17, 17, 0.52);
  color: #111;
  background: rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.1);
}

.engage-service-options input:checked + span {
  background: rgba(17, 17, 17, 0.12);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.18);
  transform: translateY(-1px);
}

.engage-submit {
  width: fit-content;
  margin-top: 0;
  border: 0;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.engage-form-note {
  margin-top: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.48);
}

.engage-services {
  padding: 9vh 4.6vw 10vh;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "heading heading heading heading"
    "sense rhythm structure flow";
  align-items: start;
  gap: 28px;
  background: #000;
}

.engage-services__heading {
  grid-area: heading;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: clamp(1.75rem, 4vh, 3rem);
}

.engage-service-card:nth-of-type(1) {
  grid-area: sense;
}

.engage-service-card:nth-of-type(2) {
  grid-area: rhythm;
}

.engage-service-card:nth-of-type(3) {
  grid-area: structure;
}

.engage-service-card:nth-of-type(4) {
  grid-area: flow;
}

.engage-service-card {
  display: grid;
  grid-template-rows: auto minmax(23px, auto) minmax(15px, auto) auto;
  align-content: start;
  gap: 5px;
  padding-right: 8px;
}

.engage-service-card__pillar {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.engage-service-card__service {
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.84);
}

.engage-service-card__summary,
.engage-service-card__note {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.engage-service-card__summary {
  margin-bottom: 10px;
}

.engage-service-card__note {
  font-weight: 400;
  margin-top: -2px;
  margin-bottom: 10px;
}

.engage-service-card__list {
  display: grid;
  gap: 5px;
}

.engage-service-card__list p {
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
  .hero-brand {
    left: 6vw;
    top: 34vh;
    width: 78vw;
  }

  .page-flower {
    width: min(44vw, 420px);
  }

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

@media (max-width: 720px) {
  .hero-brand {
    left: 1.5rem;
    top: 28vh;
    width: calc(100vw - 3rem);
  }

  .hero-eyebrow,
  .hero-ux {
    font-size: 1rem;
  }

  .wordmark {
    width: min(86vw, 560px);
  }

  .page-flower {
    width: 52vw;
  }

  .flip-line {
    font-size: clamp(2rem, 9vw, 3.1rem);
    width: min(88vw, 28rem);
  }

  .flow-details {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }

  .flow-detail-list li {
    white-space: normal;
  }

  .section-cta--flow {
    bottom: 4.5vh;
  }

  .site-footer {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    grid-template-areas:
      "nav nav2"
      "identity social";
  }

  .footer-column--identity { grid-area: identity; }
  .footer-column--nav { grid-area: nav; }
  .footer-column--nav-secondary { grid-area: nav2; }
  .footer-column--social { grid-area: social; }

  .detail-shell--form {
    flex-direction: column;
  }

  .engage-intro {
    min-height: auto;
    padding: 10vh 6vw 8vh;
  }

  .engage-intro__blob {
    width: 72vw;
    height: 44vh;
    top: 16vh;
    right: -10vw;
  }

  .engage-split {
    grid-template-columns: 1fr;
  }

  .engage-split__left,
  .engage-split__right {
    padding: 7vh 6vw;
  }

  .engage-field-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .engage-services {
    padding: 7vh 6vw 8vh;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "sense"
      "rhythm"
      "structure"
      "flow";
    gap: 34px;
  }

  .engage-service-card {
    grid-template-rows: auto;
    gap: 12px;
  }
}


/* ═══════════════════════════════════════════════
   SYSTEM TOOLTIP (body-level)
═══════════════════════════════════════════════ */
.sys-tooltip {
  position: fixed;
  pointer-events: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #555;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 200;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  padding-bottom: 8px;
}
