:root {
  --bg-cream: #f6f1e8;
  --card-cream: #fff9ef;
  --terracotta: #c45a3b;
  --olive: #5f6f4e;
  --sage: #a7b093;
  --warm-brown: #8a6a4a;
  --text-dark: #2f2a20;
  --border: #e5d5be;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at 18% 4%, #fffdf8 0%, #f4ecdf 45%, #f1e8da 100%);
  padding-bottom: calc(118px + env(safe-area-inset-bottom));
}

.page-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f8f2e9 0%, #f9f4ec 100%);
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 12px;
  background: rgba(248, 242, 233, 0.96);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(229, 213, 190, 0.65);
}

.quick-jump-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 12px;
  right: 12px;
  z-index: 30;
  max-height: min(68vh, 500px);
  overflow: auto;
  border: 1px solid #dcc7a8;
  border-radius: 16px;
  background: #fff8ed;
  box-shadow: 0 16px 36px rgba(58, 41, 24, 0.2);
  padding: 12px;
}

.quick-jump-menu.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-jump-menu h2 {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--olive);
  font-size: 1.06rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-jump-menu a {
  display: block;
  color: #7b3f2d;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e8d6be;
  background: #fffdf8;
  border-radius: 999px;
  padding: 8px 10px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.quick-jump-menu a:hover,
.quick-jump-menu a:focus-visible {
  background: #f7efe2;
  border-color: #d8c0a1;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dark);
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wordmark {
  text-align: center;
  line-height: 1;
}

.wordmark-leaf {
  width: 30px;
  height: 20px;
  display: block;
  margin: 0 auto 3px;
  stroke: var(--olive);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wordmark-main {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
  letter-spacing: 0.08em;
}

.wordmark-sub {
  margin: 3px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.27em;
}

.hero-section {
  position: relative;
  --hero-shift: 0px;
  --polaroid-shift: 0px;
}

.placeholder-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(150px 80px at 78% 22%, rgba(247, 243, 233, 0.55), transparent 65%),
    radial-gradient(180px 90px at 18% 68%, rgba(246, 235, 219, 0.5), transparent 70%),
    linear-gradient(180deg, #b09068 0%, #886a48 48%, #6e7c58 49%, #7f8b67 66%, #8f9579 100%);
}

.placeholder-image::after {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 249, 239, 0.88);
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.hero-image {
  display: block;
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0);
}

.has-scroll-motion .hero-image {
  transform: translate3d(0, var(--hero-shift), 0) scale(1.035);
  will-change: transform;
}

.polaroid-card {
  position: absolute;
  right: 14px;
  bottom: -48px;
  width: 106px;
  margin: 0;
  background: #fffef9;
  border: 1px solid #ece2d3;
  border-radius: 10px;
  padding: 7px 7px 10px;
  transform: translate3d(0, var(--polaroid-shift), 0) rotate(9deg);
  box-shadow: 0 9px 22px rgba(72, 53, 34, 0.15);
}

.has-scroll-motion .polaroid-card {
  will-change: transform;
}

.polaroid-card::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 16px;
  width: 42px;
  height: 16px;
  border-radius: 3px;
  background: #d5c4a8;
  transform: rotate(-18deg);
}

.polaroid-photo {
  display: block;
  width: 100%;
  height: 98px;
  object-fit: cover;
  object-position: center 56%;
  border-radius: 4px;
}

.polaroid-card figcaption {
  margin-top: 6px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.64rem;
  font-style: italic;
  color: #5f4d38;
  letter-spacing: 0.01em;
}

.page-content {
  padding: 68px 12px 14px;
}

.headline-section {
  text-align: center;
}

.headline-section h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.25rem;
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.subheadline {
  margin: 14px 0 12px;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.lead-copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #393328;
}

.ornament {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.ornament svg {
  width: 128px;
  height: 28px;
  stroke: #a89f84;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ticket-section {
  margin-top: 12px;
}

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

.ticket-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-cream);
  min-height: 188px;
  padding: 16px 9px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.has-scroll-reveal .ticket-grid.reveal-ticket-grid .ticket-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 430ms ease,
    transform 430ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.has-scroll-reveal .ticket-grid.reveal-ticket-grid.is-revealed .ticket-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.has-scroll-reveal .ticket-grid.reveal-ticket-grid.is-revealed .ticket-card:nth-child(1) {
  transition-delay: 45ms;
}

.has-scroll-reveal .ticket-grid.reveal-ticket-grid.is-revealed .ticket-card:nth-child(2) {
  transition-delay: 130ms;
}

.has-scroll-reveal .reveal-on-scroll {
  opacity: 0;
  filter: blur(1.2px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.has-scroll-reveal .reveal-on-scroll.reveal-left {
  transform: translate3d(-14px, 20px, 0);
}

.has-scroll-reveal .reveal-on-scroll.reveal-right {
  transform: translate3d(14px, 20px, 0);
}

.has-scroll-reveal .reveal-on-scroll.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.ticket-card .card-sprout {
  color: #8f9d77;
  font-size: 1.7rem;
  margin-bottom: 7px;
}

.ticket-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: 0.09em;
}

.ticket-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.6rem;
  line-height: 0.9;
  margin: 7px 0 8px;
}

.ticket-price small {
  font-size: 0.56em;
  margin-right: 2px;
}

.ticket-divider {
  width: 86%;
  border-top: 2px dotted #d79f84;
  margin-bottom: 10px;
}

.ticket-meta {
  font-size: 1.1rem;
  line-height: 1.25;
}

.ticket-savings {
  margin-top: 3px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--olive);
}

.ticket-heart {
  margin-top: auto;
  color: var(--terracotta);
  font-size: 2.2rem;
  line-height: 1;
  transform-origin: center;
}

@keyframes selected-ticket-heartbeat {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(196, 90, 59, 0);
  }
  12% {
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(196, 90, 59, 0.22);
  }
  20% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(196, 90, 59, 0);
  }
  28% {
    transform: scale(1.15);
    text-shadow: 0 0 13px rgba(196, 90, 59, 0.38);
  }
  38% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(196, 90, 59, 0);
  }
}

.ticket-tab {
  position: absolute;
  top: -16px;
  right: 8px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--olive);
  color: #f5f0e7;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(2px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.ticket-card.is-selected {
  border: 4px solid var(--olive);
  padding-top: 22px;
  box-shadow: 0 8px 18px rgba(95, 111, 78, 0.17);
}

.ticket-card[aria-checked="true"] {
  border-color: var(--olive);
}

.ticket-card.is-selected .ticket-tab {
  opacity: 1;
  transform: translateY(0);
}

.ticket-card.is-selected .ticket-heart {
  animation: selected-ticket-heartbeat 0.95s ease-in-out infinite;
  color: #be4f31;
}

.ticket-card.is-selected[data-ticket-option="one"] .ticket-heart {
  animation-duration: 1.2s;
}

.ticket-card.is-selected[data-ticket-option="three"] .ticket-heart {
  animation-duration: 0.9s;
}

@media (hover: hover) {
  .ticket-grid.is-hovering-one [data-ticket-option="one"] {
    border: 4px solid var(--olive);
    box-shadow: 0 8px 18px rgba(95, 111, 78, 0.17);
    padding-top: 22px;
  }

  .ticket-grid.is-hovering-one [data-ticket-option="three"] {
    border: 1px solid var(--border);
    box-shadow: none;
    padding-top: 16px;
  }

  .ticket-grid.is-hovering-one [data-ticket-option="one"] .ticket-tab {
    opacity: 1;
    transform: translateY(0);
  }

  .ticket-grid.is-hovering-one [data-ticket-option="three"] .ticket-tab {
    opacity: 0;
    transform: translateY(2px);
  }
}

.main-cta {
  display: block;
  width: min(100%, 370px);
  margin: 14px auto 10px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(94deg, #bf4f30 0%, #c45a3b 63%, #b5482b 100%);
  color: #fff8ef;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 15px 12px;
}

.checkout-note {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #40392e;
  font-size: 1.05rem;
}

.checkout-note svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-note strong {
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: lowercase;
}

.content-card {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-cream);
  padding: 14px 13px;
}

.content-card h2 {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 1.42rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 12px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  color: #3a3329;
}

.content-card p {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #3a342a;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card a {
  color: #8d4a33;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.experience-stack {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.experience-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: center;
}

.experience-thumb {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #e2d1b8;
}

.prize-thumb {
  border-radius: 999px;
  object-position: center 38%;
}

.experience-card .experience-copy h2 {
  margin: 0 0 6px;
}

.experience-card .experience-copy h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  color: #2f2a20;
  font-size: 1.95rem;
  line-height: 1.05;
}

.experience-card .experience-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.42;
}

.experience-mark {
  display: none;
  color: #ab9f82;
  font-size: 2rem;
}

.prize-benefits {
  margin: 8px 0 0;
  grid-column: 1 / -1;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.prize-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b3429;
  font-size: 1.04rem;
  line-height: 1.25;
}

.prize-benefits li span {
  color: #8f9d77;
  font-size: 1.28rem;
}

.content-card.building-card h2 {
  margin-bottom: 8px;
}

.building-raised {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #3b3429;
}

.building-raised strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2e281f;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.42);
}

.building-raised span {
  font-size: 1.18rem;
  color: #4f4538;
}

.building-progress {
  position: relative;
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8ccba;
  overflow: visible;
}

.building-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  min-width: 6px;
  max-width: none;
  background: linear-gradient(90deg, #5f6f4e 0%, #70835c 60%, #597043 100%);
  box-shadow: 0 2px 8px rgba(95, 111, 78, 0.22);
}

.building-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #3f372d;
}

.building-meta p {
  margin: 0;
  font-size: 1.04rem;
}

.building-status {
  margin: 7px 0 0;
  color: #6d5f4e;
  font-size: 0.98rem;
}

.jump-card {
  display: grid;
  gap: 6px;
}

.jump-card a {
  display: inline-block;
  font-size: 0.98rem;
}

.plain-list {
  margin: 0 0 10px;
  padding-left: 17px;
}

.plain-list li {
  margin-bottom: 6px;
  font-size: 1.04rem;
  line-height: 1.38;
  color: #383127;
}

.inline-buy {
  display: inline-block;
  margin-top: 6px;
  border-radius: 9px;
  background: linear-gradient(94deg, #bf4f30 0%, #c45a3b 63%, #b5482b 100%);
  color: #fff9ef !important;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 10px 14px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffdf8;
  color: #5f4c3a;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  padding: 8px 12px;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.social-action:hover,
.social-action:focus-visible {
  transform: translateY(-1px);
  border-color: #cfb18d;
  background: #fbf3e8;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f2e7d8;
  color: var(--olive);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-action-disabled {
  opacity: 0.82;
  color: #796450;
  background: #faf4ea;
  cursor: not-allowed;
}

.social-action-disabled .social-icon {
  background: #ecdecb;
  color: #8a765f;
}

.social-action-disabled:hover,
.social-action-disabled:focus-visible {
  transform: none;
  border-color: var(--border);
  background: #faf4ea;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: linear-gradient(95deg, #bd4e30 0%, #c35a39 36%, #b4472a 100%);
  box-shadow: 0 -7px 22px rgba(79, 44, 24, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease;
}

.sticky-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(24px);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-cta.is-visible .sticky-inner {
  transform: translateY(0);
}

.sticky-title {
  margin: 0;
  color: #fffaf0;
  text-transform: uppercase;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.sticky-subcopy {
  margin: 4px 0 0;
  color: #fff3e5;
  font-size: 0.9rem;
}

.sticky-button {
  flex-shrink: 0;
  min-width: 112px;
  text-align: center;
  text-decoration: none;
  color: #bf5537;
  background: #fffaf0;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 10px;
}

.ticket-card:focus-visible,
.main-cta:focus-visible,
.sticky-button:focus-visible,
.icon-button:focus-visible {
  outline: 3px solid rgba(95, 111, 78, 0.45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .ticket-card.is-selected .ticket-heart {
    animation: none;
    text-shadow: none;
  }

  .has-scroll-motion .hero-image {
    transform: translate3d(0, 0, 0);
  }

  .has-scroll-motion .polaroid-card {
    transform: rotate(9deg);
  }

  .has-scroll-reveal .reveal-on-scroll,
  .has-scroll-reveal .ticket-grid.reveal-ticket-grid .ticket-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .sticky-cta,
  .sticky-inner {
    transition: none;
  }

  .sticky-inner {
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  body {
    padding-top: 24px;
    padding-bottom: calc(156px + env(safe-area-inset-bottom));
  }

  .page-shell {
    margin-bottom: 24px;
    border: 1px solid #eadfce;
    border-radius: 20px;
    overflow: hidden;
    overflow: clip;
    box-shadow: 0 14px 44px rgba(55, 42, 26, 0.15);
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    width: min(100%, 470px);
    transform: translateX(-50%);
    bottom: 14px;
    background: transparent;
    box-shadow: none;
    padding: 0 14px;
  }

  .sticky-inner {
    border-radius: 16px;
    background: linear-gradient(95deg, #bd4e30 0%, #c35a39 36%, #b4472a 100%);
    box-shadow: 0 -2px 16px rgba(79, 44, 24, 0.22);
    padding: 10px 14px;
  }

  .sticky-title {
    font-size: 1.65rem;
  }

  .sticky-subcopy {
    font-size: 0.95rem;
  }

  .sticky-button {
    min-width: 118px;
    font-size: 1.05rem;
    padding: 14px 12px;
  }

  .quick-jump-menu {
    top: 84px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(404px, calc(100% - 24px));
  }
}

@media (min-width: 1024px) {
  body {
    padding-top: 28px;
    padding-bottom: calc(168px + env(safe-area-inset-bottom));
  }

  .page-shell {
    max-width: 760px;
    border-radius: 24px;
  }

  .top-header {
    grid-template-columns: 48px 1fr 48px;
    gap: 12px;
    padding: 18px 22px 14px;
  }

  .icon-button {
    width: 48px;
    height: 48px;
  }

  .icon-button svg {
    width: 28px;
    height: 28px;
  }

  .wordmark-leaf {
    width: 34px;
    height: 22px;
  }

  .wordmark-main {
    font-size: 4.2rem;
  }

  .wordmark-sub {
    font-size: 1.75rem;
    letter-spacing: 0.26em;
  }

  .quick-jump-menu {
    top: 92px;
    width: min(680px, calc(100% - 40px));
    max-height: min(62vh, 560px);
    padding: 14px;
  }

  .quick-jump-menu h2 {
    font-size: 1.35rem;
  }

  .quick-jump-menu a {
    font-size: 1.15rem;
    padding: 10px 12px;
  }

  .hero-image {
    height: 350px;
  }

  .polaroid-card {
    width: 164px;
    right: 20px;
    bottom: -60px;
    padding: 10px 10px 12px;
  }

  .polaroid-photo {
    height: 142px;
  }

  .polaroid-card figcaption {
    font-size: 1.05rem;
  }

  .page-content {
    padding: 82px 20px 22px;
  }

  .headline-section h1 {
    font-size: 8.3rem;
  }

  .subheadline {
    font-size: 1.56rem;
    letter-spacing: 0.19em;
    margin-top: 18px;
  }

  .lead-copy {
    font-size: 2.1rem;
    line-height: 1.4;
  }

  .ornament svg {
    width: 176px;
    height: 36px;
  }

  .ticket-section {
    margin-top: 18px;
  }

  .ticket-grid {
    gap: 18px;
  }

  .ticket-card {
    min-height: 286px;
    border-radius: 20px;
    padding: 24px 14px 14px;
  }

  .ticket-card .card-sprout {
    font-size: 2.3rem;
  }

  .ticket-label {
    font-size: 2.7rem;
  }

  .ticket-price {
    font-size: 9.2rem;
    margin: 10px 0 12px;
  }

  .ticket-meta {
    font-size: 2.2rem;
  }

  .ticket-savings {
    font-size: 3rem;
  }

  .ticket-heart {
    font-size: 3.3rem;
  }

  .ticket-tab {
    top: -18px;
    right: 12px;
    font-size: 1.3rem;
    padding: 7px 16px;
  }

  .main-cta {
    max-width: 680px;
    font-size: 3.2rem;
    border-radius: 16px;
    padding: 20px 16px;
    margin-top: 18px;
  }

  .checkout-note {
    font-size: 2rem;
    margin-top: 6px;
  }

  .checkout-note svg {
    width: 24px;
    height: 24px;
  }

  .checkout-note strong {
    font-size: 3rem;
  }

  .content-card {
    margin-top: 18px;
    border-radius: 16px;
    padding: 20px 18px;
  }

  .experience-stack {
    margin-top: 18px;
    gap: 14px;
  }

  .experience-card {
    grid-template-columns: 118px 1fr auto;
    gap: 14px;
  }

  .experience-thumb {
    width: 118px;
    height: 118px;
    border-radius: 16px;
  }

  .prize-thumb {
    border-radius: 999px;
  }

  .experience-card .experience-copy h2 {
    margin-bottom: 8px;
  }

  .experience-card .experience-copy h3 {
    font-size: 3rem;
    margin-bottom: 8px;
  }

  .experience-card .experience-copy p {
    font-size: 1.8rem;
    line-height: 1.44;
  }

  .experience-mark {
    display: block;
    font-size: 4.2rem;
    line-height: 1;
  }

  .prize-benefits {
    margin-top: 0;
    align-self: stretch;
    justify-content: flex-start;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .prize-benefits li {
    white-space: nowrap;
    font-size: 1.72rem;
    gap: 10px;
  }

  .prize-benefits li span {
    font-size: 2.2rem;
  }

  .building-raised strong {
    font-size: 6rem;
  }

  .building-raised span {
    font-size: 1.95rem;
  }

  .building-progress {
    height: 14px;
    margin-top: 12px;
  }

  .building-meta p {
    font-size: 1.6rem;
  }

  .building-status {
    font-size: 1.35rem;
    margin-top: 10px;
  }

  .content-card h2 {
    font-size: 3rem;
    margin-bottom: 14px;
  }

  .content-card h3 {
    font-size: 3.2rem;
    margin-top: 16px;
  }

  .content-card p {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .plain-list li {
    font-size: 2.1rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .inline-buy {
    font-size: 1.6rem;
    border-radius: 12px;
    padding: 14px 20px;
  }

  .social-actions {
    gap: 14px;
  }

  .social-action {
    gap: 10px;
    font-size: 1.65rem;
    padding: 12px 18px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .sticky-cta {
    width: min(calc(100% - 40px), 620px);
  }

  .sticky-inner {
    border-radius: 14px;
    padding: 9px 12px;
    box-shadow: 0 2px 12px rgba(79, 44, 24, 0.2);
  }

  .sticky-title {
    font-size: 1.85rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .sticky-subcopy {
    font-size: 1.12rem;
    margin-top: 3px;
  }

  .sticky-button {
    min-width: 126px;
    font-size: 1.12rem;
    border-radius: 10px;
    padding: 11px 14px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 380px) {
  .wordmark-main {
    font-size: 2.2rem;
  }

  .wordmark-sub {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }

  .hero-image {
    height: 218px;
  }

  .polaroid-card {
    width: 98px;
    right: 10px;
    bottom: -44px;
  }

  .polaroid-photo {
    height: 88px;
  }

  .headline-section h1 {
    font-size: 4.8rem;
  }

  .subheadline {
    font-size: 1.05rem;
    letter-spacing: 0.22em;
  }

  .ticket-grid {
    gap: 10px;
  }

  .ticket-card {
    min-height: 182px;
    padding: 15px 8px 10px;
  }

  .ticket-label {
    font-size: 1.6rem;
  }

  .ticket-price {
    font-size: 4.9rem;
  }

  .ticket-meta {
    font-size: 1.12rem;
  }

  .main-cta {
    font-size: 1.65rem;
    letter-spacing: 0.1em;
  }

  .sticky-title {
    font-size: 1.45rem;
  }

  .sticky-subcopy {
    font-size: 0.9rem;
  }

  .sticky-button {
    min-width: 102px;
    font-size: 1rem;
  }

  .content-card {
    padding: 12px 10px;
  }

  .content-card h2 {
    font-size: 1.25rem;
  }

  .content-card p,
  .plain-list li {
    font-size: 1.04rem;
  }

  .experience-card {
    grid-template-columns: 72px 1fr;
    gap: 8px;
  }

  .experience-thumb {
    width: 72px;
    height: 72px;
  }

  .experience-card .experience-copy h3 {
    font-size: 1.65rem;
  }

  .prize-benefits li {
    font-size: 0.98rem;
  }

  .building-raised strong {
    font-size: 3rem;
  }

  .building-meta p {
    font-size: 0.97rem;
  }

  .quick-jump-menu a {
    font-size: 0.94rem;
  }
}

@media (max-width: 340px) {
  .top-header {
    padding: 13px 10px 10px;
  }

  .wordmark-main {
    font-size: 2rem;
  }

  .wordmark-sub {
    letter-spacing: 0.18em;
  }

  .hero-image {
    height: 206px;
  }

  .polaroid-card {
    width: 92px;
    right: 8px;
    bottom: -40px;
  }

  .polaroid-photo {
    height: 82px;
  }

  .page-content {
    padding-top: 62px;
  }

  .headline-section h1 {
    font-size: 4.4rem;
  }

  .subheadline {
    font-size: 1rem;
    letter-spacing: 0.17em;
  }

  .ticket-grid {
    gap: 8px;
  }

  .ticket-card {
    min-height: 172px;
    padding: 13px 7px 9px;
  }

  .ticket-label {
    font-size: 1.4rem;
  }

  .ticket-price {
    font-size: 4.3rem;
  }

  .ticket-meta {
    font-size: 1.02rem;
  }

  .ticket-savings {
    font-size: 1.3rem;
  }

  .ticket-tab {
    top: -14px;
    right: 6px;
    padding: 4px 10px;
    font-size: 0.8rem;
  }

  .main-cta {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    padding: 13px 10px;
  }

  .sticky-title {
    font-size: 1.3rem;
  }

  .sticky-subcopy {
    font-size: 0.84rem;
  }

  .sticky-button {
    min-width: 92px;
    font-size: 0.93rem;
    padding: 11px 8px;
  }

  .content-card h2 {
    font-size: 1.15rem;
    letter-spacing: 0.05em;
  }

  .content-card p,
  .plain-list li,
  .jump-card a {
    font-size: 0.98rem;
  }

  .quick-jump-menu {
    padding: 10px 10px;
    top: 66px;
  }

  .quick-jump-menu h2 {
    font-size: 0.95rem;
  }

  .quick-jump-menu a {
    font-size: 0.9rem;
    padding: 7px 8px;
  }
}

@media (max-width: 380px) {
  .quick-jump-menu.is-open {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.site-footer-link {
  color: #000000;
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
