/* Lickety Split single-page styles */
:root {
  --pink: #ffb6d9;
  --blue: #89cff0;
  --mint: #b5ead7;
  --lavender: #e6ccff;
  --navy: #0f172a;
  --gray: #475569;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: linear-gradient(145deg, rgba(255, 182, 217, 0.12), rgba(137, 207, 240, 0.12));
  color: var(--navy);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1100px, 92vw); margin: 0 auto; }
.section { padding: clamp(40px, 10vw, 80px) 0; }
.section--tone { background: rgba(255, 255, 255, 0.7); }
.section--highlight { background: linear-gradient(135deg, rgba(255, 182, 217, 0.18), rgba(137, 207, 240, 0.18)); }
.section--cta { background: linear-gradient(135deg, #ffb6d9, #89cff0); color: var(--navy); }
.section__header { text-align: center; margin-bottom: 32px; }
.section__header h2 { margin: 8px 0 6px; font-size: clamp(28px, 4vw, 40px); }
.section__header .muted { color: var(--gray); }

.nav { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 8px; justify-content: space-between; padding: 12px 3vw; background: rgba(255,255,255,0.86); backdrop-filter: blur(8px); box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06); flex-wrap: wrap; }
.nav__brand { font-weight: 700; letter-spacing: -0.02em; font-size: clamp(14px, 4vw, 16px); }
.nav__links { display: flex; gap: clamp(6px, 2vw, 12px); align-items: center; }
.nav__links a { padding: 6px 8px; border-radius: 8px; transition: background 0.2s, transform 0.2s; font-size: clamp(12px, 2.5vw, 14px); white-space: nowrap; }
.nav__links a:hover { background: rgba(15,23,42,0.06); transform: translateY(-1px); }
.nav__cta { padding: 8px 12px; border-radius: 999px; background: linear-gradient(135deg, #ffb6d9, #89cff0); font-weight: 600; box-shadow: var(--shadow); font-size: clamp(12px, 2.5vw, 14px); }
.nav__toggle { display: none; background: none; border: 1px solid rgba(15,23,42,0.15); border-radius: 12px; padding: 8px 10px; font-size: 18px; cursor: pointer; }

.section--hero { padding: clamp(50px, 12vw, 90px) 0; }
.hero { display: grid; grid-template-columns: 1fr; align-items: center; gap: clamp(20px, 5vw, 32px); }
@media (min-width: 640px) {
  .hero { grid-template-columns: repeat(2, 1fr); }
}
.hero__text h1 { font-size: clamp(28px, 6vw, 54px); margin: 12px 0; line-height: 1.1; }
.gradient { background: linear-gradient(135deg, #ffb6d9, #89cff0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: var(--gray); max-width: 520px; }
.hero__card { background: linear-gradient(135deg, #fff, #f8fbff); border-radius: 20px; padding: 0; box-shadow: var(--shadow); text-align: center; border: 1px solid rgba(15,23,42,0.06); overflow: hidden; }
.hero__img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero__emoji { font-size: clamp(40px, 10vw, 60px); margin-bottom: 8px; }
.hero__title { font-weight: 700; font-size: clamp(16px, 4vw, 20px); margin: 6px 0; }
.hero__caption { color: var(--gray); font-size: clamp(12px, 2.5vw, 14px); }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(15,23,42,0.05); color: var(--gray); font-weight: 600; font-size: 13px; letter-spacing: 0.01em; }
.pill--soft { background: rgba(255, 182, 217, 0.2); color: #b83280; }

.actions { display: flex; flex-wrap: wrap; gap: clamp(8px, 2vw, 12px); margin-top: 18px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: clamp(10px, 2vw, 12px) clamp(12px, 3vw, 16px); border-radius: 12px; font-weight: 700; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; font-size: clamp(13px, 2.5vw, 15px); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14); }
.btn--primary { background: linear-gradient(135deg, #ffb6d9, #89cff0); color: var(--navy); }
.btn--secondary { background: linear-gradient(135deg, #b5ead7, #e6ccff); color: var(--navy); }
.btn--outline { background: var(--white); border: 1px solid rgba(15,23,42,0.12); color: var(--navy); }
.btn--ghost { background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.4); color: var(--navy); }

.section--card .status { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; background: var(--white); border-radius: var(--radius); padding: clamp(16px, 4vw, 24px); box-shadow: var(--shadow); border: 1px solid rgba(15,23,42,0.06); }
@media (min-width: 640px) {
  .section--card .status { grid-template-columns: 1fr auto; }
}
.status__badge { justify-self: start; background: rgba(137, 207, 240, 0.16); padding: 10px 14px; border-radius: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: clamp(12px, 2vw, 14px); }
@media (min-width: 640px) {
  .status__badge { justify-self: end; }
}

.grid { display: grid; gap: clamp(12px, 3vw, 16px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.card { background: var(--white); padding: clamp(14px, 3vw, 18px); border-radius: var(--radius); border: 1px solid rgba(15,23,42,0.06); box-shadow: 0 12px 30px rgba(15,23,42,0.06); }
.card--lift:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step { width: clamp(32px, 8vw, 38px); height: clamp(32px, 8vw, 38px); border-radius: 12px; background: linear-gradient(135deg, #ffb6d9, #89cff0); display: grid; place-items: center; font-weight: 700; margin-bottom: 10px; font-size: clamp(14px, 3vw, 16px); }

.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 18px; justify-content: center; }
.tab { padding: 12px 18px; border-radius: 12px; background: rgba(15,23,42,0.06); cursor: pointer; border: 1px solid transparent; font-weight: 600; font-size: clamp(13px, 2.5vw, 15px); transition: all 0.2s; }
.tab:hover { background: rgba(15,23,42,0.1); }
.tab.is-active { background: var(--white); border-color: rgba(15,23,42,0.12); box-shadow: var(--shadow); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(14px, 3vw, 18px); margin-top: 20px; }
.menu-card { background: var(--white); padding: clamp(16px, 3vw, 20px); border-radius: var(--radius); border: 1px solid rgba(15,23,42,0.06); box-shadow: 0 8px 20px rgba(15,23,42,0.06); transition: all 0.2s; }
.menu-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.menu-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.menu-card__title { margin: 0; font-size: clamp(15px, 3vw, 17px); font-weight: 700; color: var(--navy); line-height: 1.3; }
.menu-card__price { font-weight: 700; font-size: clamp(15px, 3vw, 17px); color: #b83280; white-space: nowrap; }
.menu-card__desc { margin: 0; font-size: clamp(13px, 2.5vw, 14px); color: var(--gray); line-height: 1.5; }

.booking { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; }
@media (min-width: 640px) {
  .booking { grid-template-columns: 1fr auto; }
}
.booking__badge { width: clamp(70px, 20vw, 100px); height: clamp(70px, 20vw, 100px); border-radius: 50%; background: rgba(255,255,255,0.68); display: grid; place-items: center; font-size: clamp(24px, 6vw, 34px); font-weight: 700; justify-self: center; }

#testimonial-grid .quote { font-size: 15px; color: var(--gray); }
.rating { color: #f59e0b; margin: 6px 0; }

.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border-radius: var(--radius); padding: 14px 16px; border: 1px solid rgba(15,23,42,0.08); box-shadow: 0 10px 24px rgba(15,23,42,0.05); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 0; color: var(--gray); }

.section--cta .contact { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; color: var(--navy); }
@media (min-width: 640px) {
  .section--cta .contact { grid-template-columns: 1fr auto; }
}
.contact__emoji { font-size: clamp(30px, 10vw, 50px); justify-self: center; }

.footer { background: #0f172a; color: #e2e8f0; padding: 36px 0 18px; }
.footer__grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer a { color: #cbd5e1; }
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__note { text-align: center; color: #94a3b8; margin-top: 10px; }

@media (max-width: 640px) {
  .nav__links { display: none; position: fixed; top: 54px; left: 0; right: 0; background: #fff; padding: 12px 3vw; border-radius: 0; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1); flex-direction: column; z-index: 9; gap: 8px; }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: inline-flex; }
  .section__header h2 { font-size: clamp(24px, 5vw, 32px); }
  .pill { font-size: 12px; padding: 6px 10px; }
}
