/* Parody of trehaniris.com / grenowest: same fonts + cream/charcoal palette.
   Accent red is ours so nobody mistakes this for the real site. */

@font-face {
  font-family: "tintacoated-regular";
  src:
    url("../fonts/tintacoated-regular-webfont.woff2") format("woff2"),
    url("../fonts/tintacoated-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cantarell;
  src:
    url("../fonts/Cantarell-Regular.woff") format("woff"),
    url("../fonts/Cantarell-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cantarell;
  src: url("../fonts/Cantarell-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f9f4ed;
  --cream-2: #f6f2ef;
  --cream-3: #efe8dd;
  --cream-4: #f9f5f2;
  --beige: #e9d9c1;
  --ink: #000000;
  --charcoal: #454545;
  --muted: #838383;
  --line: #d9d0c4;
  --white: #ffffff;
  --black: #000000;
  --rage: #c41e3a;
  --rage-dark: #8b1028;
  --ok: #1f6b3a;
  --serif: "tintacoated-regular", Georgia, "Times New Roman", serif;
  --sans: Cantarell, "Segoe UI", system-ui, sans-serif;
  --mono: "SF Mono", Consolas, monospace;
  --max: 1120px;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rage);
}

/* sticky parody strip */
.not-official {
  background: var(--rage);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  position: sticky;
  top: 0;
  z-index: 200;
  font-family: var(--sans);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.45rem;
  line-height: 1.35;
}

.not-official-main {
  display: inline;
}

.not-official-link {
  color: #ffe8ec;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.not-official-link:hover {
  color: #fff;
}

/* Phone: force official link onto its own centered line */
@media (max-width: 720px) {
  .not-official {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.75rem;
  }

  .not-official-main,
  .not-official-link {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* header: full-width black bar, nav can use the whole row */
.site-header {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #222;
  width: 100%;
}

.header-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0.9rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .header-inner {
    padding: 0.95rem 2rem;
    flex-wrap: nowrap;
  }
}

.brand {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--cream);
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.brand-mark .strike {
  text-decoration: line-through;
  text-decoration-color: var(--rage);
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8b0a6;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem 0.35rem;
  min-width: 0;
}

.nav a {
  color: #e8e2da;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  border-bottom-color: var(--beige);
  background: rgba(255, 255, 255, 0.06);
}

.nav .cta {
  background: var(--white);
  color: var(--ink) !important;
  padding: 0.6rem 1.15rem;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--white);
  margin-left: 0.35rem;
}

.nav .cta:hover {
  background: transparent;
  color: var(--white) !important;
}

/* Mobile / tablet: hamburger, collapse nav */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.65rem 0 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.35rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    text-align: left;
    white-space: normal;
    font-size: 0.82rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav a.active {
    border-color: var(--beige);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav .cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.25rem;
  }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* hero with project photo */
.hero {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

/* Mobile / tablet: image + Don't buy first, then copy */
@media (max-width: 859px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero > .hero-media {
    order: -1;
    width: 100%;
  }
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
  }

  .hero > .hero-media {
    order: 0;
  }
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rage);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 1rem;
}

h1 .muted-line {
  display: block;
  font-family: var(--sans);
  font-size: 0.42em;
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lede {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 40rem;
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.hero-card {
  background: var(--black);
  color: var(--cream);
  padding: 1.35rem 1.4rem;
  border-left: 4px solid var(--beige);
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--white);
  font-family: var(--serif);
}

.hero-card p {
  margin: 0 0 0.75rem;
  color: #d4cdc4;
  font-size: 0.95rem;
}

.hero-card p:last-child {
  margin-bottom: 0;
}

.hero-card .big {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--cream-3);
  min-height: 200px;
  border: 1px solid var(--line);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 420px;
  filter: grayscale(15%) contrast(1.05);
}

.hero-media .stamp {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rage);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  z-index: 2;
}

/* Prohibition badge over hero project image */
.hero-media .no-buy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(196, 30, 58, 0.12) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-media .no-buy-mark {
  width: clamp(132px, 46%, 202px); /* ~20% larger */
  height: auto;
  color: var(--rage);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  transform: rotate(-8deg);
}

.hero-media .no-buy-label {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 2.64vw, 1.26rem); /* ~20% larger */
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rage);
  border: 2px solid #fff;
  padding: 0.48rem 1.02rem;
  box-shadow: 0 6px 18px rgba(139, 16, 40, 0.45);
  transform: rotate(-8deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.15rem 1rem;
  text-align: center;
}

.stat .n {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.1;
}

.stat .n.bad {
  color: var(--rage);
}

.stat .l {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.4rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
  height: 100%;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 0.85rem;
  color: var(--charcoal);
}

.card a.more {
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card a.more:hover {
  color: var(--rage);
  border-color: var(--rage);
}

.card-img {
  margin: -1.35rem -1.4rem 1rem;
  overflow: hidden;
  max-height: 160px;
}

.card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.25s ease, transform 0.35s ease;
}

.card:hover .card-img img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.photo-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-3);
  border: 1px solid var(--line);
}

.photo-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: grayscale(25%) sepia(8%);
}

.photo-strip figcaption {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem;
  background: var(--white);
  color: var(--muted);
}

.rant-box {
  background: var(--ink);
  color: #f3e6e8;
  padding: 1.5rem 1.5rem;
  margin: 2rem 0;
  border: 1px solid #333;
  position: relative;
}

.rant-box::before {
  content: "RANT";
  position: absolute;
  top: -0.55rem;
  left: 1rem;
  background: var(--rage);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.2rem 0.55rem;
  font-family: var(--sans);
}

.rant-box p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--cream);
}

.parody {
  background: var(--cream-2);
  border: 1px dashed var(--charcoal);
  padding: 1.25rem 1.4rem;
  margin: 2rem 0;
}

.parody .label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.parody h3 {
  margin: 0 0 0.5rem;
  text-decoration: line-through;
  text-decoration-color: var(--rage);
  text-decoration-thickness: 2px;
}

.parody p {
  margin: 0;
  color: var(--charcoal);
}

.timeline {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  border-left: 2px solid var(--beige);
}

.timeline li {
  padding: 0 0 1.4rem 1.25rem;
  position: relative;
}

.timeline li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--charcoal);
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 0.35rem;
}

.timeline .when {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.timeline .what {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.timeline .detail {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  background: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white) !important;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink) !important;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream) !important;
}

.btn-rage {
  background: var(--rage);
  color: var(--white) !important;
  border-color: var(--rage);
}

.btn-rage:hover {
  background: var(--rage-dark);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.55rem;
}

.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.prose p,
.prose li {
  color: var(--charcoal);
}

.prose ul {
  padding-left: 1.2rem;
}

.callout {
  background: var(--white);
  border-left: 3px solid var(--ink);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
}

.callout.warn {
  border-left-color: var(--rage);
  background: #fff8f5;
}

.compare {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 700px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare .col {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.compare .col.them {
  border-top: 3px solid var(--beige);
}

.compare .col.us {
  border-top: 3px solid var(--rage);
}

.compare h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.compare ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--charcoal);
}

.crumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--rage);
}

.page-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* logo row parody */
.logo-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--black);
  margin: 0 0 2rem;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.logo-band img {
  height: 32px;
  opacity: 0.85;
}

.logo-band .tag {
  color: var(--beige);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
}

.logo-band .tag .hit {
  color: #ffb3c0;
  display: inline;
}

/* —— wall of shame: post-its —— */
.wall-intro {
  margin-bottom: 1.5rem;
}

.wall-board {
  background:
    linear-gradient(180deg, #c4a574 0%, #b8956a 100%);
  border: 8px solid #8b6b3f;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  min-height: 280px;
}

.cork-label {
  text-align: center;
  font-family: var(--serif);
  color: #3d2a12;
  font-size: 1.1rem;
  margin: 0 0 1rem;
  opacity: 0.85;
}

.postit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  align-items: start;
}

.postit {
  --rot: -1.5deg;
  --pin: #c41e3a;
  position: relative;
  background: #fff9a8;
  color: #2a2a2a;
  padding: 1.1rem 0.95rem 0.9rem;
  min-height: 170px;
  box-shadow:
    2px 3px 0 rgba(0, 0, 0, 0.08),
    4px 8px 16px rgba(0, 0, 0, 0.18);
  transform: rotate(var(--rot));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s;
  border: none;
  text-align: left;
  font: inherit;
  width: 100%;
  display: block;
}

.postit:nth-child(5n + 1) {
  --rot: -2.2deg;
  background: #fff9a8;
}
.postit:nth-child(5n + 2) {
  --rot: 1.8deg;
  background: #ffd6e0;
}
.postit:nth-child(5n + 3) {
  --rot: -0.8deg;
  background: #d4f0ff;
}
.postit:nth-child(5n + 4) {
  --rot: 2.1deg;
  background: #e2ffd4;
}
.postit:nth-child(5n + 5) {
  --rot: -1.4deg;
  background: #ffe6c9;
}

.postit::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 40% 35%, #ff6b6b, var(--pin) 55%, #6b1010);
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.postit:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 5;
  box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.25);
}

.postit.is-open {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
  min-height: auto;
  grid-column: span 1;
}

@media (min-width: 700px) {
  .postit.is-open {
    grid-column: span 2;
  }
}

.postit .who {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 0.35rem;
}

.postit h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: #111;
  line-height: 1.3;
}

.postit .preview {
  font-size: 0.88rem;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.postit .full {
  display: none;
  font-size: 0.9rem;
  color: #222;
  white-space: pre-wrap;
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

.postit.is-open .preview {
  display: none;
}

.postit.is-open .full {
  display: block;
}

.postit .meta {
  margin-top: 0.65rem;
  font-size: 0.68rem;
  color: #666;
  font-family: var(--mono);
}

.postit .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.postit .tag {
  font-size: 0.62rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15rem 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.postit .expand-hint {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.postit.is-open .expand-hint {
  content: "click to collapse";
}

/* wall form */
.wall-form {
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.wall-form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.wall-form .hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--ink);
  border-color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

.captcha-box {
  background: var(--black);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 1.05rem;
  padding: 0.7rem 1rem;
  letter-spacing: 0.06em;
  user-select: none;
}

.field-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.field-counter {
  float: right;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}

.field-status {
  font-size: 0.78rem;
  margin: 0.3rem 0 0;
  color: var(--muted);
  min-height: 1.2em;
}

.field-status.is-ok {
  color: var(--ok);
}

.field-status.is-err {
  color: var(--rage);
}

.field-status.is-idle {
  color: var(--muted);
}

input.is-invalid,
textarea.is-invalid {
  border-color: var(--rage);
}

input.is-valid,
textarea.is-valid {
  border-color: var(--ok);
}

.wall-form .btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.flashes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.flashes li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.flashes .ok {
  background: #e6f5eb;
  color: var(--ok);
  border: 1px solid #b7dfc4;
}

.flashes .err {
  background: #fdecef;
  color: var(--rage-dark);
  border: 1px solid #f0c0c8;
}

.empty-wall {
  text-align: center;
  padding: 2rem 1rem;
  color: #3d2a12;
}

/* escalate / emails */
.copy-box {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  word-break: break-all;
  position: relative;
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

.copy-box .copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--beige);
  color: var(--ink);
  border: none;
  padding: 0.35rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
}

.copy-box .copy-btn:hover {
  background: var(--white);
}

.email-template {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem;
  white-space: pre-wrap;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.5;
  color: #222;
  max-height: 420px;
  overflow: auto;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
  background: var(--white);
}

.contact-table th,
.contact-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.contact-table th {
  background: var(--cream-3);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* footer */
.site-footer {
  background: var(--black);
  color: #b8b0a6;
  padding: 2.5rem 1.25rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 28px;
  width: auto;
  opacity: 0.95;
}

.site-footer strong {
  color: var(--cream);
}

.site-footer a {
  color: #e8e2da;
}

.disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 50rem;
}

.disclaimer.legal-context a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer.legal-context a:hover {
  color: #fff;
}

.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-note {
  background: #fff9a8;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow: auto;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 8px 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: rotate(-0.5deg);
}

.modal-note .close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-note h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.modal-note .body {
  white-space: pre-wrap;
  color: #222;
  font-size: 0.95rem;
}

/* ========== Mobile & tablet ========== */
@media (max-width: 859px) {
  .header-inner {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-mark {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  main {
    padding: 1.15rem 0.9rem 3rem;
  }

  h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  h1 .muted-line {
    font-size: 0.48em;
    letter-spacing: 0.04em;
  }

  .lede {
    font-size: 0.98rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .hero-media img {
    min-height: 200px;
    max-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .hero-media .no-buy-mark {
    width: clamp(115px, 38vw, 168px); /* ~20% larger */
  }

  .hero-media .no-buy-label {
    font-size: 0.94rem;
    letter-spacing: 0.14em;
    padding: 0.42rem 0.84rem;
  }

  .hero-media .stamp {
    font-size: 0.58rem;
    padding: 0.3rem 0.45rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1.25rem 0;
  }

  .stat {
    padding: 0.85rem 0.5rem;
  }

  .stat .n {
    font-size: 1.45rem;
  }

  .stat .l {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .photo-strip img {
    height: 110px;
  }

  .card {
    padding: 1.1rem 1rem;
  }

  .card-img {
    margin: -1.1rem -1rem 0.85rem;
  }

  .card-img img {
    height: 140px;
  }

  .rant-box {
    padding: 1.15rem 1rem;
  }

  .rant-box p {
    font-size: 1.05rem;
  }

  .wall-board {
    border-width: 5px;
    padding: 0.75rem;
    margin-left: -0.15rem;
    margin-right: -0.15rem;
  }

  .postit-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .postit {
    --rot: 0deg !important;
    min-height: 0;
    padding: 1rem 0.9rem 0.85rem;
  }

  .postit:hover {
    transform: none;
  }

  .wall-form {
    padding: 1.1rem 0.9rem;
  }

  .copy-box {
    padding: 2.4rem 0.85rem 0.85rem;
    font-size: 0.78rem;
  }

  .email-template {
    font-size: 0.75rem;
    padding: 0.85rem;
    max-height: 50vh;
  }

  .contact-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }

  .contact-table th,
  .contact-table td {
    padding: 0.5rem 0.55rem;
  }

  .site-footer {
    padding: 1.75rem 0.9rem;
  }

  .footer-brand {
    flex-wrap: wrap;
  }

  .modal-backdrop {
    padding: 0.65rem;
    align-items: flex-end;
  }

  .modal-note {
    max-height: 85vh;
    transform: none;
    border-radius: 8px 8px 0 0;
  }

  code {
    word-break: break-all;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .brand-divider,
  .brand-sub {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle-text {
    display: none;
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 859px) {
  .hero-media img {
    max-height: 340px;
    min-height: 260px;
  }

  .postit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  main {
    padding: 1.5rem 1.35rem 3.5rem;
  }
}
