/* Standalone version based on the supplied Lovable/Tailwind CSS */

:root {
  --radius: 0.25rem;

  /* Festival palette */
  --hot: oklch(0.66 0.27 4);
  --electric: oklch(0.62 0.22 264);
  --sun: oklch(0.86 0.18 92);
  --lime: oklch(0.84 0.22 132);
  --ink: oklch(0.16 0.04 280);
  --cream: oklch(0.97 0.025 92);

  --background: var(--cream);
  --foreground: var(--ink);
  --border: var(--ink);

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "VT323", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

p {
  line-height: 1.55;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 3vw;
  border-bottom: 3px solid var(--ink);
  background: color-mix(in oklab, var(--cream) 94%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand > span {
  display: inline-grid;
  place-items: center;
  width: 55px;
  height: 50px;
  background: var(--hot);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  transform: rotate(-3deg);
}

.brand small {
  max-width: 100px;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.nav-ticket {
  padding: 12px 17px;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--sun);
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  gap: 6vw;
  padding: clamp(70px, 9vw, 150px) 5vw;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  background: var(--lime);
  right: -13vw;
  top: -9vw;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 60px;
  left: -45px;
  bottom: 13%;
  background: var(--electric);
  border: 3px solid var(--ink);
  transform: rotate(-14deg);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(82px, 14vw, 210px);
  max-width: 950px;
}

.hero h1 span {
  display: block;
}

.hero h1 .outline {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
  margin-left: 18%;
}

.hero-sub {
  max-width: 650px;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 3px solid var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}

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

.btn-dark {
  background: var(--ink);
  color: var(--sun);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}

.full {
  width: 100%;
}

.hero-poster {
  justify-self: end;
  width: min(100%, 420px);
  background: var(--hot);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(3deg);
}

.poster-top,
.poster-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 24px;
}

.poster-main {
  padding: 48px 22px;
  text-align: center;
}

.poster-main p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 36px;
}

.poster-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(75px, 10vw, 130px);
  line-height: .8;
  -webkit-text-stroke: 2px var(--ink);
  color: var(--sun);
}

.poster-bottom {
  border-top: 3px solid var(--ink);
  border-bottom: 0;
  font-size: 18px;
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
}

.sticker-one {
  top: 12%;
  right: 32%;
  background: var(--sun);
  transform: rotate(8deg);
}

.sticker-two {
  bottom: 12%;
  right: 43%;
  background: var(--electric);
  color: var(--cream);
  transform: rotate(-6deg);
}

.marquee-wrap {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background: var(--sun);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
}

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

.countdown-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 40px;
  padding: 80px 5vw;
  background: var(--ink);
  color: var(--cream);
}

.countdown-section h2 {
  color: var(--sun);
  font-size: clamp(60px, 8vw, 125px);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
  border: 3px solid var(--cream);
}

.countdown > div {
  padding: clamp(20px, 3vw, 42px) 12px;
  text-align: center;
  border-right: 3px solid var(--cream);
}

.countdown > div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--lime);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 400;
  line-height: .8;
}

.countdown span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(80px, 10vw, 150px) 5vw;
}

.lineup-section {
  background: var(--cream);
}

.section-heading {
  position: relative;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(75px, 11vw, 170px);
}

.hand-note {
  position: absolute;
  left: min(54vw, 760px);
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: clamp(23px, 3vw, 42px);
  transform: rotate(-5deg);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.lineup-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 55px);
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lineup-card.hot { background: var(--hot); }
.lineup-card.electric { background: var(--electric); color: var(--cream); }
.lineup-card.sun { background: var(--sun); }
.lineup-card.lime { background: var(--lime); }
.lineup-card.ink { background: var(--ink); color: var(--cream); }

.lineup-card h3 {
  font-size: clamp(56px, 6.8vw, 105px);
}

.lineup-card p {
  max-width: 550px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.time {
  align-self: flex-start;
  padding: 6px 9px;
  border: 2px solid currentColor;
  font-family: var(--font-mono);
  font-size: 28px;
}

.span-two {
  grid-column: 1 / -1;
}

.tilt-left {
  transform: rotate(-1deg);
}

.tilt-right {
  transform: rotate(1deg);
}

.location-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7vw;
  align-items: center;
  background: var(--electric);
  color: var(--cream);
}

.map-card {
  position: relative;
  min-height: 650px;
  background: var(--sun);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-2deg);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink) 2px, transparent 2px),
    linear-gradient(90deg, var(--ink) 2px, transparent 2px);
  background-size: 70px 70px;
  opacity: .9;
}

.road {
  position: absolute;
  background: var(--cream);
  border: 3px solid var(--ink);
}

.road-a {
  width: 130%;
  height: 44px;
  left: -15%;
  top: 38%;
  transform: rotate(-19deg);
}

.road-b {
  width: 52px;
  height: 120%;
  left: 54%;
  top: -10%;
  transform: rotate(12deg);
}

.road-c {
  width: 110%;
  height: 34px;
  left: -5%;
  top: 70%;
  transform: rotate(8deg);
}

.pin {
  position: absolute;
  left: 58%;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: var(--hot);
  border: 4px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
  font-size: 52px;
}

.map-label {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: 24px;
  padding: 10px 15px;
  background: var(--ink);
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 24px;
}

.location-copy h2 {
  font-size: clamp(70px, 9vw, 140px);
  color: var(--sun);
}

.location-copy .lead {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
}

.location-copy > p:not(.eyebrow):not(.lead) {
  max-width: 520px;
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.info-section {
  background: var(--sun);
}

.compact h2 {
  font-size: clamp(65px, 9vw, 135px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 4px solid var(--ink);
}

.info-grid article {
  min-height: 280px;
  padding: 34px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.info-grid article:nth-child(2n) {
  border-right: 0;
}

.info-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}

.info-grid span {
  font-family: var(--font-mono);
  font-size: 32px;
}

.info-grid h3 {
  margin-top: 35px;
  font-size: clamp(36px, 4vw, 62px);
}

.info-grid p {
  max-width: 540px;
  font-size: 17px;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 9vw 5vw;
  text-align: center;
  background: var(--hot);
  border-block: 4px solid var(--ink);
}

.quote-section p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 7vw, 110px);
  line-height: .95;
}

.quote-star {
  position: absolute;
  left: 2vw;
  top: -9vw;
  color: var(--sun);
  font-size: 35vw;
  line-height: 1;
}

.rsvp-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  background: var(--lime);
}

.rsvp-copy h2 {
  font-size: clamp(75px, 10vw, 150px);
}

.rsvp-copy p:last-child {
  max-width: 400px;
  font-size: 20px;
}

.rsvp-card {
  padding: clamp(25px, 4vw, 55px);
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--ink);
}

.rsvp-card label,
.rsvp-card legend {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.rsvp-card > label,
.rsvp-card fieldset {
  margin-bottom: 24px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  margin-top: 8px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: white;
  padding: 14px 15px;
  outline: none;
}

input:focus,
textarea:focus {
  box-shadow: 4px 4px 0 var(--hot);
}

fieldset {
  border: 0;
  padding: 0;
}

.radio {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

.radio input {
  width: 20px;
  height: 20px;
  accent-color: var(--hot);
}

.form-note {
  margin: 16px 0 0;
  color: #555;
  font-size: 12px;
}

.form-success {
  margin-top: 12px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr .7fr;
  gap: 30px;
  align-items: end;
  padding: 45px 5vw;
  border-top: 4px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 24px;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 23px;
}

.site-footer a {
  justify-self: end;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 3px solid var(--ink);
    background: var(--cream);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 18px 5vw;
    border-top: 2px solid var(--ink);
    font-size: 18px;
  }

  .nav-ticket {
    box-shadow: none;
    border-inline: 0;
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero::before {
    right: -30vw;
    top: 2vw;
  }

  .hero h1 {
    font-size: clamp(80px, 25vw, 150px);
  }

  .hero-poster {
    justify-self: start;
    width: min(88%, 420px);
    margin-top: 35px;
  }

  .sticker-one {
    top: 5%;
    right: 6%;
  }

  .sticker-two {
    right: 8%;
    bottom: 4%;
  }

  .countdown-section,
  .location-section,
  .rsvp-section {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown > div {
    border-bottom: 3px solid var(--cream);
  }

  .countdown > div:nth-child(2) {
    border-right: 0;
  }

  .countdown > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .span-two {
    grid-column: auto;
  }

  .hand-note {
    position: static;
    display: block;
    margin-top: 25px;
  }

  .map-card {
    min-height: 450px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer a {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero h1 .outline {
    margin-left: 8%;
  }

  .poster-bottom {
    flex-wrap: wrap;
  }

  .countdown-section,
  .section {
    padding-inline: 20px;
  }

  .countdown {
    border-width: 2px;
  }

  .countdown > div {
    padding: 22px 8px;
  }

  .lineup-card {
    min-height: 280px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article,
  .info-grid article:nth-child(2n),
  .info-grid article:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .info-grid article:last-child {
    border-bottom: 0;
  }

  .quote-section {
    padding-block: 90px;
  }

  .rsvp-card {
    box-shadow: 8px 8px 0 var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  * { transition: none !important; }
}


/* --- Responsive hardening patch --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

.hero,
.countdown-section,
.location-section,
.rsvp-section,
.site-footer,
.lineup-grid,
.info-grid {
  min-width: 0;
}

.hero-copy,
.hero-poster,
.location-copy,
.map-card,
.rsvp-copy,
.rsvp-card,
.lineup-card,
.info-grid article {
  min-width: 0;
}

.hero h1,
.section-heading h2,
.location-copy h2,
.rsvp-copy h2,
.countdown-section h2,
.quote-section p {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    gap: 42px;
    padding-bottom: 90px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(68px, 20vw, 132px);
    line-height: 0.84;
  }

  .hero h1 .outline {
    margin-left: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .hero-poster {
    width: min(100%, 390px);
    max-width: calc(100vw - 40px);
    justify-self: center;
    margin-inline: auto;
    transform: rotate(1.5deg);
  }

  .poster-main strong {
    font-size: clamp(68px, 18vw, 110px);
  }

  .sticker-one {
    top: 18px;
    right: 18px;
    max-width: 44vw;
    font-size: 12px;
  }

  .sticker-two {
    right: 18px;
    bottom: 18px;
    max-width: 52vw;
    font-size: 12px;
  }

  .countdown-section {
    gap: 28px;
  }

  .countdown-section h2 {
    font-size: clamp(54px, 14vw, 92px);
  }

  .section-heading h2,
  .location-copy h2,
  .rsvp-copy h2 {
    font-size: clamp(58px, 15vw, 105px);
  }

  .lineup-card h3 {
    font-size: clamp(48px, 12vw, 82px);
  }

  .map-card {
    width: 100%;
    max-width: calc(100vw - 40px);
    justify-self: center;
    transform: none;
  }

  .rsvp-card {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .site-footer {
    overflow: hidden;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero {
    padding: 56px 16px 72px;
  }

  .hero::after {
    width: 180px;
    left: -60px;
    bottom: 7%;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 104px);
  }

  .kicker,
  .eyebrow {
    font-size: 19px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-poster {
    max-width: 100%;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .poster-top,
  .poster-bottom {
    font-size: 16px;
    padding: 12px;
  }

  .poster-main {
    padding: 34px 14px;
  }

  .poster-main p {
    font-size: 26px;
  }

  .poster-main strong {
    font-size: clamp(58px, 19vw, 86px);
  }

  .sticker-one,
  .sticker-two {
    display: none;
  }

  .marquee-track {
    font-size: 26px;
  }

  .countdown-section,
  .section,
  .location-section,
  .rsvp-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .countdown {
    width: 100%;
  }

  .countdown strong {
    font-size: clamp(46px, 15vw, 66px);
  }

  .countdown span {
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .location-copy h2,
  .rsvp-copy h2,
  .countdown-section h2 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .hand-note {
    font-size: 24px;
  }

  .lineup-grid {
    gap: 20px;
  }

  .lineup-card {
    width: 100%;
    padding: 24px;
    box-shadow: 6px 6px 0 var(--ink);
    transform: none;
  }

  .lineup-card h3 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .lineup-card p {
    font-size: 16px;
  }

  .time {
    font-size: 22px;
  }

  .map-card {
    min-height: 340px;
    max-width: 100%;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .pin {
    width: 72px;
    height: 72px;
    font-size: 38px;
  }

  .location-copy .lead {
    font-size: 24px;
  }

  .info-grid article {
    min-height: auto;
    padding: 26px 22px;
  }

  .info-grid h3 {
    font-size: 38px;
  }

  .quote-section {
    padding: 74px 16px;
  }

  .quote-section p {
    font-size: clamp(38px, 11vw, 60px);
  }

  .rsvp-section {
    gap: 40px;
  }

  .rsvp-card {
    max-width: 100%;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }

  .site-footer {
    padding: 34px 16px;
    word-break: break-word;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(52px, 18vw, 74px);
  }

  .brand > span {
    width: 48px;
    height: 44px;
    font-size: 21px;
  }

  .menu-toggle {
    padding: 9px 10px;
  }

  .countdown > div {
    padding-inline: 4px;
  }

  .countdown strong {
    font-size: 44px;
  }

  .lineup-card h3 {
    font-size: 40px;
  }

  .poster-main strong {
    font-size: 60px;
  }
}


/* === FINAL MOBILE-FIRST SAFETY PATCH === */
*, *::before, *::after {
  max-width: 100%;
}

html {
  width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

main,
section,
header,
footer,
nav,
form,
article,
div {
  min-width: 0;
}

.hero,
.section,
.countdown-section,
.location-section,
.rsvp-section,
.site-footer {
  width: 100%;
  max-width: 100vw;
}

.hero-copy,
.location-copy,
.rsvp-copy,
.rsvp-card,
.hero-poster,
.map-card,
.lineup-card {
  width: 100%;
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .hero {
    display: block !important;
    min-height: auto !important;
    padding: 48px 14px 64px !important;
    overflow: hidden !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(46px, 14vw, 78px) !important;
    line-height: .86 !important;
    letter-spacing: -0.04em;
  }

  .hero h1 span {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero h1 .outline {
    margin-left: 0 !important;
    -webkit-text-stroke: 2px var(--ink);
  }

  .hero-sub {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-poster {
    width: 100% !important;
    max-width: 100% !important;
    margin: 36px 0 0 !important;
    transform: none !important;
    box-shadow: 5px 5px 0 var(--ink) !important;
  }

  .hero-sticker {
    display: none !important;
  }

  .poster-top,
  .poster-bottom {
    flex-wrap: wrap;
  }

  .poster-main strong {
    font-size: clamp(52px, 18vw, 78px) !important;
  }

  .marquee-wrap {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .countdown-section,
  .location-section,
  .rsvp-section {
    display: block !important;
    width: 100%;
    padding: 64px 14px !important;
    overflow: hidden;
  }

  .countdown-section h2,
  .section-heading h2,
  .location-copy h2,
  .rsvp-copy h2 {
    font-size: clamp(44px, 13vw, 72px) !important;
    line-height: .9;
  }

  .countdown {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 28px;
  }

  .countdown > div {
    min-width: 0;
  }

  .countdown strong {
    font-size: clamp(38px, 12vw, 58px) !important;
  }

  .section {
    width: 100%;
    padding: 64px 14px !important;
    overflow: hidden;
  }

  .section-heading {
    width: 100%;
    margin-bottom: 36px !important;
  }

  .hand-note {
    position: static !important;
    display: block;
    width: 100%;
    margin-top: 16px;
    transform: none !important;
  }

  .lineup-grid {
    display: block !important;
    width: 100%;
  }

  .lineup-card,
  .span-two {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    grid-column: auto !important;
    transform: none !important;
    box-shadow: 5px 5px 0 var(--ink) !important;
    padding: 22px !important;
    min-height: 0 !important;
  }

  .lineup-card h3 {
    font-size: clamp(38px, 12vw, 58px) !important;
    overflow-wrap: anywhere;
  }

  .map-card {
    width: calc(100% - 5px) !important;
    max-width: calc(100% - 5px) !important;
    min-height: 300px !important;
    margin: 0 0 44px !important;
    transform: none !important;
    box-shadow: 5px 5px 0 var(--ink) !important;
  }

  .location-copy {
    width: 100%;
  }

  .location-copy .lead {
    font-size: 22px !important;
  }

  .info-grid {
    display: block !important;
    width: 100%;
  }

  .info-grid article {
    width: 100%;
    border-right: 0 !important;
    border-bottom: 3px solid var(--ink) !important;
  }

  .info-grid article:last-child {
    border-bottom: 0 !important;
  }

  .quote-section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 64px 14px !important;
  }

  .quote-section p {
    width: 100%;
    font-size: clamp(34px, 10vw, 52px) !important;
  }

  .quote-star {
    display: none !important;
  }

  .rsvp-copy {
    width: 100%;
    margin-bottom: 36px;
  }

  .rsvp-card {
    width: calc(100% - 5px) !important;
    max-width: calc(100% - 5px) !important;
    margin: 0 !important;
    box-shadow: 5px 5px 0 var(--ink) !important;
    padding: 20px !important;
  }

  input[type="text"],
  input[type="email"],
  textarea,
  button {
    max-width: 100%;
  }

  .site-footer {
    display: block !important;
    width: 100%;
    padding: 32px 14px !important;
    overflow: hidden;
  }

  .site-footer > * {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .site-footer a {
    display: inline-block;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(42px, 13vw, 62px) !important;
  }

  .poster-main strong {
    font-size: clamp(48px, 17vw, 68px) !important;
  }

  .countdown strong {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  .lineup-card h3 {
    font-size: clamp(34px, 11vw, 50px) !important;
  }

  .section-heading h2,
  .location-copy h2,
  .rsvp-copy h2,
  .countdown-section h2 {
    font-size: clamp(40px, 12vw, 60px) !important;
  }
}


/* Keep hero names on one line */
.hero h1 span {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(38px, 12vw, 72px) !important;
    letter-spacing: -0.05em;
  }

  .hero h1 span {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(34px, 11vw, 54px) !important;
  }
}
