:root {
  --red: #E63946;
  --red-dark: #C42A36;
  --yellow: #FFC93C;
  --yellow-dark: #F4B223;
  --blue: #5AC8FA;
  --blue-dark: #2CA6D9;
  --cream: #FFF8EE;
  --ink: #2B2D42;
  --muted: #6C757D;
  --white: #ffffff;
  --shadow-soft: 0 12px 32px rgba(43, 45, 66, 0.08);
  --shadow-hover: 0 18px 40px rgba(43, 45, 66, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .brand-name, .f-brand span {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 45, 66, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; }
.brand-name { font-size: 1.35rem; }
.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-weight: 600;
  padding: 6px 2px;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 34px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5px 0;
  transition: .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
}
.blob-1 { width: 380px; height: 380px; background: var(--red); top: -100px; left: -100px; }
.blob-2 { width: 340px; height: 340px; background: var(--yellow); top: 30px; right: -80px; }
.blob-3 { width: 320px; height: 320px; background: var(--blue); bottom: -140px; left: 35%; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--red);
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  margin: 20px 0 18px;
}
.hero .hl {
  background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
  padding: 0 8px;
  border-radius: 6px;
}
.lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 540px;
}
.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .18s, box-shadow .25s;
  cursor: pointer;
  border: 0;
}
.btn-small { padding: 12px 22px; font-size: .95rem; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.45);
  background: var(--red-dark);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.hero-art { display: flex; justify-content: center; }
.hero-crown {
  width: min(420px, 100%);
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(244, 178, 35, 0.35));
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

/* ============ SECTIONS ============ */
section { padding: 90px 0; }
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 10px auto 44px;
  font-size: 1.05rem;
}

/* ============ PRODUCTS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  padding: 44px 28px 36px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
}
.card-red::before    { background: var(--red); }
.card-yellow::before { background: var(--yellow); }
.card-blue::before   { background: var(--blue); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  font-size: 3.2rem;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 1rem; }

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-copy .section-title { text-align: left; }
.about-copy p { margin-top: 18px; color: #555; font-size: 1.05rem; }
.perks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.perks li {
  padding: 10px 0 10px 38px;
  position: relative;
  font-weight: 500;
}
.perks li::before {
  content: '👑';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
.about-art { display: flex; justify-content: center; }
.about-crown {
  width: min(340px, 100%);
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 28px rgba(244, 178, 35, 0.3));
}

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  border: 4px solid var(--white);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 352px;
  border: 0;
  display: block;
}
.location-info {
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.address-icon { font-size: 2.4rem; margin-bottom: 6px; }
.address {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.city { color: var(--muted); margin-bottom: 22px; }

.hours {
  background: var(--cream);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
  text-align: left;
}
.hours-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.hours-title span { margin-right: 4px; }
.hours ul { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
  font-size: .95rem;
  border-bottom: 1px dashed rgba(43, 45, 66, 0.1);
}
.hours li:last-child { border-bottom: 0; }
.hours-days { font-weight: 600; color: var(--ink); }
.hours-range { color: var(--muted); text-align: right; }

/* ============ INSTAGRAM ============ */
.instagram { background: var(--white); }
.ig-handle {
  color: var(--red);
  font-weight: 700;
  border-bottom: 2px solid rgba(230, 57, 70, 0.25);
  transition: border-color .2s;
}
.ig-handle:hover { border-color: var(--red); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
  justify-items: center;
  align-items: start;
  margin-top: 10px;
}
.ig-post {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  height: 460px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.ig-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.ig-post iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
  pointer-events: none;
}
.ig-post-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--red);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  z-index: 2;
  pointer-events: none;
}

.ig-fallback {
  max-width: 440px;
  margin: 10px auto 0;
  padding: 44px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.ig-fallback-logo {
  width: 90px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 16px rgba(244, 178, 35, 0.3));
}
.ig-fallback p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.05rem;
}

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 201, 60, 0.12) 100%);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-cards-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  padding: 34px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.ci {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 8px;
}
.ci-green { background: rgba(37, 211, 102, 0.15); }
.ci-red   { background: rgba(230, 57, 70, 0.15); }
.ci-blue  { background: rgba(90, 200, 250, 0.18); }
.contact-card strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-card span { color: var(--muted); font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.f-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
}
.f-logo { width: 34px; height: 34px; }
.f-copy { color: rgba(255, 255, 255, 0.7); font-size: .92rem; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  z-index: 60;
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 22px;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(43, 45, 66, 0.06);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-crown { width: min(260px, 80%); }
  .lead { margin: 0 auto; }
  .cta-row { justify-content: center; }

  .cards { grid-template-columns: 1fr; gap: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .about-copy .section-title { text-align: center; }
  .perks li { display: inline-block; text-align: left; }
  .about-crown { width: 220px; }

  .location-grid { grid-template-columns: 1fr; }
  .contact-cards,
  .contact-cards-2 { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr; }

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

  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.15rem; }
  .brand-logo { width: 38px; height: 38px; }
  .btn { padding: 14px 22px; }
}
