/* ===========================
   TOPPY 40 — VHS / Cassette aesthetic
   =========================== */

:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --bg-card: #141414;
  --bg-card-2: #1c1c1c;
  --cream: #f0e6c0;
  --cream-soft: #d8cfa8;
  --paper: #ede1bf;
  --paper-shadow: #b8a878;
  --ink: #2a241a;
  --red: #d33d3a;
  --red-deep: #a82723;
  --pink: #ff3d8a;
  --gold: #d4a44a;
  --green: #4ade80;
  --border: #3a3327;
  --tape-tan: #c9b981;
  /* chalkboard */
  --slate: #1c2420;
  --slate-deep: #14181a;
  --chalk: #f1ede2;
  --chalk-soft: rgba(241, 237, 226, 0.92);
  --chalk-pink: #ffb3c8;
  --chalk-yellow: #f5d97a;
  --wood: #6b4a2b;
  --wood-deep: #3a2614;
  --wood-light: #8d6537;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===========================
   Worn VHS background — dark black with gold sparkle (matches invite)
   =========================== */
body {
  background-color: #050505;
  background-image:
    /* faint long scratches */
    repeating-linear-gradient(
      82deg,
      transparent 0px,
      transparent 280px,
      rgba(212, 164, 74, 0.07) 280px,
      rgba(212, 164, 74, 0.07) 281px,
      transparent 281px,
      transparent 540px
    ),
    repeating-linear-gradient(
      98deg,
      transparent 0px,
      transparent 360px,
      rgba(212, 164, 74, 0.05) 360px,
      rgba(212, 164, 74, 0.05) 361px,
      transparent 361px,
      transparent 620px
    ),
    /* subtle dark gradient (almost pure black) */
    radial-gradient(ellipse at center, #0a0a0a 0%, #050505 70%, #020202 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Gold sparkle / dust speck overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='1' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.65  0 0 0 0 0.28  0 0 0 12 -8'/></filter><rect width='100%25' height='100%25' filter='url(%23s)'/></svg>");
  background-size: 400px 400px;
  mix-blend-mode: screen;
}

/* Subtle vignette */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 180px 30px rgba(0, 0, 0, 0.85);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ===========================
   CRT scanlines overlay
   =========================== */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

/* ===========================
   LIVE badge — camcorder-style, top center
   =========================== */
.live-badge {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 9px 18px 8px 14px;
  border: 1.5px solid rgba(240, 230, 192, 0.25);
  border-radius: 999px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow:
    0 0 8px var(--red),
    0 0 16px rgba(211, 61, 58, 0.8),
    0 0 24px rgba(211, 61, 58, 0.4),
    inset 0 0 4px rgba(255, 255, 255, 0.3);
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

.live-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--cream);
  line-height: 1;
  padding-top: 2px;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
    box-shadow:
      0 0 8px var(--red),
      0 0 16px rgba(211, 61, 58, 0.8),
      0 0 24px rgba(211, 61, 58, 0.4),
      inset 0 0 4px rgba(255, 255, 255, 0.3);
  }
  50%, 100% {
    opacity: 0.35;
    box-shadow:
      0 0 2px var(--red),
      inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
}

/* ===========================
   LETTER — chalkboard style
   - Slate background with chalk-dust noise
   - Wooden frame
   - Chalk handwriting (Kalam / Caveat) with soft text-shadow
   =========================== */
.letter-wrap {
  padding: 72px 18px 32px;
  display: flex;
  justify-content: center;
}

.letter {
  width: 100%;
  max-width: 660px;
  background: var(--slate);
  color: var(--chalk);
  padding: 48px 38px 52px;
  position: relative;
  border-radius: 4px;
  box-shadow:
    /* slate inner shadow (recessed feel) */
    inset 0 0 80px 8px rgba(0, 0, 0, 0.6),
    inset 0 0 28px 2px rgba(0, 0, 0, 0.4),
    /* subtle edge highlight */
    inset 0 1px 0 rgba(241, 237, 226, 0.04),
    /* drop shadow */
    0 22px 50px rgba(0, 0, 0, 0.7),
    0 4px 14px rgba(0, 0, 0, 0.5);
  background-image:
    /* chalk dust streaks (eraser marks) */
    radial-gradient(ellipse 200px 30px at 20% 12%, rgba(241, 237, 226, 0.04), transparent 70%),
    radial-gradient(ellipse 180px 24px at 78% 86%, rgba(241, 237, 226, 0.035), transparent 70%),
    radial-gradient(ellipse 140px 20px at 60% 40%, rgba(241, 237, 226, 0.025), transparent 70%),
    /* fine slate texture */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch' seed='6'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23c)'/></svg>"),
    /* darkness gradient (slate is darker at the edges) */
    radial-gradient(ellipse at center, var(--slate) 0%, var(--slate-deep) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 220px 220px, 100% 100%;
  background-blend-mode: screen, screen, screen, screen, normal;
}

/* Subtle chalk-dust smudge in corner */
.letter::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 60px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(241, 237, 226, 0.06), transparent 70%);
  pointer-events: none;
}

.letter-body {
  font-family: 'Kalam', 'Bradley Hand', cursive;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--chalk-soft);
  text-shadow:
    0 0 1px rgba(241, 237, 226, 0.6),
    0 0 2px rgba(241, 237, 226, 0.25);
  position: relative;
  z-index: 1;
}

.letter-body p {
  margin: 0 0 18px;
}

.letter-greeting {
  font-size: 26px;
  margin-bottom: 22px !important;
  font-weight: 700;
  color: var(--chalk);
}

/* Chalk-underlined punchline */
.letter-punch {
  font-weight: 700;
  font-size: 24px;
  color: var(--chalk);
  margin: 24px 0 24px !important;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  text-shadow:
    0 0 1px rgba(241, 237, 226, 0.8),
    0 0 3px rgba(241, 237, 226, 0.35);
}

.letter-punch::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: -2px;
  height: 4px;
  background: repeating-linear-gradient(
    92deg,
    rgba(241, 237, 226, 0.7) 0px,
    rgba(241, 237, 226, 0.55) 6px,
    rgba(241, 237, 226, 0.85) 12px,
    rgba(241, 237, 226, 0.4) 20px
  );
  border-radius: 2px;
  filter: blur(0.4px);
  transform: rotate(-0.6deg);
  opacity: 0.7;
}

.letter-sign {
  margin-top: 28px !important;
  margin-bottom: 6px !important;
  font-size: 20px;
}

.letter-name {
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 60px;
  font-weight: 700;
  color: var(--chalk);
  margin: 0 !important;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
  letter-spacing: 1px;
  text-shadow:
    0 0 2px rgba(241, 237, 226, 0.6),
    0 0 4px rgba(241, 237, 226, 0.3);
}

/* ===========================
   HERO (cover images)
   =========================== */
.hero {
  width: 100%;
  padding: 24px 18px;
  margin: 0;
  background: transparent;
  position: relative;
}

.hero .cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  animation: tracking 0.6s ease-out;
}

@keyframes tracking {
  0% { filter: hue-rotate(15deg) brightness(1.2); transform: translateX(-2px); opacity: 0.9; }
  20% { transform: translateX(2px); }
  40% { transform: translateX(-1px); }
  100% { filter: none; transform: translateX(0); opacity: 1; }
}

/* ===========================
   RSVP — rental card
   =========================== */
.rsvp {
  padding: 32px 18px 48px;
}

.rental-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(212, 164, 74, 0.02) 0px,
      rgba(212, 164, 74, 0.02) 1px,
      transparent 1px,
      transparent 6px
    );
  box-shadow:
    0 0 0 1px rgba(212, 164, 74, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.6);
}

.rental-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}

.rental-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--cream);
}

.rental-meta {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.8;
}

.row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row label,
.row .label-block {
  font-family: 'VT323', monospace;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--cream-soft);
  text-transform: uppercase;
}

.label-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--cream-soft);
  opacity: 0.55;
  margin-left: 4px;
}

.row input[type="text"],
.row input[type="email"],
.row input[type="tel"],
.row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.row input:focus,
.row textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(255, 61, 138, 0.2);
}

.row textarea {
  resize: vertical;
  min-height: 56px;
  font-family: 'Inter', sans-serif;
}

.radio-group {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.radio-group label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--cream);
  transition: border-color 0.15s, background 0.15s;
}

.radio-group label:hover {
  border-color: var(--cream-soft);
}

.radio-group input[type="radio"] {
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
}

.radio-group label:has(input:checked) {
  border-color: var(--pink);
  background: rgba(255, 61, 138, 0.08);
}

.btn-submit {
  width: 100%;
  margin-top: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--cream);
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  border: 2px solid var(--cream);
  padding: 16px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow:
    3px 3px 0 var(--red-deep),
    0 0 16px rgba(211, 61, 58, 0.3);
}

.btn-submit:hover:not(:disabled) {
  transform: translate(-1px, -1px);
  box-shadow:
    4px 4px 0 var(--red-deep),
    0 0 24px rgba(211, 61, 58, 0.5);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  margin: 14px 0 0;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 2px;
  min-height: 22px;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

#plus-one-row.hidden { display: none; }

/* ===========================
   THANKS page
   =========================== */
.thanks {
  padding: 90px 18px 48px;
  text-align: center;
}

.thanks-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--green);
  margin: 0 0 10px;
}

.thanks-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 4px;
  margin: 0 0 40px;
  color: var(--cream);
  line-height: 1;
}

/* On the thanks page, give the button grid more room */
.quick-links-grid-thanks {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 3px;
  margin: 0 0 8px;
  color: var(--cream);
  line-height: 1.1;
}

.section-sub {
  font-size: 14px;
  color: var(--cream-soft);
  opacity: 0.7;
  margin: 0 0 28px;
}

.btn-play {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--cream);
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 18px 36px;
  text-decoration: none;
  border: 2px solid var(--cream);
  box-shadow:
    4px 4px 0 var(--red-deep),
    0 0 24px rgba(211, 61, 58, 0.4);
  transition: transform 0.1s, box-shadow 0.1s;
  text-transform: uppercase;
}

.btn-play:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    6px 6px 0 var(--red-deep),
    0 0 32px rgba(211, 61, 58, 0.6);
}

.btn-play:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--red-deep);
}

.hint {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--cream-soft);
  opacity: 0.5;
  margin: 16px 0 0;
}

.thanks-foot {
  margin: 56px 0 0;
}

.back-link {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--cream-soft);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.back-link:hover { opacity: 1; }

/* ===========================
   QUICK LINKS (bottom of main page)
   =========================== */
.quick-links {
  padding: 48px 18px 32px;
  text-align: center;
}

.quick-links-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--cream-soft);
  opacity: 0.7;
  margin: 0 0 22px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===========================
   Generic .btn-link (paired buttons)
   =========================== */
.btn-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 4px;
  border: 2px solid var(--cream);
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s;
  text-align: left;
  min-height: 84px;
}

.btn-link-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.btn-link-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.btn-link-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--cream);
  line-height: 1.1;
  flex: 1;
}

.btn-link-red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 3px 3px 0 var(--red-deep), 0 0 14px rgba(211, 61, 58, 0.3);
}

.btn-link-red:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--red-deep), 0 0 22px rgba(211, 61, 58, 0.5);
}

.btn-link-outline {
  background: rgba(20, 20, 20, 0.6);
  border-color: var(--cream-soft);
}

.btn-link-outline:hover {
  background: rgba(240, 230, 192, 0.08);
  border-color: var(--cream);
  transform: translate(-1px, -1px);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  text-align: center;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--border);
}

.footer-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--gold);
  margin: 0 0 8px;
}

.footer-meta {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--cream-soft);
  opacity: 0.6;
  margin: 0;
}

/* ===========================
   Responsive
   =========================== */
@media (min-width: 600px) {
  .letter-wrap { padding: 84px 24px 40px; }
  .letter { padding: 60px 64px 68px; }
  .letter-body { font-size: 24px; line-height: 1.65; }
  .letter-greeting { font-size: 28px; }
  .letter-name { font-size: 68px; }
  .hero { padding: 32px 24px; }
  .rsvp { padding: 40px 24px 64px; }
  .rental-card { padding: 32px; }
  .thanks-title { font-size: 72px; }
  .section-title { font-size: 36px; }
  .quick-links { padding: 56px 24px 40px; }
  .quick-links-grid { grid-template-columns: 1fr 1fr; gap: 16px; max-width: 620px; }
  .quick-links-grid-thanks { grid-template-columns: 1fr; max-width: 480px; }
  .thanks-title { font-size: 72px; }
}

@media (max-width: 380px) {
  .btn-play { font-size: 18px; padding: 16px 24px; letter-spacing: 2px; }
  .live-text { font-size: 16px; letter-spacing: 3px; }
  .live-dot { width: 12px; height: 12px; }
  .letter { padding: 36px 24px 40px; }
  .letter-body { font-size: 20px; }
  .letter-greeting { font-size: 24px; }
  .letter-name { font-size: 52px; }
}

/* ===========================
   RSVP HINT — uses .live-badge styling
   =========================== */
.live-badge {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.live-arrow {
  font-family: 'Bebas Neue', sans-serif;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--red);
  margin-left: 4px;
  animation: rsvp-bounce 1.4s ease-in-out infinite;
  text-shadow: 0 0 10px var(--red);
}

@keyframes rsvp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.live-badge.rsvp-hint-hidden {
  opacity: 0;
  transform: translate(-50%, -20px);
  pointer-events: none;
}

/* ===========================
   BACK TO INVITE (big button)
   =========================== */
.back-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: rgba(20, 20, 20, 0.7);
  border: 2px solid var(--cream-soft);
  border-radius: 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
  transition: transform 0.1s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 rgba(110, 28, 218, 0.5);
}

.back-big:hover {
  background: rgba(110, 28, 218, 0.18);
  border-color: var(--cream);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(110, 28, 218, 0.8);
}

.back-big-arrow {
  font-size: 24px;
  line-height: 1;
}

.back-big-wrap {
  text-align: center;
  padding: 28px 24px;
}

/* Tight gap when back-to-invite sits right after the inspo intro (top of inspo page) */
.inspo-intro + .back-big-wrap {
  padding-top: 4px;
}

@media (min-width: 600px) {
  .back-big { font-size: 26px; padding: 22px 40px; letter-spacing: 5px; }
  .back-big-arrow { font-size: 28px; }
  .back-big-wrap { padding: 36px 24px; }
  .inspo-intro + .back-big-wrap { padding-top: 6px; }
}

/* ===========================
   INSPO PAGE
   =========================== */
.inspo-intro {
  text-align: center;
  padding: 90px 24px 32px;
  max-width: 720px;
  margin: 0 auto;
}

/* Embedded variant (used on thanks page after the Spotify button) — tight gap */
.inspo-intro-embed {
  padding-top: 12px;
}

.inspo-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--red);
  margin: 0 0 12px;
}

.inspo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 3px;
  color: var(--cream);
  line-height: 1;
  margin: 0 0 18px;
  text-shadow: 0 0 18px rgba(110, 28, 218, 0.35);
}

.inspo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 14px;
  opacity: 0.9;
}

.outfit-grid {
  padding: 16px 12px 24px;
  max-width: 1800px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 10px;
}

.outfit-tile {
  margin: 0 0 10px;
  break-inside: avoid;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1d;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.outfit-tile img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 600px) {
  .outfit-grid { column-count: 3; column-gap: 14px; padding: 24px 20px 32px; }
  .outfit-tile { margin-bottom: 14px; }
}

@media (min-width: 1000px) {
  .outfit-grid { column-count: 4; column-gap: 16px; padding: 32px 24px 40px; }
  .outfit-tile { margin-bottom: 16px; }
  .outfit-tile:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.7), 0 0 0 1px rgba(110, 28, 218, 0.4); }
}

@media (min-width: 1500px) {
  .outfit-grid { column-count: 5; }
}

.inspo-foot {
  text-align: center;
  padding: 24px 24px 8px;
}

.inspo-foot-line {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--red);
  margin: 0 0 18px;
  transform: rotate(-1.5deg);
  display: inline-block;
}

@media (min-width: 600px) {
  .inspo-intro { padding: 110px 24px 40px; }
  .inspo-intro-embed { padding-top: 16px; }
  .inspo-title { font-size: 84px; }
  .inspo-sub { font-size: 19px; }
  .inspo-foot-line { font-size: 36px; }
}

@media (max-width: 380px) {
  .inspo-title { font-size: 44px; }
  .inspo-sub { font-size: 15px; }
}
