/* Think Bigger Digital Design
   Palette: sky #33CBEA · ink #06222C · cloud #FFFFFF · mist #E3F7FD · dawn peach #FFD7B5 · sun gold #FFC766 (sunrise only)
   Hero is the sky with clouds; below it the page is white with colour blocks. */

:root {
  --sky: #33CBEA;
  --sky-shade: #1FB4D8;
  --giant: var(--ink);
  --unlit: #8CCFE2;
  --ink: #06222C;
  --ink-soft: #1B4250;
  --cloud: #FFFFFF;
  --mist: #E3F7FD;
  --dawn: #FFD7B5;
  --sun: #FFC766;
  --glow: #6FDDF7;

  --display: "Bricolage Grotesque", "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --max: 1240px;
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, var(--sky) 0 30%, #FFE6CF 70%);
  background-color: #fff;
  overflow-x: clip;
}
main { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 800; }
p { margin: 0; }

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 12px; left: 12px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.narrow { max-width: 1180px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 0 26px;
  border-radius: 999px; border: 0;
  font: 600 1rem/1 var(--body); text-decoration: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.3,1.6,.5,1), box-shadow .25s, background-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 6px 0 rgba(6,34,44,.18); }
.btn-cloud { background: var(--cloud); color: var(--ink); box-shadow: 0 6px 0 rgba(6,34,44,.10), inset 0 -4px 0 var(--mist); }
.btn-sky { background: var(--sky); color: var(--ink); box-shadow: 0 6px 0 rgba(0,0,0,.25), inset 0 -4px 0 rgba(6,34,44,.12); }

/* ---------- Cloud lanes: open strips where clouds drift side to side, clear of any text ---------- */
.lane { position: relative; z-index: 1; width: 100vw; margin-left: calc(50% - 50vw); height: clamp(96px, 12vw, 150px); pointer-events: none; }
.lane .c {
  position: absolute; left: 0; top: var(--top);
  width: min(var(--w), 38vw);
  animation: across var(--t) linear var(--dl) infinite var(--dir, alternate);
  will-change: transform;
}
.lane svg { display: block; width: 100%; height: auto; aspect-ratio: 200 / 112; overflow: visible; filter: drop-shadow(0 14px 18px rgba(4,110,140,.2)); }
.lane .c-s svg { aspect-ratio: 64 / 44; }
@keyframes across {
  from { transform: translateX(-30vw); }
  to   { transform: translateX(100vw); }
}
.alt-mark svg, .avatar svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 14px var(--gutter); transition: padding .3s; }
.bar {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 10px 10px 18px; border-radius: 999px;
  transition: background-color .3s, box-shadow .3s;
}
.bar { position: relative; }
.site-header.is-scrolled, .site-header.menu-open { padding-top: calc(40px + env(safe-area-inset-top, 0px)); }
@media (max-width: 600px) { .site-header.is-scrolled, .site-header.menu-open { padding-top: calc(24px + env(safe-area-inset-top, 0px)); } }
/* Sticky header turns into a cloud: white body, puffs along the top, soft shadow under the whole shape */
.bar::before {
  content: ""; position: absolute; left: 3%; right: 3%; bottom: calc(100% - 12px); height: 46px; z-index: -1;
  background: radial-gradient(circle at 3.0% 100%, #fff 0 28px, transparent 28.5px), radial-gradient(circle at 9.25% 100%, #fff 0 38px, transparent 38.5px), radial-gradient(circle at 15.5% 100%, #fff 0 30px, transparent 30.5px), radial-gradient(circle at 21.75% 100%, #fff 0 44px, transparent 44.5px), radial-gradient(circle at 28.0% 100%, #fff 0 32px, transparent 32.5px), radial-gradient(circle at 34.25% 100%, #fff 0 40px, transparent 40.5px), radial-gradient(circle at 40.5% 100%, #fff 0 26px, transparent 26.5px), radial-gradient(circle at 46.75% 100%, #fff 0 42px, transparent 42.5px), radial-gradient(circle at 53.0% 100%, #fff 0 34px, transparent 34.5px), radial-gradient(circle at 59.25% 100%, #fff 0 38px, transparent 38.5px), radial-gradient(circle at 65.5% 100%, #fff 0 28px, transparent 28.5px), radial-gradient(circle at 71.75% 100%, #fff 0 44px, transparent 44.5px), radial-gradient(circle at 78.0% 100%, #fff 0 30px, transparent 30.5px), radial-gradient(circle at 84.25% 100%, #fff 0 36px, transparent 36.5px), radial-gradient(circle at 90.5% 100%, #fff 0 26px, transparent 26.5px), radial-gradient(circle at 96.75% 100%, #fff 0 40px, transparent 40.5px);
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .4s cubic-bezier(.2,.8,.2,1); pointer-events: none;
}
.site-header.is-scrolled .bar, .site-header.menu-open .bar {
  background: #fff; box-shadow: inset 0 -5px 0 var(--mist);
  filter: drop-shadow(0 12px 18px rgba(4,90,120,.2));
}
.site-header.is-scrolled .bar::before, .site-header.menu-open .bar::before { opacity: 1; transform: none; }
@media (max-width: 600px) {
  .bar::before { height: 28px; background: radial-gradient(circle at 4.0% 100%, #fff 0 16px, transparent 16.5px), radial-gradient(circle at 15.5% 100%, #fff 0 22px, transparent 22.5px), radial-gradient(circle at 27.0% 100%, #fff 0 18px, transparent 18.5px), radial-gradient(circle at 38.5% 100%, #fff 0 26px, transparent 26.5px), radial-gradient(circle at 50.0% 100%, #fff 0 17px, transparent 17.5px), radial-gradient(circle at 61.5% 100%, #fff 0 24px, transparent 24.5px), radial-gradient(circle at 73.0% 100%, #fff 0 19px, transparent 19.5px), radial-gradient(circle at 84.5% 100%, #fff 0 25px, transparent 25.5px), radial-gradient(circle at 96.0% 100%, #fff 0 16px, transparent 16.5px); }
}
.brand { display: block; width: clamp(150px, 16vw, 200px); filter: drop-shadow(0 3px 0 var(--ink)); }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.nav a:not(.btn) { font-weight: 600; text-decoration: none; padding: 10px 2px; background: linear-gradient(currentColor,currentColor) 0 88% / 0 2px no-repeat; transition: background-size .25s; }
.nav a:not(.btn):hover { background-size: 100% 2px; }
.menu-btn { display: none; }

/* ---------- Altimeter ---------- */
.altimeter {
  position: fixed; right: clamp(14px, 2vw, 28px); top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font: 600 .7rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  transition: opacity .4s;
}
.altimeter.is-dark { color: #fff; }
.alt-track { position: relative; width: 2px; height: 34vh; background: repeating-linear-gradient(to top, currentColor 0 6px, transparent 6px 14px); opacity: .55; }
.alt-mark { position: absolute; left: 50%; bottom: 0; width: 34px; height: 24px; transform: translate(-50%, 50%); }
.alt-read { font-variant-numeric: tabular-nums; min-width: 6.5em; text-align: center; }
.alt-label { opacity: .7; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 clamp(40px, 6vw, 90px); background: var(--sky); }  /* bottom room so the cloud edge of the white page never covers the buttons */
.lane-top { height: clamp(80px, 10vw, 120px); }
.eyebrow { font-weight: 600; font-size: .95rem; letter-spacing: .01em; margin-bottom: clamp(20px, 4vh, 36px); color: var(--ink-soft); }
.hero-title { display: block; width: fit-content; max-width: 100%; }
.hero-sub { width: fit-content; position: relative; left: 3.8%; }   /* starts under the stem of the T, not the crossbar */
/* Logo has its own ink outline; add a solid 3D drop so it lifts off the sky */
.hero-logo { width: 0; min-width: 100%; height: auto; filter: drop-shadow(0 7px 0 var(--ink)); }
@media (max-width: 600px) { .hero-logo { filter: drop-shadow(0 3px 0 var(--ink)); } }
.hero-sub {
  display: block; margin-top: clamp(4px, 1vw, 14px);
  font-size: clamp(2.6rem, 9.3vw, 7.8rem); line-height: .88; letter-spacing: -.05em; font-weight: 800;
  font-variation-settings: "opsz" 96;
}
.dot { color: var(--cloud); }
.hero-cloud {
  position: absolute; z-index: 1; right: calc(var(--gutter) + 20px); bottom: 0;
  width: clamp(220px, 24vw, 330px); pointer-events: none;
  animation: sway 10s ease-in-out infinite alternate;
}
.hero-cloud svg { display: block; width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 18px 22px rgba(4,110,140,.22)); }
@keyframes sway {
  from { transform: translate(-40px, 6px); }
  to   { transform: translate(30px, -12px); }
}
.hero-foot { display: grid; grid-template-columns: minmax(0, 560px); gap: 24px 48px; align-items: end; margin-top: clamp(28px, 6vh, 56px); }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.55; font-weight: 500; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }


/* ---------- White page with colour blocks ---------- */
.page { position: relative; z-index: 2; background: #fff; padding: 8px 0 clamp(60px, 8vw, 110px); }
.page-edge { bottom: calc(100% - 2px); }
.block { margin: 0 clamp(12px, 2vw, 28px); border-radius: clamp(24px, 3vw, 40px); }
.block-sky { background: var(--sky); }
.block-mist { background: var(--mist); }
.block-ink { background: var(--ink); color: #fff; }

/* ---------- Three seconds ---------- */
.seconds { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 40px); --p: 0; }
.seconds-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.seconds-label, .seconds-main { grid-column: 1 / -1; }
.seconds-label { display: flex; align-items: center; gap: 10px; margin: 0; }
.seconds-dot { width: 30px; flex: none; filter: drop-shadow(0 4px 6px rgba(4,110,140,.25)); }
.seconds-dot svg { display: block; width: 100%; height: auto; overflow: visible; }
.seconds-count {
  font-family: var(--display); font-weight: 800; font-variation-settings: "opsz" 96;
  font-size: clamp(5.5rem, 24vw, 13rem); line-height: .8; letter-spacing: -.05em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.seconds-num { display: inline-block; }
.seconds-unit { font-size: .35em; margin-left: .04em; letter-spacing: -.02em; }
/* Timer: a cloud flies right to left as the seconds run out; sky blue ahead of it is the time left */
.timer { position: relative; height: 64px; margin-top: 18px; max-width: 600px; }
.timer-track, .timer-left { position: absolute; left: 32px; right: 32px; top: 50%; height: 10px; margin-top: -5px; border-radius: 10px; }
.timer-track { background: rgba(6,34,44,.07); box-shadow: inset 0 0 0 1px rgba(6,34,44,.12); }
.timer-left { background: var(--sky); box-shadow: inset 0 0 0 1px var(--ink); right: calc(32px + var(--p) * (100% - 64px)); }
.timer-cloud {
  z-index: 1; position: absolute; top: 50%; left: calc(100% - 32px - var(--p) * (100% - 64px)); width: 72px;
  transform: translate(-50%, -58%);
  filter: drop-shadow(1px 0 0 var(--ink)) drop-shadow(-1px 0 0 var(--ink)) drop-shadow(0 1px 0 var(--ink)) drop-shadow(0 -1px 0 var(--ink)) drop-shadow(0 6px 8px rgba(4,90,120,.25));
}
.timer-cloud svg { display: block; width: 100%; height: auto; overflow: visible; }
.seconds.is-done .timer-cloud { animation: settle .6s cubic-bezier(.3,1.6,.5,1); }
@keyframes settle { 40% { transform: translate(-50%, -80%); } }
.seconds-text { margin-top: 28px; max-width: 30rem; font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); font-weight: 600; line-height: 1.32; }
.seconds-verdict { margin-top: 36px; max-width: 30rem; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.seconds.is-done .seconds-verdict { opacity: 1; transform: none; }
.seconds:not(.is-done) .seconds-verdict { transition-duration: .25s; }
.seconds.rewind .timer-cloud, .seconds.rewind .timer-left { transition: left .6s cubic-bezier(.5,0,.2,1), right .6s cubic-bezier(.5,0,.2,1); }
.seconds-verdict-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 8px; }
.seconds-verdict p:last-child { color: var(--ink-soft); font-weight: 500; font-size: 1.1rem; }
@media (min-width: 900px) {
  .seconds-label { grid-column: 1 / 3; align-self: start; padding-top: .6rem; }
  .seconds-main { grid-column: 3 / 13; display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 0 24px; align-items: end; }
  .seconds-count { grid-column: 1 / 8; grid-row: 1; font-size: clamp(8rem, 14vw, 13rem); }
  .timer { grid-column: 1 / 8; grid-row: 2; }
  .seconds-text { grid-column: 8 / 11; grid-row: 1 / span 2; align-self: center; margin-top: 0; font-size: clamp(1.1rem, .8rem + .6vw, 1.3rem); }
  .seconds-verdict { grid-column: 1 / 8; grid-row: 3; }
}


/* Birds: 16-frame flap (from the reference animation) flying in from the left edge at the height of the "T" of THINK BIG and climbing into the open sky above the logo */
.birds { position: absolute; left: 0; right: 0; z-index: 1; pointer-events: none; }
.bird { position: absolute; left: -8%; top: var(--y0); width: var(--w); opacity: 0; animation: rise var(--t) cubic-bezier(.35,.1,.6,1) var(--d) infinite; }
.bird i { display: block; width: 100%; aspect-ratio: 240 / 188; rotate: -14deg; background: url(assets/bird-flap.png) 0 0 / 1600% 100% no-repeat; animation: flap .6s steps(16) infinite; }
@keyframes rise {
  0%   { left: -8%; top: var(--y0); opacity: 1; transform: scale(1); }
  8%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: var(--x1); top: var(--y1); opacity: 0; transform: scale(.55); }
}
@keyframes flap { to { background-position-x: 106.667%; } }

/* ---------- Manifesto (scroll-lit words) ---------- */
.manifesto { position: relative; padding: clamp(56px, 7vw, 100px) 0; margin-top: clamp(30px, 4vw, 50px); }
/* on the pale blue block, unlit words are a muted blue that still reads against the background */
.js .manifesto .reveal .w { color: #86B9CB; }
.js .manifesto .reveal .w.lit { color: var(--ink); }
.reveal { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 2.8vw, 2.4rem); line-height: 1.25; letter-spacing: -.02em; }
.reveal .w { transition: color .25s ease; }
.js .reveal .w { color: var(--unlit); }
.js .reveal .w.lit { color: var(--ink); }

/* ---------- Section heads ---------- */
.sec-head { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr minmax(0, 340px); gap: 16px 40px; align-items: end; margin-bottom: clamp(48px, 8vh, 88px); }
.giant {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(4rem, 13vw, 11.5rem); line-height: .82; letter-spacing: -.055em;
  color: var(--giant); user-select: none;
}
.sec-intro { padding-bottom: .6em; }
.label { font-family: var(--body); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.sec-intro p { font-weight: 500; }

/* Rocket beside "launches": sits on the pad, then lifts off once when the heading scrolls into view */
.nowrap { white-space: nowrap; }
.rocket { position: relative; z-index: 40; display: inline-block; width: .5em; height: .75em; margin-left: .06em; vertical-align: -.02em; }
.rocket-ship { position: absolute; inset: 0; display: block; }
.rocket-ship { will-change: transform; }
.rocket-ship.arrive { animation: arrive .6s cubic-bezier(.3,1.6,.5,1); }
@keyframes arrive { from { opacity: 0; transform: translateY(14px) scale(.6); } }
.rocket-ship img { display: block; width: 100%; height: 100%; object-fit: contain; }
.smoke { position: absolute; left: 50%; bottom: -.02em; width: 0; height: 0; }
.smoke i { position: absolute; left: -.13em; top: -.22em; width: .26em; height: .26em; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, #D6F1FA); box-shadow: 0 0 0 1px rgba(6,34,44,.28); opacity: 0; transform: scale(.2); }
.launched .rocket-ship { animation: rumble .1s linear 8 alternate, liftoff 1.5s cubic-bezier(.6,0,.8,.3) .85s forwards; }
.launched .launched .smoke i { animation: puff 2.2s ease-out var(--d) forwards; }
@keyframes rumble { from { transform: translate(-1px, 0) rotate(-1.5deg); } to { transform: translate(1px, 0) rotate(1.5deg); } }
@keyframes puff {
  0% { opacity: 0; transform: translate(0, 0) scale(.2); }
  25% { opacity: 1; transform: translate(calc(var(--dx) * .5), -.05em) scale(1.3); }
  100% { opacity: 0; transform: translate(var(--dx), -.25em) scale(2.6); }
}

/* ---------- Work ---------- */
.work { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); }
.project + .project { margin-top: clamp(70px, 9vw, 120px); }
.project { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(28px, 5vw, 72px); align-items: center; }

.project.flip .shot { order: 2; }
.shot { margin: 0; padding: 8px; background: var(--mist); border-radius: var(--radius); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.shot img { border-radius: 14px; width: 100%; aspect-ratio: 1600 / 840; object-fit: cover; object-position: top; }
.project:hover .shot { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(6,34,44,.12); }
.kicker { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.project h3 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1; letter-spacing: -.03em; margin-bottom: 16px; }
.project-copy > p:not(.kicker) { max-width: 40ch; }
.link { display: inline-flex; align-items: center; gap: .35em; margin-top: 20px; min-height: 44px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; }

/* ---------- Navy band ---------- */
.band { position: relative; }
.bank { position: absolute; left: 0; width: 100%; height: clamp(120px, 15vw, 220px); display: block; overflow: hidden; }
.bank-back { filter: drop-shadow(0 10px 16px rgba(4,110,140,.18)); }
.bank-top { bottom: calc(100% - 2px); }
.band-inner { padding: clamp(56px, 8vw, 110px) var(--gutter); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 3fr); gap: 20px 48px; align-items: start; }
.band-label { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); padding-top: .9em; }
.band-statement { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5.2vw, 4.4rem); line-height: 1.02; letter-spacing: -.035em; }
.band-statement span { display: block; color: var(--sky); }

/* ---------- Services ---------- */
.services { position: relative; padding: clamp(56px, 8vw, 110px) 0; margin-top: clamp(60px, 8vw, 110px); }
.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; align-items: stretch; }
.card {
  position: relative; background: var(--cloud); border-radius: var(--radius);
  padding: 30px 26px 28px; box-shadow: 0 1px 0 rgba(6,34,44,.06);
}
.card h3 { font-size: 1.45rem; letter-spacing: -.02em; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 2px solid var(--mist); }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card-main { grid-column: 1 / span 6; grid-row: span 2; padding: 40px 36px 38px; }
.card-main h3 { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; }
.card-main p { font-size: 1.12rem; color: var(--ink); }
.card:nth-child(2) { grid-column: 7 / span 6; }
.card:nth-child(3) { grid-column: 7 / span 3; }
.card:nth-child(4) { grid-column: 10 / span 3; }
.ticks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-weight: 600; font-size: .98rem; }
.ticks li { display: flex; gap: 10px; align-items: baseline; }
.ticks li::before { content: ""; flex: none; width: 14px; height: 9px; border-radius: 9px 9px 4px 4px; background: var(--sky); box-shadow: 0 2px 0 var(--sky-shade); transform: translateY(-1px); }

/* ---------- Process chat ---------- */
.process { position: relative; padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px); }
.chat { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; display: flex; flex-direction: column; gap: 18px; }
.msg { display: flex; gap: 14px; align-items: flex-end; }
.msg p { font-size: 1.06rem; line-height: 1.5; }
.msg.you { align-self: flex-end; flex-direction: row-reverse; max-width: 460px; }
.msg.you p { background: var(--ink); color: #fff; padding: 14px 20px; border-radius: 22px 22px 6px 22px; font-weight: 500; }
.who { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 12px; }
.msg.us { max-width: 620px; }
.msg.us > div { background: var(--mist); padding: 16px 22px 18px; border-radius: 22px 22px 22px 6px; }
.step { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #13789A; margin-bottom: 6px; }
.avatar { flex: none; width: 52px; height: 52px; padding: 11px 8px; border-radius: 16px; background: var(--sky); }

/* ---------- Sunrise / contact: brighter days ahead ---------- */
.sunrise {
  position: relative; z-index: 1; overflow: hidden; color: var(--ink);
  background: linear-gradient(180deg, #FFFFFF 0%, #E6F8FE 22%, #FFF0E2 52%, #FFDDBF 76%, #FFCB9C 100%);
}
.sun {
  position: absolute; z-index: 0; left: 30%; bottom: clamp(-120px, -7vw, -60px);
  width: clamp(260px, 34vw, 520px); aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #FFFBEA 0 30%, #FFE08F 55%, var(--sun) 75%, #FFB25E 100%);
  box-shadow: 0 0 80px 40px rgba(255,205,120,.55), 0 0 220px 120px rgba(255,190,120,.35);
}
.dawn-back { filter: sepia(.35) saturate(1.6) hue-rotate(-12deg) brightness(1.04) drop-shadow(0 10px 16px rgba(190,110,50,.18)); }
.horizon { position: absolute; z-index: 1; left: 0; bottom: 0; width: 100%; height: clamp(120px, 14vw, 210px); display: block; }
.sunrise-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(120px, 14vw, 200px); }
.sunrise h2 { color: var(--ink); font-size: clamp(2.8rem, 5.6vw, 5.2rem); line-height: .9; letter-spacing: -.05em; margin-bottom: 28px; }
.contact-intro p { max-width: 40ch; font-size: 1.1rem; }
.mail { margin-top: 22px; }
.mail a { color: var(--ink); font-weight: 700; text-underline-offset: 4px; overflow-wrap: anywhere; }

.form { display: grid; gap: 18px; align-content: start; background: #fff; border-radius: 26px; padding: clamp(22px, 3vw, 36px); box-shadow: 0 24px 50px rgba(150,90,40,.14); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: 500 1rem/1.4 var(--body); color: var(--ink);
  background: #fff; border: 1.5px solid #C9DDE3; border-radius: 14px; padding: 13px 15px; min-height: 48px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(51,203,234,.3); }
.field input[aria-invalid="true"] { border-color: #D2502D; }
.needs { border: 0; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.needs legend { font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 10px; padding: 0; }
.needs label { position: relative; cursor: pointer; }
.needs input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.needs span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1.5px solid #C9DDE3; font-weight: 600; font-size: .95rem; transition: background-color .2s, color .2s, border-color .2s; }
.needs input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.needs input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }
.form .btn { justify-self: start; min-width: 160px; }
.form-note { min-height: 1.4em; font-size: .95rem; color: var(--ink); font-weight: 600; }


.footer { position: relative; z-index: 2; background: #FFF1E4; padding: 12px 0 36px; }
.foot-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px; }
.foot-logo { width: 170px; filter: drop-shadow(0 3px 0 var(--ink)); }
.footer nav { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer nav a { text-decoration: none; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.footer nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.copy { font-size: .9rem; opacity: .8; }

/* ---------- In-view entrance ---------- */
.js [data-inview] { opacity: 0; translate: 0 26px; transition: opacity .7s ease, translate .7s cubic-bezier(.2,.8,.2,1); }
.js [data-inview].is-in { opacity: 1; translate: 0 0; }

/* ---------- Responsive ---------- */
@media (min-width: 1025px) {
  .wrap { padding-right: max(var(--gutter), calc(110px - max(0px, (100vw - var(--max)) / 2))); }
}

@media (max-width: 1024px) {
  .hero-cloud { display: none; }
  .hero-foot { grid-template-columns: 1fr; }
  .card-main { grid-column: 1 / -1; grid-row: auto; }
  .card:nth-child(2) { grid-column: 1 / -1; margin-top: 0; }
  .card:nth-child(3) { grid-column: 1 / span 6; }
  .card:nth-child(4) { grid-column: 7 / span 6; margin-top: 16px; }
  .altimeter { display: none; }
}

@media (max-width: 860px) {
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--ink); color: #fff;
  }
  .menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .3s, background-color .3s; }
  .menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
  .menu-lines::before { top: -6px; } .menu-lines::after { top: 6px; }
  .menu-btn[aria-expanded="true"] .menu-lines { background: transparent; }
  .menu-btn[aria-expanded="true"] .menu-lines::before { transform: translateY(6px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] .menu-lines::after { transform: translateY(-6px) rotate(-45deg); }
  .nav {
    position: absolute; top: calc(100% + 6px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cloud); border-radius: 24px; padding: 12px; box-shadow: 0 20px 40px rgba(4,90,120,.25);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s, transform .25s, visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a:not(.btn) { padding: 14px 16px; font-size: 1.1rem; background: none; border-radius: 14px; }
  .nav a:not(.btn):hover { background: var(--mist); }
  .nav .btn { margin-top: 8px; }

  .sec-head { grid-template-columns: 1fr; }
  .project, .project.flip { grid-template-columns: 1fr; }
  .project.flip .shot { order: 0; }
  .band-inner { grid-template-columns: 1fr; }
  .band-label { padding-top: 0; }
  .sunrise-inner { grid-template-columns: 1fr; }
  .sun { left: 50%; }
  .card-main { grid-row: auto; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .lane .c { width: min(var(--w), 26vw); }
  .lane-top { height: 72px; }
  .hero { padding-top: 76px; }
  .actions .btn { flex: 1 1 auto; }
  .cards { grid-template-columns: 1fr; gap: 26px; }
  .card:nth-child(n) { grid-column: 1; margin-top: 0; }
  .ticks { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .msg.us { gap: 10px; }
  .avatar { width: 42px; height: 42px; padding: 9px 6px; border-radius: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js .reveal .w { color: var(--ink); }
  .js [data-inview] { opacity: 1; translate: none; }
  .launched .rocket-ship img, .launched .smoke i, .rocket-ship.arrive { animation: none; }
  .birds { display: none; }
  .seconds-verdict { transform: none; }
}

/* ---------- Phone tweaks: bigger centred headline, one-line section titles, roomier band, bigger contact title ---------- */
@media (max-width: 600px) {
  .hero-title { margin-left: auto; margin-right: auto; }
  .bird { width: calc(var(--w) * .75); }
  .bar { align-items: flex-end; }
  .site-header:not(.is-scrolled):not(.menu-open) .bar { padding-left: 0; }
  .hero { padding-bottom: 110px; }   /* clear air between the drifting clouds and the cloud edge below */
  .hero-title { width: 100%; }                         /* logo fills the screen width on phones */
  .hero-sub { font-size: calc((100vw - 44px) / 8.4); margin: 16px 0 0; }
  .giant-one { font-size: calc((100vw - 64px) / 5.1); }
  .giant-one br { display: none; }
  .band-statement span { margin-top: .45em; }
  .work { padding-top: 56px; }
  .sec-head { margin-bottom: 50px; }
  .process { padding-bottom: 26px; }
  .page { padding-bottom: 30px; }
  .sunrise-inner { padding-top: 34px; }
  /* drop the headline so it sits at eye level (~43% down the screen) when the page opens */
  .eyebrow { margin-top: 22px; margin-bottom: max(26px, calc(43vh - 274px)); margin-bottom: max(26px, calc(43svh - 274px)); }
  .sunrise h2 { font-size: calc((100vw - 40px) / 5.2); }
}
