/* ============================================================
   Aleida — homepage 2026. A quiet, mysterious cut.
   Logo-in-the-corner only, ink hero with a manifesto headline,
   a 3-step "what we do" flow that shows the product, a strawberry
   "try it yourself" preview, then the kept story + booking, and a
   giant ALEIDA sign-off. Reuses home-palett.css tokens + film2.css.
   ============================================================ */

/* the strawberry square that punctuates the wordmark */
.sq { display: inline-block; background: var(--straw); border-radius: 1px; }

/* =========================================================
   LOGO — fixed, top-left corner. The only chrome on the page.
   ========================================================= */
.h26-logo {
  position: fixed; top: clamp(20px, 3vw, 30px); left: var(--pad); z-index: 120;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--disp); font-weight: 800; font-size: 21px;
  letter-spacing: .01em; text-transform: uppercase; color: var(--cream);
  transition: color .4s ease;
}
.h26-logo svg { width: 26px; height: 29px; display: block; }
.h26-logo .sq { width: 7px; height: 7px; margin-left: 2px; align-self: flex-end; margin-bottom: 4px; }
/* once past the ink hero, the corner logo flips to ink so it reads on cream */
.h26-logo.on-light { color: var(--ink); }

/* =========================================================
   HERO — ink, full viewport, manifesto headline. Calm:
   no eyebrow, no live ticker, no looping blinks. Just type.
   ========================================================= */
.h26-hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center;
  background: var(--ink); color: var(--cream); overflow: hidden;
  padding: clamp(110px, 16vh, 170px) var(--pad) clamp(60px, 8vh, 100px);
}
/* faint brand grid + a soft, static strawberry glow */
.h26-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(250,247,242,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(250,247,242,.045) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask-image: radial-gradient(125% 110% at 22% 40%, #000 18%, transparent 80%);
  mask-image: radial-gradient(125% 110% at 22% 40%, #000 18%, transparent 80%);
}
.h26-hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 64%; top: 36%; width: 70vw; height: 70vw; max-width: 880px; max-height: 880px;
  background: radial-gradient(circle, rgba(225,75,71,.15), transparent 62%);
  transform: translate(-50%, -50%); filter: blur(8px); opacity: .7;
}

.h26-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
}

.h26-h1 {
  margin: 0; font-family: var(--disp); font-weight: 700;
  font-size: clamp(46px, 8.4vw, 124px); line-height: .98; letter-spacing: -.045em;
  color: var(--cream); text-wrap: balance; max-width: 16ch;
}
.h26-h1 .em { color: var(--straw); }
/* line-by-line rise on load (one-shot, calm) */
.h26-h1 .ln { display: block; overflow: hidden; padding: .1em .04em .12em; margin: -.1em -.04em -.12em; }
.h26-h1 .ln > span { display: inline-block; transform: translateY(118%); animation: h26Up .9s cubic-bezier(.2,.8,.2,1) both; }
.h26-h1 .ln:nth-child(1) > span { animation-delay: .1s; }
.h26-h1 .ln:nth-child(2) > span { animation-delay: .22s; }
.h26-h1 .ln:nth-child(3) > span { animation-delay: .34s; }
@keyframes h26Up { to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .h26-h1 .ln > span { transform: none; animation: none; } }

.h26-sub {
  margin: clamp(28px, 4vh, 42px) 0 0; max-width: 50ch;
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; color: rgba(250,247,242,.78);
  text-wrap: pretty;
  opacity: 0; animation: h26Fade .9s ease .54s both;
}
.h26-cta { margin-top: clamp(34px, 5vh, 48px); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; opacity: 0; animation: h26Fade .9s ease .68s both; }
@keyframes h26Fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .h26-sub, .h26-cta { animation: none; opacity: 1; } }

/* ghost link button on ink */
.h26-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: 9px; color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(250,247,242,.28);
  transition: box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.h26-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(250,247,242,.6); background: rgba(250,247,242,.06); transform: translateY(-2px); }
.h26-ghost .arr { transition: transform .2s ease; }
.h26-ghost:hover .arr { transform: translateX(4px); }

/* =========================================================
   WHAT WE DO — a 3-step flow that shows the product.
   ========================================================= */
.h26-do { background: var(--cream); color: var(--ink); padding: clamp(80px, 11vw, 140px) var(--pad); border-bottom: 1px solid var(--border); }
.h26-do-inner { max-width: var(--maxw); margin: 0 auto; }
.h26-do-head { max-width: 60ch; }
.h26-do-head h2 { margin: 16px 0 0; font-family: var(--disp); font-weight: 600; font-size: clamp(32px, 4.4vw, 60px); line-height: 1.03; letter-spacing: -.035em; color: var(--ink); text-wrap: balance; max-width: 20ch; }
.h26-do-head h2 .em { color: var(--straw); }
.h26-do-head p { margin: 22px 0 0; max-width: 52ch; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.55; color: var(--graphite); }

.h26-flow { margin-top: clamp(46px, 5.5vw, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 38px); }
.h26-step { display: flex; flex-direction: column; }
.h26-stage { height: clamp(212px, 24vw, 264px); border-radius: 16px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; padding: 24px; }
.h26-stage.cream { background: var(--soft); border: 1px solid var(--border); }
.h26-stage.dark { background: linear-gradient(180deg, #23201B, #1A1714); border: 1px solid rgba(250,247,242,.10); box-shadow: inset 0 1px 0 rgba(250,247,242,.05); }
.h26-step .lbl { margin-top: 22px; display: flex; align-items: baseline; gap: 12px; }
.h26-step .n { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--straw-deep); }
.h26-step h3 { margin: 0; font-family: var(--disp); font-weight: 600; font-size: clamp(18px, 1.8vw, 23px); letter-spacing: -.02em; color: var(--ink); }
.h26-step p { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--graphite); max-width: 36ch; }

/* mini visual — chat */
.h26-mini-chat { width: 100%; max-width: 260px; display: flex; flex-direction: column; gap: 9px; }
.h26-mini-chat .b { padding: 9px 12px; font-size: 12.5px; line-height: 1.35; border-radius: 14px; max-width: 92%; }
.h26-mini-chat .b.ai { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.h26-mini-chat .b.me { align-self: flex-end; background: var(--straw); color: var(--cream); border-bottom-right-radius: 5px; }

/* mini visual — ranked rows */
.h26-mini-rows { width: 100%; max-width: 300px; display: flex; flex-direction: column; gap: 7px; }
.h26-mini-row { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 10px; background: rgba(250,247,242,.05); }
.h26-mini-row.top { background: rgba(225,75,71,.14); box-shadow: inset 2px 0 0 var(--straw); }
.h26-mini-row .i { width: 28px; height: 28px; border-radius: 8px; flex: none; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; background: rgba(250,247,242,.08); border: 1px solid rgba(250,247,242,.12); color: rgba(250,247,242,.82); }
.h26-mini-row .nm { flex: 1; min-width: 0; color: rgba(250,247,242,.92); font-size: 12.5px; font-weight: 500; }
.h26-mini-row .p { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 8px; border-radius: 14px; flex: none; }
.h26-mini-row .p.high { background: rgba(87,201,138,.16); color: #6FD49C; }
.h26-mini-row .p.med { background: rgba(217,164,65,.18); color: #E0B25C; }
.h26-mini-row .p.low { background: rgba(250,247,242,.08); color: rgba(250,247,242,.5); }

/* mini visual — assessment card */
.h26-mini-card { width: 100%; max-width: 264px; background: rgba(250,247,242,.05); border: 1px solid rgba(250,247,242,.12); border-radius: 14px; overflow: hidden; }
.h26-mini-card .top { display: flex; align-items: center; gap: 10px; padding: 14px 14px 10px; }
.h26-mini-card .av { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; background: rgba(250,247,242,.08); border: 1px solid rgba(250,247,242,.14); color: var(--cream); }
.h26-mini-card .who { flex: 1; min-width: 0; }
.h26-mini-card .who .nm { color: var(--cream); font-size: 13px; font-weight: 600; }
.h26-mini-card .who .ro { color: rgba(250,247,242,.45); font-size: 11px; }
.h26-mini-card .v { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: #6FD49C; display: inline-flex; align-items: center; gap: 6px; flex: none; }
.h26-mini-card .v::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6FD49C; box-shadow: 0 0 10px rgba(111,212,156,.6); }
.h26-mini-card .chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 2px 14px 14px; }
.h26-mini-card .chips span { font-size: 11px; padding: 5px 10px; border-radius: 20px; background: rgba(250,247,242,.06); border: 1px solid rgba(250,247,242,.14); color: var(--cream); }

/* =========================================================
   PHONE MOCKUP — self-contained, for the "try it yourself" beat.
   ========================================================= */
.h26-phone {
  position: relative; width: clamp(232px, 25vw, 280px); aspect-ratio: 286 / 580;
  padding: 12px; border-radius: clamp(34px, 4vw, 42px);
  background: linear-gradient(155deg, #2A2620, #131110);
  box-shadow: 0 50px 110px -34px rgba(0,0,0,.5), inset 0 0 0 1px rgba(250,247,242,.08), inset 0 1px 0 rgba(250,247,242,.14);
}
.h26-phone .scr { position: absolute; inset: 12px; background: var(--cream); border-radius: clamp(24px, 3.2vw, 30px); overflow: hidden; display: flex; flex-direction: column; }
.h26-ph-head { display: flex; align-items: center; gap: 9px; padding: 15px 15px 12px; border-bottom: 1px solid var(--border); }
.h26-ph-head .mk { width: 28px; height: 28px; border-radius: 8px; background: rgba(225,75,71,.1); display: grid; place-items: center; flex: none; }
.h26-ph-head .mk svg { width: 14px; height: 16px; }
.h26-ph-head .nm { font-family: var(--disp); font-weight: 700; font-size: 13.5px; color: var(--ink); }
.h26-ph-head .st { margin-left: auto; font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--straw-deep); display: inline-flex; align-items: center; gap: 5px; }
.h26-ph-head .st .d { width: 6px; height: 6px; border-radius: 50%; background: var(--straw); }
.h26-ph-chat { flex: 1; padding: 14px 13px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.h26-bub { max-width: 86%; padding: 10px 13px; font-size: 12.5px; line-height: 1.4; border-radius: 16px; box-shadow: 0 2px 8px -3px rgba(26,24,20,.12); }
.h26-bub.ai { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; }
.h26-bub.me { align-self: flex-end; background: var(--straw); color: var(--cream); border-bottom-right-radius: 5px; }
.h26-ph-bar { padding: 9px 13px 15px; }
.h26-ph-bar .box { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid var(--border); background: #fff; border-radius: 22px; padding: 9px 9px 9px 15px; font-size: 12px; color: var(--stone); }
.h26-ph-bar .send { width: 24px; height: 24px; border-radius: 50%; background: var(--straw); color: var(--cream); display: grid; place-items: center; font-size: 12px; flex: none; }

/* =========================================================
   TRY IT YOURSELF — strawberry, two columns: copy + phone.
   ========================================================= */
.h26-try { position: relative; background: var(--straw); color: var(--cream); padding: clamp(76px, 10vw, 140px) var(--pad); overflow: hidden; }
.h26-try::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(250,247,242,.12) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(250,247,242,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(130% 120% at 70% 40%, #000 32%, transparent 86%);
  mask-image: radial-gradient(130% 120% at 70% 40%, #000 32%, transparent 86%);
}
.h26-try-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.h26-try .eyebrow-c { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,247,242,.9); margin-bottom: 22px; }
.h26-try .eyebrow-c .tick { width: 24px; height: 1px; background: var(--cream); }
.h26-try h2 { margin: 0; font-family: var(--disp); font-weight: 600; font-size: clamp(34px, 4.6vw, 66px); line-height: 1.0; letter-spacing: -.04em; color: var(--cream); max-width: 15ch; text-wrap: balance; }
.h26-try p { margin: 24px 0 0; max-width: 42ch; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: rgba(250,247,242,.88); }
.h26-try-cta { margin-top: clamp(30px, 4vw, 40px); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.h26-try-cta .btn { --bg: var(--cream); --fg: var(--ink); font-size: 17px; padding: 17px 30px; }
.h26-try-cta .btn:hover { --bg: #fff; background: #fff; }
.h26-try-cta .micro { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,247,242,.72); }
.h26-try-visual { display: flex; justify-content: center; }
.h26-try-visual .h26-phone { transform: rotate(2.5deg); }

/* booking heading width */
.book .book-text h2 { max-width: 15ch; }

/* =========================================================
   FOOTER — just the wordmark. Giant ALEIDA sign-off.
   ========================================================= */
.h26-foot { background: var(--ink); color: var(--cream); padding: clamp(72px, 10vw, 120px) var(--pad) clamp(20px, 3vw, 34px); overflow: hidden; }
.h26-foot-inner { max-width: var(--maxw); margin: 0 auto; }
.h26-foot-mark {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(80px, 24vw, 380px); line-height: .8; letter-spacing: -.045em;
  color: var(--cream); white-space: nowrap;
}
.h26-foot-mark .sq { width: .12em; height: .12em; margin-left: .03em; border-radius: .02em; vertical-align: baseline; }
.h26-foot-bot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(22px, 3vw, 40px); padding-top: 22px; border-top: 1px solid rgba(250,247,242,.16); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,247,242,.5); }
.h26-foot-bot a { color: rgba(250,247,242,.7); transition: color .18s ease; }
.h26-foot-bot a:hover { color: var(--straw); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .h26-flow { grid-template-columns: 1fr; gap: clamp(14px, 3vw, 22px); }
  .h26-stage { height: clamp(190px, 42vw, 240px); }
  .h26-try-inner { grid-template-columns: 1fr; gap: clamp(36px, 7vw, 56px); }
  .h26-try-visual { order: -1; }
}
@media (max-width: 540px) {
  .h26-foot-bot { flex-direction: column; align-items: flex-start; gap: 10px; }
}
