/* ============ VARIABLES & RESET ============ */
:root {
  --cream: #FFF8EC;
  --cream-soft: #FFFDF8;
  --cream-dark: #FBEAD2;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gold: #F2B632;
  --gold-dark: #D99B1F;
  --red: #E2495C;
  --blue: #5C8AC8;
  --purple: #9B7FC7;
  --green: #6FAE7C;
  --text: #2B2A28;
  --text-light: #777068;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(26, 16, 6, 0.08);
  --stripe-size: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--black);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { color: var(--text); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.script {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
}

/* ============ STRIPES UTILITY ============ */
.stripes-h {
  background-image: repeating-linear-gradient(
    45deg,
    var(--black) 0 var(--stripe-size),
    var(--white) var(--stripe-size) calc(var(--stripe-size) * 2)
  );
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 0 0 var(--gold-dark);
}
.btn-primary:hover { background: #FFC94A; box-shadow: 0 6px 0 0 var(--gold-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 0 0 rgba(0,0,0,0.12);
}
.btn-light:hover { background: var(--cream); }

.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--red); }

/* ============ EYEBROW / SECTION HEADS ============ */
.eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .section-sub {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 1.05rem;
}
.section-head-light .eyebrow { color: var(--gold); }
.section-head-light h2, .section-head-light p { color: var(--white); }
.section-head-light .section-sub { color: rgba(255,255,255,0.75); }

section { padding: 90px 0; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  padding: 10px 16px;
}
.announce-bar a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-soft);
  border-bottom: 4px solid var(--black);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(26, 16, 6, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo-cone { font-size: 1.8rem; }
.logo-text .script { color: var(--red); font-size: 1.15em; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--red); }
.nav-cta-mobile { display: none; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 60%);
}
.hero-stripes {
  height: 16px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
}

.hero-sub { font-size: 1.08rem; color: var(--text-light); margin: 18px 0 28px; max-width: 540px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  font-family: 'Fredoka', sans-serif;
}
.hero-trust strong { font-size: 1.4rem; color: var(--red); }
.hero-trust span { font-size: 0.85rem; color: var(--text-light); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-cone-img {
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 30px rgba(26,16,6,0.18));
}
.hero-sprinkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, var(--blue) 0 8px, transparent 9px),
    radial-gradient(circle, var(--purple) 0 7px, transparent 8px),
    radial-gradient(circle, var(--red) 0 6px, transparent 7px),
    radial-gradient(circle, var(--gold) 0 9px, transparent 10px);
  background-position: 8% 18%, 88% 12%, 78% 82%, 14% 78%;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--white) 0deg 18deg, var(--black) 18deg 36deg);
  opacity: 0.06;
}

.hero-badge {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 3;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  font-family: 'Fredoka', sans-serif;
  box-shadow: var(--shadow);
}
.badge-99 { font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--black); }
.badge-flake { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; color: var(--black); }

.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.van-illustration img { width: 100%; }

.about-content p { margin-bottom: 16px; color: var(--text-light); }
.about-points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.point { display: flex; gap: 16px; align-items: flex-start; }
.point-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
}
.point h3 { margin-bottom: 4px; font-size: 1.05rem; }
.point p { margin: 0; font-size: 0.95rem; }

/* ============ MENU ============ */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.menu-icon { width: 64px; height: 64px; margin-bottom: 16px; font-size: 2.4rem; display: flex; align-items: center; justify-content: center; }
.menu-card h3 { margin-bottom: 8px; }
.menu-card p { color: var(--text-light); font-size: 0.96rem; }
.menu-price {
  margin-top: 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--red);
  font-size: 1.05rem;
}
.menu-card-allergen {
  background: var(--cream-dark);
  border-style: dashed;
  border-color: var(--gold-dark);
}

/* ============ HIRE ============ */
.hire {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.hire-stripes-top { height: 16px; }
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hire-card {
  background: #2A2A28;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 2px solid #3D3C38;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hire-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.hire-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.hire-card h3 { color: var(--white); margin-bottom: 8px; }
.hire-card p { color: rgba(255,255,255,0.7); font-size: 0.96rem; margin: 0; }

.hire-cta {
  text-align: center;
  margin-top: 48px;
}
.hire-cta p { margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ============ FIND US ============ */
.find-us { background: var(--white); }
.find-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.find-us-content p { color: var(--text-light); }
.schedule {
  margin: 28px 0 14px;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
}
.schedule-row:nth-child(odd) { background: var(--cream-dark); }
.schedule-row span:first-child { font-weight: 600; color: var(--red); }

.schedule-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tags span {
  background: var(--cream-dark);
  border: 2px solid var(--black);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.find-us-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--black);
  min-height: 360px;
  box-shadow: var(--shadow);
}
.find-us-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ============ GALLERY ============ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}
.gallery-item {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gallery-item span { font-size: 2.6rem; }
.gallery-item p { font-family: 'Fredoka', sans-serif; font-size: 0.9rem; color: var(--text-light); margin: 0; }
.gallery-item:hover { transform: translateY(-4px); background: var(--cream-dark); }
.gallery-item:nth-child(1) { background: var(--cream-dark); }
.gallery-item:nth-child(3) { background: #FDEDE8; }
.gallery-item:nth-child(5) { background: #ECEEFB; }
.gallery-large {
  grid-row: span 2;
  grid-column: span 2;
}
.gallery-large span { font-size: 4.5rem; }

/* ============ REVIEWS ============ */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--cream-dark);
}
.stars { color: var(--gold-dark); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: var(--text); font-size: 0.97rem; }
.review-author {
  margin-top: 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--red);
  font-size: 0.9rem;
}
.reviews-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-item summary {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 12px; color: var(--text-light); font-size: 0.96rem; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(120deg, var(--red) 0%, #F26D7D 100%);
  color: var(--white);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
}
.contact-list strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-list a, .contact-list span { font-size: 1.05rem; font-weight: 500; }
.contact-list a:hover { color: var(--red); }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-links a:hover { background: var(--black); color: var(--white); }

.contact-form {
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 2px solid var(--black);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--gold);
}
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #E7F4EA;
  border: 2px solid var(--green);
  border-radius: 10px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  color: #3E7B4F;
}
.form-success.visible { display: block; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 0;
}
.footer-stripes { height: 16px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3, .footer-contact h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-links a, .footer-contact a, .footer-contact p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream-soft);
  border-top: 3px solid var(--black);
}
.sticky-cta .btn { flex: 1; padding: 12px 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .find-us-inner, .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-media { order: -1; }
  .hero-visual { order: -1; min-height: 280px; }
  .menu-grid, .hire-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--cream-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px;
    gap: 24px;
    border-left: 4px solid var(--black);
    transition: right 0.3s ease;
    z-index: 110;
  }
  .nav.open { right: 0; }
  .nav a { font-size: 1.15rem; }
  .nav-cta-mobile {
    display: block;
    margin-top: 12px;
    background: var(--gold);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--black);
  }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero { padding-bottom: 90px; }
  .hero-trust { gap: 18px; }
  .hero-divider { height: 40px; }

  .menu-grid, .hire-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 520px) {
  .menu-grid, .hire-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
  .hero-trust { gap: 12px 22px; }
}
