:root {
  --purple: #67368a;
  --purple-dark: #3d2054;
  --yellow: #f4d735;
  --waze: #33ccff;
  --ink: #17131a;
  --muted: #6f6873;
  --paper: #fbfafc;
  --white: #fff;
  --line: #e9e3ec;
  --shadow: 0 24px 70px rgba(41, 25, 52, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  padding: 10px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 8px 25px rgba(31,21,36,.08);
  backdrop-filter: blur(14px);
}
.brand img { width: 55px; height: 55px; object-fit: contain; }
.site-header.scrolled .brand img { width: 47px; height: 47px; }
nav { display: flex; align-items: center; gap: 28px; font-weight: 600; }
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .2s ease;
}
nav a:hover::after { width: 100%; }
.header-cta {
  background: var(--waze);
  color: #10242b;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 24px 70px;
  color: white;
  background: url("assets/hero-night.jpg") center 52% / cover no-repeat;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,8,16,.77), rgba(23,10,34,.34)),
    linear-gradient(0deg, rgba(12,8,15,.66), transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  text-align: center;
}
.hero-logo { width: 142px; margin: 0 auto 18px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }
.eyebrow, .section-kicker {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: .93;
  letter-spacing: -.055em;
  text-shadow: 0 8px 35px rgba(0,0,0,.24);
}
.hero-copy { margin: 24px auto 0; max-width: 680px; font-size: clamp(1.06rem, 2vw, 1.35rem); }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: #261a29; box-shadow: 0 10px 30px rgba(244,215,53,.25); }
.button-call { background: var(--yellow); color: #261a29; box-shadow: 0 10px 30px rgba(244,215,53,.25); }
.button-waze { background: var(--waze); color: #10242b; box-shadow: 0 10px 30px rgba(51,204,255,.22); }
.button-light { background: white; color: var(--purple-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.72); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(7px); }
.button-outline { border: 1px solid var(--line); background: white; color: var(--purple-dark); }
.scroll-cue { position: absolute; z-index: 2; bottom: 22px; font-size: 2rem; animation: bounce 1.7s infinite; }
@keyframes bounce { 50% { transform: translateY(7px); } }

.section { padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 90px); }
.narrow { width: min(780px, 100%); margin: auto; text-align: center; }
.section-kicker { color: var(--purple); }
.narrow h2, .section-heading h2, .candy-copy h2, .visit h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.narrow p:not(.section-kicker) { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }

.image-statement {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(32px, 6vw, 90px);
  color: white;
  background-position: center;
  background-size: cover;
}
.seating { background-image: url("assets/seating.jpg"); }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,8,20,.74), rgba(16,8,20,.05) 70%); }
.statement { position: relative; z-index: 2; font-size: clamp(2.1rem, 5vw, 5rem); line-height: .98; font-weight: 900; letter-spacing: -.04em; }
.statement p { margin: 0; }

.products { background: white; }
.section-heading { text-align: center; margin-bottom: 48px; }
.product-grid {
  width: min(1100px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  min-height: 180px;
  padding: 27px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product-card span { font-size: 2.35rem; }
.product-card h3 { margin: 14px 0 0; font-size: 1.05rem; }

.candy-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 88vh;
  background: var(--purple-dark);
  color: white;
}
.candy-image { min-height: 650px; }
.candy-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.candy-copy { padding: clamp(50px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.candy-copy .section-kicker { color: var(--yellow); }
.candy-copy p:last-child { max-width: 520px; font-size: 1.18rem; color: rgba(255,255,255,.76); }

.visit { background: linear-gradient(150deg, #f5f0f7, #fff); }
.visit-card {
  width: min(1080px, 100%);
  margin: auto;
  padding: clamp(30px, 6vw, 70px);
  background: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.visit-brand { display: flex; gap: 25px; align-items: center; }
.visit-brand img { width: 110px; }
.visit-details {
  margin: 44px 0 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-block: 1px solid var(--line);
}
.visit-details > div { display: flex; flex-direction: column; gap: 5px; }
.detail-label { color: var(--muted); font-size: .87rem; font-weight: 700; }
.visit-actions { justify-content: flex-start; }

footer {
  min-height: 90px;
  padding: 24px clamp(20px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #17131a;
  color: rgba(255,255,255,.76);
}
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .candy-feature { grid-template-columns: 1fr; }
  .candy-image { min-height: 70vh; }
  .visit-details { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header { height: 64px; padding: 7px 16px; }
  .brand img { width: 48px; height: 48px; }
  .header-cta { padding: 7px 14px; }
  .hero { padding-inline: 18px; background-position: 58% center; }
  .hero-logo { width: 112px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-actions .button { flex: 1 1 100%; }
  .image-statement { min-height: 68vh; background-position: 47% center; }
  .product-grid { gap: 10px; }
  .product-card { min-height: 145px; padding: 18px 10px; border-radius: 18px; }
  .product-card h3 { font-size: .92rem; }
  .candy-image { min-height: 76vh; }
  .candy-copy { padding: 55px 24px 70px; }
  .visit-card { border-radius: 25px; }
  .visit-brand { align-items: flex-start; }
  .visit-brand img { width: 80px; }
  .visit-actions .button { width: 100%; }
  footer { flex-direction: column; justify-content: center; text-align: center; }
  .floating-whatsapp { width: 54px; height: 54px; left: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
