/* ==========================================================================
   PAMELA — visual system (dark)
   Contrast (WCAG, on --bg #121116): text #F2EEF3 ≈ 17:1 · ink-2 #B3AEBA ≈ 8.9:1
   · rose #F7C6DC ≈ 12.9:1 · silver #C3C5CC ≈ 11:1 · on light case surface
   #F4F3F6: graphite ≈ 16:1, ink #55535E ≈ 7.2:1 · button #121116 on hot
   #FF5AA5 ≈ 7.2:1
   ========================================================================== */
/* Self-hosted fonts (SIL Open Font License), latin subset */
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 400 900; font-stretch: 62% 125%;
  font-display: swap; src: url("../fonts/archivo-latin-var.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}

:root {
  --bg: #121116;
  --bg-2: #1B1A20;
  --line: rgb(195 197 204 / .28);
  --text: #F2EEF3;
  --ink-2: #B3AEBA;
  --rose: #F7C6DC;
  --hot: #FF5AA5;
  --hot-2: #FF7AB6;
  --silver: #C3C5CC;
  --ice: #F4F3F6;
  --blush: #F5D5E2;
  --graphite: #1C1B21;
  --ink-dark: #55535E;

  --chrome: linear-gradient(180deg, #FDFDFE 0%, #DADCE1 42%, #A9ACB4 52%, #E4E5E9 100%);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(16px, 3.2vw, 48px);
  --header: 56px;
  --radius: 3px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px); /* anchors + focus never land under the sticky bar */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, p, figure { margin: 0; }
a { color: inherit; }
img, video, svg { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--hot); outline-offset: 3px; border-radius: 2px; }

[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: var(--gutter); top: -100px; z-index: 20;
  background: var(--rose); color: var(--bg); padding: .6rem 1rem;
}
.skip-link:focus { top: 8px; }

/* ---------- Small type ---------- */
.label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.label--light { color: var(--silver); }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2em .55em;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
}
.tag--pink { color: var(--rose); border-color: rgb(247 198 220 / .5); }

.spark {
  display: inline-block; width: .9em; height: .9em; margin-right: .5em;
  vertical-align: -.1em;
  background: var(--hot);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

/* ---------- Buttons ---------- */
.btn {
  --lift: 4px;
  --shadow: #000;
  display: inline-flex; align-items: center; gap: .6em;
  min-height: 48px;
  padding: .8em 1.4em;
  font: 650 .9375rem/1 var(--font-display);
  font-stretch: 110%;
  text-decoration: none;
  border: 1.5px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: var(--hot); color: var(--bg);
  box-shadow: inset 0 1.5px 0 rgb(255 255 255 / .45), 0 var(--lift) 0 var(--silver);
  --shadow: var(--silver);
}
.btn--primary:hover { background: var(--hot-2); }
.btn--chrome {
  background: var(--chrome); color: var(--graphite);
  box-shadow: inset 0 1.5px 0 #fff, 0 var(--lift) 0 var(--hot);
  --shadow: var(--hot);
}
.btn { position: relative; overflow: hidden; }
.btn::after {                        /* chrome glint, only on hover/focus */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / .45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateX(120%); }
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: inset 0 1.5px 0 rgb(255 255 255 / .5), 0 calc(var(--lift) + 1px) 0 var(--shadow); }
.btn:active { transform: translateY(var(--lift)); box-shadow: inset 0 1.5px 0 rgb(255 255 255 / .35), 0 0 0 var(--shadow); }
.btn--sm { min-height: 44px; padding: .7em 1.1em; font-size: .875rem; --lift: 3px; border-color: var(--graphite); }
.btn--sm.btn--primary { --shadow: var(--graphite); box-shadow: inset 0 1.5px 0 rgb(255 255 255 / .45), 0 var(--lift) 0 var(--graphite); }
.btn__icon { display: inline-block; font-size: 1.2em; line-height: 1; transition: transform .3s var(--ease); }
[aria-expanded="true"] .btn__icon { transform: rotate(45deg); }

/* ---------- Header (sticky, solid so nothing reads through it) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--gutter);
  height: var(--header);
}
.nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
}
.nav__links { display: flex; gap: clamp(16px, 3vw, 40px); }
.nav__link { position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 10px; height: 1.5px;
  background: var(--hot); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero { padding: clamp(10px, 1.4vw, 20px) var(--gutter) clamp(56px, 7vw, 104px); }

/* Masthead: wordmark + descriptor on one line on wide screens. */
.hero__masthead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px 32px; flex-wrap: wrap;
}
.hero__wordmark {
  font-weight: 900;
  font-stretch: 125%;
  font-variation-settings: "wdth" 125;
  font-size: 11.6vw;                 /* ≈65% of the previous 17.6vw */
  line-height: .74;
  letter-spacing: -.035em;
  padding-top: .1em;
  color: var(--rose);
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 1px 0 #fff4f9, 0 6px 0 rgb(0 0 0 / .45), 0 18px 40px rgb(255 90 165 / .18);
}
.hero__descriptor {
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: clamp(.875rem, 1.45vw, 1.35rem);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  padding-bottom: .15em;
}

/* Stage: text left, featured window right (desktop); media first on mobile. */
.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas: "text media";
  column-gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(20px, 2.4vw, 36px);
}
.hero__text  { grid-area: text; display: grid; gap: 1.25rem; justify-items: start; }
.feature     { grid-area: media; position: relative; min-width: 0; }

/* Retro window around the featured media. Never crops: contain inside --ratio. */
.feature .window-bar { border-radius: var(--radius) var(--radius) 0 0; border: 1.5px solid var(--silver); border-bottom: 0; }
.feature__screen {
  aspect-ratio: var(--ratio, 16 / 9);
  background: #000;
  border: 1.5px solid var(--silver);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 40px 70px -30px #000, 0 20px 60px -30px rgb(255 90 165 / .35);
  overflow: hidden;
}
.feature__media { width: 100%; height: 100%; object-fit: contain; }

/* The tag rides on the window's lower edge — a layer, not a caption strip. */
.feature__caption {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0 14px;
  margin-top: -19px;
}
.feature__tag {
  display: inline-flex; align-items: center;
  min-height: 38px; padding: 0 14px;
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--graphite);
  background: var(--chrome);
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgb(0 0 0 / .15), 0 8px 18px -6px rgb(0 0 0 / .7);
}
.feature__link {
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  min-height: 44px; display: inline-flex; align-items: center;
  color: var(--silver); text-underline-offset: 4px;
  align-self: flex-end;
}
.feature__link:hover { color: var(--rose); }

.hero__title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.hero__desc { color: var(--ink-2); max-width: 44ch; }

/* Entrance: wordmark → descriptor → media. Content is fully visible without it. */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
.hero__wordmark   { animation: rise .7s var(--ease) both; }
.hero__descriptor { animation: rise .6s var(--ease) .18s both; }
.feature          { animation: rise .8s var(--ease) .3s both; }
.hero__text       { animation: rise .6s var(--ease) .45s both; }

/* ---------- Retro window chrome ---------- */
.window-bar {
  display: flex; align-items: center; gap: .75rem;
  min-height: 36px; padding: 0 .75rem;
  background: var(--chrome);
  color: var(--graphite);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: inset 0 1px 0 #fff, inset 0 -1px 0 rgb(0 0 0 / .25), inset 1px 0 0 rgb(255 255 255 / .7);
}
.window-bar__title {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.window-bar__lines {
  flex: 1; height: 9px;
  background: repeating-linear-gradient(180deg, #6E717A 0 1px, transparent 1px 3px);
  opacity: .6;
}

/* ---------- Work ---------- */
.work {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 88px) var(--gutter) clamp(64px, 9vw, 128px);
}
.work__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.work__title {
  font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .85; letter-spacing: -.035em;
  color: var(--rose);
}

/* ---------- Retro desktop (Work archive + selector answers) ----------
   ~70% calm (light surfaces, neutral stage, pieces untouched) / ~30% Y2K
   (pink desktop, pinstriped title bars, chrome buttons, pink folders). */
:root {
  --desk: #EEEFF3;
  --desk-ink: #1C1B21;
  --win: #FFFFFF;
  --stage: #F2EFF2;
  --edge: #1C1B21;
}
.desktop {
  --dpad: clamp(16px, 2.4vw, 32px);
  display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 24px;
  padding: var(--dpad);
  background:
    radial-gradient(circle at 1px 1px, rgb(28 27 33 / .07) 1px, transparent 1.4px) 0 0 / 18px 18px,
    linear-gradient(170deg, #F7F7F9 0%, #ECEDF1 55%, #E1E3E8 100%);
  border-radius: 10px;
  padding-top: 0;
  box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .6), 0 0 0 6px var(--bg), 0 0 0 7px rgb(195 197 204 / .25), 0 50px 90px -40px #000;
  color: var(--desk-ink);
}

.desktop__menubar {
  grid-column: 1 / -1;
  display: flex; gap: 22px; align-items: center;
  margin: 0 calc(var(--dpad) * -1) 4px;
  padding: 6px var(--dpad);
  font: 600 .75rem/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--desk-ink);
  background: rgb(255 255 255 / .72);
  border-bottom: 1px solid rgb(28 27 33 / .12);
  border-radius: 10px 10px 0 0;
}

/* Pink folders with labels */
.desktop__folders { display: flex; flex-direction: column; gap: 18px; }
.folder-icon {
  display: grid; justify-items: center; gap: 6px; padding: 8px 4px; min-height: 44px;
  background: none; border: 0; border-radius: 6px; color: var(--desk-ink); cursor: pointer; text-align: center;
}
.folder-icon__art {
  position: relative; width: 64px; height: 48px; border-radius: 3px 8px 6px 6px;
  background: linear-gradient(180deg, #FFD3E6 0%, #F7A8C9 100%);
  box-shadow: inset 0 1.5px 0 #fff, inset 0 -3px 0 rgb(158 15 80 / .18), 0 4px 0 rgb(28 27 33 / .18);
  transition: transform .2s var(--ease);
}
.folder-icon__art::before { content: ""; position: absolute; left: 0; top: -7px; width: 26px; height: 9px; border-radius: 4px 6px 0 0; background: #F9B9D4; }
.folder-icon__art::after {            /* ✦ spark, same glyph as the hero */
  content: ""; position: absolute; left: 50%; top: 54%; width: 22px; height: 22px; transform: translate(-50%, -50%);
  background: #fff;
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  filter: drop-shadow(0 1px 0 rgb(158 15 80 / .3));
}
.folder-icon__name { font: 800 .75rem/1.2 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: #8F1F57; padding: 2px 6px; border-radius: 2px; }
.folder-icon__meta { font-family: var(--font-mono); font-size: .625rem; letter-spacing: .06em; text-transform: uppercase; color: #55535E; }
.folder-icon:hover .folder-icon__art { transform: translateY(-3px); }
.folder-icon[aria-pressed="true"] .folder-icon__name { background: #8F1F57; color: #fff; }
.folder-icon[aria-pressed="true"] .folder-icon__art { background: linear-gradient(180deg, #FFB3D3 0%, var(--hot) 100%); }

/* Old-Mac style window chrome */
.archive, .pwin, .notepad {
  background: var(--win);
  border: 1px solid #8C8A92;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgb(0 0 0 / .08), 0 18px 34px -18px rgb(60 20 50 / .45);
}
.archive { position: relative; min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); z-index: 0; }
.archive::before {                    /* a second window peeking behind — frame only */
  content: ""; position: absolute; z-index: -1; inset: -14px -14px auto auto; width: 42%; height: 120px;
  background: linear-gradient(180deg, #FFFFFF 0 24px, #FBEFF5 24px);
  border: 1px solid #8C8A92; border-radius: 6px;
  box-shadow: 0 14px 28px -16px rgb(60 20 50 / .4);
}
.anchor { position: absolute; top: 0; }
.pwin__bar {
  display: flex; align-items: center; gap: 10px;
  min-height: 26px; padding: 3px 8px;
  border-bottom: 1px solid #A9A7AE;
  border-radius: 6px 6px 0 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 2px, rgb(28 27 33 / .16) 2px 3px) center / 100% 11px no-repeat,
    linear-gradient(180deg, #FFFFFF, #E6E4E9);
  color: var(--desk-ink);
}
.pwin__dots { flex: none; display: flex; gap: 5px; }
.pwin__dots i { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgb(0 0 0 / .25); box-shadow: inset 0 1px 1px rgb(255 255 255 / .8); }
.pwin__dots i:nth-child(1) { background: #F28DB8; }
.pwin__dots i:nth-child(2) { background: #F7C6DC; }
.pwin__dots i:nth-child(3) { background: #C9CBD1; }
.pwin__title {
  margin: 0 auto; padding: 0 10px; background: linear-gradient(180deg, #FFFFFF, #EDEBEF); border-radius: 2px;
  font: 600 .75rem/1.3 var(--font-mono); letter-spacing: .04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80%;
}
.archive__bar { min-height: 30px; }
.archive__title { font-size: .8125rem; text-transform: uppercase; }
.archive__count { flex: none; padding: 0 6px; background: transparent; font-family: var(--font-mono); font-size: .6875rem; color: #55535E; }

.archive__tabs {
  display: flex; flex-wrap: wrap; gap: 4px; padding: 6px 8px;
  border-bottom: 1px solid #C9C7CD; background: linear-gradient(180deg, #F7F6F8, #ECEAEE);
}
.tab {
  display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 12px;
  font: 600 .8125rem/1 var(--font-display); color: var(--desk-ink);
  background: linear-gradient(180deg, #FFFFFF, #E9E7EC); border: 1px solid #B9B7BE; border-radius: 999px; cursor: pointer;
  box-shadow: inset 0 1px 0 #fff;
}
.tab__n { font-family: var(--font-mono); font-size: .625rem; color: #55535E; }
.tab:hover { background: rgb(247 198 220 / .45); }
.tab[aria-pressed="true"] { background: linear-gradient(180deg, #FFD9EA, var(--rose)); border-color: #C2135F; color: #5A0D33; }
.tab[aria-pressed="true"] .tab__n { color: #8F1F57; }

/* Desk: thumbnails · stage · notepad */
.desk {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 260px;
  grid-template-areas: "thumbs stage pad";
  gap: 14px; padding: 14px;
  background: #FFFFFF;
  border-radius: 0 0 6px 6px;
  min-width: 0;
}
.desk__thumbs {
  grid-area: thumbs; min-width: 0; display: flex; flex-direction: column; gap: 8px;
  max-height: clamp(360px, 64vh, 620px); overflow-y: auto; padding: 6px;
  scrollbar-width: thin;
}
.thumb {
  position: relative; flex: none; width: 80px; height: 80px; padding: 4px; overflow: visible;
  border: 0; border-radius: 6px; background: #fff; cursor: pointer;
  box-shadow: 0 1px 0 rgb(0 0 0 / .06), 0 6px 14px -8px rgb(60 20 50 / .45);
  transition: transform .15s var(--ease), box-shadow .15s;
}
.thumb img { border-radius: 3px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 18px -8px rgb(60 20 50 / .5); }
.thumb[aria-pressed="true"]::after {  /* thin selection frame (accent) */
  content: ""; position: absolute; inset: -4px; border: 1.5px solid #5FD39A; border-radius: 4px; pointer-events: none;
}
.thumb:focus-visible { outline: 3px solid var(--hot); outline-offset: 5px; }
.thumb__badge { position: absolute; right: 7px; bottom: 7px; padding: 1px 4px; font-family: var(--font-mono); font-size: .625rem; color: #fff; background: rgb(0 0 0 / .72); border-radius: 2px; }

.desk__stage { align-self: start;
  grid-area: stage; display: flex; align-items: center; justify-content: center;
  min-height: clamp(320px, 64vh, 620px); min-width: 0;
  padding: 16px; background: var(--stage); border: 1px solid #DDDADF; border-radius: 4px;
}
.desk__stage > .pwin { max-width: 100%; }
.pwin { display: flex; flex-direction: column; min-width: 0; max-height: 100%; }
.pwin__media {                        /* the work itself: complete, untouched */
  display: block; max-width: 100%; max-height: clamp(260px, 56vh, 540px);
  width: auto; height: auto; object-fit: contain; background: #fff;
}
.pwin--video .pwin__media { background: #000; cursor: pointer; }
.pair { display: flex; gap: 12px; align-items: flex-start; justify-content: center; max-width: 100%; }
.pair .pwin { flex: 1 1 0; }
.pair .pwin__media { max-height: clamp(220px, 50vh, 480px); margin: 0 auto; }

/* Retro player: rounded chrome transport */
.pwin--video { border-radius: 14px; overflow: hidden; background: linear-gradient(180deg, #F3F1F6, #D9D6E0); }
.pwin--video .pwin__bar { border-radius: 14px 14px 0 0; }
.pwin--video .pwin__media { margin: 8px 10px 0; width: calc(100% - 20px); border-radius: 6px; box-shadow: inset 0 0 0 1px rgb(0 0 0 / .2); }
.player {
  display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto auto; align-items: center; gap: 8px;
  margin: 10px; padding: 6px 12px 6px 6px;
  background: linear-gradient(180deg, #FFFFFF, #E4E1EA 55%, #D2CEDA);
  border: 1px solid #A9A5B2; border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff, 0 4px 10px -6px rgb(60 20 50 / .5);
}
.pbtn {
  display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border-radius: 50%;
  border: 1px solid #9C98A6; background: radial-gradient(circle at 50% 30%, #FFFFFF, #DCD8E3 60%, #C3BFCC);
  box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgb(0 0 0 / .18); cursor: pointer;
  transition: transform .1s;
}
.pbtn:active { transform: scale(.94); }
.pbtn--play { width: 44px; height: 44px; background: radial-gradient(circle at 50% 30%, #FFE3EF, #F7A8C9 60%, #E07BA8); border-color: #B9477A; }
.pbtn__icon { display: block; width: 12px; height: 12px; background: var(--desk-ink); }
.pbtn--play .pbtn__icon { width: 14px; height: 16px; margin-left: 3px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.pbtn--play.is-playing .pbtn__icon { margin-left: 0; clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%, 0 0, 65% 0, 100% 0, 100% 100%, 65% 100%, 65% 0); }
.pbtn--stop .pbtn__icon { width: 10px; height: 10px; border-radius: 1px; }
.pbtn--sound .pbtn__icon { width: 14px; height: 12px; clip-path: polygon(0 30%, 30% 30%, 65% 0, 65% 100%, 30% 70%, 0 70%); }
.pbtn--sound.is-muted { opacity: .55; }
.player__range { width: 100%; min-width: 60px; accent-color: #E7539A; }
.player__time { font-family: var(--font-mono); font-size: .6875rem; color: #3A3842; white-space: nowrap; }

/* Notepad */
.notepad { grid-area: pad; display: flex; flex-direction: column; min-width: 0; align-self: start; border: 2px solid #E7A1C3; }
.notepad__bar { background: linear-gradient(180deg, #FFE6F1, #F9CFE2); border-bottom-color: #E7A1C3; }
.notepad__heart { color: #C2135F; font-size: .875rem; }
.notepad__body {
  display: grid; gap: 10px; padding: 12px 14px 4px;
  background: repeating-linear-gradient(180deg, #FFFDF8 0 23px, rgb(194 19 95 / .14) 23px 24px);
  color: var(--desk-ink);
}
.notepad__title { font-size: 1.125rem; font-weight: 800; line-height: 1.15; }
.notepad__sub { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .02em; color: #55535E; line-height: 1.5; }
.notepad__sec { display: grid; gap: 2px; }
.notepad__h { font-family: var(--font-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: #9E0F50; }
.notepad__p { font-size: .875rem; line-height: 1.5; }
.notepad__pending { font-family: var(--font-mono); font-size: .8125rem; color: #9E0F50; }
.notepad__nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; border-top: 1px dashed rgb(28 27 33 / .25); background: #fff; }
.notepad__pos { font-family: var(--font-mono); font-size: .75rem; color: #55535E; }
.desk__actions { display: grid; gap: 10px; padding: 12px; border-top: 1.5px solid var(--edge); background: #fff; }
.desk__actions .answer__actions { display: grid; gap: 10px; margin: 0; }
.desk__actions .btn { width: 100%; justify-content: center; }
.desk__related { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; color: #8F1F57; text-underline-offset: 3px; min-height: 32px; display: inline-flex; align-items: center; }
.desk__related:hover { color: var(--hot); }
.desk__actions .pricing { animation: none; }
.desk__actions .price { background: #FBF7F9; border-color: rgb(28 27 33 / .2); color: var(--desk-ink); }
.desk__actions .price__value { color: #9E0F50; }
.desk__actions .price__context, .desk__actions .price__note { color: #55535E; }

@media (max-width: 1100px) {
  .desktop { grid-template-columns: minmax(0, 1fr); }
  .desktop__folders { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 4px; }
  .folder-icon__name { font-size: .6875rem; overflow-wrap: normal; word-break: normal; }
  .desk { grid-template-columns: 92px minmax(0, 1fr); grid-template-areas: "thumbs stage" "pad pad"; }
  .notepad__body { max-height: none; }
}
@media (max-width: 760px) {
  .desktop { --dpad: 12px; padding-top: 0; gap: 14px; border-radius: 8px; }
  .folder-icon__art { width: 48px; height: 36px; }
  .folder-icon__meta { display: none; }
  .desk { grid-template-columns: minmax(0, 1fr); grid-template-areas: "stage" "thumbs" "pad"; padding: 10px; gap: 10px; }
  .desk__thumbs { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding: 6px; }
  .thumb { width: 68px; height: 68px; scroll-snap-align: start; }
  .desk__stage { min-height: 0; padding: 8px; }
  .pwin__media { max-height: 62vh; }
  .pair { flex-direction: column; align-items: stretch; }
  .player { grid-template-columns: auto auto minmax(0, 1fr) auto; }
  .player__time { display: none; }
  .archive::before { display: none; }
  .tab { min-height: 44px; padding: 0 10px; }
}

/* Small bevelled chrome buttons (video controls, notepad) */
.vbtn {
  min-height: 28px; padding: 0 10px;
  font: 500 .6875rem/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--graphite); background: var(--chrome);
  border: 1px solid #6E717A; border-radius: 3px;
  box-shadow: inset 0 1px 0 #fff, 0 2px 0 #6E717A;
  cursor: pointer; transition: transform .1s, box-shadow .1s;
}
.vbtn:hover { filter: brightness(1.05); }
.vbtn:active { transform: translateY(2px); box-shadow: inset 0 1px 0 #fff, 0 0 0 #6E717A; }
.vbtn[aria-pressed="true"] { background: var(--rose); }
.vbtn:disabled { opacity: .45; cursor: default; transform: none; }
.vbtn--lg { min-height: 40px; padding: 0 12px; }
.feature__controls { display: flex; gap: 6px; }

/* ---------- Footer ---------- */
.site-footer { padding: 24px var(--gutter); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.site-footer__credit { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-2); }

/* ---------- Tablet / mobile composition ---------- */
@media (max-width: 860px) {
  .hero__stage { grid-template-columns: minmax(0, 1fr); grid-template-areas: "media" "text"; row-gap: 28px; }
}
@media (max-width: 760px) {
  body { font-size: 1rem; }
  .hero__masthead { display: block; }
  .hero__wordmark { font-size: 16.6vw; }
  .hero__descriptor { margin-top: 12px; font-size: .8125rem; }
  .hero__title { font-size: clamp(1.75rem, 8.2vw, 2.4rem); }

  .work__head { flex-direction: column; gap: .5rem; }
}

/* ---------- Need selector: archive folders ---------- */
.needs { margin-top: clamp(48px, 6vw, 88px); }
.needs__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 4px 24px; margin-bottom: clamp(22px, 2.6vw, 36px);
}
.needs__title {
  font-weight: 800; font-stretch: 112%; font-variation-settings: "wdth" 112;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1; letter-spacing: -.025em;
  color: var(--rose);
}
.needs__all {
  display: inline-block; padding: 12px 0; line-height: 1.5;
  font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .04em;
  color: var(--ink-2); text-decoration: none;
}
.needs__all span { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.needs__all:hover span { color: var(--rose); }

.needs__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  padding-top: 18px;                 /* room for the folder tabs */
}
.folder {
  --tab: var(--chrome);
  position: relative;
  display: grid; gap: 12px;
  padding: 12px 12px 14px;
  text-align: left;
  color: var(--graphite);
  background: var(--chrome);
  border: 1px solid #fff;
  border-radius: 2px 8px 8px 8px;
  box-shadow:
    inset 0 1.5px 0 #fff,
    inset 0 -3px 0 rgb(0 0 0 / .14),
    0 2px 0 #7A7D86,
    0 18px 30px -14px #000;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s;
  -webkit-tap-highlight-color: transparent;
}
.folder__tab {                       /* the folder's tab, riding on the top edge */
  position: absolute; left: -1px; top: -18px;
  height: 19px; padding: 0 14px 0 10px;
  display: flex; align-items: center;
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .08em;
  color: var(--graphite);
  background: var(--tab);
  border: 1px solid #fff; border-bottom: 0;
  border-radius: 6px 10px 0 0;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}
.folder__thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .35), 0 1px 0 #fff;
  transition: transform .25s var(--ease);
}
.folder__thumb img { width: 100%; height: 100%; object-fit: cover; }
.folder__thumb.is-phone { display: grid; place-items: center; background: linear-gradient(160deg, #F8E6EF, #E9E4EE); }
.phone { position: absolute; top: 4%; left: 50%; transform: translateX(-50%); height: 92%; aspect-ratio: 468 / 900; padding: 4px; border-radius: 14px; background: #1C1B21; box-shadow: 0 6px 14px -6px rgb(0 0 0 / .5); }
.phone img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; background: #fff; }
.folder__thumb.is-provisional {
  display: flex; align-items: flex-end; padding: 8px;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgb(28 27 33 / .07) 12px 13px),
    var(--blush);
}
.folder__prov {
  font-family: var(--font-mono); font-size: .625rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .2em .5em; background: var(--ice); color: var(--graphite);
  border: 1px solid var(--graphite); border-radius: 2px;
}
.folder__label {
  font: 700 1.0625rem/1.15 var(--font-display);
  font-stretch: 108%;
  min-height: 2.3em;
}
.folder:hover { transform: translateY(-4px); filter: brightness(1.04); box-shadow: inset 0 1.5px 0 #fff, inset 0 -3px 0 rgb(0 0 0 / .14), 0 2px 0 #7A7D86, 0 26px 40px -14px #000, 0 0 0 1px rgb(247 198 220 / .6); }
.folder:hover .folder__thumb { transform: translateY(-3px); }
.folder:active { transform: translateY(1px); }
.folder[aria-pressed="true"] {
  --tab: linear-gradient(180deg, #FFE3EF, var(--rose));
  background: linear-gradient(180deg, #FFE3EF 0%, var(--rose) 46%, #EFA9C9 54%, #FBD3E5 100%);
  box-shadow:
    inset 0 1.5px 0 #fff,
    inset 0 -3px 0 rgb(0 0 0 / .1),
    0 0 0 2px var(--hot),
    0 22px 44px -12px rgb(255 90 165 / .55);
  transform: translateY(-6px);
}
.folder[aria-pressed="true"] .folder__tab::after { content: " · open"; color: #9E0F50; }

/* Answer: a retro window opening in the flow, directly under the folders. */
.answer-window {
  margin-top: 26px;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px rgb(195 197 204 / .25), 0 40px 70px -30px #000;
  animation: open-window .35s var(--ease) both;
}
@keyframes open-window { from { opacity: 0; transform: translateY(-8px) scaleY(.98); transform-origin: top; } }
.answer-window .window-bar { border-radius: 1px 1px 0 0; }
.answer {
  display: grid; gap: clamp(16px, 2vw, 24px);
  padding: clamp(14px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 1px 1px, rgb(28 27 33 / .10) 1px, transparent 1.4px) 0 0 / 18px 18px,
    var(--desk);
  color: var(--desk-ink);
  transition: opacity .14s var(--ease), transform .14s var(--ease);
}
.answer.is-leaving { opacity: 0; transform: translateY(6px); }

.answer__body { display: grid; gap: 1rem; justify-items: start; max-width: 62ch; }
.answer__title {
  font-weight: 800; font-stretch: 112%; font-variation-settings: "wdth" 112;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.02; letter-spacing: -.02em;
}
.answer__text { color: #3A3842; }
.answer .desk { border: 1.5px solid var(--edge); border-radius: 4px; box-shadow: 3px 3px 0 rgb(28 27 33 / .85); }
.proof { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem .8rem; }
.proof__name { font-weight: 800; font-stretch: 112%; font-size: 1.25rem; }
.proof__detail { font-family: var(--font-mono); font-size: .75rem; color: var(--silver); letter-spacing: .04em; }
.answer__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: .25rem; }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--silver);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .15), 0 var(--lift) 0 rgb(195 197 204 / .35);
  --shadow: rgb(195 197 204 / .35);
}
.btn--ghost:hover { background: rgb(255 255 255 / .06); }

.pricing { list-style: none; margin: 0; padding: 0; width: 100%; display: grid; gap: 8px; animation: rise .25s var(--ease) both; }
.price {
  display: grid; gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgb(0 0 0 / .25);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .06);
}
.price--featured { border-color: var(--rose); box-shadow: inset 3px 0 0 var(--hot); }
.price__context { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.price__line { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .25rem 1rem; }
.price__name { font-weight: 700; }
.price__value { font-family: var(--font-mono); font-size: .875rem; color: var(--rose); }
.price__note { font-size: .875rem; color: var(--ink-2); }

@media (max-width: 960px) {
  .needs__options { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; }
}
@media (max-width: 420px) {
  .needs__options { gap: 26px 10px; }
  .folder { padding: 9px 9px 11px; gap: 9px; }
  .folder__label { font-size: .9375rem; }
  .folder[aria-pressed="true"] .folder__tab::after { content: ""; }
}

/* ---------- Services ---------- */
.services { padding: clamp(56px, 8vw, 112px) var(--gutter); border-top: 1px solid var(--line); }
.services__head { display: grid; gap: .6rem; max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.services__title {
  font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(3rem, 8vw, 7.5rem); line-height: .85; letter-spacing: -.035em; color: var(--rose);
}
.services__sub { font-family: var(--font-mono); font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); }
.services__intro { color: var(--ink-2); font-size: 1.0625rem; }

.packs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.pack {
  position: relative; background: var(--win); color: var(--desk-ink);
  border: 1px solid #8C8A92; border-radius: 6px;
  box-shadow: inset 0 1px 0 #fff, 0 24px 44px -24px #000;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.pack:hover { transform: translateY(-3px); box-shadow: inset 0 1px 0 #fff, 0 30px 54px -24px #000; }
.pack:target { outline: 3px solid var(--hot); outline-offset: 4px; }
.pack__media { position: relative; margin: 10px 10px 0; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; background: var(--stage); box-shadow: inset 0 0 0 1px rgb(0 0 0 / .08); }
/* Absolutely positioned so the file's intrinsic size never sizes the card (Safari/iOS). */
.pack__media img, .pack__media video { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 35%; display: block; }
.pack__body { display: grid; gap: .8rem; justify-items: start; padding: clamp(16px, 1.8vw, 22px); }
.pack__name { font-weight: 800; font-stretch: 112%; font-variation-settings: "wdth" 112; font-size: clamp(1.5rem, 1.9vw, 1.8rem); line-height: 1; letter-spacing: -.025em; }
.pack__price { font-weight: 800; font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1; letter-spacing: -.02em; color: #C2135F; margin-top: -.2rem; }
.pack__price span { font-size: .55em; font-weight: 600; color: #9E0F50; }
.pack__terms { font-family: var(--font-mono); font-size: .75rem; color: #55535E; margin-top: -.3rem; }
.pack__kicker { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .14em; color: #9E0F50; margin-bottom: -.4rem; }
.pack__fit { display: grid; gap: .35rem; }
.pack__fit-h { font-size: .8125rem; font-weight: 700; color: #3A3842; }
.pack__fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.pack__fit li { position: relative; padding-left: 1.2em; font-size: .8125rem; line-height: 1.4; color: #55535E; }
.pack__fit li::before { content: ""; position: absolute; left: 0; top: .38em; width: .65em; height: .65em; background: var(--hot);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); }
.pack__media .pack__img--stand { object-position: 50% 12%; }
.packs { align-items: stretch; }
.pack { display: flex; flex-direction: column; }
.pack__body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.pack__body .pack__cta { margin-top: auto; }
.pack__body .stickers { margin-bottom: .6rem; }
.stickers { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stickers li {
  padding: 4px 8px; border-radius: 999px;
  font: 500 .625rem/1.2 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; color: var(--graphite);
  background: var(--chrome); border: 1px solid #fff;
  box-shadow: inset 0 1px 0 #fff, 0 2px 0 #A9ACB4, 0 4px 8px -4px rgb(0 0 0 / .35);
}
.pack__cta { width: 100%; justify-content: center; margin-top: .2rem; }
.pack__more { width: 100%; border-top: 1px dashed rgb(28 27 33 / .2); padding-top: .6rem; }
.pack__more summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 40px; cursor: pointer; list-style: none;
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--graphite);
}
.pack__more summary::-webkit-details-marker { display: none; }
.pack__more summary::after { content: "+"; font-size: 1.1rem; color: #C2135F; transition: transform .2s var(--ease); }
.pack__more[open] summary::after { transform: rotate(45deg); }
.pack__more summary:focus-visible { outline: 3px solid var(--hot); outline-offset: 2px; }
.pack__list { list-style: none; margin: .4rem 0 .2rem; padding: 0; display: grid; gap: .45rem; }
.pack__list li { position: relative; padding-left: 1.3em; font-size: .875rem; line-height: 1.45; color: #3A3842; }
.pack__list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: .7em; height: .7em; background: var(--hot);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}
.pack__alt { font-size: .8125rem; color: #55535E; }
.pack__alt a { color: #9E0F50; text-underline-offset: 3px; }
.pack--featured { border: 2px solid var(--hot); box-shadow: 0 0 0 4px rgb(255 90 165 / .18), 0 30px 60px -24px rgb(255 90 165 / .35); }
.pack--featured .pwin__bar { background: repeating-linear-gradient(180deg, transparent 0 2px, rgb(158 15 80 / .18) 2px 3px) center / 100% 11px no-repeat, linear-gradient(180deg, #FFE6F1, #F9CFE2); }
.pack__flag {
  position: absolute; top: -13px; right: 14px; z-index: 1;
  padding: 3px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--graphite); background: var(--chrome); border: 1px solid #fff;
  box-shadow: inset 0 1px 0 #fff, 0 4px 10px -4px rgb(0 0 0 / .6);
}
.pack__flag span { color: #C2135F; }

.addons { margin-top: clamp(36px, 5vw, 56px); }
.addons__title { font-family: var(--font-mono); font-size: .8125rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); margin-bottom: 14px; }
.addons__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
.addon { padding: 18px 20px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-2); color: var(--ink-2); display: grid; gap: .5rem; }
.addon:target { outline: 3px solid var(--hot); outline-offset: 4px; }
.addon__name { color: var(--text); font-size: 1.125rem; font-weight: 800; font-stretch: 108%; line-height: 1.15; }
.addon__price { font-family: var(--font-mono); font-size: .75rem; color: var(--rose); margin-top: -.3rem; }
.addon p:last-child { font-size: .9375rem; line-height: 1.5; }
.services__note { margin-top: 28px; font-size: .75rem; color: var(--ink-2); max-width: 80ch; opacity: .85; }
.services__cta { margin-top: 28px; }

/* selector pricing links */
.price__name[href] { color: inherit; text-underline-offset: 3px; }
.price--all a { font-family: var(--font-mono); font-size: .75rem; color: #9E0F50; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .packs { grid-template-columns: minmax(0, 1fr); }
  .addons__grid { grid-template-columns: minmax(0, 1fr); }
}
.notepad__kicker { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: #9E0F50; margin-bottom: -6px; }

/* ---------- About: "Who you'll work with" (profile-page structure) ---------- */
.about { padding: clamp(56px, 8vw, 112px) var(--gutter); border-top: 1px solid var(--line); }
.about__title {
  font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(2.2rem, 6vw, 5.5rem); line-height: .9; letter-spacing: -.035em; color: var(--rose);
  margin-bottom: clamp(24px, 4vw, 44px);
}
.about__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(16px, 2vw, 24px); align-items: start; }
.about__col { display: grid; gap: clamp(16px, 2vw, 24px); min-width: 0; }
.abox {
  background: var(--win); color: var(--desk-ink);
  border: 1px solid #8C8A92; border-radius: 6px; overflow: hidden;
  box-shadow: inset 0 1px 0 #fff, 0 24px 44px -26px #000;
  padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px);
  display: grid; gap: .8rem; align-content: start;
}
.abox > p { font-size: .9375rem; line-height: 1.55; color: #3A3842; }
.abox__h {
  margin: 0 calc(clamp(16px, 2vw, 22px) * -1) .2rem; padding: 7px clamp(16px, 2vw, 22px);
  font: 600 .75rem/1.3 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: #5A0D33;
  background: linear-gradient(180deg, #FFE6F1, #F9CFE2); border-bottom: 1px solid #E7A1C3;
}
.abox--head { grid-template-columns: minmax(0, 1fr); padding-top: clamp(16px, 2vw, 22px); }
.abox__photo { padding: 6px; background: var(--chrome); border-radius: 4px; box-shadow: inset 0 1px 0 #fff, 0 10px 20px -12px rgb(0 0 0 / .5); }
.abox__photo img { display: block; width: 100%; height: auto; aspect-ratio: 833 / 900; object-fit: cover; border-radius: 2px; }
.abox__id { display: grid; gap: .6rem; }
.abox__name { font-weight: 800; font-stretch: 112%; font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1; letter-spacing: -.02em; }
.abox__quote { font-size: 1rem; line-height: 1.45; color: #3A3842; font-style: italic; }
.abox__online { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .8125rem; color: #1D6B45; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #2BC06F; box-shadow: 0 0 0 3px rgb(43 192 111 / .2); }
.abox__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.abox__places span { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: #9E0F50; }
.profile { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: .5rem 1rem; margin: 0; }
.profile dt { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: #9E0F50; padding-top: .15rem; }
.profile dd { margin: 0; font-size: .9375rem; line-height: 1.45; }
.abox__text { border-top: 1px dashed rgb(28 27 33 / .2); padding-top: .8rem; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.steps li { display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); gap: .8rem; align-items: start; }
.steps__n { font-weight: 900; font-stretch: 125%; font-size: 1.4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px #C2135F; }
.steps strong { font-size: 1rem; }
.steps p { font-size: .9rem; line-height: 1.5; color: #3A3842; }
.top8 { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.top8 li { display: grid; gap: 6px; justify-items: center; text-align: center; }
.top8__tile {
  width: 100%; max-width: 96px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 6px;
  font-weight: 900; font-stretch: 125%; font-size: clamp(1.4rem, 2.4vw, 2rem); color: #5A0D33;
  background: linear-gradient(160deg, #FFE6F1, #F7C6DC 55%, #EFE9F3);
  border: 1px solid #fff; box-shadow: inset 0 1px 0 #fff, 0 3px 0 #C9C5CF, 0 8px 16px -10px rgb(0 0 0 / .5);
}
.top8__name { font-size: .75rem; font-weight: 700; line-height: 1.2; color: var(--desk-ink); }
@media (min-width: 1100px) { .abox--head { grid-template-columns: 240px minmax(0, 1fr); align-items: center; } }
@media (max-width: 860px) { .about__grid { grid-template-columns: minmax(0, 1fr); } }
.notepad__link { font-family: var(--font-mono); font-size: .8125rem; color: #9E0F50; text-underline-offset: 3px; }

/* ---------- Contact ---------- */
.contact { padding: clamp(56px, 8vw, 112px) var(--gutter); }
.contact__window {
  max-width: 1120px; margin: 0 auto;
  background: var(--win); color: var(--desk-ink);
  border: 1px solid #8C8A92; border-radius: 6px;
  box-shadow: inset 0 1px 0 #fff, 0 40px 80px -40px #000;
}
.contact__body {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 72px);
  padding: clamp(24px, 5vw, 64px);
}
.contact__title {
  font-weight: 900; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(2rem, 5vw, 4.2rem); line-height: .92; letter-spacing: -.035em; color: var(--desk-ink);
}
.contact__lead { margin-top: 1rem; color: #3A3842; font-size: 1.0625rem; max-width: 34ch; }
.contact__direct { margin-top: clamp(24px, 4vw, 40px); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.contact__or { flex-basis: 100%; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: #55535E; }
.contact__address { flex-basis: 100%; font-family: var(--font-mono); font-size: .8125rem; color: #55535E; user-select: all; overflow-wrap: anywhere; }
.btn--contact { --lift: 3px; min-height: 48px; border-radius: 999px; border-color: #8C8A92; font-size: .9375rem; }
.btn--wa { background: var(--hot); color: var(--graphite); box-shadow: inset 0 1px 0 rgb(255 255 255 / .5), 0 var(--lift) 0 #8F1F57; --shadow: #8F1F57; }
.btn--mail { background: var(--chrome); color: var(--graphite); box-shadow: inset 0 1px 0 #fff, 0 var(--lift) 0 #8C8A92; --shadow: #8C8A92; }

.cform { display: grid; gap: 16px; }
.cform__hp { position: absolute; left: -9999px; }
.cfield { display: grid; gap: 6px; }
.cfield label { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--desk-ink); }
.cfield__req { text-transform: none; letter-spacing: 0; color: #55535E; }
.cfield input, .cfield select, .cfield textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: 400 1rem/1.4 var(--font-display); color: var(--desk-ink);
  background: #FBFAFC; border: 1px solid #A9A7AE; border-radius: 4px;
  box-shadow: inset 0 2px 3px rgb(0 0 0 / .08), 0 1px 0 #fff;
}
.cfield select { appearance: none; background: #FBFAFC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231C1B21'/%3E%3C/svg%3E") no-repeat right 14px center; padding-right: 36px; }
.cfield textarea { resize: vertical; min-height: 130px; }
.cfield input:focus-visible, .cfield select:focus-visible, .cfield textarea:focus-visible { outline: 3px solid var(--hot); outline-offset: 1px; }
.cfield [aria-invalid="true"] { border-color: #C2135F; }
.cfield__err { font-size: .8125rem; color: #9E0F50; }
.btn--send {
  justify-self: start; min-width: 200px; justify-content: center;
  background: var(--chrome); color: var(--graphite); border-color: #8C8A92;
  box-shadow: inset 0 1px 0 #fff, 0 var(--lift) 0 var(--hot); --shadow: var(--hot);
}
.btn--send:disabled { opacity: .6; cursor: progress; }
.cform__status:empty { display: none; }
.cform__status { padding: 10px 14px; border-radius: 4px; font-size: .9375rem; }
.cform__status.is-sending { background: #F3F2F5; color: #3A3842; }
.cform__status.is-sent { background: #FFE6F1; color: #5A0D33; font-weight: 700; }
.cform__status.is-error { background: #FFF1F5; color: #5A0D33; border: 1px solid #E7A1C3; }
.cform__status a { color: #9E0F50; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.addon__cta { justify-self: start; font-family: var(--font-mono); font-size: .75rem; color: var(--rose); text-underline-offset: 3px; min-height: 32px; display: inline-flex; align-items: center; }

@media (max-width: 860px) {
  .contact__body { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation: none !important; }
}

@media (max-width: 420px) {
  .nav__links { gap: 12px; }
  .nav a { font-size: .6875rem; letter-spacing: .06em; }
}

.leo { display: inline-block; vertical-align: -0.12em; color: #C2135F; }

.pack__extra { margin: .6rem 0 .2rem; padding: 10px 12px; border-radius: 4px; background: #FBF4F8; border: 1px solid #F2D3E2; display: grid; gap: .35rem; }
.pack__extra p { font-size: .8125rem; line-height: 1.45; color: #3A3842; }
.pack__extra-h { font-weight: 700; font-size: .875rem !important; color: #9E0F50 !important; margin: .2rem 0; }
.pack__small { font-size: .78rem; line-height: 1.45; color: #55535E; margin-top: .35rem; }
.packs:has(details[open]) { align-items: start; }

.answer__explore { font-family: var(--font-mono); font-size: .75rem; color: #9E0F50; text-underline-offset: 3px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; }
.plan-flag {
  position: absolute; top: -13px; left: 14px; z-index: 2; margin: 0;
  padding: 3px 10px; border-radius: 999px; font: 500 .6875rem/1.2 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: #C2135F; box-shadow: 0 4px 10px -4px rgb(0 0 0 / .6);
}
.is-alternative .plan-flag { color: var(--graphite); background: var(--chrome); }
.addon { position: relative; overflow: visible; }
.pack.is-recommended, .addon.is-recommended { outline: 3px solid var(--hot); outline-offset: 4px; }
.pack.is-alternative, .addon.is-alternative { outline: 2px dashed #C3C5CC; outline-offset: 4px; }

/* Guard rails: grid/flex children may shrink below their content's intrinsic width. */
.pack, .pack__body, .addon, .abox, .contact__body > *, .desk > *, .hero__stage > * { min-width: 0; }
.pack__cta { max-width: 100%; }
@media (max-width: 760px) {
  .pack__media { aspect-ratio: 4 / 3; }
}
