/* =========================================================
   LifeHandle — origami × ocean
   ========================================================= */

:root {
  /* Ocean palette */
  --ink:        #0b2545;
  --ink-2:      #13315c;
  --deep:       #0a1d3a;
  --abyss:      #061226;

  --paper:      #fdf6e9;
  --paper-2:    #f7ecd2;
  --sand:       #fbe9c8;

  --aqua:       #8ecae6;
  --aqua-2:     #c9e7f3;
  --teal:       #219ebc;
  --sun:        #ffb703;
  --coral:      #fb8500;
  --coral-2:    #ff6f61;
  --rose:       #f4978e;
  --moss:       #95d5b2;

  --line:       rgba(11,37,69,.12);
  --line-2:     rgba(11,37,69,.22);
  --shadow:     0 30px 60px -30px rgba(11,37,69,.35), 0 10px 20px -12px rgba(11,37,69,.18);
  --shadow-sm:  0 10px 24px -14px rgba(11,37,69,.35);

  --radius:     18px;
  --radius-lg:  28px;

  --serif:      "Fraunces", Georgia, "Times New Roman", serif;
  --sans:       "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Background ocean ---------- */
.ocean {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, #ffe2b6 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 10%, #ffd7a8 0%, transparent 55%),
    linear-gradient(180deg, #fff3dc 0%, #fde6c4 35%, #f7d9b6 60%, #e8c8a4 100%);
}
.ocean__sky { display:none; }
.ocean__sun {
  position: absolute; top: 6%; right: 10%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd98a, #ffb45f 60%, transparent 70%);
  filter: blur(2px);
  opacity: .9;
}
.ocean__caustics {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(2px 2px at 78% 32%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(2px 2px at 85% 80%, rgba(255,255,255,.4), transparent 60%);
  opacity: .5;
  mix-blend-mode: screen;
}
.ocean__waves {
  position: absolute; left:0; right:0; bottom: -1px;
  width: 100%; height: 26vh; min-height: 200px;
  fill: rgba(11,37,69,.06);
}
.bubbles { position:absolute; inset:0; overflow:hidden; }
.bubbles span {
  position:absolute; bottom:-40px;
  width:10px; height:10px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(142,202,230,.4));
  animation: rise 14s linear infinite;
  opacity: .55;
}
.bubbles span:nth-child(1){ left:8%;  width:8px;  height:8px;  animation-duration:18s; animation-delay: 0s;}
.bubbles span:nth-child(2){ left:22%; width:14px; height:14px; animation-duration:22s; animation-delay: 3s;}
.bubbles span:nth-child(3){ left:36%; width:6px;  height:6px;  animation-duration:16s; animation-delay: 6s;}
.bubbles span:nth-child(4){ left:50%; width:10px; height:10px; animation-duration:20s; animation-delay: 1s;}
.bubbles span:nth-child(5){ left:64%; width:7px;  height:7px;  animation-duration:24s; animation-delay: 8s;}
.bubbles span:nth-child(6){ left:74%; width:12px; height:12px; animation-duration:19s; animation-delay: 4s;}
.bubbles span:nth-child(7){ left:86%; width:9px;  height:9px;  animation-duration:23s; animation-delay: 2s;}
.bubbles span:nth-child(8){ left:94%; width:6px;  height:6px;  animation-duration:17s; animation-delay: 5s;}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .55; }
  100% { transform: translateY(-110vh) translateX(20px) scale(.6); opacity: 0; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(180deg, rgba(253,246,233,.85), rgba(253,246,233,.55));
  border-bottom: 1px solid var(--line);
}
.brand { display:flex; align-items:center; gap:10px; font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing:-.01em;}
.brand__mark { display: inline-flex; }
.nav__links { display:flex; align-items:center; gap: clamp(14px, 2vw, 28px); font-weight: 500; font-size: 15px;}
.nav__links a { opacity: .75; transition: opacity .2s ease; }
.nav__links a:hover { opacity: 1; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -16px rgba(11,37,69,.45); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--quiet { background: transparent; color: var(--ink); padding-left: 6px; padding-right: 6px;}
.btn--quiet:hover { opacity: .7; }

@media (max-width: 720px){
  .nav__links a:not(.btn) { display:none; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid; gap: clamp(28px, 6vw, 80px);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: clamp(40px, 8vw, 110px) clamp(20px, 5vw, 80px) clamp(60px, 10vw, 140px);
  max-width: 1320px; margin: 0 auto;
}
@media (max-width: 980px){ .hero { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); opacity: .7;
}
.eyebrow .dot {
  width:8px; height:8px; border-radius:50%; background: var(--coral);
  box-shadow: 0 0 0 4px rgba(251,133,0,.18);
}
.eyebrow--dark { opacity: .65; }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 14px 0 22px;
}
.hero__title .ink {
  display:block;
  font-style: italic;
  background: linear-gradient(120deg, #0b2545 0%, #13315c 30%, #fb8500 70%, #ff6f61 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55;
  max-width: 56ch; color: rgba(11,37,69,.82);
}
.hero__cta { display:flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__chips { list-style:none; padding:0; margin: 32px 0 0; display:flex; gap: 10px 18px; flex-wrap: wrap; font-size: 14px; opacity: .75; }
.hero__chips li { display:inline-flex; align-items:center; gap:8px;}
.hero__chips li::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--ink); opacity:.6; }

/* hero scene */
.scene {
  position: relative;
  height: clamp(380px, 46vw, 520px);
  --mx: 0px; --my: 0px;
}
.card-stack {
  position: absolute; inset: 0;
  display:flex; align-items:center; justify-content:center;
}
.paper {
  position: relative;
  width: clamp(220px, 26vw, 290px);
  background: var(--paper);
  border-radius: 6px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,37,69,.06);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0,0,0,.02) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.02) 0 1px, transparent 2px);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.paper::before {
  /* tape */
  content:""; position:absolute; top:-10px; left:50%; transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 18px; background: rgba(255,179,7,.5); border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05) inset;
}
.paper__tag {
  font-family: var(--serif); font-weight: 600; font-size: 14px;
  color: var(--coral); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.paper__q {
  font-family: var(--serif); font-size: 19px; line-height: 1.35; color: var(--ink); font-weight: 500;
  margin: 0 0 14px;
}
.paper__row { display:flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px;
  background: rgba(11,37,69,.06); color: var(--ink);
}

.paper--a { transform: translate(calc(-90px + var(--mx)), calc(-30px + var(--my))) rotate(-7deg); z-index:3; }
.paper--b { transform: translate(calc( 10px + var(--mx) * .6), calc( 30px + var(--my) * .6)) rotate(3deg);  z-index:2; }
.paper--c { transform: translate(calc(110px + var(--mx) * .3), calc(-10px + var(--my) * .3)) rotate(8deg);  z-index:1; opacity:.95;}

.fish {
  position:absolute; right: -20px; bottom: -30px; width: 200px; height: auto;
  filter: drop-shadow(0 16px 24px rgba(11,37,69,.25));
  animation: swim 7s ease-in-out infinite alternate;
}
@keyframes swim {
  from { transform: translateY(-6px) rotate(-2deg); }
  to   { transform: translateY(10px) rotate(3deg); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 80px);
  max-width: 1320px; margin: 0 auto;
  opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease;
}
.section.in { opacity: 1; transform: none; }
.section--alt {
  max-width: none;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section--alt > * { max-width: 1320px; margin-left:auto; margin-right:auto; }
.section__head { max-width: 760px; margin: 0 auto clamp(36px, 6vw, 70px); text-align: center; }
.section__head h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.08; margin: 14px 0 10px;
}
.section__lede { font-size: 17px; line-height: 1.55; color: rgba(11,37,69,.78); }

/* ---------- Concept ---------- */
.concept { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
@media (max-width: 900px){ .concept { grid-template-columns: 1fr; } }
.concept__viz {
  margin: 0;
  background: linear-gradient(180deg, #cfe6f3 0%, #4f86a8 35%, #1b3a5d 70%, #061226 100%);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 460px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.concept__viz::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(1px 1px at 20% 12%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 70% 8%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,.3), transparent);
}
.depths { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.depth { display:flex; flex-wrap:wrap; gap: 8px; }
.depth span {
  font-size: 13px; font-weight: 500; padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.85); color: var(--ink); box-shadow: var(--shadow-sm);
}
.depth--surface span { animation: bob 5s ease-in-out infinite; }
.depth--mid span     { background: rgba(255,255,255,.55); color: #0b2545; }
.depth--deep span    { background: rgba(255,255,255,.18); color: rgba(255,255,255,.8); backdrop-filter: blur(2px); }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50% { transform: translateY(-4px); } }

.concept__text p { font-size: 17px; line-height: 1.7; color: rgba(11,37,69,.85); }
.concept__pull { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-top: 12px; }

/* ---------- Handles grid ---------- */
.handles { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px){ .handles { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 620px){ .handles { grid-template-columns: 1fr;} }
.handle {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  opacity: 0; transform: translateY(14px);
}
.handle.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease;}
.handle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.handle::before {
  content:""; position:absolute; top:-9px; left: 24px;
  width: 56px; height: 14px; background: rgba(33,158,188,.45); border-radius: 2px; transform: rotate(-2deg);
}
.handle header { display:flex; align-items:center; gap: 10px; margin-bottom: 10px; }
.handle h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 0; letter-spacing:-.01em;}
.handle__icon { font-size: 22px; }
.handle p { color: rgba(11,37,69,.78); margin: 4px 0 12px; font-size: 15px; line-height: 1.5;}
.handle ul { margin: 0; padding-left: 18px; color: rgba(11,37,69,.7); font-size: 14px;}
.handle ul li { margin: 4px 0; }
.handle--rel    { background: linear-gradient(180deg,#fff3dc, var(--paper)); }
.handle--health { background: linear-gradient(180deg,#e7f6ec, var(--paper)); }
.handle--money  { background: linear-gradient(180deg,#fff0d6, var(--paper)); }
.handle--work   { background: linear-gradient(180deg,#e7f0fb, var(--paper)); }
.handle--things { background: linear-gradient(180deg,#fbe6dd, var(--paper)); }
.handle--dreams { background: linear-gradient(180deg,#ece4f7, var(--paper)); }

/* ---------- Reflect ---------- */
.reflect {
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center;
}
@media (max-width: 900px){ .reflect { grid-template-columns: 1fr; } }
.reflect__copy h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.2vw, 50px); letter-spacing: -.02em; line-height: 1.08; margin: 12px 0 14px;}
.reflect__copy p { font-size: 17px; line-height: 1.6; color: rgba(11,37,69,.8); }
.checks { list-style: none; padding: 0; margin: 18px 0 26px; }
.checks li { padding: 8px 0 8px 30px; position: relative; font-size: 15.5px; }
.checks li::before {
  content:""; position:absolute; left:0; top:12px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(251,133,0,.15);
}
.checks li::after {
  content:""; position:absolute; left:5px; top:16px; width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}

/* phone */
.phone {
  justify-self: center;
  width: min(360px, 92vw);
  aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #0b2545, #13315c);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px -30px rgba(11,37,69,.55), 0 0 0 6px rgba(11,37,69,.7);
  position: relative;
}
.phone__notch {
  position:absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; border-radius: 14px; background: #061226;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 32px;
  background: linear-gradient(180deg, #cfe6f3, #8ec4dd 60%, #4f86a8);
  padding: 36px 18px 18px; overflow: hidden; position: relative;
}
.story {
  position: relative; height: 100%;
  background: var(--paper); border-radius: 22px; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
}
.story__bars { display:flex; gap: 4px; margin-bottom: 4px; }
.story__bars span { flex:1; height: 3px; border-radius: 2px; background: rgba(11,37,69,.18); }
.story__bars span.on { background: rgba(11,37,69,.6); }
.story__bars span.active { background: var(--coral); animation: fillbar 4s linear infinite; }
@keyframes fillbar { from { transform: scaleX(.05); transform-origin: left;} to { transform: scaleX(1); transform-origin: left;} }
.story__handle { font-family: var(--serif); font-style: italic; color: var(--coral); margin: 0; font-size: 14px; letter-spacing:.12em; }
.story__q { font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 1.25; margin: 0; }
.story__history { font-size: 13px; color: rgba(11,37,69,.7); display: grid; gap: 6px; margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line-2); }
.story__history b { color: var(--ink); font-weight: 600; }
.story__actions { display:flex; flex-wrap: wrap; gap: 6px; }
.story__actions span {
  font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px;
  background: rgba(11,37,69,.07);
}
.story__next { font-size: 12px; text-align: center; color: rgba(11,37,69,.55); }

/* ---------- Rooms (5 sections) ---------- */
.rooms { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 980px){ .rooms { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 540px){ .rooms { grid-template-columns: 1fr;} }
.room {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease;
}
.room.in { opacity: 1; transform: none; }
.room__num { font-family: var(--serif); font-style: italic; color: var(--coral); font-weight: 600;}
.room h4 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 6px 0 6px; }
.room p { font-size: 14.5px; line-height: 1.5; color: rgba(11,37,69,.78); margin: 0; }

/* ---------- Co-op ---------- */
.coop { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
@media (max-width: 900px){ .coop { grid-template-columns: 1fr; } }
.coop__copy h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.02em; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; margin: 12px 0 14px;}
.coop__copy p { font-size: 17px; color: rgba(11,37,69,.8); line-height: 1.6;}
.coop__art { position: relative; height: 360px; }
.paper--small {
  position: absolute;
  width: 200px; padding: 18px 16px; border-radius: 6px;
  background: var(--paper); box-shadow: var(--shadow);
  font-family: var(--serif); font-size: 18px;
}
.paper--small::before {
  content:""; position:absolute; top:-9px; left: 30px; width: 50px; height: 14px;
  background: rgba(251,133,0,.45); border-radius: 2px; transform: rotate(-3deg);
}
.paper--p1 { top: 30px;  left: 6%;   transform: rotate(-6deg); background: linear-gradient(180deg,#fff3dc,#fdf6e9); }
.paper--p2 { top: 130px; left: 38%;  transform: rotate(3deg);  background: linear-gradient(180deg,#e7f0fb,#fdf6e9);}
.paper--p3 { top: 60px;  right: 4%;  transform: rotate(7deg);  background: linear-gradient(180deg,#e7f6ec,#fdf6e9);}
.coop__link { position:absolute; left: 10%; right: 10%; bottom: 30px; width: 80%; opacity:.4;}

/* ---------- Privacy (dark) ---------- */
.section--dark {
  max-width: none;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(33,158,188,.25), transparent 60%),
    linear-gradient(180deg, #0a1d3a, #061226);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section--dark > * { max-width: 1320px; margin-left:auto; margin-right:auto; }
.section--dark .section__head h2 { color: var(--paper); }
.section--dark .eyebrow { color: var(--aqua); opacity: 1; }
.section--dark .eyebrow .dot { background: var(--aqua); box-shadow: 0 0 0 4px rgba(142,202,230,.18);}

.privacy { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px){ .privacy { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .privacy { grid-template-columns: 1fr;} }
.privacy__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease;
}
.privacy__card.in { opacity: 1; transform: none; }
.privacy__card h4 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0 0 8px; color: #fff;}
.privacy__card p { color: rgba(253,246,233,.78); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- CTA ---------- */
.cta {
  text-align: center; max-width: 720px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px) clamp(22px, 5vw, 56px);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta::before {
  content:""; position:absolute; top:-30px; left:50%; transform: translateX(-50%) rotate(-2deg);
  width: 220px; height: 28px; background: rgba(251,133,0,.4); border-radius: 4px;
}
.cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing:-.02em; margin: 6px 0 10px;}
.cta p { color: rgba(11,37,69,.8); margin: 0 0 22px; font-size: 17px;}
.cta__form { display:flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta__form input {
  flex: 1 1 280px; max-width: 360px;
  padding: 13px 18px; border-radius: 999px; font: inherit;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); outline: none;
}
.cta__form input:focus { border-color: var(--ink); }
.cta__msg { min-height: 22px; margin-top: 14px; color: var(--coral); font-weight: 600; }
.cta__fine { color: rgba(11,37,69,.55); font-size: 13px; margin-top: 4px;}

/* ---------- Footer ---------- */
.footer { padding: 40px clamp(20px, 5vw, 80px) 60px; border-top: 1px solid var(--line); background: rgba(255,255,255,.4);}
.footer__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; gap: 24px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap;
}
.footer__brand p { color: rgba(11,37,69,.6); margin: 6px 0 0; font-size: 14px; }
.footer__links { display:flex; gap: 18px; font-size: 14px; opacity:.75; }
.footer__legal { font-size: 13px; opacity:.6; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important;}
  .bubbles, .fish { display: none; }
}

/* ---------- Selection ---------- */
::selection { background: rgba(251,133,0,.3); color: var(--ink); }
