/* Chicago Soft Serve — Funky homepage (hovers only, no animations) */

:root {
  --pink: #ff2d8a;
  --pink-dark: #e6006f;
  --yellow: #ffe566;
  --lime: #b8ff3c;
  --navy: #1a2b6d;
  --navy-dark: #0f1a45;
  --blue-cta: #3d5afe;
  --cyan: #00d4ff;
  --cyan-light: #c8f7ff;
  --orange: #ff9100;
  --white: #ffffff;
  --gray-100: #f0f4ff;
  --gray-200: #dce4f5;
  --gray-500: #5a6b8a;
  --text: #1e2a4a;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fredoka', var(--font);
  --script: 'Pacifico', cursive;
  --container: 1180px;
  --container-padding: 24px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --radius-wobbly: 28px 10px 28px 10px;
  --shadow-sticker: 4px 4px 0 #2c92d7;
  --shadow-sticker-lg: 7px 7px 0 #2c92d7;
  --shadow: 0 6px 24px rgba(26, 43, 109, 0.1);
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons — sticker style, hover lift only */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 3px solid var(--navy);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sticker);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: #2c92d7;
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-sticker-lg);
  transform: translate(-3px, -3px);
}

.btn-outline-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.btn-outline-light:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--navy);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-sticker-lg);
}

.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  border-color: var(--navy);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-sticker-lg);
}

.btn-center {
  display: block;
  width: fit-content;
  margin: 24px auto 0;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title.pink {
  color: var(--pink-dark);
  text-align: center;
  /* text-shadow: 3px 3px 0 var(--cyan), 6px 6px 0 var(--yellow); */
}

.section-title.navy {
  color: var(--navy);
}

.script {
  font-family: var(--script);
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.15em;
  text-shadow: 2px 2px 0 var(--pink-dark);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 4px solid #0198ea;
  box-shadow: 0 5px 0 #ed2bdd;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 16px;
}

.logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.logo:hover img {
  transform: rotate(-10deg) scale(1.08);
  filter: drop-shadow(3px 3px 0 var(--cyan));
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 12px;
  position: relative;
  border-radius: var(--radius-pill);
}

.main-nav a.active {
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--cyan);
}

.main-nav a:not(.active):hover {
  color: #ffffff;
  background: #2c92d7;
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--pink);
}

.btn-header {
  padding: 10px 22px;
  font-size: 13px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  line-height: 0;
}

.hero-bg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: min(520px, 48vw);
  padding: 40px 24px 88px clamp(20px, 4vw, 64px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  line-height: 1.6;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 480px;
  text-shadow: 3px 3px 0 var(--navy), 4px 4px 0 var(--pink-dark);
  letter-spacing: 0.02em;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  height: 72px;
}

.wave-divider svg {
  width: 100%;
  height: 72px;
  display: block;
}

/* ========== EVENTS WE SERVE ========== */
.events-serve {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.event-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  cursor: default;
}

.event-icon {
  width: 76px;
  height: 76px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-light);
  border: 3px solid var(--navy);
  border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%;
  box-shadow: var(--shadow-sticker);
}

.event-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 2.5;
}

.event-item span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
}

/* .event-item:nth-child(1) .event-icon { background: #ffd6ec; }
.event-item:nth-child(2) .event-icon { background: #d6e8ff; }
.event-item:nth-child(3) .event-icon { background: #ffe8d6; }
.event-item:nth-child(4) .event-icon { background: #e8ffd6; }
.event-item:nth-child(5) .event-icon { background: #f0d6ff; }
.event-item:nth-child(6) .event-icon { background: #d6ffff; } */

.event-item:hover .event-icon {
  transform: rotate(-12deg) scale(1.1);
  background: var(--yellow);
  box-shadow: var(--shadow-sticker-lg);
}

.event-item:hover span {
  color: var(--pink-dark);
  transform: scale(1.05);
}

.event-item:nth-child(odd):hover .event-icon { transform: rotate(12deg) scale(1.1); }

/* ========== FEATURES (Why + Treats) ========== */
.features {
  padding: 48px 0 64px;
  background: var(--white);
}

.features-panel {
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1px minmax(0, 1fr);
  align-items: stretch;
  background: var(--white);
  border: 4px solid var(--navy);
  border-radius: var(--radius-wobbly);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--pink);
}

.features-panel:hover {
  box-shadow: 10px 10px 0 var(--cyan);
}

.features-divider {
  background: repeating-linear-gradient(
    180deg,
    var(--pink) 0,
    var(--pink) 6px,
    var(--cyan) 6px,
    var(--cyan) 12px
  );
  width: 4px;
  min-height: 100%;
}

.why-book {
  padding: 36px 32px 36px 36px;
}

.featured-treats {
  padding: 36px 36px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.features-heading--center {
  text-align: center;
  width: 100%;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
}

.check-list li:hover {
  background: var(--cyan-light);
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--pink);
  transform: translateX(6px);
}

.check {
  flex-shrink: 0;
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--navy);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  box-shadow: 2px 2px 0 var(--navy);
}

.check-list li:hover .check {
  background: var(--yellow);
  color: var(--navy);
  transform: rotate(-15deg);
}

.check svg {
  display: block;
}

.treats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 24px;
}

.treat-card {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sticker);
  cursor: pointer;
}

.treat-card:nth-child(1) { border-color: var(--pink); }
.treat-card:nth-child(2) { border-color: var(--cyan); }
.treat-card:nth-child(3) { border-color: var(--orange); }
.treat-card:nth-child(4) { border-color: var(--lime); }

.treat-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: var(--shadow-sticker-lg);
}

.treat-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(-2deg);
}

.treat-card-img {
  padding: 14px 10px 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 8px,
    var(--gray-100) 8px,
    var(--gray-100) 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.treat-card:hover .treat-card-img img {
  transform: scale(1.12) rotate(-5deg);
}

.treat-card-img img {
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 115px;
  object-fit: contain;
  margin: 0 auto;
}

.treat-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 12px 8px 16px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--yellow);
  border-top: 3px solid var(--navy);
}

.treat-card:hover h3 {
  background: var(--pink);
  color: var(--white);
}

.btn-menu {
  padding: 11px 32px;
  font-size: 14px;
  border-radius: 6px;
}

/* ========== BOOKING + QUOTE CTA ========== */
.booking-section {
  padding: 56px 0 64px;
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.how-booking .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step {
  flex: 1;
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px dashed transparent;
}

.step:hover {
  background: var(--gray-100);
  border-color: var(--pink);
  box-shadow: 4px 4px 0 var(--cyan);
}

.step-num {
  width: 48px;
  height: 48px;
  background: #2c92d7;
  color: var(--yellow);
  border: 3px solid #2c92d7;
  border-radius: 50% 40% 50% 40%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 3px 3px 0 var(--pink);
}

.step:hover .step-num {
  background: var(--pink);
  color: var(--white);
  transform: rotate(15deg) scale(1.1);
  box-shadow: 3px 3px 0 var(--yellow);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
}

.step-arrow {
  color: var(--pink);
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  padding-top: 0;
  flex-shrink: 0;
  user-select: none;
}

.steps:hover .step-arrow {
  color: var(--cyan);
  transform: scale(1.2);
}

.quote-cta {
  position: relative;
  background: #2c92d7;
  border: 4px solid var(--navy);
  border-radius: var(--radius-wobbly);
  overflow: visible;
  min-height: 220px;
  display: flex;
  align-items: center;
  box-shadow: 8px 8px 0 var(--yellow);
}

.quote-cta:hover {
  box-shadow: 10px 10px 0 var(--pink);
  transform: translate(-2px, -2px);
}

.quote-cta-inner {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  max-width: 72%;
}

.quote-cta h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quote-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin-bottom: 20px;
}

.quote-cone {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-52%);
  width: 150px;
  height: 190px;
  object-fit: contain;
  object-position: center bottom;
  z-index: 3;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.35));
}

.quote-cta:hover .quote-cone {
  transform: translateY(-58%) rotate(8deg) scale(1.08);
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.3));
}

/* ========== RECENT EVENTS ========== */
.recent-events {
  padding: 56px 0 72px;
  background: var(--gray-100);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px 6px 24px 6px;
  border: 4px solid var(--white);
  box-shadow: 5px 5px 0 var(--navy);
  outline: 3px solid var(--pink);
  outline-offset: -7px;
  position: relative;
  contain: layout style paint;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.gallery-item:nth-child(2) { outline-color: var(--cyan); box-shadow: 5px 5px 0 var(--pink); }
.gallery-item:nth-child(3) { outline-color: var(--yellow); }
.gallery-item:nth-child(4) { outline-color: var(--lime); box-shadow: 5px 5px 0 var(--orange); }
.gallery-item:nth-child(5) { outline-color: var(--orange); }

.gallery-item:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 8px 8px 0 var(--cyan);
  outline-color: var(--yellow);
  z-index: 2;
}

.gallery-item:nth-child(even):hover {
  transform: scale(1.06) rotate(4deg);
}

/* ========== SWEET CTA BANNER ========== */
.sweet-cta {
  position: relative;
  background: var(--pink);
  padding: 44px 0;
  overflow: hidden;
  border-top: 5px solid var(--navy);
  border-bottom: 5px solid var(--navy);
}

.sweet-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, var(--yellow) 4px, transparent 4px),
    radial-gradient(circle at 80% 70%, var(--cyan) 3px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--white) 2px, transparent 2px);
  background-size: 40px 40px, 52px 52px, 24px 24px;
}

.sweet-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sweet-product {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid var(--navy);
  background: var(--white);
  flex-shrink: 0;
  box-shadow: 5px 5px 0 var(--yellow);
}

.sweet-cta-inner:hover .sweet-product {
  transform: rotate(-12deg) scale(1.1);
  box-shadow: 7px 7px 0 var(--cyan);
}

.sweet-text {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.sweet-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 var(--navy);
}

.sweet-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin: 0 auto;
}

.sweet-cta .btn-white {
  flex-shrink: 0;
  padding: 14px 32px;
}

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background: #0071bd;
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 0;
  border-top: 6px solid var(--pink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-about p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  width: 56px;
  height: 56px;
}

.footer-about:hover .footer-logo {
  transform: rotate(8deg) scale(1.1);
  filter: drop-shadow(3px 3px 0 var(--pink));
}

.footer-links h3,
.footer-contact h3,
.footer-book h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--navy);
  background: var(--cyan);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--yellow);
  transform: translateX(4px);
}

.contact-list li {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list a:hover {
  color: var(--navy);
  background: var(--yellow);
  padding: 0 8px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--cyan);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50% 45% 55% 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 3px 3px 0 transparent;
}

.social-icons a:hover {
  background: var(--pink);
  border-color: var(--yellow);
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 3px 3px 0 var(--yellow);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-book p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.footer-book:hover p {
  color: var(--white);
}

.footer-wave {
  line-height: 0;
  height: 48px;
  margin-top: 8px;
}

.footer-wave svg {
  width: 100%;
  height: 48px;
  display: block;
}

/* ========== RESPONSIVE ========== */

/* Large laptop — 1200px */
@media (max-width: 1200px) {
  :root {
    --container-padding: 20px;
  }

  .main-nav ul {
    gap: 4px 14px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 5px 10px;
  }

  .btn-header {
    padding: 9px 18px;
    font-size: 12px;
  }

  .events-grid {
    gap: 16px;
  }

  .footer-grid {
    gap: 32px;
  }
}

/* Tablet landscape / small laptop — 1024px */
@media (max-width: 1024px) {
  :root {
    --container-padding: 20px;
  }

  .section-title {
    font-size: clamp(24px, 3.5vw, 32px);
    margin-bottom: 28px;
  }

  .hero-content {
    width: min(500px, 52vw);
    padding: 32px 20px 72px clamp(16px, 3vw, 40px);
  }

  .hero h1 {
    font-size: clamp(24px, 3.2vw, 36px);
    max-width: 100%;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .events-serve {
    padding: 48px 0 56px;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
    gap: 16px;
  }

  .event-icon {
    width: 68px;
    height: 68px;
  }

  .event-icon svg {
    width: 46px;
    height: 46px;
  }

  .features {
    padding: 40px 0 56px;
  }

  .features-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    box-shadow: 6px 6px 0 var(--pink);
  }

  .features-divider {
    width: 100%;
    height: 4px;
    min-height: 4px;
    background: repeating-linear-gradient(
      90deg,
      var(--pink) 0,
      var(--pink) 12px,
      var(--cyan) 12px,
      var(--cyan) 24px
    );
  }

  .why-book,
  .featured-treats {
    padding: 28px 20px;
  }

  .features-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .treats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .booking-section {
    padding: 48px 0 56px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .how-booking .section-title {
    text-align: center;
  }

  .quote-cta {
    min-height: 200px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .quote-cta-inner {
    padding: 32px 28px;
    max-width: 68%;
  }

  .quote-cta h2 {
    font-size: 20px;
  }

  .quote-cone {
    width: 130px;
    height: 165px;
    right: 4px;
  }

  .recent-events {
    padding: 48px 0 60px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Tablet portrait — 991px */
@media (max-width: 991px) {
  :root {
    --container-padding: 16px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    height: 72px;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px var(--container-padding);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav a {
    font-size: 15px;
    padding: 8px 12px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .btn-header {
    display: none;
  }

  .hero {
    margin-top: 72px;
  }

  .hero-content {
    width: min(540px, 58vw);
    padding: 28px 16px 64px;
  }

  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    width: 100%;
    padding: 14px 12px;
  }

  .sweet-cta {
    padding: 36px 0;
  }

  .sweet-cta-inner {
    justify-content: center;
    gap: 20px;
  }
}

/* Tablet / large mobile — 768px */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
    padding: 12px 24px;
  }

  .section-title {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

  .hero {
    display: flex;
    flex-direction: column;
    line-height: normal;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: clamp(190px, 44vw, 260px);
    object-fit: cover;
    object-position: 72% center;
  }

  .hero-content {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 28px var(--container-padding) 32px;
    background: var(--navy);
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 12px;
    max-width: 100%;
    text-shadow: 2px 2px 0 var(--pink-dark);
  }

  .hero h1 .script {
    text-shadow: 1px 1px 0 var(--pink-dark);
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: none;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .events-serve {
    padding: 40px 0 48px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    gap: 12px;
  }

  .event-item span {
    font-size: 12px;
  }

  .features {
    padding: 36px 0 48px;
  }

  .why-book,
  .featured-treats {
    padding: 24px 16px;
  }

  .features-heading {
    font-size: 20px;
  }

  .check-list li {
    font-size: 13px;
    padding: 8px 10px;
  }

  .treat-card-img {
    min-height: 110px;
    padding: 12px 8px 6px;
  }

  .treat-card-img img {
    max-width: 120px;
    max-height: 100px;
  }

  .treat-card h3 {
    font-size: 12px;
    padding: 10px 6px 14px;
  }

  .booking-section {
    padding: 40px 0 48px;
  }

  .step h3 {
    font-size: 13px;
  }

  .step p {
    font-size: 12px;
  }

  .quote-cta {
    min-height: auto;
  }

  .quote-cta-inner {
    padding: 28px 20px;
    max-width: 72%;
  }

  .quote-cta h2 {
    font-size: 18px;
  }

  .quote-cta p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .quote-cone {
    width: 110px;
    height: 140px;
    right: 4px;
  }

  .recent-events {
    padding: 40px 0 52px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    border-width: 3px;
  }

  .sweet-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sweet-text h2 {
    font-size: clamp(20px, 5vw, 26px);
  }

  .sweet-text p {
    font-size: 13px;
  }

  .sweet-product {
    width: 90px;
    height: 90px;
  }

  .sweet-cta .btn-white {
    width: 100%;
    max-width: 280px;
  }

  .site-footer {
    padding: 44px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-book h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* Small mobile — 575px */
@media (max-width: 575px) {
  :root {
    --container-padding: 14px;
  }

  .header-inner {
    height: 64px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .main-nav {
    top: 64px;
  }

  .hero {
    margin-top: 64px;
  }

  .hero-bg {
    height: clamp(170px, 40vw, 220px);
  }

  .hero-content {
    padding: 24px var(--container-padding) 28px;
  }

  .hero h1 {
    font-size: clamp(20px, 6vw, 24px);
  }

  .hero-sub {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .events-grid {
    gap: 10px;
    row-gap: 20px;
  }

  .event-icon {
    width: 60px;
    height: 60px;
  }

  .event-icon svg {
    width: 40px;
    height: 40px;
  }

  .features-panel {
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--pink);
  }

  .treats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-cta {
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--yellow);
  }

  .quote-cta-inner {
    padding: 24px 16px;
    max-width: 100%;
    padding-right: 100px;
  }

  .quote-cta h2 {
    font-size: 16px;
  }

  .quote-cone {
    width: 88px;
    height: 112px;
    right: 0;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item {
    border-radius: 4px 4px 18px 4px;
  }

  .btn-center {
    width: 100%;
    max-width: 280px;
  }

  .sweet-cta {
    padding: 32px 0;
  }

  .footer-book .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Extra small mobile — 375px */
@media (max-width: 375px) {
  :root {
    --container-padding: 12px;
  }

  body {
    font-size: 13px;
  }

  .btn {
    font-size: 12px;
    padding: 11px 18px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .hero-bg {
    height: 160px;
    object-position: 75% center;
  }

  .hero-content {
    padding: 20px var(--container-padding) 24px;
  }

  .hero h1 {
    font-size: 19px;
  }

  .hero-sub {
    font-size: 11px;
  }

  .features-heading {
    font-size: 18px;
  }

  .event-item span {
    font-size: 11px;
  }

  .quote-cta-inner {
    padding-right: 84px;
  }

  .quote-cone {
    width: 76px;
    height: 96px;
  }

  .sweet-text h2 {
    font-size: 18px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

/* Instant hover snap — no keyframes, no transitions, no animations */
.btn:hover,
.logo:hover img,
.main-nav a:hover,
.event-item:hover .event-icon,
.event-item:hover span,
.check-list li:hover,
.check-list li:hover .check,
.treat-card:hover,
.treat-card:hover .treat-card-img img,
.treat-card:hover h3,
.features-panel:hover,
.step:hover,
.step:hover .step-num,
.steps:hover .step-arrow,
.quote-cta:hover,
.quote-cta:hover .quote-cone,
.gallery-item:hover,
.sweet-cta-inner:hover .sweet-product,
.footer-about:hover .footer-logo,
.footer-links a:hover,
.contact-list a:hover,
.social-icons a:hover {
  transition: none;
}
