/* Candy Corn Season — shared visual system
   One system for all six pages: same header, same footer, same type scale,
   same spacing rhythm. No page invents its own colors or layout. */

:root {
  --orange: #ff8200;
  --orange-deep: #d95c1f;
  --yellow: #ffc600;
  --purple: #8c1a9b;
  --pink: #d500a6;
  --purplelight:#cd039f;
  --magenta: #d500a6;
  --ink: #241226;
  --cream: #fcf2d9;
  --white: #ffffff;
  --darkpurple: #592998;
  --display: "gravesend-sans", "Arial Narrow", Arial, sans-serif;
  --sans: Arial, Helvetica, sans-serif;

  --container: 72rem;   /* standard content width */
  --narrow: 38rem;      /* single-column reading width */
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(3rem, 7vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
       background:
    radial-gradient(
        ellipse at 50% 18%,
        rgba(255, 231, 145, .62) 0%,
        rgba(247, 183, 55, .34) 34%,
        transparent 68%
    ),
    radial-gradient(
        ellipse at 50% 78%,
        rgba(245, 105, 15, .72) 0%,
        rgba(248, 135, 15, .38) 42%,
        transparent 74%
    ),
    linear-gradient(
        135deg,
        #f28a2f 0%,
        #eda63b 34%,
        #f28b28 68%,
        #ed5d32 100%
    );
  font: 400 1rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  
}
a { color: inherit; text-underline-offset: .16em; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0 0 1rem; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; }
p:last-child, ul:last-child { margin-bottom: 0; }
p, li { font-size: 1rem; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 30; padding: .8rem 1.2rem; color: var(--white); background: var(--ink); }
.skip-link:focus { top: 1rem; }

/* ---------- Header / Footer (identical on every page) ---------- */

.site-header {
  display: flex;
  align-items: center;
  min-height: 4.5rem;
  padding-left: 1rem;
  background: var(--purple);
}
.brand-lockup { display: inline-flex; }
.brand-lockup img { height: 4rem; width: auto; }

.footer {
  padding: 1.1rem var(--gutter);
  color: black;
  background: transparent;
  text-align: center;
  font-family: var(--display);
}
.footer a { 
  
  color: black;
  font-family: var(--display);
}

.footer p {
  font-weight: 700; 
  font-size: .7rem !important; 
}

/* ---------- Type scale ---------- */

h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
h2 {
  max-width: 20ch;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
h1 sup, h2 sup { font-size: .36em; vertical-align: super; }
.lead { 
  font-size: clamp(1.25rem, 2.7vw, 2rem); 
  line-height: 1.5; 
  font-weight: 600;
}

/* ---------- Layout primitives ---------- */

.section { padding: var(--section-pad) var(--gutter); background: var(--cream); }
.section--plum { color: var(--white); background: var(--purple); }
.section--plum p, .section--plum li { color: inherit; }
.section-inner { max-width: var(--container); margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: var(--container);
  margin-inline: auto;
}
.split--copy-wide { grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr); }

/* ---------- Product hero (Page 2 / Page 3) ---------- */

.campaign-banner {
  padding: 0;
  margin:0 auto;
  width: 100%;

}
.campaign-banner img {
  width: 100%;
  margin-inline: auto;
}

.hero--product {
  color: var(--white);
  
}
.hero--product .split { padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); }
.hero-copy { max-width: 34rem; }
.page-landing .hero--product .split {
  display: block;
  max-width: 52rem;
  text-align: center;
}
.page-landing .hero-copy {
  max-width: 44rem;
  margin-inline: auto;
}
.hero-copy .lead { max-width: 30rem; color: rgba(255,255,255,.92); }
.page-landing .hero-copy .lead { max-width: 38rem; margin-inline: auto; }
.intro-label {
  margin-bottom: .35rem;
  font: 800 1.05rem/1.2 var(--display);
}
.hero-copy h1 { color: var(--white); margin-bottom: 1.1rem; }
.page-landing .hero-copy h1 { max-width: none; margin-inline: auto; }
.hero-copy .callout {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.35);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  max-width: 30rem;
}
.page-landing .hero-copy .callout { margin-inline: auto; }
.hero-photo { display: flex; justify-content: center; }
.hero-photo img {
  width: min(100%, 21rem);
  border-radius: 1.25rem;
  box-shadow: 0 2rem 4rem rgba(36, 18, 38, .35);
}

/* Countdown */
.countdown {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 2rem auto 0;
  padding: 1.15rem clamp(1.1rem, 3vw, 1.75rem) 1.25rem;
  justify-content: center;
  color: var(--ink);
  background: white;
  border-radius: .6rem;
}
.countdown[hidden] { display: none; }
.countdown-block { min-width: 3.5rem; }
.countdown-value { display: block; font: 800 clamp(1.9rem, 3vw, 2.5rem)/1 var(--display); color: var(--ink); }
.countdown-label { display: block; margin-top: .35rem; font: 700 .68rem/1 var(--display); letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }

.button-row { display: flex; margin-top: 2rem; }
.button-row[hidden] { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0 1.75rem;
  color: var(--purple);
  background: var(--white);
  border: none;
  border-radius: 999px;
  font: 800 .85rem/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.button:hover { background: var(--ink); color: var(--white); }

/* ---------- Statement / retail sections ---------- */

.statement { max-width: 46rem; margin-inline: auto; text-align: center; }
.statement h2 { max-width: none; margin-inline: auto; }

.retail-intro { max-width: var(--container); margin: 0 auto 3rem; }
.retail-intro h2 { max-width: none; color: var(--white); }
.retail-intro p { max-width: 34rem; }
.sellout-detail .retail-intro { margin-bottom: 0; }
.sellout-detail .retail-intro h2 { color: var(--purple); }
.sellout-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, .85fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  max-width: var(--container);
  margin-inline: auto;
}
.sellout-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sellout-art img {
  width: min(100%, 22rem);
  transform-origin: 50% 100%;
  animation: candy-corn-hover 3.8s ease-in-out .5s infinite;
}

/* ---------- Shop page (Page 3) product block ---------- */

.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: var(--container);
  margin-inline: auto;
}
.product-offer { max-width: 34rem; }
.product-offer h2 { max-width: none; color: var(--purple); }
.product-copy { max-width: 36rem; }
.product-copy h1 { color: var(--white); }
.includes-list { margin: 0 0 1.25rem; padding-left: 1.15rem; }
.includes-list li { margin-bottom: .3rem; }
.price-line { font-style: italic; font-size: 1.05rem; }

.shopify-panel { max-width: none; margin: 0; padding: 0; }
.shopify-embed-shell:empty { display: none; }
.shopify-placeholder,
.shopify-placeholder:hover,
.shopify-placeholder:disabled {
  color: var(--white);
  background: var(--purple);
  cursor: not-allowed;
  opacity: 1;
}
.fine-print { max-width: 42rem; margin: 1.75rem 0 0; font-size: .85rem; line-height: 1.65; }
.shop-end .end-grid {
  display: grid;
  grid-template-columns: minmax(13rem, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 0;
  border-top-color: rgba(255,255,255,.3);
}
.shop-end .follow-block { text-align: left; }
.shop-end .social-row { justify-content: flex-start; }
.shop-end .legal-block { margin-top: 0; }
.shop-end .legal-block p { text-align: left; }

/* ---------- Status pages (4 / 5 / 6) ---------- */

.status-hero {
  color: var(--white);
  background: linear-gradient(155deg, #ff9a3d 0%, var(--orange) 45%, var(--orange-deep) 100%);
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--gutter);
}
.status-hero .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.status-hero img { width: min(60%, 9rem); }
.status-hero h1 { color: var(--white); max-width: 18ch; }
.status-hero .lead { max-width: 34rem; color: rgba(255,255,255,.92); }
.status-end .end-grid {
  display: grid;
  grid-template-columns: minmax(13rem, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 0;
  border-top-color: rgba(255,255,255,.3);
}
.status-end .follow-block { text-align: left; }
.status-end .social-row { justify-content: flex-start; }
.status-end .legal-block { margin-top: 0; }
.status-end .legal-block p { text-align: left; }
.final-locator .section-inner { max-width: var(--container); }
.final-locator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, .85fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  max-width: var(--container);
  margin-inline: auto;
}
.final-locator-copy {
   max-width: 52rem; 
   font-size: 1.6rem;
   font-family: var(--display); font-weight: 800; letter-spacing: -.02em;
  }
.final-locator-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-locator-art img {
  width: min(100%, 22rem);
  transform-origin: 50% 100%;
  animation: candy-corn-hover 3.8s ease-in-out .5s infinite;
}

/* ---------- End matter: social + legal (identical shape on every page) ---------- */

.end-matter { max-width: var(--container); margin-inline: auto; }
.end-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(36,18,38,.15);
}
.page-landing .end-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, .75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.page-landing .end-grid .retail-intro {
  margin: 0;
}
.section--plum .end-grid { border-top-color: rgba(255,255,255,.3); }
.follow-block { text-align: center; }
.follow-block p { margin-bottom: 1rem; }
.legal-block { margin-top: 2rem; }
.page-landing .end-grid .legal-block { grid-column: 1 / -1; }
.social-row { display: flex; justify-content: center; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.social-row a {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple), var(--pink));
  border-radius: 50%;
  transition: background .18s ease, transform .18s ease;
}
.social-row a:hover { background: var(--magenta); transform: translateY(-2px); }
.social-row svg { width: 1.3rem; height: 1.3rem; fill: currentColor; }
.section--plum .social-row a { color: var(--purple); background: var(--white); }
.section--plum .social-row a:hover { background: var(--yellow); }

.legal-block p { font-size: .76rem; line-height: 1.65; color: inherit; opacity: .85; text-align: center; }
.legal-block p:last-child { margin-top: 1rem; opacity: 1; }
.terms-pending { font-weight: 700; text-decoration: underline; }

/* ---------- Page 1: Coming Soon ---------- */

.holding-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  
}
.holding-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.5rem;
  width: min(100%, 34rem);
  margin: auto;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem;
  text-align: center;
}
.holding-logo { width: clamp(11rem, 24vw, 15rem); }
.holding-page .lead { 
  color: var(--white); 
  font-size: clamp(1.2rem, 2.4vw, 1.6rem); 
  font-weight: 800; 
  font-family: var(--display); 
  line-height: 1.25; 
  max-width: 30ch; 
}
.holding-page .sub { 
  color: rgba(255,255,255,.9); 
  font-style: italic; 
  margin-top: -.75rem; 
  font-family: var(--display);
  font-weight: 600;
}
.holding-art img {
  width: min(42vw, 13rem);
  transform-origin: 50% 100%;
  animation: candy-corn-hover 3.8s ease-in-out .5s infinite;
}
@keyframes candy-corn-hover {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-4px) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1.2deg); }
  75% { transform: translateY(-4px) rotate(-.8deg); }
}
.holding-pill {
  padding: .65rem 1.6rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font: 800 .85rem/1 var(--display);
  letter-spacing: .08em;
}
.holding-follow { 
  color: black; 
  font-family: var(--display); 
  font-weight: 700; 
  margin-bottom: 0;
}
.holding-follow strong { color: var(--purple); }

/* ---------- Motion (minimal, respectful) ---------- */

.reveal { animation: rise-in .5s cubic-bezier(.2,.8,.2,1) both; }
.reveal-delay-1 { animation-delay: .06s; }
.reveal-delay-2 { animation-delay: .12s; }
.reveal-delay-3 { animation-delay: .18s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { width: min(60%, 15rem); }
  .hero-copy, .product-copy { max-width: none; }
  .purchase-grid,
  .shop-end .end-grid,
  .status-end .end-grid { grid-template-columns: 1fr; }
  .sellout-detail-grid { grid-template-columns: 1fr; }
  .final-locator-grid { grid-template-columns: 1fr; }
  .product-offer { max-width: none; }
  .shop-end .follow-block,
  .shop-end .legal-block p,
  .status-end .follow-block,
  .status-end .legal-block p { text-align: center; }
  .shop-end .social-row,
  .status-end .social-row { justify-content: center; }
  .page-landing .end-grid { grid-template-columns: 1fr; }
  .page-landing .end-grid .legal-block { grid-column: auto; }
}

@media (max-width: 560px) {
  .site-header { min-height: 4rem; }
  .brand-lockup img { height: 1.6rem; }
  h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .countdown { gap: .65rem; padding-inline: .8rem; }
  .countdown-block { min-width: 2.75rem; }
  .status-hero img { width: min(50%, 7rem); }
}

.button:focus-visible,
.social-row a:focus-visible,
.footer a:focus-visible,
.brand-lockup:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
