:root {
  --pink: #f32686;
  --pink-dark: #cf0e68;
  --coral: #ff5a4d;
  --blush: #ffd0d8;
  --cream: #fff8e8;
  --ink: #20171d;
  --white: #ffffff;
  --brown: #7b3f1d;
  --shadow: 0 18px 50px rgba(74, 24, 48, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255,248,232,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(32,23,29,.08);
}
.brand { display: inline-flex; flex-direction: column; line-height: .9; }
.brand-main {
  font-family: "Baloo 2", sans-serif;
  color: var(--pink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -2px;
}
.brand-sub {
  margin-top: 5px;
  font-size: .65rem;
  letter-spacing: .22em;
  font-weight: 900;
}
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 800; }
.site-nav a { transition: color .2s ease, transform .2s ease; }
.site-nav a:hover { color: var(--pink); transform: translateY(-1px); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.nav-cta:hover { color: var(--white)!important; background: var(--pink); }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span { display: block; width: 28px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 120px) clamp(26px, 7vw, 110px);
  background:
    radial-gradient(circle at 18% 16%, rgba(243,38,134,.13) 0 13%, transparent 14%),
    linear-gradient(135deg, #fff8e8 0%, #ffd9df 100%);
}
.eyebrow {
  display: inline-block;
  color: var(--pink-dark);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: .78rem;
}
.hero h1, .section h2, .feature-copy h2, .social-banner h2, .visit-card h2 {
  margin: 16px 0 20px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: .92;
}
.hero h1 { font-size: clamp(4rem, 7.2vw, 7.8rem); }
.hero h1 span { color: var(--pink); }
.hero-copy > p {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.button.primary { background: var(--pink); color: white; }
.button.secondary { border: 2px solid var(--ink); }
.button.light { background: var(--white); color: var(--pink-dark); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero-badges span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(32,23,29,.08);
  font-weight: 900;
}
.hero-visual { position: relative; overflow: hidden; min-height: 650px; background: var(--coral); }
.hero-visual img { height: 100%; object-fit: cover; object-position: center; }
.sunburst {
  position: absolute; inset: -35%;
  background: repeating-conic-gradient(rgba(255,255,255,.13) 0deg 9deg, transparent 9deg 18deg);
  z-index: 1; pointer-events: none;
}
.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 136px; height: 136px;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  line-height: 1;
  border: 7px solid var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.sticker-one { right: 6%; top: 8%; background: var(--pink); color: white; }
.sticker-two { left: 5%; bottom: 7%; width: 110px; height: 110px; background: #ffd84e; transform: rotate(9deg); }

.ticker { overflow: hidden; background: var(--ink); color: white; padding: 14px 0; }
.ticker div {
  width: max-content;
  display: flex;
  gap: 24px;
  align-items: center;
  animation: ticker 20s linear infinite;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
.ticker i { color: var(--pink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(78px, 10vw, 140px) clamp(22px, 6vw, 96px); }
.section-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section h2, .feature-copy h2, .social-banner h2, .visit-card h2 { font-size: clamp(2.9rem, 5vw, 5rem); }
.section-heading p, .feature-copy p, .social-banner p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
}
.how { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1280px; margin: 0 auto; }
.step-card {
  position: relative;
  padding: 30px;
  background: var(--cream);
  border-radius: 28px;
  min-height: 270px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow); }
.step-card:nth-child(even):hover { transform: translateY(-8px) rotate(1deg); }
.step-number { position: absolute; top: 22px; right: 24px; color: var(--pink); font-weight: 900; }
.step-icon { font-size: 3.2rem; }
.step-card h3 { margin: 18px 0 8px; font-family: "Baloo 2"; font-size: 2rem; }
.step-card p { margin: 0; line-height: 1.6; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; background: var(--blush); }
.feature-photo { min-height: 680px; }
.feature-photo img { height: 100%; object-fit: cover; }
.feature-copy { padding: clamp(58px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy ul { margin: 28px 0; padding: 0; list-style: none; }
.feature-copy li { margin: 12px 0; font-weight: 800; }
.feature-copy li::before { content: "✦"; color: var(--pink); margin-right: 12px; }
.text-link { font-weight: 900; color: var(--pink-dark); font-size: 1.05rem; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(6px); }

.flavours { background: var(--cream); }
.flavour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: auto; }
.flavour-card {
  min-height: 250px;
  padding: 32px;
  border-radius: 30px;
  color: white;
  box-shadow: inset 0 -40px 80px rgba(0,0,0,.08);
  transition: transform .2s ease;
}
.flavour-card:hover { transform: translateY(-6px); }
.flavour-card span { font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.flavour-card h3 { font-family: "Baloo 2"; font-size: 2.4rem; margin: 48px 0 6px; line-height: 1; }
.flavour-card p { margin: 0; max-width: 260px; line-height: 1.5; }
.strawberry { background: linear-gradient(135deg,#ff568c,#d80f68); }
.chocolate { background: linear-gradient(135deg,#9a5a31,#512711); }
.pistachio { background: linear-gradient(135deg,#9ebf61,#55752f); }
.biscoff { background: linear-gradient(135deg,#d98b3d,#8b4d19); }
.mango { background: linear-gradient(135deg,#ffb91f,#f77b1c); }
.tart { background: linear-gradient(135deg,#ff8ac0,#e9368d); }
.availability-note { text-align: center; margin: 26px 0 0; opacity: .68; }

.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.gallery-strip img { aspect-ratio: 1/1; object-fit: cover; }

.promos { background: var(--white); }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1260px; margin: auto; }
.promo-card {
  overflow: hidden;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(42,18,32,.09);
}
.promo-card img { aspect-ratio: 4/5; object-fit: cover; }
.promo-card div { padding: 26px; }
.promo-card span { color: var(--pink-dark); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.promo-card h3 { font-family: "Baloo 2"; font-size: 2rem; margin: 7px 0; }
.promo-card p { margin: 0; line-height: 1.6; }

.social-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 7vw, 110px);
  background: var(--pink);
  color: white;
}
.social-banner .eyebrow { color: #ffe1ef; }
.social-banner h2 { margin-bottom: 12px; }

.visit { display: grid; grid-template-columns: .95fr 1.05fr; background: var(--ink); color: white; }
.visit-photo { min-height: 700px; }
.visit-photo img { height: 100%; object-fit: cover; }
.visit-card { padding: clamp(60px, 9vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.visit-card .eyebrow { color: #ff82bc; }
.location { font-size: 1.25rem; line-height: 1.6; }
.contact-links { display: grid; gap: 12px; margin: 30px 0; }
.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  transition: background .2s ease;
}
.contact-links a:hover { background: rgba(255,255,255,.08); }
.contact-links span { opacity: .75; text-align: right; }
.small { opacity: .65; font-size: .9rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 38px clamp(22px, 6vw, 90px);
  background: #130e12;
  color: white;
}
.footer-brand .brand-main { font-size: 2rem; }
.footer-brand .brand-sub { display: block; }
footer p { margin: 0; opacity: .78; }
.copyright { text-align: right; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 16px; right: 16px; top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .split-feature, .visit { grid-template-columns: 1fr; }
  .feature-photo, .visit-photo { min-height: 560px; }
  .flavour-grid, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card:last-child { grid-column: 1 / -1; max-width: 620px; justify-self: center; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .copyright { text-align: center; }
}

@media (max-width: 640px) {
  .site-header { min-height: 72px; }
  .brand-main { font-size: 2rem; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 74px; }
  .hero h1 { font-size: 3.7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 500px; }
  .sticker { width: 108px; height: 108px; font-size: .86rem; }
  .sticker-two { width: 90px; height: 90px; }
  .steps-grid, .flavour-grid, .promo-grid { grid-template-columns: 1fr; }
  .promo-card:last-child { grid-column: auto; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { aspect-ratio: 4/3; }
  .social-banner { flex-direction: column; align-items: flex-start; }
  .contact-links a { flex-direction: column; gap: 4px; }
  .contact-links span { text-align: left; }
}


.banana { background: linear-gradient(135deg,#d7b13a,#8a7221); }
.passionfruit { background: linear-gradient(135deg,#f2b01e,#d86c14); }
.coffee { background: linear-gradient(135deg,#9b6747,#4f2f20); }
.caramel { background: linear-gradient(135deg,#d9a05b,#8b551e); }

.yo-club {
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.5) 0 6%, transparent 7%),
    linear-gradient(135deg, #ffd5e6 0%, #fff3d5 100%);
}
.yo-club-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.yo-club-copy h2 {
  margin: 16px 0 20px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.yo-club-copy > p {
  font-size: 1.1rem;
  line-height: 1.7;
}
.club-benefits {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}
.club-benefits div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,.72);
  border-radius: 18px;
  border: 1px solid rgba(32,23,29,.07);
}
.club-benefits strong {
  color: var(--pink-dark);
}
.club-benefits span {
  line-height: 1.5;
}
.club-hashtag {
  font-size: 1.15rem;
}
.yo-club-form {
  position: relative;
  padding: 36px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.form-badge {
  position: absolute;
  top: -20px;
  right: 24px;
  padding: 12px 18px;
  background: var(--pink);
  color: white;
  border-radius: 999px;
  font-weight: 900;
  transform: rotate(4deg);
}
.yo-club-form h3 {
  margin: 0 0 22px;
  font-family: "Baloo 2", sans-serif;
  font-size: 2.4rem;
}
.yo-club-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 800;
}
.yo-club-form input[type="text"],
.yo-club-form input[type="email"],
.yo-club-form input[type="tel"] {
  width: 100%;
  padding: 14px 15px;
  border: 2px solid #f0d9e3;
  border-radius: 14px;
  font: inherit;
  background: #fffafd;
}
.yo-club-form input:focus {
  outline: none;
  border-color: var(--pink);
}
.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 600 !important;
  font-size: .9rem;
}
.yo-club-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.yo-club-form small {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-weight: 900;
  color: var(--pink-dark);
}

@media (max-width: 980px) {
  .yo-club-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .club-benefits div { grid-template-columns: 1fr; gap: 4px; }
  .yo-club-form { padding: 28px 22px; }
}

.gallery-strip{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
max-width:1300px;
margin:0 auto;
}
.gallery-strip img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
border-radius:22px;
box-shadow:0 12px 30px rgba(0,0,0,.15);
transition:.25s;
}
.gallery-strip img:hover{transform:scale(1.03);}
@media(max-width:900px){.gallery-strip{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.gallery-strip{grid-template-columns:1fr;}}

.hero-mascot{
position:absolute;
right:5%;
bottom:3%;
background:rgba(255,255,255,.9);
padding:18px;
border-radius:24px;
text-align:center;
max-width:180px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.hero-mascot img{width:120px;height:auto;}
.club-logo{text-align:center;margin-bottom:10px;}
.club-logo img{width:110px;height:auto;}
@media(max-width:900px){
.hero-mascot{position:static;margin:20px auto;}
}

.hours-card{
max-width:700px;
margin:30px auto 0;
background:#fff;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.12);
overflow:hidden;
}
.hours-card div{
display:flex;
justify-content:space-between;
padding:18px 24px;
border-bottom:1px solid #eee;
font-size:1.05rem;
}
.hours-card div:last-child{border-bottom:none;}
.hours-card strong{color:#ff4f87;}
