/* ============================================================
   ALUMNIYAT — magazine + studio + idea showcase
   Aesthetic: Color-Blocked Publication Modernism
   - Off-white paper base (cooler than FireGrade's cream)
   - Near-black ink (cleaner than FireGrade's warm dark)
   - Three saturated panel colors: COBALT · MUSTARD · FOREST
   - Type: Instrument Serif (display) · Geist (body) · IBM Plex Mono
   - Magazine devices: roman numerals, folios, mastheads, rules,
     "FILED UNDER" tags, "Continued at..." callouts
   - Diverges from FireGrade (cream+oxblood+Fraunces)
                  PickleMap (dark+lime+sports)
   ============================================================ */

:root {
  --paper:   #FAF8F4;
  --paper-2: #F2EEE6;
  --ink:     #0F0F0F;
  --ink-2:   #2A2A2A;
  --char:    #6B6B6B;
  --rule:    #1A1A1A;
  --hairline:#D4CFC4;

  /* the three brand panels */
  --cobalt:  #1E3A8A;
  --cobalt-2:#28499E;
  --mustard: #C8A04A;
  --mustard-2:#A8842F;
  --forest:  #2F4D3A;
  --forest-2:#3B5E48;

  /* on-color text */
  --on-cobalt:  #F4EEE0;
  --on-forest:  #F2EEE2;
  --on-mustard: #14110D;

  /* fonts */
  --serif: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;
  --sans:  "Geist", "Helvetica Neue", -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", "Menlo", monospace;

  --max:   1280px;
  --gutter:clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.vh, .skip {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed !important;
  top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 10px 16px;
  background: var(--ink); color: var(--paper);
  z-index: 1000;
}

.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

/* Paper grain overlay — subtle */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.06 0 0 0 0 0.06 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  position: relative;
  background: var(--paper);
  z-index: 50;
}

.mast-rule {
  height: 1.5px;
  background: var(--rule);
  width: 100%;
}
.mast-rule.thin { height: 1px; opacity: 0.5; }

.mast-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px var(--gutter);
  gap: 16px;
}

.mast-meta {
  display: flex;
  align-items: center;
  color: var(--ink-2);
}
.mast-meta.left { justify-content: flex-start; }
.mast-meta.right { justify-content: flex-end; }

.mast-brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding: 8px 0 4px;
  text-align: center;
  white-space: nowrap;
}
.mast-word {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.topnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 16px var(--gutter);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.topnav a {
  position: relative;
  padding: 4px 2px;
  transition: color 0.25s ease;
}
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { transform: scaleX(1); }

.mob-toggle {
  display: none;
  position: absolute;
  top: 18px; right: var(--gutter);
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  z-index: 60;
}
.mob-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mob-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mob-toggle.is-open span:nth-child(2) { opacity: 0; }
.mob-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .mast-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mast-meta.left, .mast-meta.right { justify-content: center; font-size: 10px; }
  .topnav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--ink);
    color: var(--paper);
  }
  .topnav.is-open {
    display: flex;
    border-top: 1px solid var(--rule);
  }
  .topnav a {
    padding: 18px var(--gutter);
    border-bottom: 1px solid #2a2a2a;
    color: var(--paper);
  }
  .topnav a::after { display: none; }
  .mob-toggle { display: block; }
}

/* ============================================================
   FOLIO (section number device)
   ============================================================ */
.folio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--char);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.folio span:first-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.folio.on-dark { color: rgba(244, 238, 224, 0.65); }
.folio.on-dark span:first-child { color: var(--paper); }

/* ============================================================
   COVER SPREAD
   ============================================================ */
.cover {
  padding: clamp(48px, 6vw, 96px) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 96px);
}
@media (max-width: 920px) {
  .cover-grid { grid-template-columns: 1fr; gap: 48px; }
}

.cover-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.022em;
  margin: 0 0 36px;
  color: var(--ink);
}
.cover-h span {
  display: block;
}
.cover-h .italic {
  font-style: italic;
  color: var(--ink-2);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(.2,.8,.2,1), transform 0.95s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--d, 0) * 1ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.cover-deck {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  font-style: italic;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
}
.cover-deck strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.01em;
  background: var(--mustard);
  color: var(--on-mustard);
  padding: 2px 10px;
  margin-left: 4px;
}

.cover-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-pri, .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  padding: 14px 22px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  line-height: 1;
}
.btn-pri {
  background: var(--ink);
  color: var(--paper);
}
.btn-pri:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  transform: translateY(-1px);
}
.btn-sec:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-block { width: 100%; justify-content: center; padding-top: 16px; padding-bottom: 16px; }

/* COVER RIGHT — TOC card */
.cover-right { position: relative; }
.cover-card {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
  position: relative;
}
.cover-card::before {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 40px; height: 40px;
  background: var(--mustard);
}
.cover-card-eyebrow {
  margin-bottom: 18px;
  color: var(--ink);
}
.cover-toc {
  list-style: none;
  margin: 0; padding: 0;
}
.cover-toc li {
  font-family: var(--serif);
  font-size: 19px;
  padding: 9px 0;
  border-top: 1px dashed var(--hairline);
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink);
}
.cover-toc li:first-child { border-top: none; padding-top: 0; }
.cover-toc li .mono {
  color: var(--char);
  font-size: 11px;
  width: 28px;
  flex-shrink: 0;
}
.cover-toc li em {
  color: var(--char);
  font-style: italic;
  font-size: 16px;
  margin-left: 4px;
}
.cover-card-rule {
  height: 1px;
  background: var(--hairline);
  margin: 22px 0 18px;
}
.cover-card-note {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}

/* COVER STRIP — marquee */
.cover-strip {
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  padding: 14px 0;
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.strip-item { padding: 0 8px; }
.strip-sep { color: var(--char); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 5vw, 80px);
}
.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-h .italic { font-style: italic; }
.section-h.on-dark { color: var(--on-forest); }

.section-deck {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  max-width: 70ch;
}

/* ============================================================
   PANEL (full-bleed colored sections)
   ============================================================ */
.panel {
  margin-top: 0;
  position: relative;
}
.panel-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 128px) var(--gutter);
}
.panel-cobalt { background: var(--cobalt); color: var(--on-cobalt); }
.panel-cobalt .section-h,
.panel-cobalt .tile-h,
.panel-cobalt .studio-headline h2 { color: var(--on-cobalt); }
.panel-cobalt .tile-num { color: var(--mustard); }
.panel-cobalt .tile-p,
.panel-cobalt .studio-deck { color: rgba(244, 238, 224, 0.78); }
.panel-cobalt .italic { color: var(--mustard); }

.panel-forest { background: var(--forest); color: var(--on-forest); }
.panel-forest .note-h { color: var(--on-forest); }
.panel-forest .note-p { color: rgba(242, 238, 226, 0.82); }
.panel-forest .note-meta { color: var(--mustard); }
.panel-forest .note-cta { color: var(--mustard); }

/* THE STUDIO (panel-cobalt) */
.studio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 4vw, 80px);
  margin-bottom: clamp(48px, 5vw, 80px);
}
@media (max-width: 880px) {
  .studio-grid { grid-template-columns: 1fr; gap: 24px; }
}
.studio-headline h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0;
}
.studio-deck {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  margin: 4px 0 0;
}

.studio-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244, 238, 224, 0.25);
}
@media (max-width: 880px) { .studio-tiles { grid-template-columns: 1fr; } }
.studio-tile {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(244, 238, 224, 0.15);
}
.studio-tile:last-child { border-right: none; padding-right: 0; }
@media (max-width: 880px) {
  .studio-tile {
    border-right: none;
    border-bottom: 1px solid rgba(244, 238, 224, 0.15);
    padding: 28px 0;
  }
  .studio-tile:last-child { border-bottom: none; }
}
@media (min-width: 881px) {
  .studio-tile + .studio-tile { padding-left: 28px; }
}
.tile-num {
  font-size: 11px;
  margin-bottom: 14px;
}
.tile-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
}
.tile-p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   THE INDEX (apps showcase)
   ============================================================ */
.index {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 140px) var(--gutter);
}
.index .section-head { text-align: center; }
.index .section-head .folio { display: inline-flex; }

.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: stretch;
  padding: clamp(40px, 4vw, 56px) 0;
}
.feature-flip .feat-art { order: -1; }
@media (max-width: 880px) {
  .feature, .feature-flip { grid-template-columns: 1fr; }
  .feature-flip .feat-art { order: 0; }
}

.feat-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--mustard);
  margin-bottom: 16px;
}
.feat-tag {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.badge-mustard { background: var(--mustard); color: var(--on-mustard); }
.badge-forest  { background: var(--forest);  color: var(--on-forest); }
.badge-cobalt  { background: var(--cobalt);  color: var(--on-cobalt); }
.feat-meta {
  color: var(--char);
  margin-bottom: 14px;
}
.feat-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.feat-deck {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 56ch;
}
.feat-stats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.feat-stats li {
  flex: 1 1 0;
  min-width: 140px;
  padding: 14px 16px 14px 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-2);
  border-right: 1px dashed var(--hairline);
}
.feat-stats li:last-child { border-right: none; padding-right: 0; }
.feat-stats li .mono {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.feat-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.feat-aside {
  color: var(--char);
}

.feat-rule {
  height: 1px;
  background: var(--hairline);
  margin: 0;
}

/* FEATURE ART (no images — pure CSS visuals) */
.feat-art {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}
.feat-art::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  right: 12px; bottom: 12px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

/* FireGrade art — letter grade + sparkline */
.feat-art-firegrade {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 160, 74, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(160, 43, 27, 0.12), transparent 50%),
    var(--paper-2);
}
.art-grade {
  text-align: center;
  position: relative;
  z-index: 2;
}
.art-grade-letter {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 200px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-shadow: 6px 6px 0 var(--mustard);
}
.art-grade-meta {
  margin-top: 12px;
  color: var(--char);
}
.art-spark {
  position: absolute;
  bottom: 28px; left: 36px; right: 36px;
  color: var(--ink);
}
.art-spark svg { width: 100%; height: 64px; }
.art-spark-label { color: var(--char); margin-top: 4px; font-size: 9px; }

/* PickleMap art — court diagram */
.feat-art-picklemap {
  background:
    repeating-linear-gradient(45deg,
      var(--paper-2) 0 18px,
      rgba(166, 220, 56, 0.04) 18px 36px);
}
.art-court {
  position: relative;
  width: 75%; max-width: 320px;
  aspect-ratio: 1.6;
  border: 2px solid var(--ink);
  background: rgba(255,255,255,0.5);
}
.art-court-line {
  position: absolute;
  background: var(--ink);
}
.art-court-line.h { left: 0; right: 0; height: 1.5px; }
.art-court-line.v { top: 0; bottom: 0; width: 1.5px; }
.art-court-line.h1 { top: 30%; }
.art-court-line.h2 { top: 50%; opacity: 0.5; }
.art-court-line.h3 { top: 70%; }
.art-court-line.v1 { left: 50%; }
.art-court-line.v2 { left: 50%; opacity: 0; }
.art-court-pin {
  position: absolute;
  top: 28%; left: 38%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow:
    0 0 0 4px rgba(30, 58, 138, 0.18),
    0 0 0 12px rgba(30, 58, 138, 0.08);
  animation: pin-pulse 2.4s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.85); }
}
.art-court-label {
  position: absolute;
  bottom: -28px; left: 0;
  color: var(--char);
}

/* WMM art — service stack */
.feat-art-wmm {
  background:
    linear-gradient(135deg, var(--paper-2), rgba(30, 58, 138, 0.06)),
    var(--paper-2);
  align-items: center;
}
.art-stack {
  width: 78%;
  max-width: 360px;
}
.art-stack-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  background: var(--paper);
}
.art-stack-row:last-child { border-bottom: 1px solid var(--hairline); }
.art-stack-row .mono {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 600;
}

.index-foot {
  text-align: center;
  margin-top: 48px;
  color: var(--char);
}
.paper-tag {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 1px 7px;
  margin: 0 2px;
}

/* ============================================================
   METHOD NOTES (panel-forest)
   ============================================================ */
.notes .section-h.on-dark { margin-bottom: 56px; }
.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 80px);
}
@media (max-width: 880px) {
  .notes-grid { grid-template-columns: 1fr; gap: 48px; }
}
.note { max-width: 56ch; }
.note-meta {
  color: var(--mustard);
  margin-bottom: 14px;
}
.note-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.014em;
  margin: 0 0 14px;
}
.note-p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 18px;
}
.note-cta {
  display: inline-block;
  border-bottom: 1px solid var(--mustard);
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}
.note-cta:hover { opacity: 0.7; }

/* ============================================================
   HIRE
   ============================================================ */
.hire {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 140px) var(--gutter);
  background: var(--paper);
}
.hire .section-head { text-align: center; }
.hire .section-head .folio { display: inline-flex; }

.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 880px) { .hire-grid { grid-template-columns: 1fr; } }

.hire-card {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.hire-feature {
  background: var(--paper-2);
  position: relative;
}
.hire-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mustard);
}

.hire-eyebrow {
  color: var(--char);
}
.hire-feature .hire-eyebrow { color: var(--mustard-2); }
.hire-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.014em;
  margin: 4px 0 8px;
  color: var(--ink);
}
.hire-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}
.hire-cur { font-size: 22px; color: var(--char); }
.hire-num { color: var(--ink); }
.hire-deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.hire-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.hire-list li {
  padding: 8px 0;
  border-top: 1px dashed var(--hairline);
}
.hire-list li:first-child { border-top: 1px solid var(--hairline); }
.hire-list li:last-child { border-bottom: 1px solid var(--hairline); }
.hire-card .btn-pri,
.hire-card .btn-sec { margin-top: auto; align-self: flex-start; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 140px) var(--gutter);
  border-top: 1px solid var(--hairline);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

.contact-meta {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.contact-meta li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact-meta li .mono {
  color: var(--char);
  font-size: 10.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  color: var(--char);
}
.field-label .opt {
  color: var(--hairline);
  margin-left: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-bottom: 1.5px solid var(--ink);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  appearance: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--cobalt);
  border-bottom-color: var(--cobalt);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230F0F0F' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.alert {
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid;
}
.alert-eyebrow {
  margin-bottom: 6px;
}
.alert p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
}
.alert-ok {
  background: rgba(47, 77, 58, 0.08);
  border-color: var(--forest);
  color: var(--forest);
}
.alert-ok .alert-eyebrow { color: var(--forest); }
.alert-err {
  background: rgba(160, 43, 27, 0.06);
  border-color: var(--mustard-2);
  color: var(--mustard-2);
}
.alert-err .alert-eyebrow { color: var(--mustard-2); }

.form-foot {
  margin-top: 4px;
  color: var(--char);
  text-align: center;
}

/* ============================================================
   COLOPHON / FOOTER
   ============================================================ */
.colophon {
  background: var(--ink);
  color: var(--paper);
}
.colophon .mast-rule {
  background: rgba(244, 238, 224, 0.18);
  height: 1px;
}
.colophon-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 96px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 880px) {
  .colophon-inner { grid-template-columns: 1fr; gap: 36px; }
}

.col-eyebrow {
  color: var(--mustard);
  margin-bottom: 14px;
}
.col-p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 238, 224, 0.78);
  margin: 0;
}
.col-p strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--paper);
}
.col-p em { color: var(--mustard); font-style: italic; }

.col-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px var(--gutter);
  color: rgba(244, 238, 224, 0.5);
  font-size: 10.5px;
}

/* ============================================================
   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;
  }
  .reveal { opacity: 1; transform: none; }
  .cover-strip { animation: none; }
  .art-court-pin { animation: none; }
}
