/* ==========================================================================
   sarasantanen.com — positioning & messaging for early stage startups
   ========================================================================== */

/* ---------- fonts (self-hosted) ---------- */

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/figtree-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/figtree-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/figtree-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/figtree-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./assets/fonts/source-serif-4-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./assets/fonts/source-serif-4-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./assets/fonts/source-serif-4-400italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  --bg: #f1f8fb;
  --ink: #303b21;
  --ink-soft: #4b553e;
  --black: #000;
  --blue: #1664ff;
  --cream: #ffd89e;
  --cream-deep: #ffe1b3;
  --red: #fe6b66;
  --paper: #fff;
  --muted-gray: #595c5e;
  --muted-link: #79847a;

  --sans: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --display: "Inter", "Arial Black", sans-serif;

  --content: 1216px;
  --band-inset: clamp(12px, 5.55vw, 80px);
  --radius: 16px;
  --shadow: 0 14px 34px rgba(48, 59, 33, 0.07), 0 3px 8px rgba(48, 59, 33, 0.04);
  --shadow-hover: 0 24px 48px rgba(48, 59, 33, 0.13), 0 6px 14px rgba(48, 59, 33, 0.06);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.content {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(18px, 2.5vw, 32px);
}

.blue {
  color: var(--blue);
  font-weight: inherit;
}

::selection {
  background: rgba(22, 100, 255, 0.18);
}

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- shared type ---------- */

.heavy-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4.45vw, 4rem);
  line-height: 1.22;
  letter-spacing: -0.033em;
  text-align: center;
  color: var(--ink);
}

.heavy-title--white {
  color: #fff;
  text-align: left;
}

.serif-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  line-height: 1.4;
  text-align: center;
  color: var(--ink);
}

.serif-title strong.blue {
  font-weight: 600;
}

.eyebrow {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ---------- buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 27px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.04rem;
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 3.5px;
  box-shadow: 0 5px 0 #202a12;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-spring), background 0.2s ease;
  will-change: transform;
}

.btn:hover {
  background: #3a4729;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #202a12;
}

.btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #202a12;
  transition-duration: 0.08s;
}

.link-plain {
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-underline-offset 0.25s var(--ease-out);
}

.link-plain:hover {
  color: var(--blue);
  text-underline-offset: 6px;
}

.link-plain em {
  font-family: var(--serif);
  font-weight: 600;
}

/* ---------- topbar ---------- */

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.topbar-wrap.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(48, 59, 33, 0.07), 0 12px 32px rgba(48, 59, 33, 0.05);
}

.topbar {
  display: flex;
  align-items: center;
  min-height: 110px;
  gap: clamp(20px, 4vw, 56px);
  transition: min-height 0.4s var(--ease-out);
}

.topbar-wrap.scrolled .topbar {
  min-height: 78px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  letter-spacing: 0.005em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
}

.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

/* ---------- doodles ---------- */

.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* gentle idle float */
@keyframes bob-a {
  0%, 100% { rotate: 0deg; translate: 0 0; }
  50% { rotate: 1.6deg; translate: 0 -7px; }
}
@keyframes bob-b {
  0%, 100% { rotate: 0deg; translate: 0 0; }
  50% { rotate: -1.8deg; translate: 0 6px; }
}
@keyframes bob-c {
  0%, 100% { translate: 0 0; }
  50% { translate: 4px -5px; }
}

.float-a > *, .float-a { animation: bob-a 7s ease-in-out infinite; }
.float-b > *, .float-b { animation: bob-b 8.5s ease-in-out infinite; }
.float-c > *, .float-c { animation: bob-c 6s ease-in-out infinite; }

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(8deg); }
}

.twinkle { animation: twinkle 3.6s ease-in-out infinite; }
.twinkle--late { animation-delay: 1.8s; }

/* pop-in for doodles */
[data-pop] {
  opacity: 0;
  scale: 0.5;
  transition: opacity 0.7s var(--ease-out), scale 0.9s var(--ease-spring);
}

[data-pop].in-view {
  opacity: 1;
  scale: 1;
}

/* wipe-in for arrows */
[data-wipe] {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.9s var(--ease-out) 0.25s, opacity 0.4s ease 0.25s;
}

[data-wipe].in-view {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ---------- reveal-on-scroll ---------- */

[data-reveal] {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.75s var(--ease-out) var(--d, 0s), translate 0.85s var(--ease-out) var(--d, 0s);
}

[data-reveal].in-view {
  opacity: 1;
  translate: 0 0;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: 44px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.94rem);
  line-height: 1.23;
  letter-spacing: -0.033em;
  color: var(--black);
  margin-top: 104px;
}

.line-mask {
  display: block;
  overflow: hidden;
  padding: 0.05em 0 0.34em;
  margin-bottom: -0.34em;
}

.line {
  display: block;
  translate: 0 125%;
  animation: line-up 0.9s var(--ease-out) forwards;
}

.line-mask:nth-child(2) .line {
  animation-delay: 0.12s;
}

@keyframes line-up {
  to { translate: 0 0; }
}

.hl-squiggle {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.squiggle {
  position: absolute;
  left: 2%;
  bottom: -0.22em;
  width: 96%;
  height: 0.16em;
  overflow: visible;
  clip-path: inset(-40% 100% -40% 0);
  transition: clip-path 1.1s var(--ease-out) 0.7s;
}

.in-view .squiggle,
.hero-title .squiggle {
  clip-path: inset(-40% 0 -40% 0);
}

.hero-title .squiggle {
  transition-delay: 1s;
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.4;
  max-width: 868px;
  margin: 48px auto 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 41px;
}

.join-stack {
  position: relative;
  display: inline-flex;
}

.link-muted {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--muted-link);
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 5px;
  transition: color 0.2s ease;
}

.link-muted:hover {
  color: var(--ink);
}

.coming-note {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  margin-top: 16px;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

/* hero doodles */
.doodle--glasses {
  top: -33px;
  left: 59.1vw;
  width: clamp(190px, 33.1vw, 477px);
}

.doodle--pencil {
  top: 392px;
  left: max(-10px, 6vw);
  width: clamp(160px, 20.5vw, 296px);
  z-index: 2;
}

.doodle--scribble {
  top: 561px;
  left: 27.8vw;
  width: clamp(100px, 14.4vw, 208px);
  z-index: 2;
}

.doodle--hero-arrow {
  top: 360px;
  right: 9.1vw;
  width: clamp(200px, 26.5vw, 382px);
}

/* hero quote cards */
.quote-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 180px;
  text-align: left;
}

.quote-card,
.wall-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  transition: translate 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out), rotate 0.35s var(--ease-spring);
}

.wall-card {
  padding: 21px 22px 36px;
  gap: 32px;
}

.quote-card:hover,
.wall-card:hover {
  translate: 0 -6px;
  rotate: -0.4deg;
  box-shadow: var(--shadow-hover);
}

.quote-card p,
.wall-card p {
  font-size: 1rem;
  line-height: 1.375;
  color: var(--ink);
}

.quote-card footer,
.wall-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-card footer strong,
.wall-card footer strong {
  display: block;
  font-weight: 700;
  font-size: 0.99rem;
  line-height: 1.35;
}

.quote-card footer span,
.wall-card footer span {
  display: block;
  font-size: 0.97rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
}

/* avatar blink on card hover */
.quote-card:hover .avatar-eye,
.wall-card:hover .avatar-eye {
  animation: blink 0.45s ease 1;
  transform-origin: center;
}

@keyframes blink {
  0%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(0.08); }
}

/* ---------- problem ---------- */

.problem {
  position: relative;
  padding-top: 189px;
}

.doodle--spiral {
  top: 112px;
  left: 12.8vw;
  width: clamp(150px, 22.3vw, 321px);
}

.doodle--laptop {
  top: 165px;
  right: max(-30px, 9.2vw);
  width: clamp(220px, 29.4vw, 423px);
}

.problem .serif-title {
  position: relative;
  z-index: 1;
}

.problem-cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 15vw, 217px);
  max-width: 835px;
  margin: 126px auto 0;
}

.bubble {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 26px;
  padding: 24px 22px;
  min-height: 213px;
  display: grid;
  align-content: center;
}

.bubble-face {
  position: absolute;
  top: -50px;
  left: 50%;
  translate: -50% 0;
  width: 90px;
  height: 90px;
  transition: rotate 0.4s var(--ease-spring);
}

.problem-col:hover .bubble-face {
  rotate: -7deg;
}

.bubble-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.4;
}

.bubble-title strong.blue {
  font-weight: 600;
}

.x-list {
  list-style: none;
  padding: 0;
  margin-top: 35px;
  margin-left: -8px;
  display: grid;
  gap: 30px;
}

.x-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 258px);
  gap: 25px;
  align-items: start;
  font-size: 1.5rem;
  line-height: 1.25;
}

.x {
  width: 28px;
  height: 28px;
  margin-top: 3px;
}

/* ---------- good news ---------- */

.goodnews {
  position: relative;
  padding-top: 90px;
}

.doodle--seagull {
  top: 245px;
  right: 9.3vw;
  width: clamp(90px, 9.2vw, 132px);
}

.doodle--parasol {
  top: 345px;
  left: var(--band-inset);
  width: clamp(220px, 22vw, 317px);
  z-index: 1;
}

.serif-sub {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.25vw, 2rem);
  line-height: 1.4;
  text-align: center;
  margin-top: 47px;
}

.serif-sub strong.blue {
  font-weight: 600;
}

.beach-band {
  position: relative;
  margin: 12px var(--band-inset) 0;
  padding: 90px 0 90px;
  background: linear-gradient(180deg, rgba(241, 248, 251, 0) 0%, #f6f0e1 38%, #fee3ba 88%, #ffdfae 100%);
  overflow: hidden;
}

.doodle--towel {
  top: 405px;
  left: 28%;
  width: clamp(400px, 36.8vw, 530px);
}

.beach-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.8vw, 40px);
  padding-inline: 0;
}

.beach-col {
  display: flex;
  flex-direction: column;
}

.beach-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.4;
  text-align: center;
  min-height: 4.2em;
  display: grid;
  align-content: end;
  margin-bottom: 15px;
}

.beach-title strong.blue {
  font-weight: 600;
}

.beach-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 25px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(122, 91, 34, 0.06);
  transition: translate 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
}

.beach-card:hover {
  translate: 0 -6px;
  box-shadow: 0 26px 48px rgba(122, 91, 34, 0.14);
}

.beach-card p {
  font-size: 1.25rem;
  line-height: 1.35;
}

.beach-card footer strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
}

.beach-card footer span {
  display: block;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* ---------- how we do it ---------- */

.how {
  position: relative;
  padding-top: 159px;
}

.steps {
  max-width: var(--content);
  margin-top: 40px;
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 51.4%) minmax(0, 48.6%);
  align-items: start;
}

.step:nth-child(2) {
  margin-top: 42px;
}

.step:nth-child(3) {
  margin-top: -5px;
}

.step-rail {
  position: relative;
  padding-top: 85px;
  padding-left: 240px;
}

.step-num {
  display: block;
  width: auto;
}

.num-1 { height: 205px; margin-top: 55px; }
.num-2 { height: 204px; margin-top: 99px; margin-left: -19px; }
.num-3 { height: 221px; margin-top: 89px; }

[data-pop].step-num {
  transition: opacity 0.6s var(--ease-out), scale 0.8s var(--ease-spring);
}

.step-arrow {
  position: absolute;
  pointer-events: none;
}

.arrow-12 {
  width: 134px;
  top: -221px;
  left: 68px;
}

.arrow-23 {
  width: 163px;
  top: -167px;
  left: 387px;
}

.step-body {
  max-width: 590px;
  padding: 85px 0 120px;
}

.step:last-child .step-body {
  padding-bottom: 0;
}

.step-body .eyebrow {
  margin-bottom: 24px;
}

.step-body h3 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 410px;
}

.step-body h3 strong.blue {
  font-weight: 600;
}

.step-copy {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 10px;
  max-width: 408px;
}

/* ---------- about (blue band) ---------- */

.about {
  padding-top: 203px;
}

.about-band {
  position: relative;
  margin-inline: var(--band-inset);
  background: var(--blue);
  color: #fff;
  padding: 84px clamp(24px, 4.6vw, 66px) 84px clamp(28px, 6.25vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 44.9%);
  gap: clamp(24px, 4.2vw, 60px);
  align-items: center;
  overflow: hidden;
}

.about-name {
  font-weight: 600;
  font-size: clamp(1.4rem, 2.25vw, 2rem);
  margin-top: 16px;
  margin-bottom: 6px;
}

.about-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.4;
  margin-top: 12px;
  max-width: 500px;
}

.about .heavy-title {
  font-size: clamp(2.3rem, 4.45vw, 4rem);
}

.about-photo {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(9, 34, 105, 0.35);
  transform-style: preserve-3d;
  will-change: transform;
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.doodle--star-a {
  left: 41.3%;
  top: 62px;
  width: clamp(70px, 10vw, 145px);
}

.doodle--star-b {
  right: 16px;
  top: 25px;
  width: clamp(80px, 9.8vw, 141px);
  z-index: 2;
}

.doodle--wink {
  left: 56.8%;
  top: 167px;
  width: clamp(60px, 7.4vw, 106px);
  z-index: 2;
}

.doodle--about-arrow {
  left: 22.2%;
  top: 529px;
  width: clamp(160px, 21.5vw, 309px);
}

.doodle--bubbles {
  right: -30px;
  bottom: -45px;
  width: clamp(160px, 20vw, 290px);
}

/* ---------- testimonial wall ---------- */

.wall {
  position: relative;
  padding-top: 131px;
}

.wall-title {
  position: relative;
  z-index: 2;
}

.wall-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: -200px;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.4) 150px, #000 310px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.4) 150px, #000 310px);
}

.wall-col {
  display: grid;
  gap: 4px;
  align-content: start;
  will-change: transform;
}

.wall-col:nth-child(1) { margin-top: 12px; }
.wall-col:nth-child(2) { margin-top: -10px; }
.wall-col:nth-child(3) { margin-top: 34px; }
.wall-col:nth-child(4) { margin-top: 45px; }

.wall-card--peek {
  pointer-events: none;
}

/* ---------- cta ---------- */

.cta {
  position: relative;
  padding-top: 55px;
  padding-bottom: 78px;
}

.cta .heavy-title .hl-squiggle {
  color: var(--blue);
}

.cta-cols {
  display: grid;
  grid-template-columns: 281px 300px;
  justify-content: center;
  gap: clamp(60px, 10.3vw, 148px);
  margin: 33px auto 0;
  text-align: center;
  align-items: start;
}

.cta-col-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.4;
}

.cta-col p {
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 13px auto 0;
}

.cta-col--box {
  border: 1.5px solid #aab3ac;
  border-radius: 28px;
  padding: 4px 14px 14px;
  transition: border-color 0.25s ease, box-shadow 0.35s var(--ease-out), translate 0.35s var(--ease-spring);
}

.cta-col--box:hover {
  border-color: var(--ink);
  translate: 0 -4px;
  box-shadow: 0 18px 40px rgba(48, 59, 33, 0.08);
}

.cta-col--muted .cta-col-title,
.cta-col--muted p {
  color: var(--muted-gray);
}

.link-split {
  display: inline-block;
  margin-top: 32px;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--ink);
  text-decoration: none;
}

.link-split .u {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 5px;
  transition: text-underline-offset 0.25s var(--ease-out);
}

.link-split:hover .u {
  text-underline-offset: 7px;
}

.cta-col--muted .link-split {
  color: var(--muted-gray);
  font-weight: 500;
}

.soon-note {
  font-style: italic;
  font-weight: 500;
  font-size: 0.8em;
  color: var(--muted-gray);
  white-space: nowrap;
}

.cta-col--muted .link-split {
  margin-top: 28px;
}

.doodle--cta-arrow-left {
  left: var(--band-inset);
  top: 437px;
  width: clamp(180px, 18.4vw, 265px);
}

.doodle--cta-arrow-right {
  right: var(--band-inset);
  top: 413px;
  width: clamp(140px, 13.8vw, 199px);
}

/* ---------- footer ---------- */

.footer {
  padding: 0 0 var(--band-inset);
}

.footer-band {
  position: relative;
  margin-inline: var(--band-inset);
  background: var(--cream-deep);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 84px 24px 60px;
}

.doodle--footer-seagull {
  top: -56px;
  left: 52px;
  width: clamp(70px, 6.3vw, 90px);
  rotate: -24deg;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 48px);
}

.footer-nav a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1.6px;
  background: var(--ink);
  transition: right 0.3s var(--ease-out);
}

.footer-nav a:hover::after {
  right: 0;
}

.footer-strong {
  font-weight: 700 !important;
}

.footer-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  color: var(--ink);
  text-decoration: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* ---------- legal page ---------- */

.legal {
  padding: clamp(40px, 7vw, 96px) 0 clamp(60px, 8vw, 110px);
}

.legal-inner {
  max-width: 760px;
}

.legal-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
}

.legal-updated {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.legal-note {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1.5px solid var(--cream);
  border-radius: 14px;
  background: color-mix(in srgb, var(--cream) 26%, transparent);
  font-size: 1rem;
  line-height: 1.55;
}

.legal-section {
  margin-top: 52px;
  scroll-margin-top: 110px;
}

.legal-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(48, 59, 33, 0.12);
}

.legal-h3 {
  font-weight: 700;
  font-size: 1.12rem;
  margin-top: 30px;
  margin-bottom: 6px;
}

.legal p,
.legal-list {
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--ink);
}

.legal p {
  margin-top: 10px;
}

.legal-list {
  margin-top: 10px;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.legal .ph {
  background: color-mix(in srgb, var(--cream) 55%, transparent);
  border-radius: 4px;
  padding: 0 4px;
  color: var(--muted, #6b5a2e);
  font-style: italic;
}

.legal-back {
  margin-top: 56px;
  font-weight: 600;
}

.legal-back a {
  color: var(--ink);
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .float-a,
  .float-b,
  .float-c,
  .twinkle,
  .twinkle--late {
    animation: none;
  }

  [data-reveal],
  [data-pop],
  [data-wipe] {
    opacity: 1;
    translate: none;
    scale: none;
    clip-path: none;
    transition: none;
  }

  .line {
    translate: none;
    animation: none;
  }

  .squiggle {
    clip-path: none;
    transition: none;
  }

  .quote-card,
  .wall-card,
  .beach-card,
  .btn {
    transition: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 1180px) {
  .doodle--glasses { left: 62%; width: 30vw; }
  .doodle--pencil { top: 72%; }
  .doodle--scribble { display: none; }

  .quote-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  .step {
    grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  }

  .arrow-12,
  .arrow-23 {
    display: none;
  }

  .num-3 { margin-top: 0; }

  .step-rail { padding-top: 96px; }
  .step-body { padding: 84px 0; }

  .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }

  .wall-col:nth-child(1) { margin-top: -90px; }
  .wall-col:nth-child(2) { margin-top: -170px; }
  .wall-col:nth-child(3),
  .wall-col:nth-child(4) { margin-top: 0; }

  .about-band {
    grid-template-columns: 1fr;
  }

  .doodle--wink,
  .doodle--star-a { display: none; }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    padding-block: 14px;
    min-height: 0;
    row-gap: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-title {
    margin-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .doodle--glasses { top: 4px; left: 62%; width: 32vw; }
  .doodle--pencil,
  .doodle--hero-arrow,
  .doodle--laptop,
  .doodle--spiral,
  .doodle--cta-arrow-right { display: none; }

  .quote-row,
  .problem-cols,
  .beach-cols,
  .cta-cols {
    grid-template-columns: 1fr;
  }

  .problem { padding-top: 110px; }
  .problem-cols { margin-top: 80px; gap: 96px; }

  .beach-band {
    margin-top: -60px;
    padding-top: 130px;
  }

  .beach-title { min-height: 0; }
  .beach-card { height: auto; min-height: 0; }
  .beach-cols { padding-inline: 18px; }

  .step {
    grid-template-columns: 1fr;
  }

  .step-rail {
    justify-content: start;
    padding: 40px 0 0;
  }

  .num-1, .num-2, .num-3 { height: 120px; }

  .step-body { padding: 24px 0 40px; }

  .wall-grid {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .wall-col { margin-top: 0 !important; }

  .wall-card--peek { display: none; }

  .about { padding-top: 90px; }

  .cta { padding-top: 110px; padding-bottom: 80px; }
  .doodle--cta-arrow-left { display: none; }

  .footer-band { min-height: 240px; }
}
