:root {
  --ink: #3b1848;
  --paper: #fde4d8;
  --accent: #f094a8;
  --rose: #e36d8a;
  --on-ink: #fff8f4;
  --rule: color-mix(in srgb, var(--ink) 22%, transparent);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --font-brand: var(--font-display);
  --brand-accent: var(--accent);
  --brand-fill: color-mix(in srgb, var(--accent) 40%, #fff);
  --brand-ink: var(--ink);
  --container: 76rem;
  --pad-inline: 0.75rem;
  --touch-min: 2.75rem;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
  background:
    radial-gradient(900px 520px at 8% -10%, color-mix(in srgb, var(--brand-accent) 45%, transparent), transparent 58%),
    radial-gradient(720px 480px at 100% 12%, color-mix(in srgb, var(--rose) 28%, transparent), transparent 62%),
    linear-gradient(180deg, #fff6ef 0%, var(--paper) 38%, #f8d4c6 100%);
}
a { color: var(--ink); }
a:hover { color: color-mix(in srgb, var(--ink) 70%, #000); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--ink);
  color: var(--on-ink);
  padding: 0.4rem 0.7rem;
}
.fill-window {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  height: 100dvh;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--on-ink);
  border-bottom: 2px solid var(--brand-accent, var(--accent));
}
.site-header a { color: inherit; text-decoration: none; }
.lockup {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header nav a[aria-current="page"] {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.1rem;
}
.page {
  width: min(68rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.page--home { justify-content: center; }
.page--studio {
  width: min(96rem, calc(100% - 0.8rem));
  padding: 0.3rem 0 0.4rem;
}
.flyer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1.2rem 2rem;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}
.monogram {
  width: 3.1rem;
  height: 3.1rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  background: color-mix(in srgb, #fff 50%, var(--paper));
}
.hero-art {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  margin: 0 0 0.65rem;
}
.brand-mark {
  width: 4.4rem;
  height: 4.4rem;
  display: block;
  flex: 0 0 auto;
}
.eyebrow {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem);
  line-height: 1.05;
  font-weight: 650;
  margin: 0.2rem 0 0.35rem;
}
.brand-line {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--brand-ink);
}
.mascot-inline {
  width: min(7.2rem, 28vw);
  height: auto;
  display: block;
  margin: 0 0 0.6rem;
}
.hero-art .mascot-inline {
  margin: 0;
}
.lede {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-size: 1.05rem;
}
.lede::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2px;
  background: var(--ink);
  margin: 0 0 0.85rem;
}
.desk {
  position: relative;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, #fff 62%, var(--paper));
  box-shadow:
    0 18px 40px color-mix(in srgb, var(--ink) 12%, transparent),
    inset 0 1px 0 #fff;
}
.desk::before,
.desk::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid var(--ink);
}
.desk::before { top: 0.45rem; left: 0.45rem; border-right: 0; border-bottom: 0; }
.desk::after { bottom: 0.45rem; right: 0.45rem; border-left: 0; border-top: 0; }
.desk h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  font-weight: 650;
}
.desk p { margin: 0 0 0.75rem; font-size: 0.9rem; }
form { display: grid; gap: 0.55rem; }
label { display: grid; gap: 0.22rem; font-size: 0.78rem; font-weight: 600; }
input, select, textarea {
  min-height: 2.65rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  font: inherit;
  background: #fff;
  color: inherit;
}
textarea { min-height: 4.4rem; resize: vertical; }
button, .btn {
  min-height: 2.75rem;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--on-ink);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
}
.form-status { margin: 0; font-size: 0.82rem; }
.note { margin: 0.7rem 0 0; font-size: 0.78rem; }

/* Postcard chrome: ODC ink on peach. Never brand novelty faces on 11px UI. */
.pcard-page {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}
.fill-window .pcard {
  --pcard-ink: #3b1848;
  --pcard-accent: #9a3d58;
  --pcard-gold: #5c2a3a;
  --pcard-wash: #fff8f4;
  --pcard-surface: #fff8f4;
  --pcard-muted: #5c3a48;
  --pcard-highlight: #fde4d8;
  --pcard-glass: 0.28;
  --pcard-display: "Newsreader", Georgia, serif;
  --pcard-body: "Sora", system-ui, sans-serif;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  color: #3b1848;
}
.fill-window .pcard-kicker,
.fill-window .pcard-fold > summary,
.fill-window .pcard-rail-toggle {
  color: #3b1848;
  font-family: "Sora", system-ui, sans-serif;
}
.fill-window .pcard-file button,
.fill-window .pcard-clear,
.fill-window .pcard-layers-open,
.fill-window .pcard-dock button,
.fill-window .pcard-toolgrid button,
.fill-window .pcard-sel button,
.fill-window .pcard-side-toggle button,
.fill-window .pcard-fronts button,
.fill-window .pcard-fly > button,
.fill-window .pcard-flyout button,
.fill-window .pcard-dd-btn,
.fill-window .pcard-dd-menu button {
  color: #3b1848;
  background: #fff8f4;
  border-color: color-mix(in srgb, #3b1848 28%, transparent);
  font-family: "Sora", system-ui, sans-serif;
}
.fill-window .pcard-file .pcard-primary,
.fill-window .pcard-toolgrid button.on,
.fill-window .pcard-side-toggle button.on,
.fill-window .pcard-md-marks button.on,
.fill-window .pcard-fronts button.on,
.fill-window .pcard-dock button.on {
  background: #3b1848 !important;
  color: #fff8f4 !important;
  border-color: transparent !important;
}
.fill-window .pcard-hint,
.fill-window .pcard-layer-hint,
.fill-window .pcard-label {
  color: #3b1848;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.82rem;
  opacity: 1;
}
.site-footer {
  flex: 0 0 auto;
  padding: 0.35rem 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.72rem;
}
.site-footer--slim p { margin: 0; line-height: 1.35; }
.site-footer a { font-weight: 700; }
@media (max-width: 820px) {
  .flyer { grid-template-columns: 1fr; align-items: start; }
  .lockup { font-size: 1rem; }
  .site-header nav { font-size: 0.68rem; gap: 0.55rem 0.75rem; }
  .fill-window { height: auto; min-height: 100dvh; overflow: visible; }
  .pcard-page { overflow: visible; }
}
