/* Glasgow Ad School */

:root {
  --paper: #eeebe2;
  --paper-2: #e3dfd2;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --cone: #ff5a1f;
  --blue: #2340ff;
  --tape: rgba(236, 222, 170, 0.78);
  --head: "Anton", "Impact", sans-serif;
  --body: "Courier Prime", "Courier New", monospace;
  --scrawl: "Permanent Marker", cursive;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

/* photocopier grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--cone); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- type ---------- */

h1, h2, h3, .head {
  font-family: var(--head);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.005em;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(3.4rem, 13vw, 11rem); }
h2 { font-size: clamp(2.6rem, 7.5vw, 6rem); }
h3 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1; }

/* misregistered riso print */
.riso { text-shadow: -4px 3px 0 var(--cone); }
.riso-blue { text-shadow: 4px -3px 0 var(--blue); }

.scrawl {
  font-family: var(--scrawl);
  color: var(--cone);
  text-transform: none;
  font-weight: 400;
}

.small { font-size: 0.85rem; }
.mono-label {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

p { margin: 0 0 1em; max-width: 62ch; }

.hl {
  background: var(--cone);
  padding: 0 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.strike { text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--cone); }

/* ---------- ticker ---------- */

.ticker {
  background: var(--cone);
  color: var(--ink);
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.ticker__track {
  display: inline-block;
  padding: 6px 0;
  animation: tick 38s linear infinite;
}
.ticker__track span { padding: 0 1.4em; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- nav ---------- */

.nav {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 0.85;
}
.logo svg { width: 30px; height: 38px; flex: none; }
.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
}
.nav__links a.nav__apply { background: var(--cone); color: var(--ink); }
.nav__links a.nav__apply:hover { background: var(--paper); }

.nav__toggle {
  display: none;
  background: none;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1rem;
  padding: 6px 12px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 8px 20px 20px;
    border-bottom: 3px solid var(--cone);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.1rem; padding: 12px 6px; }
}

/* ---------- sections ---------- */

section { padding: 90px 0; position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--cone { background: var(--cone); color: var(--ink); }
.section--paper2 { background: var(--paper-2); }

/* torn paper edge along the top of a section */
.torn-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  background: inherit;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 22' preserveAspectRatio='none'><path d='M0 22 L0 12 L6 15 L11 8 L17 13 L22 6 L29 12 L34 9 L40 16 L46 7 L52 12 L57 5 L63 13 L70 9 L75 15 L82 6 L88 11 L93 8 L99 15 L105 7 L111 12 L116 9 L120 13 L120 22 Z' fill='black'/></svg>") 0 0 / 240px 22px repeat-x;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 22' preserveAspectRatio='none'><path d='M0 22 L0 12 L6 15 L11 8 L17 13 L22 6 L29 12 L34 9 L40 16 L46 7 L52 12 L57 5 L63 13 L70 9 L75 15 L82 6 L88 11 L93 8 L99 15 L105 7 L111 12 L116 9 L120 13 L120 22 Z' fill='black'/></svg>") 0 0 / 240px 22px repeat-x;
}
.torn-top::before { top: -21px; }

/* ---------- hero ---------- */

.hero { padding: 60px 0 110px; overflow: hidden; }
.hero__top { position: relative; }
.hero h1 {
  font-size: clamp(3.4rem, 12.5vw, 10.5rem);
  margin-bottom: 0.2em;
  position: relative;
  z-index: 1;
}
.hero h1 .line { display: block; }
.hero h1 .indent { padding-left: 0.6em; }
.hero__sub {
  font-size: 1.2rem;
  max-width: 34ch;
  margin-top: 24px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 10px;
}
.hero__notes { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; padding-top: 20px; }
.hero__notes .note { max-width: 250px; }

/* the cone leans on the headline */
.hero__cone {
  position: absolute;
  right: 2%;
  top: 4%;
  width: clamp(110px, 20vw, 260px);
  transform: rotate(14deg);
}
.hero__arrow {
  font-size: 1.3rem;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-3deg);
}
.hero__arrow svg { width: 80px; transform: scaleY(-1) rotate(20deg); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__cone { width: 90px; top: -10px; right: 0; }
  .hero__arrow { display: none; }
}

.page-head { padding: 60px 0 70px; }
.page-head h1 { font-size: clamp(3.2rem, 12vw, 9.5rem); }
.page-head .lede { font-size: 1.25rem; max-width: 40ch; }
@media (max-width: 600px) { .page-head h1 { font-size: 19vw; } }

/* ---------- bits of paper ---------- */

.note {
  background: #fffdf5;
  color: var(--ink);
  padding: 22px 22px 18px;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.18);
  position: relative;
  transform: rotate(var(--r, -1.5deg));
  max-width: 320px;
}
.note--cone { background: var(--cone); }
.note--ink { background: var(--ink); color: var(--paper); }

.tape::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 96px;
  height: 28px;
  background: var(--tape);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.note .head { font-size: 2.1rem; margin: 0 0 0.15em; }
.note p { margin: 0; font-size: 0.95rem; }

/* sticker */
.sticker {
  display: inline-grid;
  place-items: center;
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cone);
  color: var(--ink);
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 0.95;
  padding: 18px;
  transform: rotate(12deg);
  border: 3px solid var(--ink);
}

/* rubber stamp */
.stamp {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--cone);
  border: 4px solid currentColor;
  padding: 2px 14px;
  transform: rotate(-8deg);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 24px 12px;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--cone);
  transition: transform 0.08s, box-shadow 0.08s;
  cursor: pointer;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--cone); }
.btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--cone); }
.btn--cone { background: var(--cone); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.btn--cone:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.section--ink .btn--ghost { box-shadow: 6px 6px 0 var(--cone); }

.btn-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }

/* ---------- layouts ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

.big-copy {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45;
}
.big-copy p { max-width: 38ch; }

/* uni vs us */
.versus {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 30px;
}
.versus th,
.versus td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 2px dashed var(--ink-soft);
  vertical-align: top;
}
.versus thead th {
  font-family: var(--head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.6rem;
  border-bottom: 3px solid var(--ink);
}
.versus td:first-child { font-weight: 700; width: 26%; }
.versus td:nth-child(2) { color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--cone); text-decoration-thickness: 2px; }
.versus td:nth-child(3) { font-weight: 700; }
@media (max-width: 600px) {
  .versus { font-size: 0.85rem; }
  .versus th, .versus td { padding: 10px 6px; }
  .versus thead th { font-size: 1.2rem; }
}

/* 3 blocks */
.blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.block {
  border: 3px solid currentColor;
  padding: 26px 22px;
  position: relative;
}
.block__num {
  font-family: var(--head);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--cone);
  display: block;
  margin-bottom: 12px;
}
.section--cone .block__num { color: var(--ink); }
.block h3 { margin-bottom: 0.3em; }
.block p { font-size: 0.95rem; margin: 0; }
@media (max-width: 860px) { .blocks { grid-template-columns: 1fr; } }

/* pinboard of questions */
.board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 44px 32px;
  margin-top: 50px;
}
.board .note { max-width: none; }
.board .note .head { font-size: 1.8rem; }

/* wall of nothing */
.empty-wall {
  border: 3px dashed var(--ink-soft);
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.empty-wall .scrawl { font-size: clamp(1.4rem, 3vw, 2.2rem); max-width: 22ch; margin: 0 auto; }
.lonely-tape {
  position: absolute;
  top: 30px;
  right: 14%;
  width: 90px;
  height: 26px;
  background: var(--tape);
  transform: rotate(24deg);
}

/* ---------- course page ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.facts div { padding: 22px 18px; border-right: 2px dashed var(--ink-soft); }
.facts div:last-child { border-right: 0; }
.facts .head { font-size: 2.6rem; margin: 0; }
.facts span { font-size: 0.9rem; display: block; }
@media (max-width: 760px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 2px dashed var(--ink-soft); }
}

.phase { margin-top: 70px; }
.phase__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 3px solid currentColor;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.phase__head h2 { margin: 0; }
.phase__head .scrawl { font-size: 1.4rem; }

.weeks { list-style: none; margin: 0; padding: 0; }
.week {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 2px dashed var(--ink-soft);
}
.week__n {
  font-family: var(--head);
  font-size: 3.4rem;
  line-height: 0.85;
}
.week__n small { display: block; font-family: var(--body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; }
.week h3 { margin-bottom: 0.25em; }
.week p { margin: 0; }
@media (max-width: 600px) {
  .week { grid-template-columns: 70px 1fr; gap: 12px; }
  .week__n { font-size: 2.4rem; }
}

.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.person {
  border: 3px solid var(--paper);
  padding: 22px;
}
.person__face {
  aspect-ratio: 1;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-family: var(--scrawl);
  font-size: 1.3rem;
  text-align: center;
  padding: 20px;
}
.person h3 { font-size: 1.7rem; }
.person p { font-size: 0.95rem; margin: 0; }

.leave-list { list-style: none; padding: 0; margin: 30px 0 0; counter-reset: l; }
.leave-list li {
  counter-increment: l;
  position: relative;
  padding: 16px 0 16px 70px;
  border-bottom: 2px dashed currentColor;
  font-size: 1.1rem;
}
.leave-list li::before {
  content: counter(l, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--head);
  font-size: 2.4rem;
  line-height: 1;
}

/* ---------- big idea page ---------- */

.definition {
  font-family: var(--head);
  text-transform: uppercase;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.12;
  max-width: 18ch;
  margin: 0;
}

.tests { list-style: none; margin: 40px 0 0; padding: 0; }
.tests li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 3px solid currentColor;
}
.tests li:last-child { border-bottom: 3px solid currentColor; }
.tests .n { font-family: var(--head); font-size: 3.6rem; line-height: 0.8; color: var(--cone); }
.tests h3 { margin-bottom: 0.2em; }
.tests p { margin: 0; }

.worked {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  margin-top: 50px;
}
.worked .note { max-width: none; }
.worked .span { grid-column: 1 / -1; }
@media (max-width: 760px) { .worked { grid-template-columns: 1fr; } }

.definition .hl { padding: 0.02em 0.18em 0; color: var(--ink); }

.rejected-wrap { position: relative; padding-bottom: 70px; }
.rejected-wrap .stamp {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 2.2rem;
  transform: rotate(-10deg);
}

.poster {
  background: var(--ink);
  color: var(--paper);
  aspect-ratio: 3 / 4;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 8px 8px 0 var(--cone);
  transform: rotate(var(--r, 1deg));
}
.poster .head { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 0.95; }
.poster .small { opacity: 0.8; }
.posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 860px) { .posters { grid-template-columns: 1fr; max-width: 360px; } }

.killed {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  columns: 2;
  column-gap: 50px;
}
.killed li {
  break-inside: avoid;
  padding: 10px 0;
  border-bottom: 2px dashed currentColor;
}
.killed li s { text-decoration-color: var(--cone); text-decoration-thickness: 3px; }
.killed li em { display: block; font-style: normal; font-family: var(--scrawl); color: var(--cone); font-size: 0.95rem; }
@media (max-width: 700px) { .killed { columns: 1; } }

/* ---------- creative test ---------- */

.rules {
  counter-reset: r;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.rules li {
  counter-increment: r;
  padding: 10px 0 10px 50px;
  position: relative;
  font-size: 1.05rem;
}
.rules li::before {
  content: counter(r);
  position: absolute;
  left: 0;
  top: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cone);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-size: 1.2rem;
}

.progress {
  position: sticky;
  top: 64px;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 3px solid var(--cone);
}
.progress .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.progress__count { font-family: var(--head); font-size: 1.5rem; text-transform: uppercase; }
.progress__bar { display: flex; gap: 6px; }
.progress__bar i {
  width: 30px;
  height: 14px;
  border: 2px solid var(--paper);
  display: block;
}
.progress__bar i.on { background: var(--cone); border-color: var(--cone); }

.questions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 50px 36px;
  margin-top: 60px;
  align-items: start;
}
@media (max-width: 400px) { .questions { grid-template-columns: 1fr; } }
.q {
  background: #fffdf5;
  padding: 30px 24px 22px;
  position: relative;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.18);
  transform: rotate(var(--r, 0deg));
  display: flex;
  flex-direction: column;
}
.q__n { font-family: var(--scrawl); color: var(--cone); font-size: 1.3rem; }
.q h3 { font-size: 2rem; margin: 6px 0 12px; }
.q p { font-size: 0.95rem; }
.q__pick {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.05rem;
  background: none;
  border: 3px solid var(--ink);
  padding: 8px 14px 6px;
  cursor: pointer;
}
.q__pick:hover { background: var(--ink); color: var(--paper); }
.q.picked { outline: 4px solid var(--cone); outline-offset: 6px; }
.q.picked .q__pick { background: var(--cone); border-color: var(--cone); color: var(--ink); }
.q textarea {
  display: none;
  width: 100%;
  min-height: 170px;
  margin: 14px 0 0;
  padding: 12px;
  font-family: var(--body);
  font-size: 1rem;
  border: 2px solid var(--ink);
  background: repeating-linear-gradient(#fffdf5 0 27px, #cfd7ea 27px 28px);
  line-height: 28px;
  resize: vertical;
}
.q.picked textarea { display: block; }
.q textarea:focus { outline: 3px solid var(--blue); outline-offset: 2px; }

.send-box { text-align: left; }
.send-box .btn { margin-right: 12px; margin-bottom: 14px; }
.warn { font-family: var(--scrawl); color: var(--cone); font-size: 1.2rem; }

/* ---------- apply page ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  counter-reset: s;
  padding: 0;
}
.steps li {
  list-style: none;
  counter-increment: s;
  border-top: 6px solid var(--ink);
  padding-top: 16px;
}
.steps li::before {
  content: "0" counter(s);
  font-family: var(--head);
  font-size: 3.6rem;
  line-height: 0.9;
  color: var(--cone);
  display: block;
}
.steps h3 { font-size: 1.7rem; }
.steps p { font-size: 0.95rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

.price {
  font-family: var(--head);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0;
}

.faq { margin-top: 30px; }
.faq details {
  border-top: 3px solid currentColor;
  padding: 4px 0;
}
.faq details:last-child { border-bottom: 3px solid currentColor; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  padding: 16px 50px 16px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 10px;
  font-size: 2.4rem;
  color: var(--cone);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 12px; }

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
  position: relative;
}
.footer__big {
  font-family: var(--head);
  text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.85;
  margin: 0 0 40px;
}
.footer__big a { text-decoration: none; }
.footer__big a:hover { color: var(--cone); }
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px dashed var(--paper);
  padding-top: 20px;
  font-size: 0.9rem;
}
.footer__row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- odds and ends ---------- */

.mt-0 { margin-top: 0; }
.mt-40 { margin-top: 40px; }
.flush-top { padding-top: 0; }
.scrawl--big { font-size: 1.6rem; }
.scrawl--ink { color: var(--ink); }
.poster--cone { background: var(--cone); color: var(--ink); }
.section--cone .btn--ghost { box-shadow: 6px 6px 0 var(--ink); }
.name-input {
  font: inherit;
  padding: 10px 12px;
  width: 100%;
  max-width: 420px;
  border: 3px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  margin-top: 6px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus { left: 10px; top: 10px; z-index: 1000; background: var(--cone); padding: 10px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
