:root {
  --purple: #4b168f;
  --purple-2: #6f22d3;
  --yellow: #ffd400;
  --yellow-2: #ffb800;
  --cream: #fff8df;
  --ink: #201129;
  --white: #fff;
  --wood: #7d3f16;
  --shadow: 0 24px 60px rgba(28, 10, 50, 0.22);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 0, .35), transparent 34rem),
    linear-gradient(180deg, #fff9e7 0%, #fff0ba 38%, #fbde62 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(75, 22, 143, .96);
  color: white;
  border-bottom: 5px solid var(--yellow);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.brand img { width: 86px; height: auto; filter: drop-shadow(0 6px 0 rgba(0,0,0,.2)); }
nav { display: flex; align-items: center; gap: 24px; font-weight: 900; }
nav a { opacity: .94; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--purple);
  box-shadow: 0 5px 0 rgba(0,0,0,.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) 64px;
  background:
    linear-gradient(135deg, rgba(75,22,143,.96) 0%, rgba(106,34,205,.94) 52%, rgba(255,212,0,.95) 52%, rgba(255,184,0,.95) 100%);
  color: white;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 2px, transparent 2px);
  background-size: 28px 28px;
  opacity: .35;
}
.hero > * { position: relative; z-index: 1; }
.logo-wordmark { width: min(430px, 78vw); margin-bottom: 20px; }
.logo-wordmark img { filter: drop-shadow(8px 9px 0 rgba(0,0,0,.22)); }
.eyebrow {
  margin: 0 0 12px;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--yellow);
}
h1, h2, h3 { font-family: "Bricolage Grotesque", Inter, sans-serif; line-height: .95; }
h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -.06em; max-width: 850px; }
.hero-text { max-width: 620px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.62; font-weight: 650; color: rgba(255,255,255,.92); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--yellow); color: var(--purple); box-shadow: 0 6px 0 rgba(0,0,0,.25); }
.btn.secondary { background: white; color: var(--purple); box-shadow: 0 6px 0 rgba(0,0,0,.18); }
.btn.dark { background: var(--purple); color: white; box-shadow: 0 6px 0 rgba(0,0,0,.2); }
.market-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.market-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.25);
  font-weight: 850;
}
.hero-showcase { position: relative; min-height: 590px; }
.hero-main-img {
  width: min(550px, 88vw);
  margin: auto;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  border: 8px solid white;
}
.floating-img {
  position: absolute;
  width: 250px;
  right: -16px;
  bottom: 24px;
  border: 7px solid var(--yellow);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.price-sticker {
  position: absolute;
  z-index: 3;
  left: -10px;
  top: 30px;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--purple);
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-weight: 950;
  line-height: .9;
  transform: rotate(-10deg);
  box-shadow: 0 7px 0 rgba(0,0,0,.25);
}

.section { padding: clamp(56px, 7vw, 94px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.section-heading h2, .market-strip h2, .visit-card h2, .order-card h2, .reviews-section h2 { margin: 0 0 14px; font-size: clamp(2.4rem, 5vw, 5rem); letter-spacing: -.055em; color: var(--purple); }
.section-heading p { font-size: 1.08rem; line-height: 1.65; font-weight: 650; }
.section-heading .eyebrow, .visit-card .eyebrow { color: var(--purple-2); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.shop-card {
  background: white;
  border: 5px solid var(--purple);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 10px 0 rgba(75,22,143,.22);
  transition: transform .2s ease;
}
.shop-card:hover { transform: translateY(-5px) rotate(-.6deg); }
.shop-card.featured { grid-column: span 2; grid-row: span 2; }
.shop-card.wide { grid-column: span 2; }
.image-wrap { background: var(--yellow); aspect-ratio: 1 / .82; overflow: hidden; }
.shop-card.featured .image-wrap { aspect-ratio: 1 / .72; }
.image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 22px; }
.tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--purple);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h3 { margin: 0 0 8px; font-size: clamp(1.5rem, 2.6vw, 2.4rem); color: var(--purple); letter-spacing: -.04em; }
.card-content p:not(.tag) { margin: 0; line-height: 1.5; font-weight: 650; }

.market-strip {
  margin: 0 clamp(18px, 5vw, 72px) 30px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 34px;
  background: var(--yellow);
  border: 6px solid var(--purple);
  box-shadow: 10px 12px 0 rgba(75,22,143,.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.market-strip h2 { color: var(--purple); }
.market-strip p { max-width: 740px; font-size: 1.1rem; font-weight: 700; line-height: 1.55; }

.reviews-section { padding: 46px 18px; }
.review-card {
  max-width: 980px;
  margin: auto;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 38px;
  background: var(--purple);
  color: white;
  text-align: center;
  border: 7px solid var(--yellow);
  box-shadow: var(--shadow);
}
.review-number { margin: 0; font-family: "Bricolage Grotesque"; font-size: clamp(5rem, 10vw, 9rem); font-weight: 950; line-height: .8; color: var(--yellow); }
.review-card h2 { color: white; }
.review-card p:last-child { margin: 0 auto; max-width: 650px; line-height: 1.6; font-weight: 650; }

.visit-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.visit-card, .order-card {
  padding: clamp(30px, 5vw, 52px);
  border-radius: 36px;
  background: white;
  border: 5px solid var(--purple);
  box-shadow: 8px 10px 0 rgba(75,22,143,.18);
}
.hours { margin-top: 24px; display: grid; gap: 12px; }
.hours p { margin: 0; display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 2px dashed rgba(75,22,143,.35); font-weight: 800; }
.hours span { color: var(--purple); }
.order-card { background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: white; }
.order-card img { width: 120px; margin-bottom: 14px; }
.order-card h2 { color: white; }
.order-card p { font-weight: 650; line-height: 1.6; }

footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--purple);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 5px solid var(--yellow);
}
.footer-links { display: flex; gap: 18px; font-weight: 850; }

@media (max-width: 980px) {
  .hero, .visit-section { grid-template-columns: 1fr; }
  .hero-showcase { min-height: auto; }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  nav a:not(.nav-cta) { display: none; }
  .market-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 14px; }
  .brand img { width: 68px; }
  .nav-cta { padding: 10px 12px; font-size: .9rem; }
  .hero { padding-top: 38px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card.featured, .shop-card.wide { grid-column: span 1; }
  .floating-img, .price-sticker { display: none; }
  h1 { font-size: 3.15rem; }
  .hours p { display: block; }
  .hours span { display: block; margin-top: 4px; }
}
