/* ============================================================
   Senior Jacket '27 — varsity sticker theme
   Cream paper, navy ink, varsity red, gold. Bricolage Grotesque
   display + Space Grotesk body. Bold borders, offset shadows.
   ============================================================ */

:root {
  --cream: #faf3e5;
  --paper: #fffdf7;
  --ink: #1e2749;
  --red: #d6452f;
  --red-deep: #b83520;
  --gold: #f2a93b;
  --green: #2e6b4f;
  --muted: #6d6f7e;
  --line: rgba(30, 39, 73, 0.18);

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;

  --shadow-pop: 5px 5px 0 var(--ink);
  --shadow-pop-sm: 3px 3px 0 var(--ink);
  --radius-card: 20px;
  --radius-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav__brand span { color: var(--red); }

.nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
}

.nav__links a:hover { color: var(--red); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 64px 24px 96px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pop-sm);
  padding: 10px 24px;
  margin-bottom: 36px;
  transform: rotate(-2deg);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0.045em 0.045em 0 var(--gold);
}

.hero__approved {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
}

.hero__approved-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 11px;
}

.hero__sub {
  max-width: 460px;
  margin-top: 36px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Floating sticker decorations */

.sticker {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-pop-sm);
  user-select: none;
  pointer-events: none;
}

.sticker--star {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 40px;
  top: 16%;
  left: 9%;
  transform: rotate(-14deg);
  animation: floatStar 6s ease-in-out infinite;
}

.sticker--year {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 36px;
  bottom: 22%;
  right: 8%;
  transform: rotate(10deg);
  animation: floatYear 7s ease-in-out infinite;
}

.sticker--patch {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  top: 24%;
  right: 11%;
  transform: rotate(6deg);
  animation: floatPatch 5.5s ease-in-out infinite;
}

.sticker--class {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.08em;
  bottom: 18%;
  left: 10%;
  transform: rotate(-7deg);
  animation: floatClass 6.5s ease-in-out infinite;
}

@keyframes floatStar {
  0%, 100% { transform: rotate(-14deg) translateY(0); }
  50%      { transform: rotate(-9deg) translateY(-16px); }
}
@keyframes floatYear {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%      { transform: rotate(5deg) translateY(-18px); }
}
@keyframes floatPatch {
  0%, 100% { transform: rotate(6deg) translateX(0); }
  50%      { transform: rotate(10deg) translateX(-14px); }
}
@keyframes floatClass {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-13px); }
}

/* Marquee strip */

.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee__inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee__inner .star { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-reveal: elements rise + fade into view */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Scrolling divider band */

.band {
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.band__track {
  display: inline-block;
  animation: bandScroll 28s linear infinite;
}

.band__track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .band__track { animation: none; }
}

/* Hero facts strip */

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-pop-sm);
  padding: 12px 22px;
  min-width: 116px;
}

.fact__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}

.fact__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 6px;
}

.fact--alert {
  background: var(--red);
  animation: pulseAlert 2.2s ease-in-out infinite;
}

.fact--alert .fact__value { color: var(--cream); }
.fact--alert .fact__label { color: rgba(250, 243, 229, 0.85); }

@keyframes pulseAlert {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-pop-sm); }
  50%      { transform: scale(1.05); box-shadow: 5px 5px 0 var(--ink); }
}

/* ---------- Sections ---------- */

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-pop-sm);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section__title em {
  font-style: normal;
  color: var(--red);
}

.section__lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  color: var(--ink);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 8px 28px;
}

.detail-card li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 2px dashed var(--line);
  font-size: 16px;
}

.detail-card li:last-child { border-bottom: none; }

.detail-card li span:first-child {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.detail-card li span:last-child {
  font-weight: 700;
  text-align: right;
}

.detail-strict {
  color: var(--cream) !important;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 2px 12px;
}

/* Materials spec card */

.spec-card {
  margin-top: 28px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 0 var(--green);
  padding: 20px 24px;
  max-width: 420px;
}

.spec-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}

.spec-list { list-style: none; }

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 2px dashed rgba(250, 243, 229, 0.18);
  font-size: 15px;
}

.spec-list li:last-child { border-bottom: none; }

.spec-list li span:first-child {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 243, 229, 0.6);
}

.spec-list li span:last-child { font-weight: 700; }

/* ---------- Size chart ---------- */

.size-chart { margin-top: 64px; }

.size-chart__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 20px;
}

.size-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 0 var(--gold);
  padding: 12px 24px 20px;
  overflow-x: auto;
}

.size-card table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.size-card th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: left;
  padding: 14px 14px 10px 0;
  border-bottom: 2px solid var(--ink);
}

.size-card td {
  font-size: 16px;
  padding: 12px 14px 12px 0;
  border-bottom: 2px dashed var(--line);
}

.size-card tr:last-child td { border-bottom: none; }

.size-card td:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
}

.size-chart__note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

.hint--link {
  color: var(--red-deep);
  text-decoration: underline;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 40px;
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.field .hint {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.field input,
.field select {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e2749' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.field input:focus,
.field select:focus {
  box-shadow: var(--shadow-pop-sm);
  transform: translate(-1px, -1px);
}

.field input::placeholder { color: var(--muted); }

.field .field__error {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-deep);
  display: none;
}

.field.is-invalid input,
.field.is-invalid select { border-color: var(--red-deep); }

.field.is-invalid .field__error { display: block; }

/* Honeypot — invisible to humans */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Patch uploads ---------- */

.patch-block {
  border: 2px dashed var(--ink);
  border-radius: 16px;
  background: var(--cream);
  padding: 20px;
}

.patch-block + .patch-block { margin-top: 16px; }

.patch-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.patch-block__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.patch-block__title small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 2px;
}

.patch-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.patch-previews:empty { display: none; }

.patch-thumb {
  position: relative;
  width: 84px;
  height: 84px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.patch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.patch-thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.patch-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-deep);
  margin-top: 12px;
  min-height: 18px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pop-sm);
  padding: 14px 32px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  background: var(--paper);
  color: var(--ink);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn--red { background: var(--red); color: var(--cream); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--green { background: var(--green); color: var(--cream); }
.btn--navy { background: var(--ink); color: var(--cream); }

.btn--sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn:disabled {
  background: var(--muted);
  color: var(--paper);
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-pop-sm);
}

.form-actions { margin-top: 36px; }

/* ---------- Payment frame ---------- */

.payment-frame {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 24px;
}

.payment-frame__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.payment-frame .section__label { background: var(--gold); color: var(--ink); }

.payment-frame__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  color: var(--cream);
  text-shadow: 0.05em 0.05em 0 var(--red);
}

.order-summary {
  list-style: none;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 0 var(--gold);
  padding: 8px 24px;
  margin-bottom: 28px;
}

.order-summary li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 2px dashed var(--line);
  font-size: 16px;
}

.order-summary li:last-child { border-bottom: none; }

.order-summary li span:first-child {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.order-summary li span:last-child { font-weight: 700; text-align: right; }

/* Amount due + deadline */
.pay-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 0 var(--red);
  padding: 18px 24px;
  margin-bottom: 20px;
}

.pay-total span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pay-total strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
}

.pay-deadline {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(250, 243, 229, 0.85);
  margin-bottom: 24px;
}

.pay-deadline strong { color: var(--gold); }

/* Payment method cards */
.pay-method {
  border: 2px solid rgba(250, 243, 229, 0.25);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
}

.pay-method__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pay-method__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.pay-method__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--cream);
}

.pay-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 243, 229, 0.6);
  border: 2px solid rgba(250, 243, 229, 0.3);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}

.pay-tag--live {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.pay-method__body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250, 243, 229, 0.85);
}

.pay-method__body strong { color: var(--cream); }

.pay-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: underline;
}

.pay-link.is-disabled {
  color: rgba(250, 243, 229, 0.4);
  text-decoration: none;
  cursor: not-allowed;
}

/* Ziina QR placeholder */
.qr-placeholder {
  position: relative;
  width: 132px;
  height: 132px;
  margin-top: 14px;
  border: 2px dashed var(--gold);
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-placeholder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink) 2px, transparent 2px),
    linear-gradient(90deg, var(--ink) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.12;
}

.qr-placeholder__label {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--cream);
  padding: 4px 8px;
}

.pay-finalnote {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 243, 229, 0.8);
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-bottom: 24px;
}

.pay-finalnote strong { color: var(--cream); }

.payment-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 3px 3px 0 rgba(250, 243, 229, 0.4);
}

.btn--ghost-light:hover { box-shadow: 5px 5px 0 rgba(250, 243, 229, 0.4); }

/* ---------- Confirmation ---------- */

.confirm {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 96px 24px;
}

.confirm__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 var(--gold);
  margin-bottom: 24px;
}

.confirm__id {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pop-sm);
  padding: 8px 20px;
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

/* ---------- Privacy page ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 var(--gold);
  margin-bottom: 12px;
}

.legal__updated {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 28px);
  margin: 40px 0 12px;
}

.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.legal ul {
  margin: 12px 0 12px 22px;
}

.legal li { margin-bottom: 8px; }

.legal strong { font-weight: 700; }

.legal a { color: var(--red-deep); font-weight: 700; }

/* ---------- Admin ---------- */

body.admin {
  background: var(--ink);
  color: var(--cream);
  min-height: 100vh;
}

body.admin .nav {
  background: var(--ink);
  border-bottom: 2px solid var(--gold);
}

body.admin .nav__brand,
body.admin .nav__links a { color: var(--cream); }
body.admin .nav__links a:hover { color: var(--gold); }
body.admin .nav__brand span { color: var(--gold); }

.admin-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.admin-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 var(--red);
  margin-bottom: 48px;
}

.admin-login { max-width: 440px; }

.admin-login .field label { color: var(--cream); }

.admin-login .field input {
  background: var(--paper);
  color: var(--ink);
}

.admin-error {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin: 18px 0;
  min-height: 20px;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.admin-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
}

.admin-toolbar__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.table-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 6px 6px 0 var(--red);
  padding: 8px 24px;
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.orders-table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: left;
  padding: 16px 14px 12px 0;
  border-bottom: 2px solid var(--ink);
}

.orders-table td {
  font-size: 15px;
  padding: 14px 14px 14px 0;
  border-bottom: 2px dashed var(--line);
  vertical-align: middle;
}

.orders-table tr:last-child td { border-bottom: none; }

.orders-table td.muted { color: var(--muted); }

.status-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.status-pill:hover { transform: translateY(-1px); }
.status-pill:active { transform: translateY(1px); }
.status-pill:disabled { cursor: default; opacity: 0.6; }

.status-pill--unpaid {
  background: var(--red);
  color: var(--cream);
}

.status-pill--paid {
  background: var(--green);
  color: var(--cream);
}

.patch-cell {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 240px;
}

.patch-cell a {
  display: block;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}

.patch-cell a.is-country { border-color: var(--green); box-shadow: 0 0 0 2px var(--green); }

.patch-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.patch-cell .none { color: var(--muted); font-size: 14px; }

.admin-empty {
  padding: 48px 0;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Helpers & responsive ---------- */

[hidden] { display: none !important; }

@media (max-width: 860px) {
  .nav { padding: 14px 20px; }
  .section { padding: 64px 20px; }
  .payment-frame { padding: 64px 20px; }
  .details-grid,
  .payment-frame__inner,
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .sticker { display: none; }
  .footer { flex-direction: column; gap: 10px; text-align: center; }
  .admin-shell { padding: 48px 20px 64px; }
}
