/*
  Delícias da Luzinha — Estilo (mockup-inspired)
  - Clean, elegante, creme/bege
  - Tipografia refinada
  - Header fixo com blur + scrolled
  - Cards com sombra suave e botões arredondados
  - Responsivo (mobile-first)
*/

:root{
  --bg: #fbf6f1;
  --text: #3a2f2a;
  --muted: rgba(58, 47, 42, .72);
  --brand: #caa08a;
  --brand-hover: #b78d79;

  --card: #fffaf6;
  --stroke: rgba(58, 47, 42, .10);

  --shadow: 0 12px 30px rgba(58, 47, 42, .10);
  --shadow-soft: 0 10px 24px rgba(58, 47, 42, .08);

  --radius: 18px;
  --radius-lg: 22px;

  --container: 1100px;

  --header-h: 72px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(202,160,138,.6);
  outline-offset: 3px;
  border-radius: 12px;
}

.container{
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: rgba(251,246,241, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 47, 42, .06);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled{
  background: rgba(251,246,241, .96);
  box-shadow: 0 8px 20px rgba(58,47,42,.08);
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}
.brand-script{
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  letter-spacing: .2px;
  color: var(--text);
  line-height: 1;
  padding-top: 2px;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(58,47,42,.85);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{ background: rgba(202,160,138,.14); }
.nav-link.is-active{
  background: rgba(202,160,138,.18);
  color: rgba(58,47,42,1);
}

.nav-cta{
  margin-left: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: rgba(202,160,138,.22);
  border: 1px solid rgba(202,160,138,.28);
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover{
  background: rgba(202,160,138,.30);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(58,47,42,.12);
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.menu-toggle-lines{
  width: 18px; height: 12px;
  position: relative;
}
.menu-toggle-lines::before,
.menu-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(58,47,42,.70);
  border-radius: 999px;
}
.menu-toggle-lines::before{ top: 2px; }
.menu-toggle-lines::after{ bottom: 2px; }

/* Layout spacing because header is fixed */
main{
  padding-top: calc(var(--header-h) + 14px);
}

/* HERO */
.hero{
  padding: 26px 0 16px;
}
.hero-grid{
  display: grid;
  gap: 18px;
}
.hero-copy{
  padding: 14px 0;
}
.hero-eyebrow{
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--muted);
  font-size: 16px;
}
.hero-title{
  margin: 4px 0 6px;
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  line-height: 1;
  letter-spacing: .2px;
}
.hero-subtitle{
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: rgba(58,47,42,.80);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-note{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(58,47,42,.10);
  color: rgba(58,47,42,.75);
  font-size: 13px;
}
.hero-note .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(202,160,138,.18);
}

.hero-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(58,47,42,.10);
  box-shadow: var(--shadow-soft);
}
.hero-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.media-caption{
  margin: 0;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(58,47,42,.60);
}

/* Sections */
.section{
  padding: 44px 0;
}
.section-tight{
  padding: 28px 0 44px;
}
.section-soft{
  background: rgba(255,255,255,.28);
  border-top: 1px solid rgba(58,47,42,.06);
  border-bottom: 1px solid rgba(58,47,42,.06);
}

.section-head{
  text-align: center;
  margin-bottom: 18px;
}
.section-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
}
.section-subtitle{
  margin: 8px 0 0;
  color: rgba(58,47,42,.72);
  font-size: 15px;
}

.section-cta{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid rgba(58,47,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card-pad{
  padding: 18px;
}
.card-media{
  overflow: hidden;
}
.card-media img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.card-media-fallback{
  padding: 18px;
  display: none;
}
.card-media img[style*="display: none"] + .card-media-fallback{
  display: block;
}

.grid{
  display: grid;
  gap: 16px;
}
.cards-grid{
  grid-template-columns: 1fr;
}

/* Product card */
.product-card{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.product-media{
  height: 170px;
  overflow: hidden;
  background: rgba(202,160,138,.10);
}
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}
.badge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  background: rgba(202,160,138,.18);
  border: 1px solid rgba(202,160,138,.28);
  color: rgba(58,47,42,.88);
}
.product-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.25;
}
.product-price{
  margin: 0;
  font-weight: 700;
  color: rgba(58,47,42,.92);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
  cursor: pointer;
  user-select: none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-full{ width: 100%; }

.btn-primary{
  background: var(--brand);
  color: #fff;
  border-color: rgba(0,0,0,.03);
}
.btn-primary:hover{
  background: var(--brand-hover);
}

.btn-secondary{
  background: rgba(202,160,138,.18);
  color: rgba(58,47,42,.92);
  border-color: rgba(202,160,138,.30);
}
.btn-secondary:hover{
  background: rgba(202,160,138,.25);
}

.btn-ghost{
  background: rgba(255,255,255,.35);
  color: rgba(58,47,42,.92);
  border-color: rgba(58,47,42,.12);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.52);
}

/* About */
.about-grid{
  display: grid;
  gap: 16px;
}
.about-copy .lead{
  margin: 10px 0 10px;
  font-size: 16px;
  color: rgba(58,47,42,.86);
}
.muted{ color: var(--muted); }

/* Bullets */
.bullets{
  margin: 0;
  padding-left: 18px;
}
.bullets li{
  margin: 8px 0;
}

/* Contact */
.contact-grid{
  display: grid;
  gap: 16px;
}
.contact-card{
  display: grid;
  gap: 12px;
}
.contact-row{
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(202,160,138,.18);
  border: 1px solid rgba(202,160,138,.28);
  font-size: 18px;
}
.contact-label{
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}
.contact-link{
  font-family: "Playfair Display", serif;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: rgba(202,160,138,.55);
  text-underline-offset: 4px;
}
.contact-msg{
  margin: 0;
}
.contact-aside .mini-title{
  margin: 0 0 8px;
}

/* Page hero (cardápio) */
.page-hero{
  padding: 18px 0 10px;
}
.page-hero-inner{
  text-align: center;
}
.page-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 600;
}
.page-subtitle{
  margin: 8px auto 14px;
  max-width: 60ch;
  color: rgba(58,47,42,.72);
}

/* Filters (chips) */
.filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.chip{
  appearance: none;
  border: 1px solid rgba(58,47,42,.12);
  background: rgba(255,255,255,.35);
  color: rgba(58,47,42,.88);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.52);
}
.chip.is-active{
  background: rgba(202,160,138,.22);
  border-color: rgba(202,160,138,.35);
}

/* Notice */
.notice{
  display: none;
  margin: 14px auto 0;
  max-width: 70ch;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(58,47,42,.12);
  background: rgba(255,255,255,.40);
  color: rgba(58,47,42,.80);
  text-align: center;
}
.notice-warn{
  background: rgba(202,160,138,.18);
  border-color: rgba(202,160,138,.35);
}

/* Footer */
.site-footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(58,47,42,.06);
}
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: rgba(58,47,42,.70);
  font-size: 14px;
}
.back-top{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(58,47,42,.12);
  background: rgba(255,255,255,.35);
}
.back-top:hover{
  background: rgba(255,255,255,.52);
}

/* Responsive */
@media (min-width: 720px){
  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 22px;
  }
  .hero-img{ height: 360px; }
  .cards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid{
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .contact-grid{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
  .footer-inner{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 980px){
  .cards-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title{ font-size: 64px; }
}

/* Mobile nav behavior */
@media (max-width: 860px){
  .nav{
    position: absolute;
    top: calc(var(--header-h) - 6px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(251,246,241, .98);
    border: 1px solid rgba(58,47,42,.10);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav.open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link, .nav-cta{
    justify-content: center;
    text-align: center;
  }
}

/* Desktop nav */
@media (min-width: 861px){
  .menu-toggle{ display: none; }
}

.brand-logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
