:root {
  --orange: #ef6b2e;
  --orange-dark: #c84b18;
  --orange-soft: #ffd8bc;
  --yellow: #f8ba36;
  --cream: #fff8ee;
  --cream-deep: #f4eadb;
  --white: #fffdf9;
  --ink: #2d1b13;
  --ink-soft: #63483a;
  --muted: #8a7164;
  --green: #285c48;
  --green-soft: #dcebe3;
  --line: rgba(78, 48, 31, 0.14);
  --shadow-sm: 0 10px 30px rgba(75, 43, 25, 0.08);
  --shadow-lg: 0 28px 70px rgba(75, 43, 25, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 2%, rgba(248, 186, 54, 0.18), transparent 25rem),
    var(--cream);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: var(--ink); background: var(--yellow); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: var(--page);
  margin: 18px auto 0;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -10px 60px rgba(82, 43, 18, 0.05);
}

.container { width: var(--page); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { color: white; background: var(--ink); }
.section-orange { color: var(--ink); background: var(--orange-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.04; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 650;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -.025em;
}

.display-accent { color: var(--orange); font-style: italic; }
.lead { max-width: 660px; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.24rem); }
.section-dark .lead, .section-dark .muted { color: rgba(255,255,255,.7); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.max-copy { max-width: 760px; }

.topbar {
  position: relative;
  z-index: 10;
  padding: 9px 20px;
  color: white;
  background: var(--green);
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
}

.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 0;
  background: rgba(255, 248, 238, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s, box-shadow .25s, padding .25s;
}

.site-header.scrolled {
  padding-block: 9px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(77, 46, 27, .07);
}

.nav {
  width: var(--page);
  min-height: 58px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 54% 46% 46% 54% / 62% 58% 42% 38%;
  box-shadow: 3px 3px 0 var(--orange);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 900;
  transform: rotate(-8deg);
}

.brand-mark span { transform: rotate(8deg); }

.brand-copy { line-height: 1; }
.brand-name { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; font-weight: 800; }
.brand-sub { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  padding: 10px 13px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: .89rem;
  font-weight: 750;
  transition: color .2s, background .2s;
}

.nav-link:hover, .nav-link.active { color: var(--ink); background: white; }
.nav-cta { margin-left: 8px; }

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  width: 18px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
  border-radius: 4px;
  transition: .25s;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  color: white;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(220, 82, 25, .18);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.button:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(192, 72, 23, .24); }
.button:focus-visible, .filter-chip:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(239,107,46,.32); outline-offset: 3px; }
.button-secondary { color: var(--ink); background: transparent; border-color: var(--line); box-shadow: none; }
.button-secondary:hover { color: white; background: var(--ink); border-color: var(--ink); }
.button-dark { color: white; background: var(--ink); border-color: var(--ink); box-shadow: none; }
.button-dark:hover { background: var(--green); border-color: var(--green); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .86rem; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; padding: 74px 0 92px; overflow: hidden; }
.hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -160px;
  left: -160px;
  content: "";
  background: rgba(248,186,54,.24);
  border-radius: 50%;
  filter: blur(3px);
}

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(40px, 7vw, 92px); }
.hero-copy { position: relative; z-index: 1; }
.hero-copy .lead { max-width: 570px; }
.hero .actions { margin-top: 34px; }

.hero-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 10px 14px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}

.status-dot { width: 9px; height: 9px; flex: 0 0 auto; background: #9b7b6b; border-radius: 50%; }
.status-dot.open { background: #2da56c; box-shadow: 0 0 0 5px rgba(45,165,108,.13); }
.status-dot.closed { background: #db604e; box-shadow: 0 0 0 5px rgba(219,96,78,.12); }

.hero-visual { position: relative; min-height: 570px; }
.hero-photo {
  position: absolute;
  overflow: hidden;
  background: var(--cream-deep);
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-photo-main { width: 78%; height: 88%; top: 2%; right: 0; border-radius: 180px 180px 34px 34px; }
.hero-photo-small { width: 45%; height: 43%; left: 0; bottom: 0; border-radius: 30px; transform: rotate(-5deg); }
.hero-sticker {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 38px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  transform: rotate(7deg);
}

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.52); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 28px 30px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }
.trust-value { display: block; color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; font-weight: 800; }
.trust-label { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; font-weight: 750; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head h2 { max-width: 700px; margin-bottom: 0; }
.section-head .lead { max-width: 450px; margin-bottom: 3px; }

.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.card-hover { transition: transform .25s, box-shadow .25s, border-color .25s; }
.card-hover:hover { transform: translateY(-7px); border-color: rgba(239,107,46,.35); box-shadow: var(--shadow-lg); }

.product-card { overflow: hidden; padding: 0; }
.product-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-deep); }
.product-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-media img { transform: scale(1.055); }
/* Fotos retrato (2:3) em áreas paisagem: em vez de cortar o assunto, mantém a foto inteira */
.product-media.is-portrait { background: linear-gradient(160deg, var(--cream-deep), var(--cream)); }
.product-media.is-portrait img { object-fit: contain; padding: 18px; transition: transform .5s ease; }
.product-body { padding: 24px; }
.product-tag { display: inline-flex; margin-bottom: 11px; padding: 5px 10px; color: var(--orange-dark); background: var(--orange-soft); border-radius: 999px; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-body p { margin-bottom: 18px; color: var(--muted); font-size: .92rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--orange-dark); font-weight: 850; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 20px; color: var(--orange-dark); background: var(--orange-soft); border-radius: 17px; font-size: 1.5rem; }

.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check { width: 24px; height: 24px; display: grid; flex: 0 0 auto; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .73rem; font-weight: 900; }
.feature-item strong { display: block; margin-bottom: 2px; }
.feature-item span { color: var(--muted); font-size: .9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px,8vw,100px); }
.split-media { position: relative; min-height: 570px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.split-media > img { position: absolute; inset: 0; }
.media-note { position: absolute; right: -28px; bottom: 30px; max-width: 245px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); }
.media-note strong { display: block; margin-bottom: 5px; font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; }
.media-note span { color: var(--muted); font-size: .86rem; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { min-height: 250px; padding: 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); }
.step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 40px; color: var(--yellow); font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; font-weight: 800; }
.step p { color: rgba(255,255,255,.66); }

.reviews-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 32px; }
.rating-card { padding: 38px; color: white; background: var(--orange); border-radius: var(--radius-lg); }
.rating-number { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 6.5rem; font-weight: 700; line-height: .9; }
.stars { color: var(--yellow); letter-spacing: .15em; }
.reviews-list { display: grid; gap: 15px; }
.review { padding: 24px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.review blockquote { margin: 0 0 15px; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; line-height: 1.35; }
.review footer { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .78rem; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 245px; gap: 15px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; background: var(--cream-deep); border: 0; border-radius: 22px; cursor: zoom-in; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { position: absolute; right: 14px; bottom: 14px; width: 36px; height: 36px; display: grid; place-items: center; content: "+"; color: var(--ink); background: rgba(255,255,255,.88); border-radius: 50%; font-size: 1.25rem; opacity: 0; transform: translateY(8px); transition: .25s; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.image-loading { position: relative; background: linear-gradient(100deg, var(--cream-deep) 10%, #fff 35%, var(--cream-deep) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.image-loading img { opacity: 0; }
.image-ready img { opacity: 1; transition: opacity .35s; }
.image-error::before { position: absolute; inset: 0; display: grid; place-items: center; content: "Foto indisponível"; color: var(--muted); font-size: .8rem; }

@keyframes shimmer { to { background-position-x: -200%; } }

.cta-band { position: relative; overflow: hidden; padding: 72px; color: white; background: var(--green); border-radius: var(--radius-lg); }
.cta-band::after { position: absolute; width: 340px; height: 340px; right: -100px; bottom: -190px; content: ""; background: var(--yellow); border-radius: 50%; opacity: .78; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 780px; }
.cta-band .lead { color: rgba(255,255,255,.72); }

.page-hero { padding: 76px 0 78px; text-align: center; }
.page-hero h1 { max-width: 940px; margin-inline: auto; font-size: clamp(3.2rem,7vw,6rem); }
.page-hero .lead { margin-inline: auto; }
.page-hero .actions { justify-content: center; margin-top: 30px; }
.breadcrumb { display: inline-flex; gap: 8px; margin-bottom: 20px; color: var(--muted); font-size: .78rem; font-weight: 750; }
.breadcrumb a:hover { color: var(--orange-dark); }

.filter-toolbar {
  position: sticky;
  z-index: 20;
  top: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 14px;
  background: rgba(255,253,249,.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.search-field { position: relative; flex: 1; }
.search-field input { width: 100%; height: 48px; padding: 0 16px 0 44px; color: var(--ink); background: var(--cream); border: 1px solid transparent; border-radius: 15px; }
.search-field svg { position: absolute; width: 18px; left: 16px; top: 15px; fill: none; stroke: var(--muted); stroke-width: 2; }
.filter-chips { display: flex; align-items: center; gap: 7px; }
.filter-chip { min-height: 42px; padding: 8px 15px; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 800; cursor: pointer; }
.filter-chip.active, .filter-chip:hover { color: white; background: var(--ink); border-color: var(--ink); }

.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.menu-card[hidden] { display: none; }
.menu-card .product-media { aspect-ratio: 3 / 2; }
.menu-card .product-media.is-portrait img { padding: 14px; }
.availability { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; font-weight: 750; }
.availability strong { color: var(--green); }
.empty-state { display: none; max-width: 580px; margin: 30px auto; padding: 44px; text-align: center; background: var(--white); border: 1px dashed rgba(78,48,31,.28); border-radius: var(--radius-md); }
.empty-state.visible { display: block; }
.empty-state .icon-box { margin-inline: auto; }

.notice { display: flex; gap: 16px; padding: 20px 22px; color: var(--ink-soft); background: var(--orange-soft); border-radius: 18px; }
.notice strong { color: var(--ink); }

.occasion-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; background-size: cover; background-position: center 22%; }
.occasion-card.has-portrait-bg { background-size: auto 120%; background-position: center 18%; }
.occasion-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 18%, rgba(45,27,19,.88) 100%); }
.occasion-card > * { position: relative; z-index: 1; }
.occasion-card p { margin-bottom: 0; color: rgba(255,255,255,.74); }

.order-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 40px; }
.order-aside { position: sticky; top: 102px; }
.info-stack { display: grid; gap: 12px; margin-top: 28px; }
.info-line { display: flex; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-line strong { display: block; margin-bottom: 2px; font-size: .88rem; }
.info-line span { color: var(--muted); font-size: .83rem; }

.form-card { padding: clamp(24px,5vw,48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-progress { display: flex; gap: 5px; margin: 22px 0 34px; }
.form-progress span { height: 5px; flex: 1; background: var(--cream-deep); border-radius: 99px; }
.form-progress span.active { background: var(--orange); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 14px; transition: border .2s, background .2s; }
.field input, .field select { min-height: 52px; }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { background: white; border-color: var(--orange); outline: 0; }
.field-help { color: var(--muted); font-size: .72rem; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.form-status { min-height: 24px; color: var(--green); font-size: .8rem; font-weight: 750; }
.button.is-loading { pointer-events: none; opacity: .75; }
.button.is-loading::before { width: 15px; height: 15px; content: ""; border: 2px solid rgba(255,255,255,.45); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.value-index { color: var(--orange); font-family: "Playfair Display", Georgia, serif; font-size: 2.3rem; font-weight: 800; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.story-grid img { width: 100%; height: 270px; object-fit: cover; border-radius: 24px; }
.story-grid img:first-child { grid-row: span 2; height: 555px; }
.story-grid img.is-portrait { object-fit: contain; padding: 8px; background: var(--cream-deep); }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 30px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; align-items: flex-start; gap: 17px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.contact-card .icon-box { width: 46px; height: 46px; flex: 0 0 auto; margin: 0; border-radius: 14px; }
.contact-card h3 { margin-bottom: 5px; font-family: inherit; font-size: .95rem; }
.contact-card p { margin-bottom: 0; color: var(--muted); font-size: .85rem; }
.contact-card a:hover { color: var(--orange-dark); }

.hours-card { padding: 30px; color: white; background: var(--ink); border-radius: var(--radius-md); }
.hours-list { display: grid; gap: 0; margin-top: 22px; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: .87rem; }
.hours-row.today { color: var(--yellow); font-weight: 800; }
.hours-row:last-child { border-bottom: 0; }

.map-wrap { position: relative; min-height: 480px; overflow: hidden; background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.map-wrap iframe { position: absolute; width: 100%; height: 100%; inset: 0; border: 0; filter: saturate(.82) contrast(.94); }
.map-badge { position: absolute; z-index: 2; left: 22px; bottom: 22px; max-width: 290px; padding: 18px; background: rgba(255,253,249,.94); border-radius: 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.map-badge strong { display: block; margin-bottom: 4px; }
.map-badge span { display: block; margin-bottom: 11px; color: var(--muted); font-size: .8rem; }

.faq-list { max-width: 900px; margin: 38px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 24px 46px 24px 0; list-style: none; font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 700; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; right: 5px; top: 22px; width: 28px; height: 28px; display: grid; place-items: center; content: "+"; color: var(--orange-dark); background: var(--orange-soft); border-radius: 50%; font-family: sans-serif; font-size: 1.1rem; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 730px; padding: 0 40px 24px 0; color: var(--muted); }

.site-footer { padding: 78px 0 28px; color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 40px; }
.footer-brand .brand-sub { color: rgba(255,255,255,.48); }
.footer-brand p { max-width: 360px; margin-top: 20px; color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-title { margin-bottom: 18px; color: rgba(255,255,255,.48); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .88rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 24px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; color: white; background: #25d366; border: 3px solid white; border-radius: 50%; box-shadow: 0 12px 30px rgba(18,83,51,.28); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 27px; fill: currentColor; }

.lightbox { position: fixed; z-index: 500; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(29,17,12,.93); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1100px); max-height: 86vh; border-radius: 18px; box-shadow: 0 24px 80px #000; }
.lightbox-close { position: fixed; top: 22px; right: 22px; width: 48px; height: 48px; color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 1.55rem; cursor: pointer; }
.lightbox-caption { position: fixed; bottom: 18px; left: 50%; color: rgba(255,255,255,.72); font-size: .8rem; transform: translateX(-50%); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (max-width: 1020px) {
  :root { --page: min(100% - 30px, 920px); }
  .nav-cta { display: none; }
  .hero-grid, .split, .reviews-grid, .order-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 680px; min-height: 550px; margin: 5px auto 0; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 18px; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .order-aside { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .media-note { right: 18px; }
}

@media (max-width: 780px) {
  :root { --page: min(100% - 24px, 660px); }
  .site-shell { width: calc(100% - 16px); margin-top: 8px; border-radius: 26px 26px 0 0; }
  .topbar { padding-inline: 52px; }
  .menu-toggle { display: grid; }
  .nav-links { position: fixed; inset: 77px 12px auto; display: grid; gap: 6px; padding: 18px; background: rgba(255,253,249,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { display: block; padding: 13px 15px; }
  .nav-link.active { background: var(--cream-deep); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  h1 { font-size: clamp(3rem,15vw,5.2rem); }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 440px; }
  .hero-photo-main { width: 84%; height: 88%; }
  .hero-photo-small { width: 48%; }
  .hero-sticker { width: 105px; height: 105px; right: 2px; bottom: 10px; padding: 13px; font-size: .88rem; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { padding: 21px 18px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:first-child { padding-left: 18px; }
  .cards-3, .values-grid, .steps { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 3 / 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .cta-band { padding: 46px 28px; }
  .filter-toolbar { position: relative; top: 0; align-items: stretch; flex-direction: column; }
  .filter-chips { overflow-x: auto; padding-bottom: 3px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .story-grid img, .story-grid img:first-child { height: 330px; grid-row: auto; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 1rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 38px; }
  .hero .actions .button, .page-hero .actions .button { width: 100%; }
  .hero-visual { min-height: 380px; }
  .hero-photo-main { width: 92%; height: 85%; }
  .hero-photo-small { width: 48%; height: 40%; }
  .cards-4, .menu-grid { grid-template-columns: 1fr; }
  .product-media, .menu-card .product-media { aspect-ratio: 3 / 2; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item:first-child { grid-column: auto; }
  .split-media { min-height: 460px; }
  .media-note { right: 10px; bottom: 16px; }
  .rating-number { font-size: 5rem; }
  .form-card { border-radius: 24px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid img, .story-grid img:first-child { height: 340px; }
  .map-wrap { min-height: 540px; }
  .map-badge { right: 16px; left: 16px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
