/* ==========================================================================
   NIC CROUCHER — nic.croucher.live
   Aesthetic: vintage travel-poster meets warm vinyl sleeve.
   Palette: warm cream paper, muted brick red, aged mustard, dusted olive.
   Type: Alfa Slab One (display) + Fraunces (body). Lowercase name,
   sentence-case copy, ALL-CAPS kickers for strategic emphasis.
   ========================================================================== */

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

:root {
  --paper:      #F3E9D0;   /* warm cream base */
  --paper-2:    #E8D9B0;   /* deeper cream for layering */
  --paper-3:    #DDC98E;   /* old-page accent */
  --ink:        #1F1B14;   /* warm near-black */
  --ink-2:      #3B2E1F;   /* brown ink for secondary */
  --brick:      #A6321E;   /* muted brick red */
  --brick-2:    #7A2618;   /* deep brick */
  --mustard:    #D4A017;   /* aged mustard yellow */
  --mustard-2:  #B0851A;   /* deeper mustard */
  --olive:      #5F6F3D;   /* dusted olive green */
  --olive-2:    #3F4A28;   /* deep olive */
  --sepia:      #8B6F47;   /* sepia brown for captions */
  --cream-line: rgba(31, 27, 20, 0.15);

  --font-display: "Alfa Slab One", Georgia, serif;
  --font-body:    "Fraunces", "Iowan Old Style", Georgia, serif;

  --max-w: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  /* Subtle layered paper texture — speckle + faint map-continent wash */
  background-image:
    radial-gradient(circle at 20% 15%, rgba(139, 111, 71, 0.07) 0, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(166, 50, 30, 0.05) 0, transparent 45%),
    radial-gradient(circle at 35% 85%, rgba(95, 111, 61, 0.06) 0, transparent 45%),
    radial-gradient(circle at 0.5px 0.5px, rgba(31, 27, 20, 0.055) 0.5px, transparent 0);
  background-size: auto, auto, auto, 4px 4px;
}

img { max-width: 100%; display: block; }
a  { color: var(--brick); }
a:hover { color: var(--brick-2); }

/* ---------- TOP NAV ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  padding: 0.8rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--cream-line);
  box-shadow: 0 2px 0 rgba(31, 27, 20, 0.04);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--mustard);
  padding: 0.15rem 0.55rem 0.05rem;
  border: 2px solid var(--ink);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: clamp(0.75rem, 2.2vw, 1.6rem);
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  transition: color 0.15s;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--brick); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--brick);
  color: var(--paper) !important;
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { font-size: 0.9rem; }
  .nav-links { gap: 0.8rem; }
}

/* ---------- GLOBAL SECTION + TYPOGRAPHY ---------- */

main > section {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--brick);
  padding: 0 0 0.3rem;
  border-bottom: 2px solid var(--brick);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section-sub {
  font-size: 1.08rem;
  max-width: 54ch;
  margin: 0 0 2.25rem;
  color: var(--ink-2);
  font-style: italic;
  font-weight: 400;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--brick);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--paper);
}

.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--mustard);
  background: var(--paper-2);
}

/* ============================================================
   TORN DIVIDER — red paper bleed between sections
   ============================================================ */

.torn {
  height: 22px;
  width: 100%;
  margin: 0;
  background-color: var(--brick);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 22' preserveAspectRatio='none'><path d='M0,0 L200,0 L200,12 L196,9 L192,14 L188,10 L184,15 L180,11 L176,16 L172,12 L168,15 L164,10 L160,14 L156,11 L152,16 L148,10 L144,13 L140,15 L136,11 L132,14 L128,10 L124,13 L120,16 L116,12 L112,15 L108,10 L104,14 L100,11 L96,16 L92,12 L88,14 L84,10 L80,15 L76,11 L72,13 L68,16 L64,12 L60,15 L56,10 L52,14 L48,11 L44,15 L40,12 L36,14 L32,10 L28,15 L24,11 L20,14 L16,10 L12,15 L8,12 L4,14 L0,10 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 22' preserveAspectRatio='none'><path d='M0,0 L200,0 L200,12 L196,9 L192,14 L188,10 L184,15 L180,11 L176,16 L172,12 L168,15 L164,10 L160,14 L156,11 L152,16 L148,10 L144,13 L140,15 L136,11 L132,14 L128,10 L124,13 L120,16 L116,12 L112,15 L108,10 L104,14 L100,11 L96,16 L92,12 L88,14 L84,10 L80,15 L76,11 L72,13 L68,16 L64,12 L60,15 L56,10 L52,14 L48,11 L44,15 L40,12 L36,14 L32,10 L28,15 L24,11 L20,14 L16,10 L12,15 L8,12 L4,14 L0,10 Z' fill='black'/></svg>");
  -webkit-mask-size: 200px 22px;
  mask-size: 200px 22px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4.5rem) !important;
  padding-bottom: clamp(3rem, 6vw, 5rem) !important;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-portrait { order: -1; max-width: 340px; margin: 0 auto; }
}

.hero-stamp {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--ink);
  background: var(--paper);
  padding: 0.35rem 0.75rem;
  border: 1.5px solid var(--ink);
  transform: rotate(-2deg);
  margin-bottom: 1.5rem;
  box-shadow: 3px 3px 0 var(--brick);
}

/* Hero name — chunky slab on mustard block, poster style */
.hero-name {
  margin: 0 0 1.25rem;
  font-size: 0;
}
.hero-name span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6.2vw, 4.4rem);
  line-height: 1;
  color: var(--ink);
  background: var(--mustard);
  padding: 0.5rem 1rem 0.3rem;
  border: 3px solid var(--ink);
  transform: rotate(-1deg);
  box-shadow: 6px 6px 0 var(--brick);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  margin: 1rem 0 1.5rem;
  max-width: 36ch;
  font-weight: 500;
  color: var(--ink);
}
.hero-tagline em {
  font-style: italic;
  font-weight: 400;
  color: var(--brick);
}
.hero-tagline .dash { color: var(--brick); font-weight: 700; }

.hero-bio {
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-socials {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.15s;
}
.hero-socials a:hover { color: var(--brick); }

/* Portrait — tape-cornered polaroid tilt */
.hero-portrait { margin: 0; }
.portrait-frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 16px;
  transform: rotate(2.5deg);
  box-shadow: 8px 8px 0 var(--ink-2);
  max-width: 440px;
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.12) saturate(0.96) contrast(0.98);
}
.portrait-tape {
  position: absolute;
  width: 70px;
  height: 22px;
  background: rgba(212, 160, 23, 0.78);
  border: 1px solid rgba(31, 27, 20, 0.2);
  box-shadow: 0 1px 2px rgba(31, 27, 20, 0.15);
}
.portrait-tape--tl { top: -10px; left: -16px; transform: rotate(-32deg); }
.portrait-tape--br { bottom: -10px; right: -16px; transform: rotate(-18deg); }

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 1.1rem;
  color: var(--ink-2);
}
.about-copy em { font-style: italic; color: var(--brick); font-weight: 500; }
.about-cta-line a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: var(--brick);
}
.about-cta-line a:hover { color: var(--brick-2); }

.about-journey {
  position: relative;
  padding: 1rem;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--brick);
  transform: rotate(-0.8deg);
}
.journey-map {
  width: 100%;
  height: auto;
  display: block;
}

/* Pull quotes */
.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 800px) {
  .quote-strip { grid-template-columns: 1fr; }
}
.pull-quote {
  margin: 0;
  padding: 1.5rem 1.35rem 1.1rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pull-quote:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.pull-quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.pull-quote figcaption {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}
.pull-quote--brick   { background: var(--brick);   color: var(--paper);  transform: rotate(-1deg); }
.pull-quote--mustard { background: var(--mustard); color: var(--ink);    transform: rotate(0.5deg); }
.pull-quote--olive   { background: var(--olive);   color: var(--paper);  transform: rotate(-0.5deg); }
.pull-quote--brick:hover   { transform: rotate(-1deg) translate(-2px, -2px); }
.pull-quote--mustard:hover { transform: rotate(0.5deg) translate(-2px, -2px); }
.pull-quote--olive:hover   { transform: rotate(-0.5deg) translate(-2px, -2px); }

/* ============================================================
   VIDEOS
   ============================================================ */

.videos {
  background: var(--paper-2);
  max-width: none !important;
  width: 100%;
}
.videos > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 0.8rem;
  box-shadow: 5px 5px 0 var(--brick);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--brick);
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  margin-bottom: 0.75rem;
  border: 1px solid var(--ink);
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1;
  margin: 0.25rem 0 0.3rem;
  color: var(--ink);
}
.video-tag {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--brick);
  margin: 0 0 0.1rem;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services { background: transparent; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2rem 1.75rem;
  border: 2px solid var(--ink);
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.service-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0.45;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.005em;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}
.service-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}
.service-card--mustard { background: var(--mustard); color: var(--ink); }
.service-card--brick   { background: var(--brick);   color: var(--paper); }
.service-card--brick .service-num { color: var(--paper); }
.service-card--olive   { background: var(--olive);   color: var(--paper); }
.service-card--olive .service-num { color: var(--paper); }
.service-card--ink     { background: var(--ink);     color: var(--paper); }
.service-card--ink .service-num { color: var(--mustard); opacity: 0.85; }

/* ============================================================
   COVERS
   ============================================================ */

.covers { background: transparent; }

.covers-details {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transition: box-shadow 0.2s;
}
.covers-details[open] { box-shadow: 8px 8px 0 var(--ink); }

.covers-details summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mustard);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  user-select: none;
}
.covers-details summary::-webkit-details-marker { display: none; }

.covers-summary-label {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  font-size: 1.2rem;
}
.covers-summary-icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s;
}
.covers-details[open] .covers-summary-icon { transform: rotate(45deg); }

.covers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 620px) { .covers-list { columns: 1; } }

.covers-list li {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--cream-line);
  break-inside: avoid;
  font-size: 1rem;
  color: var(--ink-2);
}
.covers-list li:last-child { border-bottom: 0; }
.covers-placeholder {
  font-style: italic;
  color: var(--brick);
  font-weight: 500;
}

/* ============================================================
   SHOWS
   ============================================================ */

.shows {
  background: var(--paper-2);
  max-width: none !important;
  width: 100%;
}
.shows > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.shows-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--brick);
}
.show-date {
  background: var(--mustard);
  color: var(--ink);
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-family: var(--font-display);
  border: 1.5px solid var(--ink);
}
.show-date-month { display: block; font-size: 1rem; letter-spacing: 0.1em; }
.show-date-day { display: block; font-size: 2.2rem; line-height: 1; }
.show-date-year { display: block; font-size: 0.8rem; letter-spacing: 0.1em; opacity: 0.8; }
.show-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.show-info p { margin: 0; font-size: 1rem; color: var(--ink-2); }

.shows-empty {
  padding: 2rem;
  background: var(--paper);
  color: var(--ink-2);
  border: 2px dashed var(--brick);
  text-align: center;
}
.shows-empty p { margin: 0.25rem 0; }
.shows-empty strong { color: var(--ink); }
.shows-empty a { color: var(--brick); font-weight: 600; }

/* ============================================================
   ELSEWHERE
   ============================================================ */

.elsewhere { background: transparent; }

.elsewhere-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 720px) { .elsewhere-grid { grid-template-columns: 1fr; } }

.elsewhere-card {
  display: block;
  background: var(--paper);
  padding: 1.5rem;
  border: 2px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.elsewhere-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brick);
  background: var(--mustard);
}
.elsewhere-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.elsewhere-kind {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--paper);
  background: var(--brick);
  padding: 0.25rem 0.55rem;
}
.elsewhere-arrow {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--brick);
}
.elsewhere-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0 0 0.35rem;
  line-height: 1;
}
.elsewhere-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-2);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: transparent; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--paper);
  padding: 1.75rem;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin-bottom: 0.4rem;
  color: var(--brick);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  transition: background 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--mustard);
  box-shadow: 3px 3px 0 var(--brick);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0.75rem 0 0;
  color: var(--ink-2);
  font-style: italic;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-block {
  padding: 1.1rem 1.35rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.contact-block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}
.contact-block p { margin: 0; font-size: 0.95rem; line-height: 1.55; }
.contact-block--mustard { background: var(--mustard); color: var(--ink); }
.contact-block--brick   { background: var(--brick);   color: var(--paper); }
.contact-block--olive   { background: var(--olive);   color: var(--paper); }

.contact-email {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}
.contact-email:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.contact-socials { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-socials a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
}
.contact-socials a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem var(--gutter) 1.75rem;
  border-top: 4px solid var(--brick);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--mustard);
  line-height: 1;
}
.footer-tag {
  font-style: italic;
  opacity: 0.85;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-content: start;
}
.footer-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--paper);
}
.footer-links a:hover { color: var(--mustard); }
.footer-meta p { margin: 0 0 0.3rem; font-size: 0.88rem; opacity: 0.8; }
.footer-tease {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mustard) !important;
  opacity: 1 !important;
  font-size: 0.78rem;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   FOCUS STYLES (accessibility)
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
}
