/* =========================================================
   AMANDA FIGUEROA — DESIGN SYSTEM
   "Street Editorial" — collage energy, growth-marketer brain
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* core palette */
  --cobalt:      #1E2BC4;
  --cobalt-deep: #141C8F;
  --cobalt-soft: #4253E8;
  --butter:      #FCE96A;
  --butter-deep: #F3D63B;
  --ink:         #15140F;
  --ink-70:      #4a483f;
  --ink-45:      #86837a;
  --ink-15:      #d9d6cc;
  --signal:      #E5402E; /* sticker pop, used sparingly */

  /* neutrals — switchable */
  --cream:  #F4EFE1;
  --bone:   #ECEAE3;
  --paper:  #FFFFFF;
  --canvas: var(--bone);     /* page bg, themed below */

  /* fonts */
  --font-display: 'Anton', sans-serif;
  --font-serif-display: 'DM Serif Display', serif;  /* big, short, punchy — feed posts, pull quotes */
  --font-serif-text:    'Spectral', serif;          /* readable at length — website, long copy */
  --font-body:    'Archivo', sans-serif;

  /* radius */
  --r-sharp: 2px;
  --r-soft:  6px;
  --r-pill:  999px;

  /* shadow */
  --shadow-card: 0 18px 40px -22px rgba(21,20,15,.45);
  --shadow-lift: 0 6px 0 0 var(--ink);

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
}

/* neutral variants */
body[data-neutral="cream"] { --canvas: var(--cream); }
body[data-neutral="bone"]  { --canvas: var(--bone); }

/* headline is locked to Anton condensed (Amanda's pick) */
body { --font-display: 'Anton', sans-serif; }

/* ---------- RESET ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background-color: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- TYPE PRIMITIVES ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
/* Anton headlines are always uppercase */
.display.is-condensed {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.9;
}
/* DISPLAY SERIF — DM Serif Display. Big editorial moments, feed posts, pull quotes. */
.serif {
  font-family: var(--font-serif-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
/* TEXT SERIF — Spectral. Web reading, sub-heads, longer serif passages. */
.serif-text {
  font-family: var(--font-serif-text);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.003em;
  margin: 0;
}
.serif-italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--ink-70);
  margin: 0;
}
.eyebrow.on-dark { color: rgba(255,255,255,.7); }

.lede { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5; color: var(--ink-70); }
.body-sm { font-size: 14.5px; line-height: 1.55; color: var(--ink-70); }

/* highlighter mark */
.mark {
  background: var(--butter);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.04em 0.22em;
  margin: 0 -0.04em;
}
.mark.blue { background: var(--cobalt); color: #fff; }

/* underline-tick accent */
.tick { position: relative; white-space: nowrap; }
.tick::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.12em;
  height: 0.18em; background: var(--cobalt);
}

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section.tight { padding: clamp(40px, 6vw, 72px) 0; }
.section.cobalt { background: var(--cobalt); color: #fff; }
.section.ink { background: var(--ink); color: #fff; }
.section.paper { background: var(--paper); }
.divider { height: 1.5px; background: var(--ink); opacity: .12; }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* section header pattern */
.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.sec-head .num {
  font-family: 'Anton', sans-serif; font-size: 13px; letter-spacing: .04em;
  border: 1.5px solid currentColor; border-radius: var(--r-pill);
  padding: 4px 12px; opacity: .65;
}
.sec-head h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 44px); line-height: .95; letter-spacing: -0.01em; margin: 0; }

/* =========================================================
   COMPONENTS
   ========================================================= */

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 13px;
  padding: 15px 26px; border: 1.5px solid var(--ink); border-radius: var(--r-sharp);
  background: var(--butter); color: var(--ink); cursor: pointer;
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.btn .arw { display: grid; place-items: center; width: 24px; height: 24px;
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--r-sharp); }
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translate(0,0); box-shadow: none; }
.btn.blue { background: var(--cobalt); color: #fff; border-color: var(--ink); }
.btn.blue .arw { background: var(--butter); color: var(--ink); }
.btn.ghost { background: transparent; }
.btn.pill { border-radius: var(--r-pill); }
.btn.pill .arw { border-radius: var(--r-pill); }
.btn.lg { font-size: 15px; padding: 18px 32px; }
.btn.sm { font-size: 11px; padding: 10px 16px; gap: 8px; }

/* ---------- STICKER BADGE ---------- */
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 11px; line-height: 1.05;
  padding: 9px 16px; border: 1.5px solid var(--ink);
  border-radius: var(--r-pill); background: var(--paper); color: var(--ink);
  text-align: center;
}
.sticker.butter { background: var(--butter); }
.sticker.blue { background: var(--cobalt); color: #fff; border-color: var(--ink); }
.sticker.signal { background: var(--signal); color: #fff; border-color: var(--ink); }
.sticker.dashed { border-style: dashed; }
.sticker.tilt-l { transform: rotate(-6deg); }
.sticker.tilt-r { transform: rotate(5deg); }
.sticker .stk-2 { display: block; font-size: 8.5px; opacity: .8; }

/* ---------- CALLOUT / TEXT BOX ---------- */
.callout {
  position: relative; background: var(--paper); border: 1.5px solid var(--ink);
  border-radius: var(--r-soft); padding: 22px 24px;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.callout.butter { background: var(--butter); }
.callout.blue { background: var(--cobalt); color: #fff; box-shadow: 6px 6px 0 0 var(--ink); }
.callout.flat { box-shadow: none; }
.callout .co-label {
  position: absolute; top: -11px; left: 18px;
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; font-size: 10px; background: var(--ink); color: #fff;
  padding: 4px 10px; border-radius: var(--r-sharp);
}
.callout.butter .co-label { background: var(--ink); }
.callout p { margin: 0; }

/* ---------- TAPED NOTE ---------- */
.note {
  position: relative; background: var(--paper); color: var(--ink);
  padding: 30px 28px 26px; box-shadow: var(--shadow-card);
  border-radius: 3px;
}
.note .punch { display: flex; gap: 14px; margin-bottom: 18px; }
.note .punch i {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--canvas); border: 1px solid var(--ink-15); display: block;
}
.note.tilt { transform: rotate(-1.6deg); }
.tape {
  position: absolute; width: 92px; height: 26px;
  background: rgba(252,233,106,.72); border: 1px solid rgba(21,20,15,.18);
  top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.tape.tr { left: auto; right: 16px; transform: rotate(8deg); }
.tape.tl { left: 16px; transform: rotate(-8deg); }
.tape.blue { background: rgba(66,83,232,.5); }

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--cobalt); color: #fff; overflow: hidden;
  border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  padding: 11px 0; white-space: nowrap;
}
.marquee.butter { background: var(--butter); color: var(--ink); }
.marquee.ink { background: var(--ink); color: #fff; }
.marquee .track { display: inline-block; will-change: transform; animation: marquee 26s linear infinite; }
.marquee .track span {
  font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 16px;
  letter-spacing: .02em; padding: 0 26px; opacity: .96;
}
.marquee .track span::after { content: "✦"; margin-left: 26px; opacity: .55; font-size: 12px; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---------- PHOTO ---------- */
.photo {
  position: relative; border: 1.5px solid var(--ink); background: var(--ink);
  overflow: hidden;
}
.photo image-slot, .photo img { width: 100%; height: 100%; filter: grayscale(1) contrast(1.04); }
.photo.color image-slot, .photo.color img { filter: none; }
.photo .cap {
  position: absolute; bottom: 10px; left: 10px;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: 10px; background: var(--paper); color: var(--ink);
  padding: 5px 9px; border: 1px solid var(--ink);
}

/* ---------- SWATCH ---------- */
.swatch { border: 1.5px solid var(--ink); border-radius: var(--r-soft); overflow: hidden; background: var(--paper); }
.swatch .chip { height: 132px; }
.swatch .meta { padding: 14px 16px; }
.swatch .meta .nm { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 15px; letter-spacing: .01em; }
.swatch .meta .hex { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink-70); display: flex; justify-content: space-between; gap: 10px; margin-top: 4px; }
.swatch .meta .hex span { white-space: nowrap; }
.swatch .meta .use { font-size: 12.5px; color: var(--ink-45); margin-top: 8px; }

/* ---------- SPEC CARD ---------- */
.spec { border: 1.5px solid var(--ink); border-radius: var(--r-soft); background: var(--paper); padding: 22px; }
.spec h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-weight: 400; font-size: 16px; margin: 0 0 12px; }

/* ---------- TOP SWITCHER ---------- */
.switcher {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 10px var(--gutter);
  border-bottom: 1.5px solid #000;
}
.switcher .brandmark { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 15px; letter-spacing: .02em; margin-right: auto; }
.switcher .brandmark b { color: var(--butter); }
.seg { display: inline-flex; border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-pill); overflow: hidden; }
.seg button {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  font-size: 10.5px; padding: 7px 14px; background: transparent; color: rgba(255,255,255,.7);
  border: none; cursor: pointer; transition: background .15s, color .15s;
}
.seg button[aria-pressed="true"] { background: var(--butter); color: var(--ink); }
.switcher .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); }

/* ---------- LINKEDIN ARTBOARDS ---------- */
.board-row { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.board-frame { display: inline-block; }
.board-frame .cap { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--ink-45); margin-top: 14px; }
.board-scale { transform-origin: top left; }

/* generic artboard reset */
.lb { font-family: var(--font-body); color: var(--ink); position: relative; overflow: hidden; }
.lb .lb-display { font-family: 'Anton', sans-serif; text-transform: uppercase; line-height: .9; letter-spacing: -0.01em; margin: 0; }
.lb .lb-serif { font-family: var(--font-serif-display); margin: 0; }

footer.foot { background: var(--ink); color: #fff; padding: 60px 0; }
footer.foot a { color: var(--butter); text-decoration: none; }

/* ---------- GLOBAL MOBILE NAV SAFETY ---------- */
@media (max-width: 560px) {
  .site-nav { padding-left: 16px !important; padding-right: 16px !important; gap: 12px !important; }
  .site-nav .brand { font-size: 15px !important; }
  .site-nav .links { gap: 12px !important; }
  .site-nav .links a.cta { padding: 8px 12px !important; font-size: 10px !important; letter-spacing: .08em !important; }
}
@media (max-width: 380px) {
  .site-nav .brand { font-size: 13px !important; }
}

/* ---------- MOBILE HAMBURGER NAV ---------- */
.site-nav .nav-toggle {
  display: none; align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; width: 46px; height: 46px; flex-shrink: 0; padding: 0;
  background: var(--cobalt); border: 1.5px solid var(--ink); border-radius: 50%; cursor: pointer;
}
.site-nav .nav-toggle span { display: block; width: 20px; height: 2.5px; background: #fff; border-radius: 2px; }
@media (max-width: 820px) {
  .site-nav .links { display: none !important; }
  .site-nav .nav-toggle { display: flex; }
}
.nav-menu { display: none; }
body.nav-open { overflow: hidden; }
body.nav-open .nav-menu {
  display: flex; position: fixed; inset: 0; z-index: 300; background: var(--cobalt);
  flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 32px;
}
.nav-menu .nav-close {
  position: absolute; top: 16px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(255,255,255,.55); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.nav-menu a {
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(32px, 9vw, 48px); color: #fff; text-decoration: none;
}
.nav-menu a.cta {
  margin-top: 10px; background: var(--butter); color: var(--ink); border: 1.5px solid var(--ink);
  padding: 14px 30px; border-radius: 999px; font-size: clamp(16px, 4.5vw, 20px);
}
