:root {
  --spk-cream: #FFF6EF;
  --spk-cream-deep: #FBE9DC;
  --spk-raspberry: #D6336C;
  --spk-raspberry-dark: #B02456;
  --spk-mint: #7BD3C0;
  --spk-mint-deep: #4CB5A0;
  --spk-cocoa: #3A2A2E;
  --spk-cocoa-soft: #6A5459;
  --spk-white: #FFFFFF;
  --spk-shadow: 0 18px 40px -22px rgba(58, 42, 46, 0.45);
  --spk-shadow-soft: 0 10px 26px -18px rgba(58, 42, 46, 0.5);
  --spk-radius: 26px;
  --spk-radius-sm: 16px;
  --spk-unit: 8px;
  --spk-shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 211, 192, 0.16), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(214, 51, 108, 0.12), transparent 40%),
    var(--spk-cream);
  color: var(--spk-cocoa);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: var(--spk-raspberry); }

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

.spk-shell {
  width: 100%;
  max-width: var(--spk-shell);
  margin-inline: auto;
  padding-inline: calc(var(--spk-unit) * 3);
}

.spk-skiplink {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--spk-cocoa);
  color: var(--spk-white);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 200;
  font-weight: 700;
}
.spk-skiplink:focus { left: 0; }

/* ---------- Top bar ---------- */
.spk-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 239, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(214, 51, 108, 0.12);
  transition: box-shadow 0.3s ease;
}
.spk-topbar.spk-topbar--stuck { box-shadow: var(--spk-shadow-soft); }

.spk-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: calc(var(--spk-unit) * 2);
}

.spk-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--spk-cocoa);
}
.spk-wordmark__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--spk-raspberry);
  position: relative;
  flex: none;
  box-shadow: inset 0 0 0 4px rgba(255, 246, 239, 0.9);
}
.spk-wordmark__dot::before,
.spk-wordmark__dot::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: var(--spk-mint);
}
.spk-wordmark__dot::before { top: 7px; left: 6px; transform: rotate(35deg); }
.spk-wordmark__dot::after { bottom: 8px; right: 6px; transform: rotate(-25deg); background: var(--spk-cream); }
.spk-wordmark__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
.spk-wordmark__sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--spk-mint-deep);
  font-weight: 700;
  margin-top: 3px;
}

.spk-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  border: none;
  border-radius: 14px;
  background: var(--spk-white);
  box-shadow: var(--spk-shadow-soft);
  cursor: pointer;
}
.spk-burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--spk-raspberry);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.spk-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.spk-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.spk-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.spk-menu {
  position: absolute;
  inset: 72px 0 auto 0;
  background: var(--spk-cream);
  border-bottom: 1px solid rgba(214, 51, 108, 0.14);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}
.spk-menu.spk-menu--open { max-height: 340px; }
.spk-menu__list {
  list-style: none;
  margin: 0;
  padding: 10px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spk-menu__list a {
  display: block;
  text-decoration: none;
  color: var(--spk-cocoa);
  font-weight: 700;
  padding: 12px 4px;
  border-radius: 12px;
}
.spk-menu__list a:hover { color: var(--spk-raspberry); }
.spk-menu__cta {
  margin-top: 6px;
  background: var(--spk-raspberry);
  color: var(--spk-white) !important;
  text-align: center;
  padding: 12px 18px !important;
}

/* ---------- Buttons ---------- */
.spk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.spk-btn--solid {
  background: var(--spk-raspberry);
  color: var(--spk-white);
  box-shadow: 0 14px 26px -14px rgba(214, 51, 108, 0.75);
}
.spk-btn--solid:hover { background: var(--spk-raspberry-dark); transform: translateY(-2px); }
.spk-btn--ghost {
  background: var(--spk-white);
  color: var(--spk-cocoa);
  box-shadow: var(--spk-shadow-soft);
}
.spk-btn--ghost:hover { transform: translateY(-2px); color: var(--spk-raspberry); }
.spk-btn--wide { padding-inline: 34px; }

/* ---------- Hero ---------- */
.spk-hero {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--spk-unit) * 8) calc(var(--spk-unit) * 9);
}
.spk-hero__inner { position: relative; z-index: 2; max-width: 780px; }

.spk-confetti { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.spk-flake {
  position: absolute;
  width: 20px;
  height: 8px;
  border-radius: 6px;
  opacity: 0.85;
}
.spk-flake--a { top: 12%; left: 8%;  background: var(--spk-raspberry); transform: rotate(24deg); }
.spk-flake--b { top: 20%; right: 12%; background: var(--spk-mint); transform: rotate(-40deg); }
.spk-flake--c { top: 46%; right: 6%;  background: var(--spk-raspberry-dark); transform: rotate(58deg); }
.spk-flake--d { bottom: 14%; left: 14%; background: var(--spk-mint-deep); transform: rotate(-18deg); }
.spk-flake--e { top: 62%; left: 4%;   background: var(--spk-raspberry); transform: rotate(70deg); }
.spk-flake--f { bottom: 22%; right: 20%; background: var(--spk-mint); transform: rotate(30deg); }
.spk-flake--g { top: 8%; left: 46%;   background: var(--spk-mint-deep); transform: rotate(-52deg); }
.spk-flake--h { bottom: 8%; right: 40%; background: var(--spk-raspberry-dark); transform: rotate(16deg); }

.spk-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spk-mint-deep);
  background: rgba(123, 211, 192, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
}
.spk-hero__title {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--spk-cocoa);
  margin-bottom: 20px;
}
.spk-hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--spk-cocoa-soft);
  max-width: 640px;
  margin: 0 0 30px;
}
.spk-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Section framing ---------- */
.spk-block-head { max-width: 640px; margin-bottom: calc(var(--spk-unit) * 5); }
.spk-block-head__title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--spk-cocoa);
  position: relative;
  padding-left: 20px;
}
.spk-block-head__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  height: 0.85em;
  width: 8px;
  border-radius: 6px;
  background: linear-gradient(var(--spk-raspberry), var(--spk-mint));
}
.spk-block-head__note {
  margin: 14px 0 0;
  color: var(--spk-cocoa-soft);
  font-size: 1.06rem;
}

/* ---------- What we make ---------- */
.spk-make { padding-block: calc(var(--spk-unit) * 7); }
.spk-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.spk-card {
  position: relative;
  background: var(--spk-white);
  border-radius: var(--spk-radius);
  padding: 30px 28px 28px;
  box-shadow: var(--spk-shadow);
  overflow: hidden;
  border: 1px solid rgba(214, 51, 108, 0.08);
}
.spk-card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--spk-cream-deep);
  opacity: 0.7;
}
.spk-card__badge {
  position: relative;
  z-index: 2;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
}
.spk-card__badge::before,
.spk-card__badge::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 5px;
  border-radius: 4px;
  background: var(--spk-white);
}
.spk-card__badge::before { top: 14px; left: 12px; transform: rotate(30deg); }
.spk-card__badge::after { bottom: 15px; right: 12px; transform: rotate(-35deg); }
.spk-card--cakes .spk-card__badge { background: var(--spk-raspberry); }
.spk-card--gelato .spk-card__badge { background: var(--spk-mint-deep); }
.spk-card--pastries .spk-card__badge { background: var(--spk-raspberry-dark); }
.spk-card--drinks .spk-card__badge { background: var(--spk-mint); }
.spk-card__title { position: relative; z-index: 2; font-size: 1.32rem; font-weight: 600; margin-bottom: 10px; }
.spk-card__text { position: relative; z-index: 2; margin: 0; color: var(--spk-cocoa-soft); }

.spk-make__honest {
  margin: calc(var(--spk-unit) * 5) 0 0;
  padding: 20px 24px;
  background: rgba(123, 211, 192, 0.16);
  border-radius: var(--spk-radius-sm);
  border-left: 6px solid var(--spk-mint-deep);
  color: var(--spk-cocoa);
  font-weight: 600;
}

/* ---------- Visit ---------- */
.spk-visit { padding-block: calc(var(--spk-unit) * 7); }
.spk-visit__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
.spk-visit__intro { color: var(--spk-cocoa-soft); margin: 16px 0 20px; }
.spk-address {
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--spk-cocoa);
}
.spk-visit__mail { margin-top: 18px; }
.spk-visit__mail a { font-weight: 700; }

.spk-hours {
  background: var(--spk-cocoa);
  color: var(--spk-cream);
  border-radius: var(--spk-radius);
  padding: 30px 30px 26px;
  box-shadow: var(--spk-shadow);
  position: relative;
  overflow: hidden;
}
.spk-hours::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(214, 51, 108, 0.28);
}
.spk-hours__title {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  color: var(--spk-white);
  margin-bottom: 16px;
}
.spk-hours__list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}
.spk-hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 246, 239, 0.2);
  font-weight: 600;
}
.spk-hours__list li:last-child { border-bottom: none; }
.spk-hours__list span:last-child { color: var(--spk-mint); font-family: "Poppins", sans-serif; }
.spk-hours__foot {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: rgba(255, 246, 239, 0.78);
}

/* ---------- Contact ---------- */
.spk-contact { padding-block: calc(var(--spk-unit) * 4) calc(var(--spk-unit) * 9); }
.spk-contact__inner {
  background: linear-gradient(135deg, var(--spk-raspberry), var(--spk-raspberry-dark));
  color: var(--spk-white);
  border-radius: calc(var(--spk-radius) + 6px);
  padding: clamp(34px, 6vw, 60px);
  text-align: center;
  box-shadow: var(--spk-shadow);
  position: relative;
  overflow: hidden;
}
.spk-contact__inner::before,
.spk-contact__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 246, 239, 0.12);
}
.spk-contact__inner::before { width: 180px; height: 180px; top: -60px; right: -40px; }
.spk-contact__inner::after { width: 130px; height: 130px; bottom: -50px; left: -30px; background: rgba(123, 211, 192, 0.24); }
.spk-contact__inner .spk-block-head__title { color: var(--spk-white); padding-left: 0; }
.spk-contact__inner .spk-block-head__title::before { display: none; }
.spk-contact__text {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 16px auto 28px;
  color: rgba(255, 246, 239, 0.92);
  font-size: 1.1rem;
}
.spk-contact .spk-btn--solid {
  position: relative;
  z-index: 2;
  background: var(--spk-cream);
  color: var(--spk-raspberry-dark);
}
.spk-contact .spk-btn--solid:hover { background: var(--spk-white); }
.spk-contact__where {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  font-weight: 600;
  color: rgba(255, 246, 239, 0.9);
}

/* ---------- Legal / Privacy ---------- */
.spk-legal { padding-block: calc(var(--spk-unit) * 6) calc(var(--spk-unit) * 8); }
.spk-legal__wrap { max-width: 800px; }
.spk-legal__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--spk-cocoa);
  margin: 8px 0 18px;
}
.spk-legal__intro {
  font-size: 1.14rem;
  color: var(--spk-cocoa-soft);
  margin: 0 0 calc(var(--spk-unit) * 4);
}
.spk-legal__card {
  background: var(--spk-white);
  border-radius: var(--spk-radius);
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: var(--spk-shadow-soft);
  border: 1px solid rgba(214, 51, 108, 0.08);
  position: relative;
  overflow: hidden;
}
.spk-legal__card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 16px;
  height: 6px;
  border-radius: 5px;
  background: var(--spk-mint);
  transform: rotate(-28deg);
}
.spk-legal__card h2 {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--spk-raspberry-dark);
  margin: 0 0 12px;
}
.spk-legal__card p { margin: 0 0 12px; color: var(--spk-cocoa); }
.spk-legal__card p:last-child { margin-bottom: 0; }
.spk-legal__card .spk-address { margin: 4px 0 14px; font-size: 1.02rem; }
.spk-legal__back { margin-top: calc(var(--spk-unit) * 4); }

/* ---------- Footer ---------- */
.spk-foot {
  background: var(--spk-cocoa);
  color: rgba(255, 246, 239, 0.82);
  padding-top: calc(var(--spk-unit) * 7);
}
.spk-foot a { color: var(--spk-mint); text-decoration: none; }
.spk-foot a:hover { text-decoration: underline; }
.spk-foot__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: calc(var(--spk-unit) * 5);
}
.spk-foot__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--spk-white);
  letter-spacing: 0.02em;
}
.spk-foot__tag { margin: 10px 0 0; max-width: 260px; }
.spk-foot__h {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spk-mint);
  margin: 0 0 12px;
}
.spk-foot__addr { font-style: normal; line-height: 1.7; }
.spk-foot__line { margin: 6px 0; }
.spk-foot__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 20px 0 30px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 246, 239, 0.14);
  font-size: 0.9rem;
}
.spk-foot__base p { margin: 0; }

/* ---------- Reveal (safe: starts visible at 0.35, ends at 1) ---------- */
.spk-reveal { animation: spk-rise 0.7s ease-out both; }
.spk-reveal:nth-child(2) { animation-delay: 0.06s; }
.spk-reveal:nth-child(3) { animation-delay: 0.12s; }
.spk-reveal:nth-child(4) { animation-delay: 0.18s; }
.spk-card:nth-child(2).spk-reveal { animation-delay: 0.08s; }
.spk-card:nth-child(3).spk-reveal { animation-delay: 0.16s; }
.spk-card:nth-child(4).spk-reveal { animation-delay: 0.24s; }

@keyframes spk-rise {
  from { opacity: 0.35; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (min-width: 700px) {
  .spk-cards { grid-template-columns: repeat(2, 1fr); }
  .spk-visit__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .spk-foot__grid { grid-template-columns: 1.3fr 1fr 1.2fr; }
}

@media (min-width: 1000px) {
  .spk-burger { display: none; }
  .spk-menu {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
  }
  .spk-menu__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
  }
  .spk-menu__list a { padding: 10px 14px; }
  .spk-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spk-reveal { animation: none !important; }
  .spk-btn, .spk-burger span, .spk-topbar, .spk-menu { transition: none !important; }
}
