/* ═══════════════════════════════════════════════════════════════
   PRODUCE XM
   A desktop environment, because the logo is a 1977 rainbow apple
   and the brand guidelines ask for Susan Kare bitmaps. The metaphor
   was already in the identity; this just runs it.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ────────────────────────────────────────────────── */
:root {
  /* brand palette — Brand Voice & Style sheet */
  --green:  #60bb46;
  --yellow: #fdb827;
  --orange: #f5821f;
  --red:    #e0173c;
  --purple: #963c97;
  --blue:   #009ddc;
  --cream:  #fef4e0;
  --black:  #000000;

  --font-sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Display face. Was Old Standard TT; now the same Montserrat already
     carrying the UI, weighted up so it still reads as display type. */
  --font-display: var(--font-sans);

  --menubar-h: 44px;
  --dock-h: 78px;
  --border-w: 2px;

  --ease: cubic-bezier(.2, .8, .3, 1);
  --dur: .18s;

  --z-desktop: 1;
  --z-icons: 10;
  --z-windows: 100;
  --z-dock: 8000;
  --z-menubar: 9000;
  --z-menu: 9500;
}

/* accent selection — set on <html data-accent> */
:root[data-accent='green']  { --accent: var(--green);  --accent-ink: #2f6a20; }
:root[data-accent='yellow'] { --accent: var(--yellow); --accent-ink: #8a5c00; }
:root[data-accent='orange'] { --accent: var(--orange); --accent-ink: #8c400a; }
:root[data-accent='red']    { --accent: var(--red);    --accent-ink: #8a0d24; }
:root[data-accent='purple'] { --accent: var(--purple); --accent-ink: #552156; }
:root[data-accent='blue']   { --accent: var(--blue);   --accent-ink: #005f85; }

/* light display */
:root[data-theme='light'] {
  --paper:      var(--cream);
  --paper-2:    #f5e6cd;
  --paper-3:    #ecdabc;
  --ink:        #17110a;
  --ink-soft:   #6b5b47;
  --ink-faint:  #a4917a;
  --rule:       #17110a;
  --desktop-bg: var(--accent);
  --desktop-fg: #ffffff;
  --shadow:     rgba(23, 17, 10, .28);
  --chrome:     #f2e2c8;
  --hilite:     rgba(255, 255, 255, .34);
  --field:      #fffaf0;
}

/* dark display */
:root[data-theme='dark'] {
  --paper:      #221a13;
  --paper-2:    #2d231a;
  --paper-3:    #3a2d21;
  --ink:        #fdf0da;
  --ink-soft:   #c0a887;
  --ink-faint:  #8a755c;
  --rule:       #5c4832;
  --desktop-bg: color-mix(in oklab, var(--accent) 15%, #14100c);
  --desktop-fg: #fdf0da;
  --shadow:     rgba(0, 0, 0, .55);
  --chrome:     #2d231a;
  --hilite:     rgba(255, 255, 255, .12);
  --field:      #1a140e;
}

/* ── 2. Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--desktop-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--dur) var(--ease);
}

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
:root[data-theme='light'] .menubar :focus-visible,
:root[data-theme='light'] .window__btn:focus-visible { outline-color: var(--ink); }

.pxi { width: 100%; height: 100%; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Spam honeypot. Deliberately NOT .sr-only — that class exists to expose
   content to screen readers, so a blind visitor could fill this in and have
   their message silently discarded. Off-screen (bots still parse and fill
   it) and aria-hidden, so assistive tech never reaches it. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ── 3. Menu bar ──────────────────────────────────────────────── */
.menubar {
  position: fixed; inset: 0 0 auto 0;
  height: var(--menubar-h);
  z-index: var(--z-menubar);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 0;
  background: var(--paper);
  border-bottom: var(--border-w) solid var(--rule);
  font-size: 13.5px;
  font-weight: 500;
  user-select: none;
}

.menubar__left, .menubar__right { display: flex; align-items: center; gap: 2px; }
.menubar__right { gap: 10px; padding-right: 4px; }

.menubar__logo {
  width: var(--menubar-h); height: var(--menubar-h);
  display: grid; place-items: center;
  background: var(--accent);
  border-right: var(--border-w) solid var(--rule);
  flex: none;
}
.menubar__logo:hover { filter: brightness(1.08); }
.menubar__logo-img { width: 22px; height: 22px; object-fit: contain; }

.menubar__title {
  font-weight: 700;
  letter-spacing: .01em;
  padding: 5px 11px;
  margin: 0 3px 0 9px;
  border-radius: 2px;
  white-space: nowrap;
}
.menubar__title:hover,
.menubar__title[aria-expanded='true'] { background: var(--ink); color: var(--paper); }

.menubar__item {
  padding: 5px 11px;
  border-radius: 2px;
  white-space: nowrap;
}
.menubar__item:hover,
.menubar__item[aria-expanded='true'] { background: var(--ink); color: var(--paper); }

.menubar__icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 2px;
}
.menubar__icon::before {
  content: ''; width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: var(--sun) center/contain no-repeat;
          mask: var(--sun) center/contain no-repeat;
  --sun: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7 0h2v3H7zM7 13h2v3H7zM0 7h3v2H0zM13 7h3v2h-3zM2 3l1-1 2 2-1 1zM11 12l1-1 2 2-1 1zM13 3l-1-1-2 2 1 1zM4 12l-1-1-2 2 1 1zM5 5h6v6H5z'/%3E%3C/svg%3E");
}
:root[data-theme='dark'] .menubar__icon::before {
  --sun: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11 1a7 7 0 1 0 4 12A8 8 0 0 1 11 1z'/%3E%3C/svg%3E");
}
.menubar__icon:hover { background: var(--ink); color: var(--paper); }

.menubar__clock {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 2px;
}
.menubar__clock:hover { background: var(--ink); color: var(--paper); }

/* ── 4. Dropdown menus ────────────────────────────────────────── */
/* The layer spans the viewport but must not swallow clicks — otherwise it
   covers the menu bar and a second click on File never reaches the button,
   so the menu cannot be toggled shut. Only the menu itself is clickable. */
.menu-layer {
  position: fixed; inset: 0;
  z-index: var(--z-menu);
  pointer-events: none;
}
.menu-layer[hidden] { display: none; }

.menu {
  position: absolute;
  pointer-events: auto;
  min-width: 232px;
  background: var(--paper);
  border: var(--border-w) solid var(--rule);
  box-shadow: 5px 5px 0 var(--shadow);
  padding: 5px;
  animation: menu-in .1s var(--ease);
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-4px); } }

.menu__item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 7px 10px;
  font-size: 13.5px;
  text-align: left;
  text-decoration: none;
  border-radius: 2px;
}
.menu__item:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .menu__item:hover { color: var(--ink); }
.menu__item .pxi { width: 16px; height: 16px; flex: none; }
.menu__key { margin-left: auto; opacity: .5; font-size: 12px; letter-spacing: .04em; }
.menu__check {
  width: 16px; flex: none;
  font-size: 13px; font-weight: 700;
  text-align: center;
  color: var(--accent-ink);
}
:root[data-theme='dark'] .menu__check { color: var(--accent); }
.menu__item:hover .menu__check { color: inherit; }
.menu__sep { height: var(--border-w); background: var(--rule); margin: 5px 2px; opacity: .3; }
.menu__label {
  padding: 7px 10px 4px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint);
}

.menu__swatches { display: flex; gap: 5px; padding: 5px 10px 8px; }
.menu__swatch {
  width: 26px; height: 26px;
  border: var(--border-w) solid var(--rule);
}
.menu__swatch[aria-pressed='true'] { box-shadow: inset 0 0 0 2px var(--paper); }

/* ── 5. Desktop ───────────────────────────────────────────────── */
.desktop {
  position: fixed;
  inset: var(--menubar-h) 0 0 0;
  z-index: var(--z-desktop);
  overflow: hidden;
}

/* faint bitmap grid, so the wallpaper reads as a screen */
.desktop::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hilite) 1px, transparent 1px),
    linear-gradient(90deg, var(--hilite) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .28;
  pointer-events: none;
}

/* ── 6. Hero (the home page is the desktop) ───────────────────── */
.hero {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  padding: 20px 24px calc(var(--dock-h) + 14px);
  text-align: center;
  color: var(--desktop-fg);
  pointer-events: none;
}
.hero__main {
  flex: 1;
  min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero__foot { flex: none; display: grid; gap: 18px; justify-items: center; }
.hero__main > *, .hero__foot > * { pointer-events: auto; }

.hero__mark {
  width: 58px; height: 58px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .18));
}

.hero__h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.035em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .16);
}

.hero__reel {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 15px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: var(--border-w) solid var(--rule);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .3);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hero__reel:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0, 0, 0, .3); }
.hero__reel:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(0, 0, 0, .3); }
.hero__reel-icon {
  width: 0; height: 0; flex: none;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.hero__quote {
  width: min(640px, 100%);
  margin: 0;
}
.hero__quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(.86rem, 1.45vw, 1.02rem);
  line-height: 1.5;
  text-wrap: balance;
  opacity: .95;
}
.hero__quote figcaption {
  margin-top: 9px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  opacity: .72;
}

.hero__contact {
  display: flex; align-items: center; gap: 12px;
  font-style: normal;
  font-size: 12px; font-weight: 600;
  letter-spacing: .07em;
  white-space: nowrap;
}
.hero__contact a { text-decoration: none; opacity: .85; padding: 4px 2px; }
.hero__contact a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.hero__contact-sep { opacity: .5; }

/* dim the hero once windows are up, so it reads as wallpaper */
.desktop.has-windows .hero { opacity: .42; transition: opacity .3s var(--ease); }
.desktop.has-windows .hero__reel { opacity: 0; pointer-events: none; }

/* ── 7. Desktop icons ─────────────────────────────────────────── */
.desktop-icons {
  position: absolute;
  top: 18px; left: 14px; bottom: calc(var(--dock-h) + 8px);
  z-index: var(--z-icons);
  display: flex; flex-direction: column; flex-wrap: wrap;
  align-content: flex-start;
  gap: 4px;
}

.dicon {
  width: 96px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px 7px;
  border-radius: 3px;
  text-align: center;
  color: var(--desktop-fg);
}
.dicon:hover { background: var(--hilite); }
.dicon.is-selected { background: rgba(255, 255, 255, .3); outline: 1px dotted var(--desktop-fg); }
.dicon__art { width: 46px; height: 46px; filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .22)); }
.dicon--trash {
  position: absolute;
  right: 16px;
  bottom: calc(var(--dock-h) + 16px);
  z-index: var(--z-icons);
}

.dicon__label {
  font-size: 11.5px; font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  word-break: break-word;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

/* ── 8. Windows ───────────────────────────────────────────────── */
.window-layer { position: absolute; inset: 0; z-index: var(--z-windows); pointer-events: none; }

.window {
  position: absolute;
  display: flex; flex-direction: column;
  min-width: 300px; min-height: 180px;
  background: var(--paper);
  border: var(--border-w) solid var(--rule);
  box-shadow: 7px 7px 0 var(--shadow);
  pointer-events: auto;
  animation: win-in .16s var(--ease);
}
@keyframes win-in { from { opacity: 0; transform: scale(.985) translateY(6px); } }

.window.is-max {
  inset: 0 !important;
  width: auto !important; height: auto !important;
  box-shadow: none;
  border-width: 0 0 var(--border-w) 0;
}

/* Windowshade: the minimise button rolls the window up into its title bar.
   bottom/height/min-height are forced so this also works on a maximised
   window, whose inset:0 would otherwise stretch it back to full height. */
.window.is-shaded {
  bottom: auto !important;
  height: auto !important;
  min-height: 0;
}
.window.is-shaded .window__body,
.window.is-shaded .window__resize { display: none; }
.window.is-shaded .window__bar { border-bottom-width: 0; }

.window:not(.is-focused) { box-shadow: 4px 4px 0 rgba(0, 0, 0, .16); }
.window:not(.is-focused) .window__bar { background: var(--paper-2); }
.window:not(.is-focused) .window__title { opacity: .6; }

.window__bar {
  display: flex; align-items: center; gap: 10px;
  flex: none;
  height: 46px;
  padding: 0 6px 0 16px;
  background: var(--chrome);
  border-bottom: var(--border-w) solid var(--rule);
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.window__bar:active { cursor: grabbing; }
.window.is-max .window__bar { cursor: default; }

.window__title {
  font-size: 14px; font-weight: 600;
  letter-spacing: .005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.window__meta {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.window__meta::before {
  content: ''; width: 7px; height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

.window__btns { display: flex; gap: 5px; margin-left: auto; flex: none; }
.window__meta + .window__btns { margin-left: 12px; }

.window__btn {
  width: 34px; height: 30px;
  display: grid; place-items: center;
  border: var(--border-w) solid var(--rule);
  color: #fff;
}
.window__btn .pxi { width: 15px; height: 15px; }
.window__btn .pxi rect { fill: currentColor !important; }
.window__btn--min  { background: var(--accent); }
.window__btn--max  { background: var(--paper-3); color: var(--ink); }
.window__btn--close { background: #3a1508; }
:root[data-accent='yellow'] .window__btn--min { color: var(--ink); }
.window__btn:hover { filter: brightness(1.12); }
.window__btn:active { transform: translateY(1px); }

.window__body {
  flex: 1;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.window__resize {
  position: absolute; right: 0; bottom: 0;
  width: 18px; height: 18px;
  cursor: nwse-resize;
  touch-action: none;
  background:
    linear-gradient(135deg, transparent 0 46%, var(--ink-faint) 46% 54%, transparent 54% 70%,
                    var(--ink-faint) 70% 78%, transparent 78%);
}
.window.is-max .window__resize { display: none; }

/* scrollbars, in keeping */
.window__body::-webkit-scrollbar { width: 13px; height: 13px; }
.window__body::-webkit-scrollbar-track { background: var(--paper-2); border-left: var(--border-w) solid var(--rule); }
.window__body::-webkit-scrollbar-thumb { background: var(--ink-faint); border: 3px solid var(--paper-2); }
.window__body::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }

/* ── 9. Dock ──────────────────────────────────────────────────── */
/* Dock off by default — every app also has a desktop icon and a menu
   entry, so hiding it strands nothing. --dock-h shrinks so the hero
   footer, desktop icons and content padding reclaim the space. */
:root[data-dock='off'] { --dock-h: 10px; }
:root[data-dock='off'] .dock { display: none; }

.dock {
  position: fixed;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  z-index: var(--z-dock);
  display: flex; align-items: flex-end; gap: 7px;
  padding: 9px 11px;
  background: var(--paper);
  border: var(--border-w) solid var(--rule);
  box-shadow: 5px 5px 0 var(--shadow);
  max-width: calc(100vw - 24px);
  overflow-x: auto;
  scrollbar-width: none;
}
.dock::-webkit-scrollbar { display: none; }

.dock__btn {
  position: relative;
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  background: var(--accent);
  border: var(--border-w) solid var(--rule);
  color: #fff;
  transition: transform var(--dur) var(--ease);
}
.dock__btn .pxi { width: 26px; height: 26px; }
.dock__btn .pxi rect { fill: currentColor !important; }
:root[data-accent='yellow'] .dock__btn { color: var(--ink); }
.dock__btn:hover { transform: translateY(-5px); }
.dock__btn:active { transform: translateY(0); }

.dock__btn[data-open='true']::after {
  content: '';
  position: absolute; left: 50%; bottom: -8px;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  background: var(--ink);
}

.dock__tip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  padding: 4px 9px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--paper);
  background: var(--ink);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.dock__btn:hover .dock__tip, .dock__btn:focus-visible .dock__tip { opacity: 1; }

.dock__sep { width: var(--border-w); align-self: stretch; background: var(--rule); opacity: .28; margin: 0 3px; }

/* ── 10. Content typography inside windows ────────────────────── */
/* bottom padding clears the floating dock */
.doc { padding: 34px 40px calc(var(--dock-h) + 26px); max-width: 780px; }
.doc--wide { max-width: none; }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 9px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
}
:root[data-accent='red'] .eyebrow,
:root[data-accent='purple'] .eyebrow,
:root[data-accent='blue'] .eyebrow { color: #fff; }

.doc h1 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.1vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.doc h2 {
  margin: 44px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.36rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.doc h3 {
  margin: 28px 0 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.doc p { margin: 0 0 16px; color: var(--ink); max-width: 68ch; }
.doc p.lead {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.doc a { color: var(--accent-ink); text-underline-offset: 3px; }
:root[data-theme='dark'] .doc a { color: var(--accent); }
.doc a:hover { text-decoration-thickness: 2px; }

.rule { height: var(--border-w); background: var(--rule); opacity: .18; margin: 34px 0; border: 0; }

/* rainbow rule — the 1977 element */
.rainbow-rule {
  display: flex; height: 7px; margin: 32px 0;
  border: var(--border-w) solid var(--rule);
}
.rainbow-rule span { flex: 1; }
.rainbow-rule span:nth-child(1) { background: var(--green); }
.rainbow-rule span:nth-child(2) { background: var(--yellow); }
.rainbow-rule span:nth-child(3) { background: var(--orange); }
.rainbow-rule span:nth-child(4) { background: var(--red); }
.rainbow-rule span:nth-child(5) { background: var(--purple); }
.rainbow-rule span:nth-child(6) { background: var(--blue); }

/* quote block */
.quote {
  margin: 40px 0 0;
  padding: 26px 28px;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem; line-height: 1.45;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.quote figcaption {
  margin-top: 14px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* card grid */
.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin: 24px 0 0; }
.card {
  padding: 18px 18px 20px;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
}
.card h4 {
  margin: 0 0 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
}
.card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* ── 11. Capabilities accordion ───────────────────────────────── */
.pillar { border: var(--border-w) solid var(--rule); margin-bottom: -2px; background: var(--paper); }
.pillar__head {
  display: flex; align-items: center; gap: 16px;
  width: 100%;
  padding: 20px 20px;
  text-align: left;
}
.pillar__head:hover { background: var(--paper-2); }
.pillar__num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-faint);
  flex: none;
}
.pillar__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.1vw, 2.1rem);
  line-height: 1;
  letter-spacing: .005em;
}
.pillar__blurb {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: right;
  max-width: 34ch;
}
.pillar__chev {
  flex: none;
  width: 15px; height: 15px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
  margin: -6px 4px 0 6px;
  transition: transform var(--dur) var(--ease);
}
.pillar[open] .pillar__chev { transform: rotate(-135deg); margin-top: 4px; }

.pillar__body { padding: 0 20px 22px; }
/* Borders live on the cells, not on a dark backdrop showing through
   the gaps — a short last row would otherwise leave black voids. */
.pillar__items {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  border-top: var(--border-w) solid var(--rule);
  border-left: var(--border-w) solid var(--rule);
}
.pillar__items > li {
  background: var(--paper);
  border-right: var(--border-w) solid var(--rule);
  border-bottom: var(--border-w) solid var(--rule);
  font-size: 13px; font-weight: 500;
}

/* a capability that no case study claims — plain, not expandable */
.cap__plain { display: block; padding: 11px 14px; color: var(--ink-soft); }

.cap__head {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
  list-style: none;
}
.cap__head::-webkit-details-marker { display: none; }
.cap__head:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .cap__head:hover { color: var(--ink); }
.cap__name { flex: 1; }
.cap__count {
  flex: none;
  min-width: 20px; padding: 1px 5px;
  font-size: 10.5px; font-weight: 700;
  text-align: center;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  color: var(--ink);
}
.cap__d[open] > .cap__head { background: var(--ink); color: var(--paper); }
.cap__d[open] > .cap__head .cap__count { background: var(--accent); border-color: var(--accent); color: #fff; }
:root[data-accent='yellow'] .cap__d[open] > .cap__head .cap__count { color: var(--ink); }

.cap__list { list-style: none; margin: 0; padding: 0; }
.cap__list li + li { border-top: 1px solid color-mix(in srgb, var(--rule) 22%, transparent); }
.cap__cs {
  display: block; width: 100%;
  padding: 9px 14px 10px;
  text-align: left;
  background: var(--paper-2);
}
.cap__cs:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .cap__cs:hover { color: var(--ink); }
.cap__cs-client {
  display: block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .7;
}
.cap__cs-title { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 600; line-height: 1.25; }

/* ── 12. Case study index ─────────────────────────────────────── */
.cs-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  margin-top: 26px;
}

.cs-card {
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--paper);
  border: var(--border-w) solid var(--rule);
  box-shadow: 4px 4px 0 var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cs-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--shadow); }
.cs-card:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--shadow); }

.cs-card__top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px;
  background: var(--accent);
  border-bottom: var(--border-w) solid var(--rule);
  color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
:root[data-accent='yellow'] .cs-card__top { color: var(--ink); }

.cs-card__body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.cs-card__client { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.cs-card__title {
  margin: 7px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.24rem; line-height: 1.18;
  letter-spacing: -.017em;
}
.cs-card__loc { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.cs-card__tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 4px; }
.cs-card__tag {
  padding: 3px 7px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .04em;
  background: var(--paper-3);
  border: 1px solid var(--rule);
}
.cs-card__award {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink);
}
:root[data-theme='dark'] .cs-card__award { color: var(--accent); }
.cs-card__award::before { content: ''; width: 8px; height: 8px; background: currentColor; transform: rotate(45deg); }

/* client marquee */
.clients {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: var(--rule);
  border: var(--border-w) solid var(--rule);
  margin-top: 8px;
}
.clients span {
  flex: 1 1 auto;
  padding: 9px 13px;
  background: var(--paper);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
}

/* ── 13. Case study detail (the portfolio format) ─────────────── */
.cs {
  --pad: clamp(24px, 4vw, 46px);
  padding: 0 0 calc(var(--dock-h) + 26px);
}

.cs__hero {
  padding: 38px var(--pad) 30px;
  background: var(--accent);
  border-bottom: var(--border-w) solid var(--rule);
  color: #fff;
}
:root[data-accent='yellow'] .cs__hero { color: var(--ink); }
.cs__hero .eyebrow { background: var(--paper); color: var(--ink); }
.cs__client { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .88; }
.cs__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.cs__project { margin: 12px 0 0; font-size: 14px; opacity: .9; }

.cs__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-bottom: var(--border-w) solid var(--rule);
}
.cs__meta div { padding: 14px var(--pad); background: var(--paper-2); }
.cs__meta dt { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
.cs__meta dd { margin: 5px 0 0; font-size: 13.5px; font-weight: 600; }

.cs__section { padding: 0 var(--pad); }
.cs__section + .cs__section { margin-top: 6px; }

.cs__label {
  display: flex; align-items: center; gap: 12px;
  margin: 40px 0 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.cs__label::after { content: ''; flex: 1; height: var(--border-w); background: var(--rule); opacity: .2; }

/* One size for every paragraph of narrative. There is a .cs__body per
   section, so a :first-of-type "lead" fired three times per page — at the
   top of The Problem, The Process and The Outcome — which read as the text
   randomly changing size rather than as an intro. */
.cs__body p {
  margin: 0 0 18px;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.65;
}
.cs__body p:last-child { margin-bottom: 0; }

/* metrics */
.cs__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  border-top: var(--border-w) solid var(--rule);
  border-left: var(--border-w) solid var(--rule);
}
.cs__metric {
  padding: 16px 16px;
  background: var(--paper);
  border-right: var(--border-w) solid var(--rule);
  border-bottom: var(--border-w) solid var(--rule);
  font-size: 13.5px; line-height: 1.42;
  display: flex; gap: 10px;
}
.cs__metric::before {
  content: ''; flex: none;
  width: 9px; height: 9px; margin-top: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.cs__metric strong { font-weight: 700; }
.cs__metric-head {
  grid-column: 1 / -1;
  padding: 11px 16px;
  background: var(--paper-3);
  border-right: var(--border-w) solid var(--rule);
  border-bottom: var(--border-w) solid var(--rule);
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

/* photographs */
/* Fixed row height rather than a per-tile aspect ratio, so a tall shot can
   span two rows and keep its composition instead of being cropped to a
   landscape box. Rows stay aligned across the grid either way. */
.cs__gallery {
  display: grid; gap: 6px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-rows: 132px;
}
.shot {
  display: block; padding: 0;
  height: 100%;
  overflow: hidden;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
  transition: transform var(--dur) var(--ease);
}
.shot--portrait { grid-row: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot:hover { transform: scale(1.015); }
.shot:hover img { filter: brightness(1.05); }

.cs__credit {
  margin: 12px 0 0;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9800;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 26px;
  background: rgba(12, 8, 5, .93);
  animation: menu-in .12s var(--ease);
}
.lightbox__stage {
  margin: 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox__stage img {
  max-width: 100%; max-height: calc(100vh - 130px);
  object-fit: contain;
  border: var(--border-w) solid #000;
  background: #0c0805;
}
.lightbox__stage figcaption {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #d8c4a6;
}
.lightbox__count { font-variant-numeric: tabular-nums; }
.lightbox__credit { opacity: .65; }

.lightbox__close, .lightbox__nav {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex: none;
  color: var(--cream);
  background: rgba(255, 255, 255, .1);
  border: var(--border-w) solid rgba(255, 255, 255, .3);
}
.lightbox__close { position: absolute; top: 20px; right: 20px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close .pxi, .lightbox__nav .pxi { width: 20px; height: 20px; }
.lightbox__close .pxi rect, .lightbox__nav .pxi rect { fill: currentColor !important; }
.lightbox__nav--prev { transform: scaleX(-1); }
.lightbox__nav[hidden] { display: none; }

@media (max-width: 760px) {
  .lightbox { padding: 14px; gap: 4px; }
  .lightbox__close, .lightbox__nav { width: 38px; height: 38px; }
  .cs__gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* capability tags */
.cs__caps { display: flex; flex-wrap: wrap; gap: 5px; }
.cs__cap {
  padding: 6px 11px;
  font-size: 12px; font-weight: 500;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
}

/* awards */
.cs__awards { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.cs__awards li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 16px;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
  border-left-width: 7px;
  border-left-color: var(--accent);
  font-size: 13.5px; font-weight: 600;
}

/* video */
.cs__film { max-width: 100%; }
/* vertical clips get a portrait player instead of being cropped to 16:9 */
.cs__film--portrait { max-width: min(360px, 100%); }
.cs__film--portrait .cs__video { aspect-ratio: 9 / 16; }

.cs__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d0906;
  border: var(--border-w) solid var(--rule);
  overflow: hidden;
}
.cs__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cs__video-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
  font-size: 12.5px; font-weight: 600;
  text-decoration: none;
}
/* when it sits under a player, join the two into one block */
.cs__video + .cs__video-link { border-top-width: 0; }
.cs__video-link:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .cs__video-link:hover { color: var(--ink); }
.cs__video-link .pxi { width: 20px; height: 20px; flex: none; }

/* prev / next */
.cs__nav {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 46px var(--pad) 0;
}
.cs__nav button {
  padding: 15px 17px;
  text-align: left;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
}
.cs__nav button:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .cs__nav button:hover { color: var(--ink); }
.cs__nav button:last-child { text-align: right; }
.cs__nav small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .6; }
.cs__nav span { display: block; margin-top: 5px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1.25; letter-spacing: -.012em; }

.cs__gap {
  padding: 15px 17px;
  background: var(--paper-2);
  border: var(--border-w) dashed var(--rule);
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ── 14. Combine ──────────────────────────────────────────────── */
.combine__banner {
  display: grid; place-items: center; gap: 14px;
  padding: 44px 24px;
  background: var(--accent);
  border-bottom: var(--border-w) solid var(--rule);
  text-align: center;
  color: #fff;
}
:root[data-accent='yellow'] .combine__banner { color: var(--ink); }
.combine__banner .pxi { width: 78px; height: 78px; }
.combine__banner .pxi rect { fill: currentColor !important; }
.combine__banner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: var(--border-w) solid var(--rule);
  box-shadow: 4px 4px 0 var(--shadow);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--shadow); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .btn--accent { color: var(--ink); }

/* ── 15. Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: 34px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 13px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--field);
  border: var(--border-w) solid var(--rule);
  border-radius: 0;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; }

.form-note {
  margin-top: 14px;
  padding: 13px 15px;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
}
.form-success {
  margin-top: 16px;
  padding: 15px 17px;
  font-size: 14px; font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: var(--border-w) solid var(--rule);
}
:root[data-accent='yellow'] .form-success { color: var(--ink); }

.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li { padding: 13px 0; border-bottom: var(--border-w) solid var(--rule); border-bottom-color: color-mix(in srgb, var(--rule) 20%, transparent); }
.detail-list dt, .detail-list .k {
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
}
.detail-list .v { display: block; margin-top: 5px; font-size: 15px; font-weight: 600; }
.detail-list a { text-decoration: none; }
.detail-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.social-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.social-row a {
  padding: 8px 13px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  background: var(--paper-2);
  border: var(--border-w) solid var(--rule);
  text-decoration: none;
}
.social-row a:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .social-row a:hover { color: var(--ink); }

/* ── 16. Reel window ──────────────────────────────────────────── */
.reel-wrap { background: #0b0806; min-height: 100%; display: flex; flex-direction: column; }
.reel-frame { position: relative; aspect-ratio: 16 / 9; width: 100%; flex: none; }
.reel-caption { margin-top: auto; }
.reel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-caption {
  padding: 13px 18px;
  font-size: 12px;
  letter-spacing: .06em;
  color: #d8c4a6;
  background: #150f0a;
  border-top: var(--border-w) solid #3a2c1e;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.reel-caption a { color: var(--accent); text-underline-offset: 3px; }

/* ── 17. Search ───────────────────────────────────────────────── */
.search-bar { display: flex; gap: 0; margin-bottom: 8px; }
.search-bar input {
  flex: 1;
  padding: 13px 15px;
  font: inherit; font-size: 15px;
  color: var(--ink);
  background: var(--field);
  border: var(--border-w) solid var(--rule);
  border-radius: 0;
}
.search-bar input:focus { outline: 3px solid var(--accent); outline-offset: -1px; }

.result {
  display: block; width: 100%;
  padding: 14px 16px;
  text-align: left;
  border-bottom: var(--border-w) solid color-mix(in srgb, var(--rule) 18%, transparent);
}
.result:hover { background: var(--accent); color: #fff; }
:root[data-accent='yellow'] .result:hover { color: var(--ink); }
.result__kind { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .6; }
.result__title { margin-top: 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.25; letter-spacing: -.012em; }
.result__snip { margin-top: 4px; font-size: 12.5px; opacity: .75; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.empty { padding: 42px 16px; text-align: center; color: var(--ink-soft); font-size: 14px; }

/* ── 18. Scrim ────────────────────────────────────────────────── */
/* Starts below the menu bar, so clicking another menu title switches
   straight to it instead of being eaten closing the open one. */
.scrim { position: fixed; inset: var(--menubar-h) 0 0 0; z-index: calc(var(--z-menu) - 1); }
.scrim[hidden] { display: none; }

/* ── 19. Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .pillar__blurb { display: none; }
}

@media (max-width: 760px) {
  :root { --menubar-h: 40px; --dock-h: 70px; }

  .menubar__item[data-menu='file'],
  .menubar__item[data-menu='view'] { display: none; }
  .menubar__title { padding: 0 8px; font-size: 12.5px; }
  .menubar__clock { font-size: 11.5px; }

  /* windows go full-bleed sheets */
  .window {
    inset: 0 !important;
    width: auto !important; height: auto !important;
    border-width: 0;
    box-shadow: none;
    animation: sheet-in .2s var(--ease);
  }
  @keyframes sheet-in { from { transform: translateY(14px); opacity: 0; } }
  .window:not(.is-focused) { display: none; }
  .window__bar { cursor: default; }
  .window__btn--min, .window__btn--max { display: none; }
  .window__resize { display: none; }
  .window__meta { display: none; }

  .desktop-icons {
    top: auto; bottom: calc(var(--dock-h) + 12px); left: 0; right: 0;
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 12px;
    scrollbar-width: none;
  }
  .desktop-icons::-webkit-scrollbar { display: none; }
  .dicon { width: 82px; flex: none; }
  .dicon__art { width: 38px; height: 38px; }

  /* Trash joins the scrolling icon row here (moved by placeTrash) rather
     than being pinned over the top of it. */
  .dicon--trash { position: static; right: auto; bottom: auto; }

  .hero { padding-bottom: calc(var(--dock-h) + 118px); }
  .hero__main { justify-content: center; }
  .hero__quote { display: none; }
  .hero__contact { font-size: 11px; }
  .hero__mark { width: 46px; height: 46px; }

  .doc { padding: 26px 20px calc(var(--dock-h) + 26px); }
  .cs__nav { grid-template-columns: 1fr; }
  .dock { gap: 5px; padding: 7px 8px; }
  .dock__btn { width: 42px; height: 42px; }
  .dock__tip { display: none; }
}

@media (max-width: 420px) {
  .hero__contact { flex-direction: column; gap: 2px; }
  .hero__contact-sep { display: none; }
}

/* ── 20. Motion & print ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .menubar, .dock, .desktop-icons, .hero, .window__bar, .window__resize { display: none !important; }
  html, body, .desktop, .window, .window__body { position: static; overflow: visible; height: auto; inset: auto; }
  .window { border: 0; box-shadow: none; }
}
