/* ---------- Tokens ---------- */
:root {
  --s1: #BFD8F4;        /* morning blue */
  --s2: #E9DDF4;        /* lilac */
  --s3: #FBE0DA;        /* blush */
  --s4: #FDD3A6;        /* golden hour */
  --s5: #F4A27E;        /* sunset, where the footer takes over */
  --n1: #B8738F; --n2: #4E3F7A; --n3: #1C1B3F;   /* dusk to night */
  --sky-1: var(--s1); --sky-2: var(--s2); --sky-3: var(--s3);
  --meadow: #FBE7DC;
  --paper: #FFFDFB;
  --ink: #2A1B2E;       /* plum */
  --ink-2: #6A5870;
  --line: rgba(42, 27, 46, .14);
  --poppy: #FF6B57;
  --yolk: #FFC23D;
  --corn: #FF9466;      /* tangerine */
  --tulip: #F6BFA0;     /* peach */
  --daisy: #FFFFFF;
  --leaf: #FFC23D;
  --stem: #2F5D3A;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --mono: "Martian Mono", ui-monospace, monospace;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --s1: #131A3A; --s2: #1E1F4A; --s3: #2D2455; --s4: #43295A; --s5: #5E3057; --n1: #3A2448; --n2: #1D1838; --n3: #0E0D22; --sky-1: var(--s1); --sky-2: var(--s2); --sky-3: var(--s3);
    --meadow: #221F45; --paper: #1F1A29; --ink: #F5ECF7; --ink-2: #BDAFC6; --line: rgba(245, 236, 247, .14);
    --daisy: #F4EEF8; color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --s1: #131A3A; --s2: #1E1F4A; --s3: #2D2455; --s4: #43295A; --s5: #5E3057; --n1: #3A2448; --n2: #1D1838; --n3: #0E0D22; --sky-1: var(--s1); --sky-2: var(--s2); --sky-3: var(--s3);
  --meadow: #221F45; --paper: #1F1A29; --ink: #F5ECF7; --ink-2: #BDAFC6; --line: rgba(245, 236, 247, .14);
  --daisy: #F4EEF8; color-scheme: dark;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: linear-gradient(180deg, var(--s1) 0, var(--s2) 14%, var(--s3) 38%, var(--s4) 68%, var(--s5) 100%) var(--s5); color: var(--ink); font: 18px/1.55 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--corn); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 99px; z-index: 100; }
.skip:focus { left: 12px; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); margin: 0 0 18px; }
.todo { font: 12px var(--mono); border: 1.5px dashed currentColor; border-radius: 5px; padding: 1px 6px; opacity: .75; }
em { font-family: var(--serif); font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(1180px, calc(100% - 28px)); display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand, .nav, .mode {
  background: color-mix(in srgb, var(--paper) 78%, transparent); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 99px; text-decoration: none;
}
.brand { font: 600 20px/1 var(--serif); padding: 10px 16px; font-variation-settings: "SOFT" 100; }
.brand span { color: var(--poppy); margin-left: 3px; }
.nav { display: flex; gap: 4px; padding: 5px; font-size: 15px; font-weight: 500; }
.nav a { text-decoration: none; padding: 7px 14px; border-radius: 99px; }
.nav a:hover { background: color-mix(in srgb, var(--ink) 8%, transparent); }
.nav .nav-cta { background: var(--ink); color: var(--paper); }
.nav .nav-cta:hover { background: var(--poppy); color: #fff; }
.mode { display: flex; gap: 2px; padding: 4px; }
.mode button { font: 500 13px var(--sans); padding: 7px 13px; border-radius: 99px; color: var(--ink-2); transition: background-color .2s, color .2s; }
.mode button:hover { color: var(--ink); }
.mode button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* ---------- Hero ---------- */
.hero-wrap { height: 175vh; }
.hero {
  position: sticky; top: 0; height: 100vh; min-height: 620px; overflow: hidden;
  background: transparent;
}
.hero-inner {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 90px 5vw 36vh; transform-origin: 50% 40%;
  transform: scale(calc(1 - var(--p, 0) * .12)); opacity: calc(1 - var(--p, 0) * 1.1);
}
.hello { display: flex; align-items: center; gap: 10px; font: 500 13px var(--mono); text-transform: uppercase; letter-spacing: .08em; margin: 0 0 22px; }
.hello i { width: 10px; height: 10px; border-radius: 50%; background: var(--poppy); box-shadow: 0 0 0 4px color-mix(in srgb, var(--poppy) 25%, transparent); }
h1 {
  margin: 0; font: 400 clamp(44px, 7vw, 116px)/.98 var(--serif); letter-spacing: -.03em;
  font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144;
  display: flex; flex-direction: column;
}
.h-second { display: flex; align-items: center; gap: .2em; flex-wrap: wrap; margin-top: .2em; }
.word {
  font-style: italic; font-weight: 350; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  display: inline-block; transition: opacity .35s, transform .35s;
}
.word.is-out { opacity: 0; transform: translateY(.18em); }
.hero-foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; font-size: 16px; color: var(--ink-2); }
.hero-foot a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; }

/* ---------- Stereo ---------- */
.stereo {
  --h: .92em;
  position: relative; display: inline-flex; align-items: center; gap: calc(var(--h) * .08);
  height: var(--h); padding: 0 calc(var(--h) * .1); border-radius: calc(var(--h) * .5);
  background: #2A1B2E; box-shadow: inset 0 -.04em 0 rgba(0,0,0,.35), 0 .08em .2em rgba(42, 27, 46, .25);
  font-size: 1em; vertical-align: middle;
}
.stereo::before { /* carry handle */
  content: ""; position: absolute; left: 30%; right: 30%; top: -.13em; height: .15em;
  border: .05em solid #2A1B2E; border-bottom: 0; border-radius: .14em .14em 0 0;
}
.stereo::after { /* a daisy sticker */
  content: "✦"; position: absolute; right: .42em; top: -.1em; font-size: .3em; color: var(--yolk); transform: rotate(14deg);
}
.spk {
  width: calc(var(--h) * .78); height: calc(var(--h) * .78); border-radius: 50%; display: grid; place-items: center;
  background: repeating-radial-gradient(circle, #3D2A42 0 .03em, #231627 .03em .06em);
  box-shadow: inset 0 0 0 .04em #4A3550;
}
.spk i {
  width: 38%; height: 38%; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--tulip), #B8436F);
  box-shadow: 0 0 0 .04em #1A0F1D;
}
.stereo.is-playing .spk i { animation: thump .52s ease-in-out infinite alternate; }
.stereo.is-playing .spk:last-of-type i { animation-delay: .26s; }
@keyframes thump { to { transform: scale(1.22); } }
.deck {
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: .12em; row-gap: .05em; align-items: center;
  height: calc(var(--h) * .7); padding: .06em .12em; border-radius: .1em;
  background: linear-gradient(180deg, #FFF4E3, #F7E3CB); color: #2A1B2E; min-width: 2.1em;
}
.deck-label { grid-column: 1; font: 500 .095em/1.2 var(--mono); letter-spacing: .02em; font-size: max(9px, .095em); text-transform: uppercase; white-space: nowrap; }
.deck-track { grid-column: 1; height: .035em; min-height: 2px; background: rgba(42, 27, 46, .18); border-radius: 99px; overflow: hidden; }
.deck-track b { display: block; height: 100%; width: 0; background: var(--poppy); }
.stereo.is-playing .deck-track b { animation: track 24s linear infinite; }
@keyframes track { to { width: 100%; } }
.play {
  grid-column: 2; grid-row: 1 / span 2; width: .38em; height: .38em; border-radius: 50%;
  background: var(--poppy); color: #fff; font-size: 1em; display: grid; place-items: center;
}
.play span { font-size: .16em; line-height: 1; transform: translateX(8%); }
.stereo.is-playing .play span { transform: none; }
.play:hover { background: #E8513E; }

/* ---------- Hero copy + actions ---------- */
.hero-sub { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; max-width: 44ch; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 99px; font-weight: 600; font-size: 16px; text-decoration: none; border: 1.5px solid var(--ink); transition: transform .2s, background-color .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--poppy); border-color: var(--poppy); color: #fff; }
.btn-ghost { background: color-mix(in srgb, var(--paper) 60%, transparent); }
.btn-ghost:hover { background: var(--paper); }
.trust { position: relative; z-index: 4; align-self: flex-start; margin: 22px 0 0; font-size: 14.5px; color: var(--ink-2); background: color-mix(in srgb, var(--paper) 70%, transparent); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 99px; }
.trust b { color: var(--ink); font-weight: 600; }
.intro-kicker { font: 400 clamp(22px, 2.4vw, 32px)/1.3 var(--serif); margin: 34px 0 0; color: var(--ink-2); font-variation-settings: "SOFT" 100; }
.intro-kicker em { color: var(--poppy); }
/* Stat numbers in the sun palette, a touch deeper so they read on the pale sky */
.stats div:nth-child(1) dt { color: var(--poppy); }
.stats div:nth-child(2) dt { color: #F08A3E; }
.stats div:nth-child(3) dt { color: #E39A1C; }
.stats div:nth-child(4) dt { color: var(--poppy); }

.hero-copy { display: flex; flex-direction: column; }

/* ---------- About photo ---------- */
.about-photo { position: relative; margin: 0; }
.about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border: 1.5px solid var(--ink); border-radius: 999px 999px 24px 24px; box-shadow: 12px 12px 0 color-mix(in srgb, var(--tulip) 65%, transparent); }
.photo-note {
  position: absolute; left: -22px; bottom: 14%; margin: 0; padding: 10px 18px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 16px;
  font: italic 400 22px/1 var(--serif); font-variation-settings: "SOFT" 100, "WONK" 1; box-shadow: 4px 4px 0 var(--ink); transform: rotate(-5deg); white-space: nowrap;
}
.photo-note span { color: var(--ink-2); font-style: normal; }
/* ---------- Services ---------- */
.services { padding: 20px 0 130px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-grid article { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 24px 26px 26px; transition: transform .25s, box-shadow .25s; }
.svc-grid article:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(42, 27, 46, .45); }
.svc-dot { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: color-mix(in srgb, var(--ink) 6%, var(--paper)); color: var(--ink-2); font-size: 24px; margin-bottom: 18px; }
.svc-grid h3 { font: 500 25px/1.1 var(--serif); letter-spacing: -.015em; margin: 0 0 10px; font-variation-settings: "SOFT" 100; }
.svc-grid p { margin: 0; font-size: 16.5px; color: var(--ink-2); }
.svc-kicker { font: italic 400 26px var(--serif); margin: 30px 0 0; font-variation-settings: "SOFT" 100, "WONK" 1; }

/* ---------- Footer actions ---------- */
.foot-sub { font-size: 19px; color: #D9C8DD; max-width: 46ch; margin: -18px 0 32px; }
.foot-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.foot-link { color: #F7EEF5; font-weight: 500; text-underline-offset: 4px; }
.foot-link[hidden] { display: none; }
/* ---------- Flower field ---------- */
.field { position: absolute; left: 0; right: 0; bottom: 0; height: 40vh; min-height: 260px; z-index: 3; pointer-events: none; transform: translateY(calc(var(--p, 0) * -34vh)) scale(1, calc(1 + var(--p, 0) * .25)); transform-origin: 50% 100%; will-change: transform; }
.field svg { width: 100%; height: 100%; display: block; overflow: visible; }

.fl { transform-box: fill-box; transform-origin: 50% 100%; animation: sway var(--dur, 5s) ease-in-out var(--del, 0s) infinite alternate; }
.field.is-idle .drift, .sky-clouds.is-idle .drift { animation-play-state: paused; }
@keyframes sway { from { rotate: calc(var(--amp, 3deg) * -1); } to { rotate: var(--amp, 3deg); } }
.ground { fill: var(--meadow); }
.st { fill: none; stroke: var(--stem); stroke-width: 2.4; stroke-linecap: round; }
.lf { fill: var(--leaf); }
.pe { stroke: var(--ink); stroke-width: 1.4; stroke-linejoin: round; }
.vein { fill: none; stroke: var(--ink); stroke-width: 1; stroke-linecap: round; opacity: .45; }
.back .fl { opacity: .75; }
.tuft { fill: color-mix(in srgb, var(--leaf) 80%, #fff); stroke: var(--stem); stroke-width: 1; stroke-linejoin: round; }
.ground-back { fill: color-mix(in srgb, var(--leaf) 30%, var(--meadow)); }
.field-small { position: relative; height: 150px; min-height: 0; transform: none; }
.field-small::after { display: none; }

/* ---------- Intro ---------- */
.intro { background: transparent; padding: 60px 5vw 140px; max-width: 1180px; margin: 0 auto; }
.intro-copy { font: 400 clamp(30px, 4.2vw, 60px)/1.14 var(--serif); letter-spacing: -.02em; margin: 0; font-variation-settings: "SOFT" 100, "opsz" 100; }
.intro-copy .w { opacity: .18; transition: opacity .25s; }
.intro-copy .w.on { opacity: 1; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 64px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.stats div { margin: 0; }
.stats dt { font: 400 clamp(40px, 4.6vw, 64px)/1 var(--serif); letter-spacing: -.03em; font-variation-settings: "SOFT" 100, "opsz" 144; margin-bottom: 8px; }
.stats dd { margin: 0; font-size: 15.5px; color: var(--ink-2); max-width: 22ch; }

/* ---------- How ---------- */
.how { padding: 40px 0 140px; }
.sec-h { font: 400 clamp(40px, 5.6vw, 84px)/1 var(--serif); letter-spacing: -.03em; margin: 0 0 56px; max-width: 16ch; font-variation-settings: "SOFT" 100, "opsz" 144; }
.seasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seasons article { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 26px 28px 30px; }
.stage-art { width: 110px; height: 110px; display: block; margin: -6px 0 10px -8px; }
.stage-art .soil { fill: color-mix(in srgb, var(--leaf) 22%, var(--meadow)); }
.stage-art .seed { fill: #9A6B3F; stroke: var(--ink); stroke-width: 1.4; }
.stage-art .dash { fill: none; stroke: var(--ink-2); stroke-width: 1.4; stroke-dasharray: 3 4; }
.stage-art .stem { fill: none; stroke: var(--stem); stroke-width: 3; stroke-linecap: round; }
.stage-art .leaf { fill: var(--leaf); stroke: var(--ink); stroke-width: 1.2; }
.stage-art .bloom circle { fill: var(--poppy); stroke: var(--ink); stroke-width: 1.4; }
.stage-art .yolk { fill: var(--yolk); stroke: var(--ink); stroke-width: 1.4; }
.season-tag { font: 500 12px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin: 0 0 10px; }
.seasons h3 { font: 500 30px/1.05 var(--serif); letter-spacing: -.02em; margin: 0 0 12px; font-variation-settings: "SOFT" 100; }
.seasons p:last-child { margin: 0; font-size: 16.5px; color: var(--ink-2); }

/* ---------- Work ---------- */
.work { position: relative; padding: 60px 0 160px; overflow: hidden; }
.plane-layer { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.plane-layer #planePath { fill: none; stroke: var(--ink-2); stroke-width: 1.5; stroke-dasharray: 2 9; stroke-linecap: round; vector-effect: non-scaling-stroke; opacity: .55; }
.plane { position: absolute; left: 0; top: 0; width: 46px; height: 34px; z-index: 4; pointer-events: none; will-change: transform; overflow: visible; }
.plane .pp { fill: #FFFDF8; stroke: #2A1B2E; stroke-width: 1.4; stroke-linejoin: round; }
.plane .pw { fill: #FDE6D8; }
.plane .pf { fill: none; stroke: #2A1B2E; stroke-width: 1.1; }
.work .wrap { position: relative; z-index: 1; }
.work-top { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.work-top .sec-h { margin: 0; }
.dot { color: var(--ink); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { display: block; text-align: left; width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 12px; transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s; }
.card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 24px 50px -24px rgba(42, 27, 46, .35); }
.card:first-child { grid-column: 1 / -1; }
.card-art { position: relative; height: 300px; border-radius: 20px; overflow: hidden; display: grid; place-items: center; padding: 28px; }
.card:first-child .card-art { height: 380px; }
.mock { width: min(520px, 100%); background: #FFFDFB; color: #2A1B2E; border: 1.5px solid #2A1B2E; border-radius: 14px; box-shadow: 6px 6px 0 #2A1B2E; overflow: hidden; }
.mock-bar { display: flex; justify-content: space-between; padding: 8px 12px; border-bottom: 1.5px solid #2A1B2E; font: 500 10.5px var(--mono); }
.mock-body { padding: 16px 18px 18px; }
.mock-body h4 { font: 500 30px/1.02 var(--serif); letter-spacing: -.02em; margin: 0 0 12px; font-variation-settings: "SOFT" 100; }
.mock-rows { display: grid; gap: 6px; }
.mock-rows span { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; padding: 7px 10px; border-radius: 8px; background: #F4EEE9; }
.mock-rows b { font: 500 10.5px var(--mono); text-transform: uppercase; align-self: center; }
.petal { position: absolute; border-radius: 50%; opacity: .9; }
.card-cap { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding: 18px 12px 8px; }
.card-cap h3 { font: 500 28px/1 var(--serif); letter-spacing: -.02em; margin: 0 0 6px; font-variation-settings: "SOFT" 100; }
.card-cap p { margin: 0; color: var(--ink-2); font-size: 16px; }
.tagline { font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; border: 1px solid var(--line); padding: 5px 10px; border-radius: 99px; }

.more-h { font: 500 28px/1 var(--serif); margin: 70px 0 16px; font-variation-settings: "SOFT" 100; }
.more { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.more button { width: 100%; display: grid; grid-template-columns: 30px 1fr auto 24px; gap: 16px; align-items: center; padding: 18px 6px; border-bottom: 1px solid var(--line); text-align: left; transition: padding .25s; }
.more button:hover { padding-left: 16px; }
.more .bud { width: 16px; height: 16px; border-radius: 50%; border: 1.4px solid var(--ink); }
.more .m-name { font: 500 22px var(--serif); font-variation-settings: "SOFT" 100; }
.more .m-arrow { font-size: 18px; }

.also-sub { margin: -6px 0 18px; color: var(--ink-2); font-size: 16px; }
.also { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.also a { display: inline-block; font: 500 12px var(--mono); text-decoration: none; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; background: var(--paper); transition: background-color .2s, color .2s, transform .2s; }
.also a:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ---------- About ---------- */
.about { padding: 40px 0 150px; }
.about-grid { display: grid; grid-template-columns: minmax(260px, 400px) 1fr; gap: 40px 72px; align-items: center; }
.about-grid .toolbox { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px; }
.about-grid .toolbox .eyebrow { grid-column: 1 / -1; }
.about .sec-h { margin-bottom: 28px; }
.about-lede { font: 400 24px/1.4 var(--serif); font-variation-settings: "SOFT" 100; margin: 0 0 18px; }
.about p { max-width: 60ch; }
.creds { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); }
.creds li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.creds span { color: var(--ink-2); font-size: 15px; }
.toolbox { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 28px; }
.tool-group { padding: 12px 0; border-top: 1px solid var(--line); }
.tool-group h4 { font: 500 11.5px var(--mono); text-transform: uppercase; letter-spacing: .08em; margin: 0 0 4px; color: var(--ink-2); }
.tool-group p { margin: 0; font-size: 16px; }

/* ---------- Footer ---------- */
.footer { position: relative; overflow: hidden; background: linear-gradient(180deg, transparent 0, transparent 60px, var(--n1) 26%, var(--n2) 60%, var(--n3) 100%); }
.foot-inner { position: relative; z-index: 1; background: transparent; color: #F7EEF5; border-radius: 36px 36px 0 0; padding: 90px 5vw 30px; max-width: none; }
.foot-inner .eyebrow { color: #C9B6CF; }
.foot-h { font: 400 clamp(38px, 6vw, 96px)/1 var(--serif); letter-spacing: -.03em; margin: 0 0 40px; max-width: 15ch; font-variation-settings: "SOFT" 100, "opsz" 144; }
.foot-cta { display: inline-flex; gap: 12px; align-items: center; background: var(--poppy); color: #fff; text-decoration: none; font-weight: 600; font-size: 19px; padding: 16px 26px; border-radius: 99px; transition: transform .2s; }
.foot-cta:hover { transform: rotate(-2deg) scale(1.03); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 110px; padding-top: 20px; border-top: 1px solid rgba(247, 238, 245, .15); font-size: 14px; color: #C9B6CF; }
.foot-bottom a { text-decoration: none; }
.field-small .ground { fill: #2A1B2E; }

/* ---------- Case dialog ---------- */
.case { width: min(640px, calc(100% - 32px)); max-height: calc(100vh - 48px); border: 1px solid var(--line); border-radius: 28px; padding: 36px 34px 32px; background: var(--paper); color: var(--ink); }
.case::backdrop { background: rgba(42, 27, 46, .45); backdrop-filter: blur(4px); }
.case-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 50%; font-size: 24px; line-height: 1; }
.case-close:hover { background: color-mix(in srgb, var(--ink) 8%, transparent); }
.case-label { display: inline-block; font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; border: 1px solid var(--line); padding: 5px 10px; border-radius: 99px; margin-bottom: 14px; }
.case h2 { font: 400 46px/1 var(--serif); letter-spacing: -.03em; margin: 0 0 10px; font-variation-settings: "SOFT" 100, "opsz" 144; }
.case .sum { color: var(--ink-2); margin: 0 0 22px; }
.case dl { margin: 0; border-top: 1px solid var(--line); }
.case dl div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.case dt { font: 500 11.5px/2 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.case dd { margin: 0; font-size: 16.5px; }
.case .foot-cta { margin-top: 22px; font-size: 16px; padding: 12px 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Tablet: centered hero, bigger type, room for the clouds */
  .hero-inner { padding: 100px 6vw 30vh; justify-content: center; }
  .hero .field { height: 30vh; min-height: 180px; }
  h1 { font-size: clamp(34px, 8.6vw, 74px); line-height: 1.02; }
  .h-second { margin-top: .3em; gap: .3em; }
  .hero-sub { font-size: 20px; }
}
@media (max-width: 640px) {
  /* Phone */
  .nav a:not(.nav-cta) { display: none; }
  .hero-inner { padding: 88px 20px 20vh; justify-content: flex-start; }
  .hero .field { height: 22vh; min-height: 150px; }
  .hello { font-size: 11px; margin-bottom: 16px; }
  .hero-sub { margin-top: 20px; font-size: 18px; }
  .hero-actions { gap: 8px; margin-top: 24px; }
  .hero-actions .btn { padding: 11px 16px; font-size: 14.5px; }
  h1 { font-size: clamp(42px, 13.6vw, 60px); line-height: 1; }
  .sec-h { font-size: clamp(38px, 11.5vw, 52px); }
  .h-second { margin-top: .45em; }
  .stereo { --h: .9em; }
  .trust { font-size: 13px; }
}
@media (max-width: 860px) {

  .hero-foot { font-size: 14px; }
  .intro { padding: 40px 20px 100px; }
  .seasons, .cards, .about-grid, .svc-grid { grid-template-columns: 1fr; }
  .about-photo { width: min(320px, 80%); margin: 0 auto; }
  .about-grid .toolbox { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .card-art, .card:first-child .card-art { height: 260px; padding: 18px; }
  .mock-body h4 { font-size: 24px; }
  .more .tagline { display: none; }
  .more button { grid-template-columns: 24px 1fr 20px; }
  .case dl div { grid-template-columns: 1fr; gap: 2px; }
  .plane-layer, .plane { display: none; }
}

/* ---------- Work cards (home, work page, project nav) ---------- */
.wcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 10px; text-decoration: none; color: inherit; transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s; }
.wcard[hidden] { display: none; }
.wcard:hover { transform: translateY(-5px) rotate(-.3deg); box-shadow: 0 24px 48px -26px rgba(42, 27, 46, .4); }
.wcard-art { position: relative; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; background: color-mix(in srgb, var(--c) 32%, var(--paper)); display: grid; place-items: center; padding: 18px 18px 0; }
.wcard-art .frame { align-self: stretch; box-shadow: 5px 5px 0 #2A1B2E; border-bottom: 0; border-radius: 10px 10px 0 0; transition: transform .4s cubic-bezier(.2, .8, .3, 1); }
.wcard:hover .wcard-art .frame { transform: translateY(-4px); }
.wcard-cap { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 14px 8px 6px; }
.wcard-cap h3 { font: 500 22px/1.1 var(--serif); letter-spacing: -.015em; margin: 0; font-variation-settings: "SOFT" 100; }
.wcard-go { font-size: 18px; transition: transform .25s; }
.wcard:hover .wcard-go { transform: translate(3px, -3px); }
.tags { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 7px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font: 500 10.5px var(--mono); text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); }
.tag i { width: 7px; height: 7px; border-radius: 50%; }

.frame { width: 100%; height: 100%; display: flex; flex-direction: column; background: #fff; color: #2A1B2E; border: 1.5px solid #2A1B2E; border-radius: 10px; overflow: hidden; }
.frame-bar { flex: none; height: 24px; display: flex; align-items: center; gap: 4px; padding: 0 9px; border-bottom: 1.5px solid #2A1B2E; background: #F4EEE9; font: 500 9.5px var(--mono); }
.frame-bar i { width: 7px; height: 7px; border-radius: 50%; border: 1.2px solid #2A1B2E; flex: none; }
.frame-bar span { margin-left: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.frame-view { flex: 1; overflow: hidden; min-height: 0; }
.frame-view img { width: 100%; display: block; }
.frame.is-missing .frame-view { display: grid; place-items: center; background: #F4EEE9; }
.frame.is-missing img { display: none; }
.frame.is-missing .frame-view::after { content: "Screenshot coming soon"; font: 500 11px var(--mono); color: #6A5870; }

.art-wrap { position: absolute; inset: 0; display: grid; place-items: center; padding: 22px; overflow: hidden; }
.art-wrap .mock { position: relative; }
.wcard .art-wrap .mock-body { padding: 12px 14px 14px; }
.wcard .art-wrap .mock-body h4 { font-size: 20px; margin-bottom: 8px; }
.wcard .art-wrap .mock-rows span { font-size: 11.5px; padding: 5px 8px; }
.wcard .art-wrap .mock-rows span:nth-child(n+4) { display: none; }

.slot { position: absolute; inset: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 2px dashed color-mix(in srgb, var(--c) 75%, var(--ink)); border-radius: 12px; font: 500 12px var(--mono); color: var(--ink-2); text-align: center; }
.slot-flower { font-size: 42px; line-height: 1; color: var(--ink-2); }

/* Home: featured + browse */
.cards .wcard-big { grid-column: 1 / -1; }
.cards .wcard-big .wcard-art { aspect-ratio: 21 / 9; }
.cards .wcard-big .art-wrap .mock { width: min(560px, 100%); }
.cards .wcard-big .art-wrap .mock-body h4 { font-size: 30px; }
.cards .wcard-big .art-wrap .mock-rows span { font-size: 13px; padding: 7px 10px; }
.cards .wcard-big .art-wrap .mock-rows span:nth-child(n+4) { display: flex; }
.browse { margin-top: 64px; }
.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cat-tile { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -20px rgba(42, 27, 46, .45); }
.cat-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.cat-name { flex: 1; font: 500 19px var(--serif); font-variation-settings: "SOFT" 100; }
.cat-n { font: 500 12px var(--mono); color: var(--ink-2); }
.see-all { margin-top: 28px; }

/* ---------- Work page ---------- */
.page-hero { position: relative; padding: 140px 0 190px; background: transparent; overflow: hidden; }
.page-hero .eyebrow a { text-decoration: none; }
.page-hero .eyebrow a:hover { text-decoration: underline; }
.page-h { font: 400 clamp(56px, 8vw, 124px)/.95 var(--serif); letter-spacing: -.03em; margin: 0 0 20px; font-variation-settings: "SOFT" 100, "opsz" 144; }
.page-sub { font-size: 19px; color: var(--ink-2); margin: 0; max-width: 56ch; }
.page-field { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; }
.filters-bar { position: sticky; top: 0; z-index: 40; padding: 74px 0 14px; margin-top: -60px; background: color-mix(in srgb, var(--paper) 55%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font: 500 12px var(--mono); padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--paper); transition: background-color .2s, color .2s; }
.chip i { width: 8px; height: 8px; border-radius: 50%; }
.chip b { font-weight: 400; opacity: .55; }
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.work-page { padding-top: 18px; padding-bottom: 140px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-page[hidden], .showcase-sec[hidden] { display: none; }

/* Email showcase: whole emails, scrolled with the page */
.showcase-sec { padding-bottom: 140px; }
.showcase-sec .sec-h { margin-bottom: 16px; }
.showcase-sec .page-sub { margin-bottom: 44px; }
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.email-item header { min-height: 116px; margin-bottom: 16px; }
.email-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 6px; }
.email-item h3 { font: 500 24px/1.1 var(--serif); letter-spacing: -.015em; margin: 0; font-variation-settings: "SOFT" 100; }
.email-item header p { margin: 0; font-size: 15px; color: var(--ink-2); }
.email-item img { display: block; width: 100%; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 30px 60px -34px rgba(42, 27, 46, .45); }
.email-note { font-size: 13px; color: var(--ink-2); margin: 14px 0 0; }

/* ---------- Project page ---------- */
.project-page { padding-top: 120px; }
.back { display: inline-block; font: 500 12px var(--mono); text-transform: uppercase; letter-spacing: .06em; text-decoration: none; color: var(--ink-2); margin-bottom: 26px; }
.back:hover { color: var(--ink); }
.p-head { max-width: 920px; margin-bottom: 44px; }
.p-title { font: 400 clamp(48px, 7.4vw, 112px)/.95 var(--serif); letter-spacing: -.03em; margin: 14px 0 18px; font-variation-settings: "SOFT" 100, "opsz" 144; }
.p-sum { font: 400 clamp(20px, 2vw, 26px)/1.4 var(--serif); color: var(--ink-2); margin: 0; max-width: 46ch; font-variation-settings: "SOFT" 100; }
.p-meta { display: flex; flex-wrap: wrap; gap: 14px 44px; margin: 30px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.p-meta dt { font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-bottom: 4px; }
.p-meta dd { margin: 0; font-weight: 600; }
.p-visual { margin: 0 0 80px; }
.frame-tall { height: min(78vh, 780px); box-shadow: 8px 8px 0 #2A1B2E; border-radius: 16px; }
.frame-tall .frame-bar { height: 36px; font-size: 12px; padding: 0 14px; gap: 6px; }
.frame-tall .frame-bar i { width: 11px; height: 11px; }
.frame-tall .frame-view { overflow: auto; overscroll-behavior: contain; }
.frame-email { max-width: 760px; margin: 0 auto; }
.frame-email + .p-hint { text-align: center; }
.p-visual .art-wrap { position: relative; min-height: 520px; border-radius: 28px; }
.p-visual .art-wrap .mock { width: min(620px, 100%); }
.p-visual .slot { position: relative; inset: auto; height: 360px; border-radius: 28px; }
.p-hint { font: 500 12px var(--mono); color: var(--ink-2); margin: 16px 0 0; }
.p-hint code { font: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; }
.p-stats { margin: 0 0 80px; }
.p-story { margin-bottom: 80px; }
.p-story .seasons p:last-child { color: var(--ink); font-size: 17.5px; }
.p-todo { margin: 0 0 80px; }
.p-gallery { margin-bottom: 70px; }
.gallery { columns: 3 260px; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin: 0 0 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.gallery img { width: 100%; display: block; }
.gallery figcaption { padding: 10px 14px 12px; font-size: 14px; color: var(--ink-2); }
.g-slot { break-inside: avoid; margin: 0 0 16px; aspect-ratio: 1; border: 2px dashed var(--line); border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font: 500 12px var(--mono); color: var(--ink-2); }
.g-slot span { font-size: 30px; color: var(--ink-2); }
.g-tall { aspect-ratio: 4 / 5; }
.p-visit { margin-bottom: 20px; }
.p-note { font-size: 14px; color: var(--ink-2); max-width: 60ch; margin: 6px 0 20px; padding-left: 12px; border-left: 2px solid var(--line); }
.pnav { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-top: 50px; padding-bottom: 130px; border-top: 1px solid var(--line); margin-top: 40px; }

@media (max-width: 1024px) {
  .showcase { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid, .pnav, .svc-grid, .showcase { grid-template-columns: 1fr; }
  .email-item header { min-height: 0; }
  .showcase { gap: 56px; }
  .cards .wcard-big .wcard-art { aspect-ratio: 16 / 10; }
  .page-hero { padding: 120px 0 170px; }
  .frame-tall { height: 70vh; }
  .p-visual .art-wrap { min-height: 380px; }
}

/* ---------- Work cards, refined: the work is the hero, the card gets out of the way ---------- */
.wcard { background: transparent; border: 0; border-radius: 0; padding: 0; }
.wcard:hover { transform: none; box-shadow: none; }
.wcard-art { padding: 0; background: #F7F3F1 !important; border-radius: 14px; box-shadow: 0 0 0 1px rgba(42, 27, 46, .08), 0 28px 56px -30px rgba(42, 27, 46, .5); transition: box-shadow .35s, transform .35s cubic-bezier(.2, .8, .3, 1); }
.wcard:hover .wcard-art { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(42, 27, 46, .1), 0 36px 64px -30px rgba(42, 27, 46, .55); }
.wcard-art .frame, .wcard:hover .wcard-art .frame { box-shadow: none; border: 0; border-radius: 0; transform: none; }
.frame-bar { background: #F7F3F1; border-bottom: 1px solid rgba(42, 27, 46, .08); color: #6A5870; }
.frame-bar i { border: 0; background: #DCD3D8; }
.frame-view img { transition: transform .6s cubic-bezier(.2, .8, .3, 1); }
.wcard:hover .frame-view img { transform: scale(1.025); }
.wcard-cap { padding: 16px 2px 0; }
.cards, .grid { gap: 52px 28px; }
.wcard-go { opacity: .5; }
.petal { display: none; }
.art-wrap { background: linear-gradient(160deg, #F7F3F1, #EFE6EC) !important; }
.mock { box-shadow: 0 18px 40px -20px rgba(42, 27, 46, .4); border-color: rgba(42, 27, 46, .15); }
.frame-tall { border: 0; box-shadow: 0 0 0 1px rgba(42, 27, 46, .08), 0 40px 80px -36px rgba(42, 27, 46, .55); }
/* =====================================================================
   Sky: sunrise at the top of the page, sunset at the bottom, night in the footer.
   ===================================================================== */
main { position: relative; z-index: 1; }
.sun {
  position: fixed; z-index: 0; right: 9vw; top: calc(10vh + var(--sp, 0) * 72vh); width: min(28vmin, 250px); aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #FFF6D2 0 40%, #FFE08F 47%, rgba(255, 214, 130, .45) 55%, rgba(255, 200, 120, 0) 70%);
  opacity: calc(1 - max(0, var(--sp, 0) - .8) * 5);
}
.sun::after { content: ""; position: absolute; inset: 0; border-radius: 50%; opacity: var(--sp, 0); background: radial-gradient(circle, #FF8F5A 0 40%, #F9744A 47%, rgba(245, 110, 70, .4) 55%, rgba(240, 100, 70, 0) 70%); }
.sky-clouds { position: absolute; left: 0; top: 0; width: 100%; z-index: 0; pointer-events: none; overflow: hidden; }
.sky-cloud { position: absolute; opacity: .7; overflow: visible; }
.field .cloud-row { position: absolute; top: 0; left: -4%; width: 108%; height: 100%; will-change: translate; }
.drift { animation: drift var(--dur, 30s) ease-in-out var(--del, 0s) infinite alternate; }
@keyframes drift { from { translate: calc(var(--amp, 30px) * -1) 0; } to { translate: var(--amp, 30px) 0; } }
.cl-front { fill: #FFFFFF; }
.cl-mid { fill: #FFF4F6; }
.cl-back { fill: #FAE8F1; }
.cl-shade { fill: #E9D8EC; }
.dusk .cl-front { fill: #F9C0A9; }
.dusk .cl-mid { fill: #EBA3AA; }
.dusk .cl-back { fill: #CE8DAA; }
.dusk .cl-shade { fill: #B87992; }
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i { position: absolute; border-radius: 50%; background: #FFF8EC; opacity: .85; animation: twinkle var(--t, 3s) ease-in-out var(--d, 0s) infinite alternate; }
@keyframes twinkle { to { opacity: .2; } }
.footer .cloud-row { transform: translateY(calc((1 - var(--fp, 1)) * var(--rise, 60px))); }
.footer .cloud-row:nth-child(1) { --rise: 40px; }
.footer .cloud-row:nth-child(2) { --rise: 80px; }
.footer .cloud-row:nth-child(3) { --rise: 130px; }
.footer .stars { opacity: var(--fp, 1); }
.footer .moon { translate: 0 calc((1 - var(--fp, 1)) * 80px); }
.moon { position: absolute; right: 13vw; top: 34%; width: 54px; height: 54px; border-radius: 50%; box-shadow: -13px 7px 0 0 #FFF1CF; transform: rotate(-18deg); }
.sky-art .hz { fill: none; stroke: var(--ink-2); stroke-width: 1.6; stroke-linecap: round; }
.sky-art .hz-fill { fill: color-mix(in srgb, var(--s5) 35%, transparent); }
.sky-art .sn { fill: var(--yolk); stroke: var(--ink); stroke-width: 1.4; }
.sky-art .sn-set { fill: var(--poppy); }
.sky-art .ray { fill: none; stroke: var(--yolk); stroke-width: 3; stroke-linecap: round; }
.sky-art .cloud { fill: #FFFFFF; stroke: var(--ink); stroke-width: 1.3; stroke-linejoin: round; }
@media (max-width: 860px) {
  /* On phones the sun rises low, just above the clouds, clear of the headline. */
  .sun { width: min(26vmin, 150px); right: 7vw; top: calc(63vh + var(--sp, 0) * 30vh); }
}
@media (max-width: 640px) {
  .sun { top: calc(75vh + var(--sp, 0) * 18vh); }
}
.brand span { display: inline-block; width: .5em; height: .5em; margin-left: 5px; border-radius: 50%; background: #FFB25E; box-shadow: 0 0 0 3px rgba(255, 178, 94, .3); vertical-align: .05em; }
/* =====================================================================
   Scroll motion. Only runs when html has .motion (added by JS, skipped
   for people who ask for reduced motion), so nothing hides without it.
   ===================================================================== */
.motion .reveal { transition: opacity .7s ease var(--rd, 0ms), transform .9s cubic-bezier(.22, .61, .36, 1) var(--rd, 0ms); }
.motion .reveal:not(.is-in) { opacity: 0; transform: translateY(34px); }

.intro-line { display: block; }
.motion .intro-line { transition: opacity .6s ease, transform .75s cubic-bezier(.22, .61, .36, 1); }
.motion .intro-line:not(.is-in) { opacity: 0; transform: translateY(.55em); }

/* Featured work grows into place */
#cards .wcard { transform: scale(var(--cs, 1)); opacity: var(--co, 1); transform-origin: 50% 20%; transition: none; }

/* The footer headline rises in with the clouds */
.foot-inner > .eyebrow, .foot-h { transform: translateY(calc((1 - var(--fp, 1)) * 60px)); opacity: calc(.2 + .8 * var(--fp, 1)); }

/* How it works: a fanned stack of three cards that deals out while pinned */
@media (min-width: 901px) and (min-height: 620px) {
  .motion .how { height: 210vh; padding: 0; }
  .motion .how > .wrap { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 70px; padding-bottom: 40px; }
  .motion .how .sec-h { margin-bottom: 44px; }
  .motion .how .seasons { position: relative; display: block; height: 360px; }
  .motion .how .seasons article {
    position: absolute; left: 50%; top: 0; width: calc((100% - 48px) / 3); min-height: 340px;
    transform: translateX(calc(-50% + var(--pos) * var(--deal, 380px) * var(--spread, 0))) rotate(calc((1 - var(--spread, 0)) * var(--pos) * 6deg));
    box-shadow: 0 24px 48px -28px rgba(42, 27, 46, .4); will-change: transform;
  }
  .motion .how .seasons article:nth-child(1) { --pos: -1; z-index: 1; }
  .motion .how .seasons article:nth-child(2) { --pos: 0; z-index: 3; }
  .motion .how .seasons article:nth-child(3) { --pos: 1; z-index: 2; }
}
/* =====================================================================
   Formal mode: same content, no garden.
   ===================================================================== */
:root[data-mode="formal"] {
  --sky-1: #F6F6F4; --sky-2: #F6F6F4; --sky-3: #F6F6F4; --meadow: #F6F6F4; --paper: #FFFFFF;
  --ink: #15171C; --ink-2: #5A5F6A; --line: rgba(21, 23, 28, .12);
  --poppy: #2450E0; --tulip: #2450E0; --corn: #2450E0; --yolk: #2450E0; --leaf: #2450E0;
  --serif: "Instrument Sans", system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root[data-mode="formal"]:not([data-theme="light"]) {
    --sky-1: #111317; --sky-2: #111317; --sky-3: #111317; --meadow: #111317; --paper: #1A1D23;
    --ink: #EDEEF1; --ink-2: #A2A7B2; --line: rgba(237, 238, 241, .12);
    --poppy: #7090FF; --tulip: #7090FF; --corn: #7090FF; --yolk: #7090FF; --leaf: #7090FF;
  }
}
[data-mode="formal"] :is(.field, .stereo, .plane, .plane-layer, .sun, .sky-clouds, .stars, .stage-art, .petal, .brand span, .photo-note span, .svc-dot) { display: none !important; }

[data-mode="formal"] .hero-wrap { height: auto; }
[data-mode="formal"] .hero { position: relative; height: auto; min-height: 0; border-bottom: 1px solid var(--line); }
[data-mode="formal"] .hero-inner { transform: none !important; opacity: 1 !important; height: auto; padding: 180px 5vw 120px; }
[data-mode="formal"] .h-second { margin-top: 0; }
[data-mode="formal"] :is(h1, .sec-h, .page-h, .p-title, .foot-h, .stats dt) { font-weight: 600; letter-spacing: -.035em; }
[data-mode="formal"] :is(.intro-copy, .intro-kicker, .about-lede, .p-sum, .svc-kicker) { font-weight: 500; letter-spacing: -.015em; }
[data-mode="formal"] :is(.seasons h3, .svc-grid h3, .wcard-cap h3, .cat-name, .mock-body h4, .more-h) { font-weight: 600; letter-spacing: -.02em; }
[data-mode="formal"] :is(em, .word) { font-style: normal; color: var(--poppy); }
[data-mode="formal"] .svc-kicker { font-style: normal; }
[data-mode="formal"] .stats dt { color: var(--ink) !important; }
[data-mode="formal"] :is(.cat-dot, .chip i, .tag i) { background: var(--ink-2) !important; }

[data-mode="formal"] .wcard-art, [data-mode="formal"] .art-wrap { background: color-mix(in srgb, var(--ink) 6%, var(--paper)) !important; }
[data-mode="formal"] :is(.wcard, .card, .svc-grid article, .cat-tile):hover { transform: translateY(-3px); }
[data-mode="formal"] :is(.wcard-art .frame, .frame-tall, .mock) { box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .3); border-color: rgba(0, 0, 0, .18); }
[data-mode="formal"] .about-photo img { border: 0; border-radius: 20px; box-shadow: 0 26px 50px -26px rgba(0, 0, 0, .45); }
[data-mode="formal"] .photo-note { transform: none; font: 600 14px var(--sans); border-color: var(--line); box-shadow: 0 8px 20px -10px rgba(0, 0, 0, .3); }
[data-mode="formal"] body { background: var(--meadow); }
[data-mode="formal"] .footer { background: none; }
[data-mode="formal"] .foot-inner { background: #15171C; border-radius: 24px 24px 0 0; }
[data-mode="formal"] .foot-cta:hover { transform: none; }
[data-mode="formal"] .page-hero { padding: 160px 0 64px; border-bottom: 1px solid var(--line); }
[data-mode="formal"] .filters-bar { margin-top: 0; padding-top: 74px; }
[data-mode="formal"] .footer { padding-top: 60px; }
@media (max-width: 860px) {
  [data-mode="formal"] .hero-inner { padding: 120px 20px 72px; }
  .mode button { padding: 6px 9px; font-size: 12px; }
  .header { gap: 6px; }
  .brand { font-size: 17px; padding: 9px 12px; }
  .nav .nav-cta { white-space: nowrap; padding: 7px 12px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-wrap { height: auto; }
  .hero { position: relative; }
  .hero-inner, .field { transform: none !important; opacity: 1 !important; }
  .intro-copy .w { opacity: 1; }
}
