:root {
  --paper: #efe9da;        /* warm document stock */
  --paper-2: #e7e0cd;      /* slightly deeper panel */
  --ink: #181712;          /* near-black ink */
  --ink-soft: #4f4a3c;     /* faded type */
  --brass: #b07d2b;        /* St Croix family gold/brass */
  --brass-deep: #8a6118;
  --stamp: #9a3324;        /* oxblood official stamp */
  --line: #cdc4ac;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }

/* ---- Ticker ---- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  animation: marquee 38s linear infinite;
}
.ticker__track span { padding: 0 14px; }
.ticker__track i { color: var(--brass); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Header ---- */
.site-header { border-bottom: 1.5px solid var(--ink); }
.site-header .wrap {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 22px 28px;
}
.brand__mark {
  display: block; font-family: var(--serif); font-weight: 900;
  font-size: 24px; letter-spacing: -0.01em; line-height: 1;
}
.brand__sub {
  display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: 6px;
}
.nav { display: flex; align-items: center; gap: 26px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav__cta { color: var(--ink) !important; border-bottom: 2px solid var(--brass); padding-bottom: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 15px 24px; border: 1.5px solid var(--ink);
  cursor: pointer; transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; border-bottom: 1.5px solid var(--ink); }
.filing {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 28px;
  opacity: 0; animation: rise 0.7s ease 0.05s forwards;
}
.hero__title {
  font-family: var(--serif); font-weight: 900; font-size: clamp(46px, 9vw, 116px);
  line-height: 0.92; letter-spacing: -0.025em; margin: 0 0 28px; max-width: 14ch;
  opacity: 0; animation: rise 0.8s ease 0.12s forwards;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--brass-deep); }
.hero__lede {
  font-size: 20px; color: var(--ink-soft); max-width: 50ch; margin: 0 0 36px;
  opacity: 0; animation: rise 0.8s ease 0.2s forwards;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: rise 0.8s ease 0.28s forwards; }
.stamps {
  list-style: none; display: flex; gap: 14px; flex-wrap: wrap; padding: 0;
  margin: 38px 0 0; opacity: 0; animation: rise 0.8s ease 0.36s forwards;
}
.stamps li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stamp);
  border: 1.5px solid var(--stamp); border-radius: 3px; padding: 6px 12px;
  transform: rotate(-2deg);
}
.stamps li:nth-child(2) { transform: rotate(1.5deg); }
.stamps li:nth-child(3) { transform: rotate(-1deg); }

.hero__watermark {
  position: absolute; right: -3%; bottom: -10%; font-family: var(--serif);
  font-weight: 900; font-size: clamp(180px, 32vw, 460px); color: var(--ink);
  opacity: 0.04; letter-spacing: -0.04em; pointer-events: none; user-select: none;
}
.regmark { position: absolute; width: 22px; height: 22px; opacity: 0.5; }
.regmark::before, .regmark::after { content: ""; position: absolute; background: var(--ink); }
.regmark::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.regmark::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.regmark--tl { top: 22px; left: 22px; }
.regmark--tr { top: 22px; right: 22px; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section--alt { background: var(--paper-2); border-top: 1.5px solid var(--ink); }
.section__kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass-deep); margin: 0 0 14px;
}
.section__title {
  font-family: var(--serif); font-weight: 900; font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.02em; line-height: 1; margin: 0 0 18px;
}
.section__lede { color: var(--ink-soft); font-size: 18px; max-width: 56ch; margin: 0 0 44px; }

/* ---- Departments ---- */
.depts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1.5px solid var(--ink); margin-top: 36px; }
.dept { padding: 34px 26px; border-bottom: 1px solid var(--line); }
.dept:first-child { padding-left: 0; }
.dept + .dept { border-left: 1px solid var(--line); }
.dept__no { font-family: var(--mono); font-size: 13px; color: var(--brass-deep); letter-spacing: 0.1em; }
.dept__name { font-family: var(--serif); font-weight: 600; font-size: 30px; margin: 10px 0 12px; display: flex; align-items: baseline; gap: 12px; }
.dept__name a { color: inherit; border-bottom: 2px solid var(--brass); padding-bottom: 1px; }
.dept__name a:hover { color: var(--brass-deep); }
.dept__blurb { color: var(--ink-soft); font-size: 17px; margin: 0; max-width: 42ch; }
.tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); background: var(--brass-deep); padding: 3px 8px; border-radius: 3px;
}

/* ---- Tickets (pricing) ---- */
.tickets { display: flex; flex-direction: column; gap: 22px; }
.ticket {
  position: relative; display: grid; grid-template-columns: 1fr 260px;
  background: var(--paper); border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(24, 23, 18, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ticket:hover { transform: translateY(-3px); box-shadow: 10px 10px 0 rgba(24, 23, 18, 0.16); }
/* tear-off notches on the outer edges */
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 50%; width: 18px; height: 18px;
  background: var(--paper-2); border: 1.5px solid var(--ink); border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -10px; }
.ticket::after { right: -10px; }

.ticket__body { padding: 32px 34px; }
.ticket__no { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 10px; }
.ticket__name { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; margin: 0 0 4px; line-height: 1; }
.ticket__cadence { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 18px; }
.ticket__lines { list-style: none; padding: 0; margin: 0 0 18px; }
.ticket__lines li { font-size: 15px; color: var(--ink); padding: 5px 0 5px 22px; position: relative; border-bottom: 1px dotted var(--line); }
.ticket__lines li::before { content: "✓"; position: absolute; left: 0; color: var(--brass-deep); font-weight: 700; }
.ticket__terms { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); margin: 0; letter-spacing: 0.03em; }

.ticket__stub {
  border-left: 2px dashed var(--ink); padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  background: rgba(176, 125, 43, 0.06);
}
.ticket__price { text-align: center; }
.ticket__was { display: block; font-family: var(--mono); font-size: 14px; color: var(--ink-soft); text-decoration: line-through; }
.ticket__amt { font-family: var(--serif); font-weight: 900; font-size: clamp(46px, 7vw, 66px); line-height: 1; letter-spacing: -0.03em; }
.ticket__amt .cur { font-size: 0.5em; vertical-align: super; color: var(--ink-soft); }
.ticket__unit { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* featured ticket: inverted */
.ticket--featured { background: var(--ink); border-color: var(--ink); }
.ticket--featured .ticket__name,
.ticket--featured .ticket__amt { color: var(--paper); }
.ticket--featured .ticket__no,
.ticket--featured .ticket__terms,
.ticket--featured .ticket__amt .cur,
.ticket--featured .ticket__unit,
.ticket--featured .ticket__was { color: #b8ae93; }
.ticket--featured .ticket__cadence { color: var(--brass); }
.ticket--featured .ticket__lines li { color: var(--paper); border-bottom-color: #3a372c; }
.ticket--featured .ticket__lines li::before { color: var(--brass); }
.ticket--featured .ticket__stub { border-left-color: var(--brass); background: rgba(176, 125, 43, 0.14); }
.ticket--featured .btn { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.ticket--featured .btn:hover { background: var(--paper); border-color: var(--paper); }
.ticket--featured::before, .ticket--featured::after { background: var(--paper-2); }

.ticket__stamp {
  position: absolute; top: 18px; right: 30px; z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stamp); border: 2px solid var(--stamp); border-radius: 4px;
  padding: 6px 12px; transform: rotate(7deg);
  animation: thunk 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) 0.6s backwards;
}
@keyframes thunk { from { opacity: 0; transform: rotate(7deg) scale(2.4); } to { opacity: 1; transform: rotate(7deg) scale(1); } }

.note { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-top: 32px; max-width: 60ch; line-height: 1.7; letter-spacing: 0.02em; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--paper); padding: 56px 0; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.foot__mark { font-family: var(--serif); font-weight: 900; font-size: 24px; margin: 0 0 6px; }
.foot__line { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #b8ae93; margin: 0; }
.foot__meta { text-align: right; }
.foot__meta p { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: #b8ae93; margin: 4px 0; }

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .depts { grid-template-columns: 1fr; }
  .dept { padding-left: 0; }
  .dept + .dept { border-left: 0; }
  .ticket { grid-template-columns: 1fr; }
  .ticket__stub { border-left: 0; border-top: 2px dashed var(--ink); }
  .ticket--featured .ticket__stub { border-top-color: var(--brass); }
  .ticket::before { left: -10px; top: auto; bottom: 30%; }
  .ticket::after { right: -10px; top: auto; bottom: 30%; }
}
@media (max-width: 760px) {
  .site-header .wrap { flex-wrap: wrap; align-items: center; gap: 14px; }
  .nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 16px 22px; }
}

@media (max-width: 600px) {
  .nav a:not(.nav__cta) { display: none; }
  .foot__meta { text-align: left; }
}

/* ---- Logo lockup ---- */
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__emblem { width: 46px; height: 46px; display: block; flex: 0 0 auto; }
.brand__text { display: block; }
.nav a.active { color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 2px; }

/* ---- Generic page header ---- */
.page-head { padding: 72px 0 8px; }
.page-head__title { font-family: var(--serif); font-weight: 900; font-size: clamp(40px, 7vw, 92px); line-height: 0.94; letter-spacing: -0.025em; margin: 8px 0 18px; }
.page-head__title em { font-style: italic; font-weight: 500; color: var(--brass-deep); }

/* ---- Prose ---- */
.prose { max-width: 60ch; }
.prose p { font-size: 19px; color: var(--ink); margin: 0 0 22px; }
.prose p:first-child::first-letter {
  font-family: var(--serif); font-weight: 900; float: left; font-size: 4.4em;
  line-height: 0.72; padding: 6px 12px 0 0; color: var(--brass-deep);
}
.cta-line { margin-top: 40px; }

/* ---- Manifesto creed ---- */
.creed { list-style: none; counter-reset: none; padding: 0; margin: 32px 0 0; border-top: 1.5px solid var(--ink); }
.creed li { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.creed__no { font-family: var(--mono); font-size: 14px; color: var(--brass-deep); letter-spacing: 0.1em; }
.creed h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 8px; line-height: 1.05; }
.creed p { color: var(--ink-soft); font-size: 17px; margin: 0; max-width: 52ch; }

/* ---- Contact ---- */
.contact { display: grid; grid-template-columns: 0.8fr 1fr; gap: 56px; align-items: start; }
.contact h2 { font-family: var(--serif); font-weight: 600; font-size: 28px; margin: 0 0 22px; }
.contact__row { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px dotted var(--line); font-size: 16px; }
.contact__row span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); width: 64px; flex: 0 0 auto; padding-top: 3px; }
.contact__form { background: var(--paper-2); border: 1.5px solid var(--ink); padding: 32px 30px; box-shadow: 6px 6px 0 rgba(24, 23, 18, 0.12); }
.contact__form label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.contact__form input, .contact__form textarea {
  display: block; width: 100%; margin-top: 7px; padding: 12px 14px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 0;
}
.contact__form input:focus, .contact__form textarea:focus { outline: 2px solid var(--brass); outline-offset: -1px; }
.form__note { font-family: var(--mono); font-size: 12px; color: var(--brass-deep); margin: -6px 0 18px; }
.confirm h2 { margin-bottom: 10px; }
.confirm p { color: var(--ink-soft); margin: 0 0 22px; }

/* ---- Footer nav ---- */
.foot__nav { display: flex; flex-direction: column; gap: 8px; }
.foot__nav a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #b8ae93; }
.foot__nav a:hover { color: var(--paper); }

@media (max-width: 820px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .creed li { grid-template-columns: 1fr; gap: 6px; }
  .foot__nav { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
