/* =========================================================
   Deci Elevates — one-page site
   Brand: purple #5B21B6 · green #0E5138 · "tropical vines"
   ========================================================= */

:root {
  --purple: #521585;
  --purple-deep: #3A0E60;
  --lilac: #D9C9F7;
  --green: #016038;
  --green-deep: #013E24;
  --jungle: #061F15;
  --mint: #BFE6CC;
  --lime: #D6F36B;
  --aubergine: #2A0B4C;
  --aubergine-soft: #8F78B3;
  --night: #1A0631;
  --paper: #F4EFE6;
  --paper-2: #EAE2D3;
  --ink: #12160F;
  --ink-soft: #4A5048;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(16px, 4.5vw, 72px);
  --max: 1360px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.05vw + 10px, 19px);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* paper grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--purple); color: var(--paper); }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; border-radius: 4px; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px;
}
.skip:focus { top: 16px; }

em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: currentColor; opacity: .5;
}
.hero__eyebrow::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.5rem, 6.2vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0;
  text-wrap: balance;
}
.display em { color: var(--purple); }

.section-head { max-width: 980px; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-head__sub { max-width: 560px; margin: 1.6rem 0 0; color: var(--ink-soft); font-size: 1.08em; }
.section-head--light .display em { color: var(--lilac); }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--ink);
  position: relative;
  display: inline-flex; align-items: center; gap: .6em;
  padding: 1.05em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  color: var(--fg);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), transform .5s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--green);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn .arrow { display: inline-block; transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(5px) rotate(-12deg); }
.btn--primary { --bg: var(--purple); --fg: var(--paper); }
.btn--primary:hover { color: var(--paper); }
.btn--line { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--line:hover { color: var(--paper); }
.btn--small { padding: .72em 1.2em; font-size: .88rem; }

/* ---------- custom cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor {
    display: block;
    position: fixed; left: 0; top: 0; z-index: 150;
    width: 14px; height: 14px; margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: var(--purple);
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background .3s, opacity .3s;
    opacity: 0;
  }
  .cursor.is-on { opacity: 1; }
  .cursor.is-big { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: var(--lime); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 14px var(--gutter);
  transition: background .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(18, 22, 15, .08);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-size: 1.05rem; letter-spacing: -.01em; color: var(--purple); }
.nav__brand b { font-weight: 400; color: var(--green); }
.nav__brand img { width: 38px; height: auto; transition: transform .8s var(--ease); }
.nav__brand:hover img { transform: rotate(-20deg) scale(1.08); }
.nav__links { display: flex; gap: clamp(1rem, 2.4vw, 2.4rem); list-style: none; margin: 0; padding: 0; }
.nav__links a { text-decoration: none; font-size: .92rem; font-weight: 500; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--purple); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__brand span { display: none; }
}

/* ---------- vines ---------- */
.vine { position: absolute; pointer-events: none; overflow: visible; z-index: 0; }
.vine path.stem {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.vine .tendril { fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; }
.vine .leaf-body { fill: var(--green); }
.vine .leaf-body.alt { fill: var(--purple); }
.vine .leaf-rib { fill: none; stroke: var(--paper); stroke-width: 1.1; opacity: .55; }
.vine[data-light] path.stem, .vine[data-light] .tendril { stroke: var(--mint); }
.vine[data-light] .leaf-body { fill: var(--mint); }
.vine[data-light] .leaf-body.alt { fill: var(--lilac); }
.vine[data-light] .leaf-rib { stroke: var(--purple); }

.js .vine path.stem { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.6s cubic-bezier(.45, .05, .25, 1); }
.js .vine.is-drawn path.stem { stroke-dashoffset: 0; }
.vine .leaf, .vine .tendril-g {
  transform-box: view-box; transform-origin: 0 0;
}
.js .vine .leaf, .js .vine .tendril-g { transform: scale(0); transition: transform 1.1s cubic-bezier(.34, 1.56, .64, 1); }
.js .vine.is-drawn .leaf, .js .vine.is-drawn .tendril-g { transform: scale(var(--s, 1)); }
.vine .sway { transform-box: view-box; transform-origin: 0 0; animation: sway 6s ease-in-out infinite alternate; }
@keyframes sway { from { transform: rotate(-7deg); } to { transform: rotate(7deg); } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 120px var(--gutter) 90px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { color: var(--green); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 0 rgba(91, 33, 182, .5); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(91, 33, 182, 0); } 100% { box-shadow: 0 0 0 0 rgba(91, 33, 182, 0); } }

.hero__title {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(3.6rem, 11vw, 11.5rem);
  line-height: .86;
  letter-spacing: -.045em;
  margin: 0 0 clamp(2rem, 4vw, 3.4rem);
  color: var(--green);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .09em; margin-bottom: -.09em; }
.hero__title .line > span { display: inline-block; }
.hero__title .line:nth-child(2) { padding-left: clamp(1rem, 7vw, 7rem); }
.js .hero__title .line > span { transform: translateY(105%) rotate(4deg); transform-origin: left bottom; transition: transform 1.3s var(--ease); }
.js .is-loaded .hero__title .line > span { transform: none; }
.hero__title .line:nth-child(2) > span { transition-delay: .12s; }
.hero__title .line:nth-child(3) > span { transition-delay: .24s; }

.grow {
  position: relative;
  color: var(--purple);
  font-weight: 420;
  padding-right: .06em;
}
.grow svg {
  position: absolute; left: -2%; right: -2%; bottom: -.02em;
  width: 104%; height: .26em; overflow: visible;
}
.grow svg path { fill: none; stroke: var(--purple); stroke-width: 5; stroke-linecap: round; }
.js .grow svg path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.4s .9s var(--ease); }
.js .is-loaded .grow svg path { stroke-dashoffset: 0; }

.hero__bottom { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1.6rem 3rem; }
.hero__lead { max-width: 470px; margin: 0; font-size: 1.1em; color: var(--ink-soft); }
.hero__lead strong { color: var(--ink); font-weight: 600; background: linear-gradient(transparent 62%, var(--lime) 62%); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.js .hero__bottom, .js .hero__eyebrow { opacity: 0; transform: translateY(24px); transition: opacity 1s .55s var(--ease), transform 1.2s .55s var(--ease); }
.js .hero__eyebrow { transition-delay: .05s; }
.js .is-loaded .hero__bottom, .js .is-loaded .hero__eyebrow { opacity: 1; transform: none; }

.hero__mark {
  position: relative; z-index: 1;
  margin: 0;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid; place-items: center;
}
.hero__mark img { width: 64%; height: auto; position: relative; z-index: 2; animation: float 7s ease-in-out infinite; }
/* lichte cirkel achter het merkteken, zodat de open D niet dichtloopt */
.hero__mark::after {
  content: ""; position: absolute; inset: 21%; z-index: 1;
  border-radius: 50%;
  background: var(--paper);
  animation: float 7s ease-in-out infinite;
}
.hero__mark .ring { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; animation: spin 38s linear infinite; }
.hero__mark .ring text { font-family: var(--sans); font-weight: 600; font-size: 10.5px; fill: var(--green); letter-spacing: .1em; }
.blob {
  position: absolute; inset: 12%;
  background: radial-gradient(circle at 30% 30%, var(--lilac), color-mix(in srgb, var(--mint) 70%, var(--lilac)) 70%);
  border-radius: 58% 42% 55% 45% / 45% 55% 45% 55%;
  animation: morph 14s ease-in-out infinite;
  z-index: 1;
}
.js .hero__mark { opacity: 0; transform: scale(.85) rotate(-10deg); transition: opacity 1.4s .3s var(--ease), transform 1.8s .3s var(--ease); }
.js .is-loaded .hero__mark { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-14px) rotate(2deg); } }
@keyframes morph {
  0%, 100% { border-radius: 58% 42% 55% 45% / 45% 55% 45% 55%; transform: rotate(0); }
  33% { border-radius: 40% 60% 42% 58% / 58% 40% 60% 42%; }
  66% { border-radius: 52% 48% 62% 38% / 38% 62% 44% 56%; transform: rotate(30deg); }
}

.vine--hero-l { left: -70px; top: 0; width: clamp(110px, 14vw, 210px); opacity: .85; }
.vine--hero-r { right: -30px; bottom: -20px; width: clamp(140px, 20vw, 290px); height: auto; }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 3;
  width: 26px; height: 42px; border: 1.5px solid var(--ink); border-radius: 20px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--purple); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 0; align-content: center; }
  .hero__mark { order: -1; width: min(52vw, 260px); justify-self: end; margin: 0 -8px 1rem 0; }
  .hero__scroll { display: none; }
  .vine--hero-l { display: none; }
  .vine--hero-r { opacity: .5; }
}

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  background: var(--purple);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  transform: rotate(-1.6deg) scale(1.04);
  margin: 1rem 0 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee span {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(1.6rem, 3.6vw, 3rem); line-height: 1.1; white-space: nowrap; padding: 0 .6em;
}
.marquee i { font-style: normal; color: var(--lime); font-size: clamp(1rem, 2vw, 1.6rem); align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- manifesto ---------- */
/* script accent (handwritten line above headings) */
.script {
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .9;
  margin: 0 0 -.12em;
  color: var(--lime);
  transform: rotate(-4deg);
  transform-origin: left center;
}

/* manifesto: paper softly fades into deep aubergine */
.manifesto {
  position: relative;
  color: var(--paper);
  background: linear-gradient(180deg, var(--paper) 0, var(--aubergine-soft) 110px, var(--aubergine) 340px, var(--aubergine) 100%);
  margin-top: -3.5rem;
  padding: clamp(9rem, 17vw, 15rem) var(--gutter) clamp(9rem, 15vw, 13rem);
}
.manifesto__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 340;
  font-variation-settings: "opsz" 96, "SOFT" 20;
  font-size: clamp(1.9rem, 3.9vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
}
.manifesto__text em { color: var(--lilac); }
.js .manifesto__text .w { opacity: .18; transition: opacity .35s; }
.js .manifesto__text .w.on { opacity: 1; }
.manifesto__sign { margin-top: 2.6rem; line-height: 1.3; font-weight: 600; padding-left: 1rem; border-left: 2px solid var(--lime); }
.manifesto__sign small { font-weight: 400; color: rgba(244, 239, 230, .7); font-size: .88em; }

/* round portrait with offset ring */
.portrait { position: relative; margin: 0; width: min(100%, 440px); aspect-ratio: 1; justify-self: center; }
.portrait::before {
  content: ""; position: absolute; inset: -5%;
  border-radius: 50%;
  border: clamp(10px, 1.6vw, 18px) solid color-mix(in srgb, var(--lilac) 55%, var(--aubergine));
  transform: translate(3%, 2%);
  transition: transform 1.2s var(--ease);
}
.portrait:hover::before { transform: translate(-2%, -3%); }
.portrait__photo {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 6px var(--paper), 0 40px 80px -30px rgba(0, 0, 0, .6);
}
.portrait__photo img { width: 100%; height: 100%; object-fit: cover; }
.portrait__photo--placeholder { background: radial-gradient(circle at 35% 30%, #FFFDF9 55%, var(--paper-2)); display: grid; place-items: center; }
.portrait__photo--placeholder img { width: 58%; height: auto; }
@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .portrait { width: min(72vw, 340px); }
}

/* ---------- reveal helper ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1.2s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- red pen ---------- */
.rewrite {
  background: var(--paper-2);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(9rem, 14vw, 12rem);
  position: relative;
}
/* curved edge: light arc rises into the aubergine section above */
.rewrite::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -25%; right: -25%; top: calc(-1 * clamp(50px, 9vw, 130px));
  height: calc(clamp(50px, 9vw, 130px) + 2px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--paper-2);
}
.rewrite > * { position: relative; z-index: 1; }
.rewrite > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.rewrite .section-head { margin-left: auto; }
.rewrite .eyebrow { color: var(--green); }
.rewrite__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 2rem); }
.pen {
  background: var(--paper);
  border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  min-height: 330px;
  box-shadow: 0 1px 0 rgba(18, 22, 15, .06), 0 30px 60px -40px rgba(14, 81, 56, .35);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}
.pen:nth-child(2) { transform-origin: center; }
.pen:hover { transform: translateY(-8px) rotate(-1deg); }
.js .pen[data-reveal].is-in:hover { transform: translateY(-8px) rotate(-1deg); }
.pen__label { margin: 0 0 auto; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.pen__before {
  position: relative; display: inline-block; align-self: flex-start;
  margin: 2.4rem 0 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.pen__before svg { position: absolute; left: -4%; top: 10%; width: 108%; height: 80%; overflow: visible; }
.pen__before path { fill: none; stroke: var(--purple); stroke-width: 3.2; stroke-linecap: round; }
.js .pen__before path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .8s calc(var(--d, 0s) + .5s) cubic-bezier(.6, 0, .3, 1); }
.js .pen.is-in .pen__before path { stroke-dashoffset: 0; }
.pen__after {
  margin: 0;
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.05; letter-spacing: -.02em;
  color: var(--purple);
}
.js .pen__after { opacity: 0; transform: translateY(14px) rotate(-2deg); transition: opacity .9s calc(var(--d, 0s) + 1.2s) var(--ease), transform 1s calc(var(--d, 0s) + 1.2s) var(--ease); }
.js .pen.is-in .pen__after { opacity: 1; transform: none; }
@media (max-width: 900px) { .rewrite__grid { grid-template-columns: 1fr; } .pen { min-height: 0; } }

/* ---------- services ---------- */
.services {
  position: relative;
  background: var(--green);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(5rem, 11vw, 10rem);
  overflow-x: clip;
}
/* green arc swells up into the paper section */
.services::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -25%; right: -25%; top: calc(-1 * clamp(50px, 9vw, 130px));
  height: calc(clamp(50px, 9vw, 130px) + 2px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--green);
}
/* ...and the paper swells back up into the green at the bottom */
.services::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -25%; right: -25%; bottom: -1px;
  height: clamp(50px, 9vw, 130px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--paper);
}
.services > * { position: relative; z-index: 1; max-width: var(--max); margin-left: auto; margin-right: auto; }
.services .eyebrow { color: var(--mint); }
.services .vine { position: absolute; }
.vine--services { right: -40px; top: 40px; width: clamp(140px, 18vw, 260px); opacity: .5; z-index: 0; margin: 0; }
.vine--services path.stem, .vine--services .tendril { stroke: var(--mint); }
.vine--services .leaf-body { fill: var(--mint); }
.vine--services .leaf-body.alt { fill: var(--lilac); }
.vine--services .leaf-rib { stroke: var(--green); }

.svc { list-style: none; margin: 0 auto; padding: 0; border-top: 1px solid rgba(244, 239, 230, .25); }
.svc__row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas: "num title desc" "num title tags";
  gap: .6rem 2.5rem;
  padding: clamp(1.8rem, 3.4vw, 3rem) clamp(.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(244, 239, 230, .25);
  isolation: isolate;
}
.svc__row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--purple);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .7s var(--ease);
  border-radius: 22px;
}
.svc__row:hover::before { transform: scaleY(1); }
.svc__num { grid-area: num; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--lime); padding-top: .6rem; }
.svc__title {
  grid-area: title; margin: 0;
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem); line-height: 1; letter-spacing: -.03em;
  transition: transform .7s var(--ease);
}
.svc__title em { color: var(--lilac); }
.svc__row:hover .svc__title { transform: translateX(14px); }
.svc__row:hover .svc__title em { color: var(--lime); }
.svc__desc { grid-area: desc; margin: 0; color: rgba(244, 239, 230, .82); max-width: 460px; }
.svc__tags { grid-area: tags; display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: .6rem 0 0; padding: 0; }
.svc__tags li { font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .35em .9em; border: 1px solid rgba(244, 239, 230, .4); border-radius: 999px; }
@media (max-width: 900px) {
  .svc__row { grid-template-columns: 1fr; grid-template-areas: "num" "title" "desc" "tags"; gap: .7rem; }
  .svc__num { padding-top: 0; }
}

/* ---------- approach ---------- */
.approach {
  position: relative;
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
}
.approach .eyebrow { color: var(--purple); }
.pillars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.pillar {
  border-radius: 30px;
  padding: clamp(1.8rem, 3.4vw, 3rem);
  display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.pillar p { margin: 0; max-width: 380px; }
.pillar__word {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.6rem, 5.4vw, 5rem); line-height: .92; letter-spacing: -.04em;
  transition: transform 1s var(--ease);
}
.pillar:hover .pillar__word { transform: scale(1.04) rotate(-1.5deg); transform-origin: left bottom; }
.pillar--a { grid-column: span 7; background: var(--purple); color: var(--paper); }
.pillar--a p { color: rgba(244, 239, 230, .85); }
.pillar--b { grid-column: span 5; background: var(--lilac); color: var(--purple-deep); margin-top: clamp(0rem, 5vw, 4rem); }
.pillar--c { grid-column: span 5; background: var(--mint); color: var(--green-deep); }
.pillar--d { grid-column: span 7; background: var(--green); color: var(--paper); margin-top: clamp(0rem, -3vw, 0rem); }
.pillar--d em { color: var(--lime); }
.pillar--d p { color: rgba(244, 239, 230, .85); }
.pillar--a::after, .pillar--d::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  border: 1.5px solid currentColor; opacity: .18;
  box-shadow: 0 0 0 30px transparent, 0 0 0 31.5px rgba(244, 239, 230, .1);
}
@media (max-width: 900px) {
  .pillar--a, .pillar--b, .pillar--c, .pillar--d { grid-column: 1 / -1; margin-top: 0; min-height: 0; }
}

.process { margin-top: clamp(5rem, 10vw, 9rem); position: relative; }
.process__title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 1rem; color: var(--green);
}
.vine--process { position: relative; width: 100%; height: 90px; margin-bottom: 1rem; }
.vine--process .leaf { --s: .75; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2.5rem); }
.steps span { font-family: var(--serif); font-style: italic; color: var(--purple); font-size: 1rem; }
.steps h4 {
  font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 3.2vw, 2.8rem); letter-spacing: -.03em; line-height: 1; margin: .3rem 0 .8rem;
}
.steps p { margin: 0; color: var(--ink-soft); font-size: .96em; }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.5rem; }
  .vine--process { height: 60px; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- testimonials (hidden until real quotes are added) ---------- */
.quotes { padding: 0 var(--gutter) clamp(5rem, 10vw, 9rem); max-width: calc(var(--max) + 2 * var(--gutter)); margin: 0 auto; }
.quotes[hidden] { display: none; }
.quotes__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.quote { margin: 0; padding: 2.5rem; border-radius: 28px; background: var(--paper-2); }
.quote p { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.2; margin: 0 0 1.5rem; }
.quote footer { font-weight: 600; color: var(--green); }
@media (max-width: 760px) { .quotes__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  border-top: 1px solid rgba(18, 22, 15, .12);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
}
.faq__aside { align-self: start; position: sticky; top: 110px; }
.faq__aside .eyebrow { color: var(--green); }
.faq__aside > p:last-child { color: var(--ink-soft); margin: 1.6rem 0 0; max-width: 340px; }
.faq__aside a { color: var(--purple); font-weight: 600; }
.faq__list { border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1.5px solid var(--ink); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 72, "SOFT" 30;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem); line-height: 1.15; letter-spacing: -.015em;
  transition: color .3s, padding .5s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 1.3rem; line-height: 1;
  border: 1.5px solid currentColor;
  transition: transform .6s var(--ease), background .3s, color .3s;
}
.faq summary:hover { color: var(--purple); padding-left: .6rem; }
.faq details[open] summary { color: var(--purple); }
.faq details[open] summary::after { transform: rotate(135deg); background: var(--purple); color: var(--paper); border-color: var(--purple); }
.faq details p { margin: 0; padding: 0 3.5rem 1.8rem 0; color: var(--ink-soft); max-width: 640px; }
.faq details[open] p { animation: faqIn .7s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }
@media (max-width: 900px) {
  .faq { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .faq details p { padding-right: 0; }
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  /* paper melts into purple, deepening to aubergine */
  background: linear-gradient(180deg, var(--paper) 0, var(--aubergine-soft) 120px, var(--purple) 360px, var(--aubergine) 80%, var(--night) 100%);
  color: var(--paper);
  text-align: center;
  padding: clamp(10rem, 17vw, 15rem) var(--gutter) clamp(5rem, 9vw, 8rem);
}
.contact .script { transform: rotate(-4deg); transform-origin: center; }
.contact > :not(.vine) { position: relative; z-index: 1; }
.contact .eyebrow { justify-content: center; color: var(--lime); }
.contact .eyebrow::before { display: none; }
.contact__title {
  font-family: var(--serif); font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(3.2rem, 10vw, 10rem); line-height: .9; letter-spacing: -.045em;
  margin: 0 auto; max-width: 12ch;
}
.contact__title em { color: var(--lime); }
.contact__lead { max-width: 520px; margin: 1.8rem auto 3rem; font-size: 1.1em; color: rgba(244, 239, 230, .85); }

.contact__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }
.contact__card {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; column-gap: 1rem;
  align-items: center; text-align: left;
  padding: 1.5rem 1.7rem;
  border-radius: 24px;
  background: var(--paper); color: var(--ink);
  text-decoration: none;
  transition: transform .6s var(--ease), color .4s;
}
.contact__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--green);
  clip-path: circle(0% at 0% 100%);
  transition: clip-path .8s var(--ease);
}
.contact__card--mail::before { background: var(--lime); }
.contact__card:hover { transform: translateY(-5px); }
.contact__card:hover::before { clip-path: circle(150% at 0% 100%); }
.contact__card--wa:hover { color: var(--paper); }
.contact__card svg { grid-row: 1 / 3; width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact__card svg .fill { fill: currentColor; stroke: none; }
.contact__card--wa svg { color: var(--green); transition: color .4s; }
.contact__card--wa:hover svg { color: var(--lime); }
.contact__kind { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.contact__value {
  font-family: var(--serif); font-variation-settings: "opsz" 72;
  font-size: clamp(1.15rem, 2vw, 1.6rem); letter-spacing: -.01em; line-height: 1.2;
}
.contact__card--mail .contact__value { font-size: clamp(1rem, 1.6vw, 1.35rem); }
.contact__card .arrow { grid-column: 3; grid-row: 1 / 3; font-size: 1.6rem; transition: transform .5s var(--ease); }
.contact__card:hover .arrow { transform: translateX(6px) rotate(-30deg); }
@media (max-width: 760px) { .contact__actions { grid-template-columns: 1fr; } }

.contact__meta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .8rem 2rem; font-size: .92rem; color: rgba(244, 239, 230, .85); }
.contact__meta p { margin: 0; }
.status { display: inline-flex; align-items: center; gap: .6rem; }
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lilac); }
.status.is-open .status__dot { background: var(--lime); box-shadow: 0 0 0 0 rgba(214, 243, 107, .6); animation: pulseLime 2.2s infinite; }
@keyframes pulseLime { 70% { box-shadow: 0 0 0 10px rgba(214, 243, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(214, 243, 107, 0); } }
.ig { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(244, 239, 230, .4); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.ig:hover { color: var(--lime); border-color: var(--lime); }
.ig svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.ig svg .fill { fill: currentColor; stroke: none; }

.vine--contact-l { left: -30px; bottom: 0; width: clamp(100px, 15vw, 220px); opacity: .8; }
.vine--contact-r { right: -30px; top: 0; width: clamp(100px, 15vw, 220px); opacity: .8; }
.vine[data-light] .leaf-rib { stroke: var(--purple); }
@media (max-width: 760px) { .vine--contact-l, .vine--contact-r { opacity: .35; } }

/* ---------- footer ---------- */
.footer { background: var(--night); color: rgba(244, 239, 230, .7); padding: clamp(3rem, 7vw, 6rem) var(--gutter) 2rem; }
.footer__mark {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  font-size: clamp(2.6rem, 11.5vw, 10.5rem);
  line-height: .95;
  letter-spacing: -.035em;
  text-align: center;
}
.footer__mark span:first-child { color: var(--lilac); }
.footer__mark span:last-child { color: var(--mint); }
.footer__row { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .88rem; border-top: 1px solid rgba(244, 239, 230, .15); padding-top: 1.5rem; }
.footer__row p { margin: 0; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--lime); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal], .js .hero__bottom, .js .hero__eyebrow, .js .hero__mark, .js .pen__after { opacity: 1 !important; transform: none !important; }
  .js .hero__title .line > span { transform: none !important; }
  .js .vine path.stem, .js .grow svg path, .js .pen__before path { stroke-dashoffset: 0 !important; }
  .js .vine .leaf, .js .vine .tendril-g { transform: scale(var(--s, 1)) !important; }
  .js .manifesto__text .w { opacity: 1 !important; }
}
