/* ============================================================
   ARCGENT — MAXIMALIST CHAOS
   Layered, dense, visually rich. Anti-minimalism.
   Bodoni Moda display · Newsreader body · Caveat marker · JetBrains Mono
   ============================================================ */

:root {
  /* Palette — multiple strong colors in play */
  --paper:       #F9F5EC;
  --paper-2:     #F1EAD8;
  --cream:       #FDF9EB;
  --black:       #0A0A0A;
  --ink:         #1A1714;
  --ink-2:       #3A3530;

  --coral:       #FF4F4F;
  --coral-2:     #E63946;
  --cerulean:    #2E86AB;
  --cerulean-2:  #1A5F7A;
  --mustard:     #F5BB00;
  --mustard-2:   #D49A00;
  --teal:        #0F3D3E;
  --teal-2:      #166061;
  --plum:        #6A0572;

  /* Marker colors for annotations */
  --marker-red:     #E63946;
  --marker-yellow:  rgba(245, 187, 0, 0.55);
  --marker-blue:    #2E86AB;
  --highlight:      rgba(245, 187, 0, 0.4);

  --rule:        rgba(26, 23, 20, 0.22);
  --rule-heavy:  rgba(26, 23, 20, 0.55);

  /* Type */
  --display: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --body:    "Newsreader", "Georgia", serif;
  --script:  "Caveat", "Comic Neue", cursive;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    /* Paper grain noise */
    radial-gradient(circle at 20% 30%, rgba(245, 187, 0, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46, 134, 171, 0.05), transparent 45%),
    radial-gradient(circle at 40% 85%, rgba(255, 79, 79, 0.04), transparent 50%),
    var(--paper);
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; }
::selection { background: var(--mustard); color: var(--black); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--coral); border: 2px solid var(--paper-2); border-radius: 0; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px) rotate(-0.3deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes drift {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
@keyframes scrawl {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}
.rise { animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 3.5vw, 3rem);
  position: relative;
}

/* ============ NAV — asymmetric, layered ============ */
.nav {
  padding: 1.5rem 0;
  border-bottom: 4px double var(--black);
  background: var(--paper);
  position: relative;
}
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--coral), var(--coral) 20px, var(--mustard) 20px, var(--mustard) 40px, var(--cerulean) 40px, var(--cerulean) 60px);
}
.nav__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.nav__brand img {
  height: 34px;
  width: auto;
}
.nav__brand .sticker {
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--coral);
  transform: rotate(-6deg);
  background: var(--mustard);
  padding: 0.1rem 0.55rem;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  line-height: 1;
}
.nav__menu {
  display: flex;
  gap: 0;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.nav__menu a {
  padding: 0.4rem 0.9rem;
  transition: all 200ms var(--ease);
  border: 1.5px solid transparent;
  font-style: italic;
}
.nav__menu a:hover {
  background: var(--mustard);
  border-color: var(--black);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--black);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  border: 2.5px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: all 180ms var(--ease);
  font-style: italic;
}
.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
  background: var(--mustard);
  color: var(--black);
}
.nav__cta::after { content: "→"; font-style: normal; }

@media (max-width: 900px) {
  .nav__menu { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 60px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: var(--coral);
  border: 3px solid var(--black);
  transform: rotate(12deg);
  z-index: -1;
  box-shadow: 8px 8px 0 var(--black);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: var(--mustard);
  border: 3px solid var(--black);
  border-radius: 50%;
  z-index: -1;
  box-shadow: 6px 6px 0 var(--black);
}

.hero__marquee {
  background: var(--black);
  color: var(--mustard);
  padding: 0.75rem 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.hero__marquee__strip {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.02em;
  animation: marquee 28s linear infinite;
}
.hero__marquee__strip span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.hero__marquee__strip span::after {
  content: "★";
  color: var(--coral);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__headline {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 1.75rem;
}
.hero__headline .line-1 {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.hero__headline .line-2 {
  display: block;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-style: italic;
  color: var(--coral);
  margin-left: 0.25em;
  margin-top: -0.1em;
}
.hero__headline .line-3 {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-decoration: underline;
  text-decoration-color: var(--mustard);
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.05em;
}
.hero__headline .line-4 {
  display: block;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-style: italic;
  color: var(--cerulean);
  margin-top: -0.05em;
}

.hero__lede {
  font-family: var(--body);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 0 2rem;
  padding-left: 1.5rem;
  border-left: 5px solid var(--mustard);
}
.hero__lede strong { color: var(--black); font-weight: 700; }

.hero__scribble {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--cerulean);
  display: inline-block;
  transform: rotate(-3deg);
  margin-bottom: 1.25rem;
}
.hero__scribble::before { content: "→ "; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn-chunk {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: all 180ms var(--ease);
}
.btn-chunk:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
  background: var(--mustard);
  color: var(--black);
}
.btn-chunk::after { content: "→"; font-style: normal; }
.btn-chunk--blue { background: var(--cerulean); }
.btn-chunk--blue:hover { background: var(--mustard); }

/* Sidebar card — stacked info stickers */
.hero__side {
  display: grid;
  gap: 1.25rem;
  padding-top: 1rem;
}
.sticker-card {
  padding: 1.25rem 1.5rem;
  border: 3px solid var(--black);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--black);
  position: relative;
}
.sticker-card--coral { background: var(--coral); color: var(--paper); transform: rotate(-1.2deg); }
.sticker-card--mustard { background: var(--mustard); color: var(--black); transform: rotate(1.1deg); }
.sticker-card--blue { background: var(--cerulean); color: var(--paper); transform: rotate(-0.7deg); }
.sticker-card .sc-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  font-weight: 600;
  opacity: 0.9;
}
.sticker-card .sc-value {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-style: italic;
}
.sticker-card .sc-note {
  font-family: var(--script);
  font-size: 1.2rem;
  margin-top: 0.35rem;
  line-height: 1.1;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
}
.section--striped {
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
}
.section--striped::before {
  content: "";
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--black), var(--black) 20px, var(--coral) 20px, var(--coral) 40px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--mustard);
  color: var(--black);
  border: 2.5px solid var(--black);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--black);
  margin-bottom: 1.75rem;
  transform: rotate(-1.5deg);
}
.section-tag::before { content: "★"; color: var(--coral); }

.section__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--black);
  margin: 0 0 1.5rem;
  text-wrap: balance;
  max-width: 18ch;
}
.section__title em { font-style: italic; color: var(--coral); }
.section__title .marker {
  background: var(--mustard);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.section__title .blue { color: var(--cerulean); font-style: italic; }

.section__lede {
  font-family: var(--body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
}
.section__lede strong { color: var(--black); font-weight: 700; background: var(--highlight); padding: 0 0.15em; }

/* ============ METHOD GRID — stacked polaroid-style cards ============ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .method-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  border: 3px solid var(--black);
  padding: 1.75rem 1.5rem;
  box-shadow: 6px 6px 0 var(--black);
  position: relative;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card:nth-child(1) { transform: rotate(-1.2deg); }
.card:nth-child(2) { transform: rotate(0.8deg); }
.card:nth-child(3) { transform: rotate(-0.5deg); }
.card:nth-child(4) { transform: rotate(1deg); }
.card:nth-child(5) { transform: rotate(-0.8deg); }
.card:hover { transform: rotate(0deg) translate(-2px, -3px); box-shadow: 10px 10px 0 var(--black); }

.card__num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--coral);
  line-height: 0.85;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.card__num .hash { color: var(--black); }
.card__label {
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--cerulean);
  margin-bottom: 0.25rem;
  display: block;
  transform: rotate(-1.5deg);
}
.card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 0.65rem;
  letter-spacing: -0.018em;
}
.card p {
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 1rem;
}
.card__stamp {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 2px dashed var(--coral);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-2);
  transform: rotate(-3deg);
  background: rgba(255, 79, 79, 0.05);
}

/* Alt card colors */
.card--coral { background: var(--coral); color: var(--paper); }
.card--coral .card__num { color: var(--mustard); }
.card--coral .card__num .hash { color: var(--paper); }
.card--coral h3 { color: var(--paper); }
.card--coral p { color: rgba(249, 245, 236, 0.88); }
.card--coral .card__label { color: var(--mustard); }
.card--coral .card__stamp { color: var(--mustard); border-color: var(--mustard); background: rgba(245, 187, 0, 0.1); }

.card--blue { background: var(--cerulean); color: var(--paper); }
.card--blue .card__num { color: var(--mustard); }
.card--blue .card__num .hash { color: var(--paper); }
.card--blue h3 { color: var(--paper); }
.card--blue p { color: rgba(249, 245, 236, 0.88); }
.card--blue .card__label { color: var(--mustard); }
.card--blue .card__stamp { color: var(--mustard); border-color: var(--mustard); background: rgba(245, 187, 0, 0.1); }

.card--mustard { background: var(--mustard); }
.card--mustard .card__num { color: var(--coral); }
.card--mustard .card__label { color: var(--cerulean); }

/* ============ SERVICES LIST — big editorial with tape ============ */
.svc-list {
  display: grid;
  gap: 1.5rem;
}
.svc-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.75rem 2rem;
  background: var(--cream);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  position: relative;
  transition: all 200ms var(--ease);
}
.svc-row:nth-child(1) { transform: translateX(-8px); }
.svc-row:nth-child(2) { transform: translateX(6px); }
.svc-row:nth-child(3) { transform: translateX(-4px); }
.svc-row:nth-child(4) { transform: translateX(10px); }
.svc-row:nth-child(5) { transform: translateX(-6px); }
.svc-row:nth-child(6) { transform: translateX(4px); }
.svc-row:hover { transform: translateX(0) translate(-3px, -3px); box-shadow: 9px 9px 0 var(--black); }

/* Tape */
.svc-row::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 40px;
  width: 56px;
  height: 22px;
  background: var(--marker-yellow);
  border: 1px solid rgba(26, 23, 20, 0.3);
  transform: rotate(-4deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.svc-row__num {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--coral);
  line-height: 0.85;
  letter-spacing: -0.035em;
}
.svc-row__num span { color: var(--black); font-style: normal; }
.svc-row__body h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin: 0 0 0.4rem;
  line-height: 1.1;
}
.svc-row__body h3 .highlight {
  background: var(--mustard);
  padding: 0 0.2em;
}
.svc-row__body p {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 48ch;
}
.svc-row__tag {
  font-family: var(--script);
  font-size: 1.35rem;
  color: var(--cerulean);
  text-align: right;
  transform: rotate(-4deg);
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 80px 1fr; transform: none !important; }
  .svc-row__tag { grid-column: 2; text-align: left; padding-top: 0.5rem; }
}

/* ============ PHILOSOPHY QUOTE ============ */
.philosophy {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--black);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
.philosophy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg,
    var(--coral), var(--coral) 15px,
    var(--mustard) 15px, var(--mustard) 30px,
    var(--cerulean) 30px, var(--cerulean) 45px);
}
.philosophy::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg,
    var(--cerulean), var(--cerulean) 15px,
    var(--mustard) 15px, var(--mustard) 30px,
    var(--coral) 30px, var(--coral) 45px);
}
.philosophy__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.philosophy__label {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--mustard);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 1rem;
}
.philosophy__quote {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 0 auto 1.5rem;
  max-width: 24ch;
  text-wrap: balance;
  font-style: italic;
}
.philosophy__quote .coral { color: var(--coral); }
.philosophy__quote .blue { color: var(--cerulean); }
.philosophy__quote .mustard { color: var(--mustard); }
.philosophy__byline {
  font-family: var(--mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mustard);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.philosophy__byline::before,
.philosophy__byline::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--mustard);
}

/* ============ CTA ============ */
.cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
}
.cta__stamp {
  display: inline-block;
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--coral);
  transform: rotate(-4deg);
  padding: 0.35rem 1.25rem;
  border: 3px dashed var(--coral);
  margin-bottom: 1.25rem;
}
.cta__headline {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 1.25rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.cta__headline .marker { background: var(--mustard); padding: 0 0.2em; }
.cta__headline .coral { color: var(--coral); }
.cta__lede {
  font-family: var(--body);
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto 2rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--paper);
  padding: clamp(3.5rem, 5vw, 5rem) 0 2rem;
  position: relative;
  border-top: 6px solid var(--coral);
}
.footer::before {
  content: "";
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg,
    var(--mustard), var(--mustard) 15px,
    transparent 15px, transparent 30px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px dashed rgba(249, 245, 236, 0.2);
  margin-bottom: 2.5rem;
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr; } }
.footer__top h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mustard);
  margin: 0;
  line-height: 1;
}
.footer__top h3 em { color: var(--coral); font-style: italic; }
.footer__top .email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  border: 3px solid var(--mustard);
  box-shadow: 5px 5px 0 var(--mustard);
  transition: all 180ms var(--ease);
}
.footer__top .email-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--mustard);
}
.footer__top .email-btn::after { content: "→"; font-style: normal; }

.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 820px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__cols { grid-template-columns: 1fr; } }

.footer__brand img { height: 34px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(249, 245, 236, 0.7);
  margin: 0 0 0.75rem;
  max-width: 32ch;
}
.footer__brand .scribble {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--mustard);
  transform: rotate(-2deg);
  display: inline-block;
}
.footer__col h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--mustard);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer__col a {
  font-family: var(--body);
  font-size: 0.98rem;
  color: rgba(249, 245, 236, 0.72);
  transition: all 180ms var(--ease);
}
.footer__col a:hover { color: var(--coral); }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(249, 245, 236, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 245, 236, 0.45);
}
.footer__bottom .rev { color: var(--mustard); }
.footer__bottom .coral { color: var(--coral); }
