:root {
  color-scheme: light;
  --charcoal: #10100f;
  --cream: #f5efe5;
  --paper: #fffdfc;
  --ink: #15110f;
  --muted: #6d625a;
  --line: rgba(16, 16, 15, 0.12);
  --brand: #ef432a;
  --brand-dark: #c9311d;
  --salmon: #f08b78;
  --wasabi: #9aa63f;
  --sand: #eadbc9;
  --shadow: 0 24px 70px rgba(42, 24, 16, 0.14);
  --shadow-strong: 0 34px 90px rgba(16, 16, 15, 0.24);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --page-pad: clamp(16px, 5vw, 76px);
  --max: 1480px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(239, 67, 42, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--cream), var(--paper) 42%, #f7eee5);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px var(--page-pad);
  background: rgba(245, 239, 229, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(245, 239, 229, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 38px rgba(16, 16, 15, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.actions,
.mobile-order-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  color: var(--charcoal);
  font-weight: 900;
}

.brand img {
  width: 92px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.site-header .brand img {
  width: auto;
  height: 62px;
  padding: 4px 10px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--charcoal);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  background: var(--brand);
  border-radius: 99px;
}

.nav-action,
.button,
.mobile-order-bar a {
  border-radius: 999px;
  font-weight: 900;
}

.nav-action {
  padding: 0 18px;
  color: #fff !important;
  background: var(--brand);
}

.nav-action::after { display: none; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 252, 0.9);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  border-radius: 99px;
}

.section-anchor {
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  align-items: center;
  gap: clamp(22px, 5vw, 78px);
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 11vw, 150px) var(--page-pad) clamp(40px, 7vw, 96px);
}

.menu-hero {
  min-height: 82svh;
}

.compact-formats {
  padding-top: clamp(36px, 6vw, 82px);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.brush {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform: rotate(-8deg);
}

.brush-one {
  width: min(46vw, 560px);
  height: 68px;
  right: 22%;
  top: 18%;
  background: rgba(239, 67, 42, 0.12);
}

.brush-two {
  width: min(38vw, 430px);
  height: 22px;
  left: -10%;
  bottom: 18%;
  background: rgba(154, 166, 63, 0.2);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 6.2vw, 7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.lead,
.section-head p,
.big-copy p,
.about-copy p,
.final-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.lead {
  max-width: 600px;
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 16, 15, 0.12);
}

.button.primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.button.primary:hover { background: var(--brand-dark); }

.button.secondary {
  color: var(--charcoal);
  background: rgba(255, 253, 252, 0.9);
}

.button.light {
  color: var(--charcoal);
  background: #fff;
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: min(100%, 920px);
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 46% 10% 34% 12%;
  box-shadow: var(--shadow-strong);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -5% -7% 14%;
  z-index: -1;
  background: var(--brand);
  border-radius: 38% 12% 30% 10%;
  transform: rotate(4deg);
}

.hero-badge {
  position: absolute;
  left: -24px;
  bottom: 10%;
  max-width: 190px;
  padding: 16px 18px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 950;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(var(--max) - var(--page-pad) * 2);
  margin: 0 auto;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.highlight-strip article {
  min-height: 172px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-strip article:last-child { border-right: 0; }

.highlight-strip span {
  color: var(--salmon);
  font-weight: 950;
}

.highlight-strip strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 1.3rem;
}

.highlight-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.what-is,
.big-section,
.formats,
.styles-section,
.about,
.gallery,
.service-info,
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) var(--page-pad);
}

.what-is {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.layer-board {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(239, 67, 42, 0.08), rgba(154, 166, 63, 0.08)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  counter-reset: layer;
}

.layer-board span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 850;
}

.layer-board span::before {
  counter-increment: layer;
  content: counter(layer);
  display: inline-flex;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 950;
}

.layer-title {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.big-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
}

.big-image {
  position: relative;
}

.big-image img,
.about-media img,
.gallery-grid img,
.final-image {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.big-image img {
  aspect-ratio: 4 / 3;
  object-position: 68% center;
  border-radius: var(--radius-lg);
}

.callout {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.callout-one {
  top: 18px;
  left: 18px;
}

.callout-two {
  right: 18px;
  bottom: 18px;
  background: var(--brand);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand);
  font-weight: 950;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 18px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.menu-product {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.menu-product img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.menu-product.lead-product {
  grid-row: span 2;
}

.menu-product.lead-product img {
  height: 470px;
  object-position: 68% center;
}

.menu-product div {
  padding: 22px;
}

.menu-product p:not(.card-kicker) {
  color: var(--muted);
  line-height: 1.62;
}

.menu-product a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand);
  font-weight: 950;
}

.styles-section {
  padding-top: 0;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.style-card {
  min-height: 190px;
  padding: 22px;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.style-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--salmon);
  font-weight: 950;
}

.style-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.format-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.format-card.main-card {
  grid-row: span 2;
}

.format-card img {
  width: 100%;
  height: clamp(230px, 30vw, 420px);
  min-height: 0;
  flex: 0 0 auto;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.format-card.main-card img {
  height: clamp(320px, 44vw, 620px);
}

.format-card:hover img { transform: scale(1.045); }

.format-card::after {
  display: none;
}

.format-card div {
  position: relative;
  inset: auto;
  z-index: 1;
  flex: 1 1 auto;
  padding: 22px 24px 24px;
  background: #fff;
}

.format-card h3 {
  color: var(--charcoal);
}

.format-card h2 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  line-height: 1;
}

.format-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--brand);
  font-weight: 950;
}

.order-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.2fr) auto;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--max) - var(--page-pad) * 2);
  margin: 0 auto;
  padding: 34px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order-flow h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
}

.order-flow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-flow li {
  min-height: 92px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-weight: 800;
}

.order-flow li span {
  display: block;
  color: var(--salmon);
  font-weight: 950;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 86px);
}

.about-media img {
  aspect-ratio: 4 / 5;
  border-radius: 12% 34% 10% 34%;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 18px;
  color: var(--charcoal);
  border-left: 5px solid var(--brand);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.gallery {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.1fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-grid img {
  height: 100%;
  border-radius: var(--radius-md);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 2;
}

.service-info {
  padding-top: 0;
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-panel {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.info-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand);
  font-weight: 950;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(16, 16, 15, 0.06);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.62;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  margin: clamp(50px, 8vw, 110px) auto 0;
  padding: clamp(34px, 6vw, 72px) var(--page-pad);
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #ff8f72);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #fff;
}

.final-image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  min-width: 72px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(239, 67, 42, 0.32);
  font-weight: 950;
}

.mobile-order-bar {
  display: none;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 42px var(--page-pad) 32px;
  background: var(--charcoal);
  color: #fff;
}

.footer .brand,
.footer p,
.footer small {
  color: #fff;
}

.footer p,
.footer small {
  color: rgba(255, 255, 255, 0.68);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.footer small {
  grid-column: 1 / -1;
}

.price {
  display: none;
  margin: 12px 0 14px !important;
  color: var(--charcoal) !important;
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: 0;
}

.price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

/* Cardapio (a-la-carte) */
.menu {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad) clamp(60px, 8vw, 110px);
}

.menu-cat {
  margin-top: clamp(40px, 6vw, 72px);
}

.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}

.menu-cat-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.menu-cat-head span {
  color: var(--brand);
  font-weight: 950;
  font-size: 0.9rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(16, 16, 15, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.menu-item .item-price {
  display: none;
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 950;
  font-size: 1.12rem;
  white-space: nowrap;
}

.menu-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.menu-note {
  max-width: 820px;
  margin: 26px auto 0;
  padding: 0 var(--page-pad);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1800px) {
  :root { --max: 1680px; }
}

@media (max-width: 1120px) {
  .hero,
  .big-section,
  .about,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    max-height: 640px;
  }

  .order-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .nav-toggle { display: block; }

  .nav:not(.nav-static) {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }

  .nav:not(.nav-static) a {
    min-height: 48px;
    padding-inline: 10px;
  }

  .nav-action { justify-content: center; }
}

@media (max-width: 860px) {
  body { padding-bottom: 82px; }

  .site-header {
    min-height: 68px;
    padding-block: 10px;
    background: rgba(245, 239, 229, 0.94);
    border-bottom: 1px solid var(--line);
  }

  .brand img {
    width: 82px;
    height: 44px;
  }

  .site-header .brand img {
    width: auto;
    height: 50px;
  }

  .hero {
    padding-top: 92px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }

  .hero-media::before {
    inset: 14% -3% -5% 8%;
  }

  .hero-badge {
    left: 12px;
    bottom: 12px;
    max-width: 160px;
    font-size: 0.86rem;
  }

  .actions .button {
    width: 100%;
  }

  .highlight-strip,
  .editorial-grid,
  .product-showcase,
  .order-flow ol,
  .style-grid,
  .info-panels,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .highlight-strip {
    margin-inline: 16px;
  }

  .highlight-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .highlight-strip article:last-child { border-bottom: 0; }

  .format-card.main-card {
    grid-row: auto;
    min-height: 430px;
  }

  .format-card {
    min-height: 360px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .what-is {
    grid-template-columns: 1fr;
  }

  .menu-product.lead-product {
    grid-row: auto;
  }

  .menu-product.lead-product img,
  .menu-product img {
    height: 260px;
  }

  .whatsapp-float { display: none; }

  .mobile-order-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 253, 252, 0.94);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-order-bar a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    white-space: nowrap;
  }

  .mobile-order-bar a:first-child {
    color: var(--charcoal);
    background: var(--cream);
  }

  .mobile-order-bar a:last-child {
    color: #fff;
    background: var(--brand);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand span { font-size: 0.96rem; }

  .hero,
  .what-is,
  .big-section,
  .formats,
  .styles-section,
  .about,
  .gallery,
  .service-info,
  .faq,
  .final-cta {
    padding-inline: 14px;
  }

  .format-card,
  .format-card.main-card {
    min-height: 330px;
  }

  .order-flow {
    margin-inline: 14px;
    padding: 22px;
  }
}

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