/* toe.show — the greatest show on feet */

:root {
  --cream: #FBF5EC;
  --ink: #4A342E;
  --pink: #F2A7B8;
  --rose: #E38AA0;
  --rose-deep: #C96A82;
  --mint: #8FBF98;
  --lilac: #B39DDB;
  --gold: #E8C892;
  --ink-soft: rgba(74, 52, 46, 0.75);
  --ink-faint: rgba(74, 52, 46, 0.55);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--cream); }
body { font-family: 'Space Grotesk', sans-serif; color: var(--ink); overflow-x: hidden; }
a { color: var(--rose); }
a:hover { color: var(--mint); }

h1, h2, h3 { font-family: 'Shrikhand', cursive; margin: 0; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tickerBack { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes bigWiggle { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }
@keyframes sway { 0%, 100% { transform: rotate(-9deg); } 50% { transform: rotate(9deg); } }
@keyframes swayB { 0%, 100% { transform: rotate(10deg); } 50% { transform: rotate(-8deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes curtainSwish { 0%, 100% { transform: skewX(0deg); } 50% { transform: skewX(1.2deg); } }
@keyframes popIn { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-16px) rotate(10deg); } }

/* Tickers */
.ticker { background: var(--pink); color: var(--ink); overflow: hidden; white-space: nowrap; }
.ticker-top { border-bottom: 3px solid var(--ink); }
.ticker-footer { border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.ticker-track { display: inline-flex; animation: ticker 28s linear infinite; will-change: transform; }
.ticker-track-back { animation-name: tickerBack; }
.ticker-group { display: inline-flex; gap: 28px; padding: 10px 14px; font-weight: 700; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; }
.ticker-group-brand { font-family: 'Shrikhand', cursive; font-size: 15px; font-weight: 400; letter-spacing: normal; text-transform: none; }

/* Hero stage */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; overflow: hidden; padding: 48px 16px 0;
  background: radial-gradient(ellipse 120% 80% at 50% 110%, #FCE9DC 0%, #FBF2E4 45%, var(--cream) 75%);
}

.light-wash {
  position: absolute; top: -6%; width: clamp(160px, 26vw, 420px); height: 120%;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  transform-origin: top center; pointer-events: none;
}
.light-wash-left { left: 8%; background: linear-gradient(to bottom, rgba(232,200,146,0.30), rgba(232,200,146,0)); animation: sway 9s ease-in-out infinite; }
.light-wash-right { right: 8%; background: linear-gradient(to bottom, rgba(242,167,184,0.26), rgba(242,167,184,0)); animation: swayB 11s ease-in-out infinite; }

.curtain {
  position: absolute; top: 0; bottom: 0; width: clamp(34px, 9vw, 130px);
  background: repeating-linear-gradient(90deg, var(--pink) 0 14px, var(--cream) 14px 28px);
  transform-origin: top center; animation: curtainSwish 7s ease-in-out infinite; pointer-events: none;
}
.curtain-left { left: 0; border-right: 5px solid var(--ink); }
.curtain-right { right: 0; border-left: 5px solid var(--ink); animation-direction: reverse; }
.curtain-valance { position: absolute; top: 0; left: 0; right: 0; height: 22px; background: var(--pink); border-bottom: 3px solid var(--ink); pointer-events: none; }

.sprinkle { position: absolute; border-radius: 6px; pointer-events: none; }
.sprinkle-1 { top: 18%; left: 22%; width: 20px; height: 8px; background: var(--lilac); animation: drift 6s ease-in-out infinite; }
.sprinkle-2 { top: 32%; right: 20%; width: 18px; height: 7px; background: var(--mint); animation: drift 7.5s ease-in-out infinite 1.2s; }
.sprinkle-3 { top: 58%; left: 14%; width: 16px; height: 7px; background: var(--rose); animation: drift 5.5s ease-in-out infinite 0.6s; }
.sprinkle-4 { top: 50%; right: 12%; width: 18px; height: 7px; background: #D9A05B; animation: drift 6.8s ease-in-out infinite 2s; }

.hero-content {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 2.5vh, 26px); max-width: 1000px;
}

.parlor-sign {
  display: inline-block; padding: 14px 30px; background: #FFFFFF;
  border: 3px solid var(--ink); border-radius: 999px;
  box-shadow: 0 8px 24px rgba(74,52,46,0.12), 5px 5px 0 var(--pink);
  font-family: 'Shrikhand', cursive; font-size: clamp(26px, 4.5vw, 40px); color: var(--rose); line-height: 1;
}

.hero h1 {
  font-size: clamp(42px, 9vw, 104px); line-height: 0.95;
  text-shadow: 4px 4px 0 var(--pink);
  animation: popIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.tagline { font-size: clamp(15px, 2.2vw, 20px); max-width: 540px; margin: 0; color: var(--ink-soft); line-height: 1.55; }

.cta {
  display: inline-block; background: var(--rose); color: #FFFFFF; font-weight: 700; font-size: 17px;
  padding: 15px 34px; border-radius: 999px; text-decoration: none;
  border: 3px solid var(--ink); box-shadow: 0 6px 0 var(--ink);
  animation: bob 3.4s ease-in-out infinite;
}
.cta:hover { background: var(--mint); color: #FFFFFF; }

/* Toe chorus line */
.chorus { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: clamp(6px, 1.6vw, 18px); margin-top: clamp(20px, 4vh, 44px); }

.toe {
  position: relative; transform-origin: bottom center;
  border-radius: 46% 46% 22% 22% / 26% 26% 10% 10%;
  animation: bigWiggle 2.6s ease-in-out infinite;
}
.toe-1 { width: clamp(46px, 7vw, 78px); height: clamp(120px, 18vw, 200px); background: linear-gradient(#F3CFA0, #DEB584); box-shadow: inset -8px -6px 0 rgba(74,52,46,0.07); }
.toe-2 { width: clamp(38px, 5.6vw, 62px); height: clamp(104px, 15.5vw, 172px); background: linear-gradient(#9A6B44, #7C5232); box-shadow: inset -7px -5px 0 rgba(74,52,46,0.12); animation-delay: 0.3s; }
.toe-3 { width: clamp(34px, 5vw, 56px); height: clamp(94px, 14vw, 156px); background: linear-gradient(#CE9A66, #B0804D); box-shadow: inset -6px -5px 0 rgba(74,52,46,0.1); animation-delay: 0.6s; }
.toe-4 { width: clamp(30px, 4.4vw, 50px); height: clamp(84px, 12.5vw, 140px); background: linear-gradient(#F7E0BE, #E5C79C); box-shadow: inset -6px -4px 0 rgba(74,52,46,0.07); animation-delay: 0.9s; }
.toe-5 { width: clamp(26px, 3.8vw, 42px); height: clamp(72px, 11vw, 118px); background: linear-gradient(#E4BC88, #CBA26C); box-shadow: inset -5px -4px 0 rgba(74,52,46,0.1); animation-delay: 1.2s; }

.toenail {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 58%; height: 17%; border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(74,52,46,0.12);
}
.nail-pink { background: var(--pink); }
.nail-cream { background: #EFD9A7; }
.nail-mint { background: #A8DCCB; }
.nail-peach { background: #F2B896; }
.nail-lilac { background: #C4B2EF; }

.waffle-counter {
  position: relative; z-index: 1; width: 100%; height: clamp(36px, 6vh, 60px);
  background:
    repeating-linear-gradient(45deg, var(--gold) 0 18px, #DCB877 18px 22px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(74,52,46,0.12) 18px 22px);
  border-top: 5px solid var(--ink);
}

/* Lineup */
.lineup { background: #FFFDF8; padding: clamp(56px, 9vw, 110px) 20px; border-top: 3px solid var(--ink); }
.lineup-inner { max-width: 1060px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }

.section-head { text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); }
.kicker-deep { color: var(--rose-deep); }
.lineup h2 { font-size: clamp(32px, 6vw, 60px); line-height: 1; }
.accent { color: var(--rose); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2.5vw, 28px); }

.card {
  border: 3px solid var(--ink); border-radius: 26px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card h3 { font-size: 24px; }
.card p { margin: 0; line-height: 1.55; color: rgba(74,52,46,0.7); }

.card-pink { background: #FDF1F4; box-shadow: 7px 7px 0 var(--pink); transform: rotate(-1.2deg); }
.card-pink:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 9px 11px 0 var(--pink); }
.card-mint { background: #F3F8F1; box-shadow: 7px 7px 0 var(--mint); transform: rotate(1deg); }
.card-mint:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 9px 11px 0 var(--mint); }
.card-lilac { background: #F5F2FA; box-shadow: 7px 7px 0 var(--lilac); transform: rotate(-0.7deg); }
.card-lilac:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 9px 11px 0 var(--lilac); }

.scoop { width: 50px; height: 50px; border-radius: 50% 50% 50% 6px; border: 3px solid var(--ink); animation: bob 3.6s ease-in-out infinite; }
.scoop-pink { background: var(--pink); }
.scoop-mint { background: var(--mint); animation-delay: 0.5s; }
.scoop-lilac { background: var(--lilac); animation-delay: 1s; }

/* Tickets */
.tickets { background: #F6DDE3; padding: clamp(56px, 9vw, 110px) 20px; position: relative; overflow: hidden; border-top: 3px solid var(--ink); }

.dashed-ring { position: absolute; border: 3px dashed rgba(74,52,46,0.25); border-radius: 50%; pointer-events: none; }
.ring-tr { top: -40px; right: -40px; width: 220px; height: 220px; animation: spin 26s linear infinite; }
.ring-bl { bottom: -60px; left: -60px; width: 280px; height: 280px; border-color: rgba(74,52,46,0.18); animation: spin 34s linear infinite reverse; }

.tickets-inner {
  max-width: 620px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  position: relative; z-index: 1;
}
.tickets h2 { font-size: clamp(34px, 6.5vw, 64px); line-height: 1; text-shadow: 3px 3px 0 #FFFFFF; }
.tickets-copy { margin: 0; font-size: clamp(15px, 2vw, 19px); line-height: 1.55; color: var(--ink-soft); max-width: 460px; }

.success-note {
  background: #FFFFFF; border: 3px solid var(--ink); border-radius: 16px;
  padding: 20px 28px; font-weight: 700; font-size: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.enquiry { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; }
.enquiry[hidden] { display: none; }

.enquiry input[type="email"] {
  flex: 1 1 240px; max-width: 340px; padding: 15px 20px; font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  border: 3px solid var(--ink); border-radius: 999px; background: #FFFFFF; color: var(--ink); outline: none;
}
.enquiry input[type="email"]:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(227,138,160,0.3); }

.enquiry button {
  padding: 15px 30px; font-size: 16px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--mint); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 999px; cursor: pointer;
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.enquiry button:hover { background: var(--rose); color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }
.enquiry button:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.enquiry button:disabled { opacity: 0.6; cursor: wait; transform: none; }

.form-error { font-weight: 700; color: var(--rose-deep); }

.fine-print { font-size: 13px; color: var(--ink-faint); }

/* honeypot — off-screen, never display:none (some bots skip hidden fields) */
.nope { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* Footer */
footer { background: var(--ink); color: var(--cream); padding: 0 0 34px; }
.footer-bar {
  max-width: 1060px; margin: 0 auto; padding: 30px 20px 0;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(251,245,236,0.65);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--pink); text-decoration: none; }
.footer-links a:hover { color: var(--mint); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
