:root {
  --terra-950: #140908;
  --terra-900: #23110d;
  --terra-800: #3d1f16;
  --terra-700: #8b3a22;
  --terra-600: #b85c38;
  --terra-500: #d4764a;
  --warm: #f4d4b8;
  --warm-soft: #e8b88a;
  --red: #c41e3a;
  --cream: #fff8f5;
  --ink: #faf4f0;
  --muted: rgba(250, 236, 228, 0.72);
  --muted-light: rgba(250, 236, 228, 0.48);
  --surface: rgba(184, 92, 56, 0.38);
  --surface-2: rgba(61, 31, 22, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --wa: #20c968;
  --wa-hover: #1ab85a;
  --header-h: 4.5rem;
  --gutter: clamp(1rem, 4vw, 1.25rem);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --grad-page: radial-gradient(ellipse 110% 70% at 15% -5%, rgba(212, 118, 74, 0.34), transparent 52%),
    radial-gradient(ellipse 80% 55% at 88% 12%, rgba(184, 92, 56, 0.42), transparent 48%),
    linear-gradient(175deg, var(--terra-800) 0%, var(--terra-900) 38%, var(--terra-950) 100%);
  --grad-hero: linear-gradient(135deg, rgba(212, 118, 74, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 0% 50%, rgba(184, 92, 56, 0.5), transparent 60%);
  --grad-card: linear-gradient(155deg, rgba(184, 92, 56, 0.32) 0%, rgba(35, 17, 13, 0.88) 100%);
  --grad-cta: linear-gradient(120deg, var(--terra-800) 0%, var(--terra-600) 45%, var(--terra-900) 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--terra-950);
  background-image: var(--grad-page);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--terra-600);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 8px;
}

.wrap {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: .35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  z-index: 2;
  min-width: 0;
}
.brand-text { min-width: 0; }
.brand img { width: 44px; height: 44px; flex-shrink: 0; }
.brand strong {
  display: block;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.brand span {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .1rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}
.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform .25s var(--ease), opacity .25s;
}
.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
}
.menu-btn__bars::before { transform: translateY(-6px); }
.menu-btn__bars::after { transform: translateY(4px); }
.menu-btn[aria-expanded="true"] .menu-btn__bars { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-btn__bars::before { transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars::after { transform: rotate(-45deg) translateY(-2px); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a:not(.btn-wa) {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav a:not(.btn-wa):hover,
.nav a:not(.btn-wa).is-active { color: var(--cream); }
.nav a:not(.btn-wa).is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--warm), var(--warm-soft));
  border-radius: 2px;
}

/* Buttons */
.ico-wa {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .7rem 1.35rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: 0 4px 16px rgba(32, 201, 104, 0.28);
}
.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 201, 104, 0.35);
  text-decoration: none;
}
.btn-wa--sm {
  min-height: 42px;
  padding: .55rem 1.1rem;
  font-size: .84rem;
}
.btn-wa--hero {
  min-height: 54px;
  padding: .85rem 1.6rem;
  font-size: .95rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .6rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  color: var(--cream);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--terra-900);
  text-decoration: none;
}
.btn-outline--light {
  border-color: rgba(244, 212, 184, 0.45);
  color: var(--cream);
}
.btn-outline--light:hover {
  background: var(--warm);
  color: var(--terra-900);
}

/* Hero */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 40%, rgba(244, 212, 184, 0.08), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}
.eyebrow {
  margin: 0 0 .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm);
}
.eyebrow--light { color: rgba(244, 212, 184, 0.85); }
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 7vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: balance;
}
.lead {
  margin: 0 0 1.5rem;
  font-size: clamp(.95rem, 2.8vw, 1.05rem);
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
}
.hero-content .btn-wa--hero {
  width: min(100%, 22rem);
  max-width: 100%;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(184, 92, 56, 0.35);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 600;
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--warm);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: clamp(20px, 3vw, 32px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 9, 8, 0.55) 100%);
  pointer-events: none;
}
.hero-accent {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, var(--warm), var(--terra-600));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.35;
  filter: blur(2px);
}
@media (min-width: 960px) {
  .hero-frame {
    aspect-ratio: 5 / 4;
    transform: translateX(2%);
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.section-head { max-width: 36rem; margin-bottom: 2.5rem; }
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head h2 {
  margin: 0 0 .6rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--cream);
}
.sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section--catalog {
  background: linear-gradient(180deg, rgba(184, 92, 56, 0.12) 0%, transparent 100%);
}
.section--features {
  background: linear-gradient(180deg, transparent 0%, rgba(61, 31, 22, 0.35) 50%, transparent 100%);
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.feature {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--grad-card);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.feature-num {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--warm);
  margin-bottom: .75rem;
}
.feature h3 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.feature p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Forno */
.section--forno {
  background: linear-gradient(135deg, var(--terra-950) 0%, var(--terra-800) 50%, var(--terra-900) 100%);
  color: #fff;
  padding: 0;
}
.forno-split {
  display: grid;
  min-height: 420px;
}
@media (min-width: 900px) {
  .forno-split { grid-template-columns: 1.1fr 0.9fr; }
}
.forno-media {
  min-height: 280px;
  position: relative;
}
.forno-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.forno-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem);
}
.forno-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
}
.forno-copy > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
  line-height: 1.65;
}
.forno-list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.forno-list li {
  font-size: .92rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.1rem;
  position: relative;
}
.forno-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--warm);
}

/* Delivery */
.section--delivery {
  background: linear-gradient(180deg, rgba(184, 92, 56, 0.18) 0%, transparent 100%);
  padding-top: 0;
}
.delivery-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .delivery-grid { grid-template-columns: 1fr 1fr; }
}
.delivery-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--grad-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.delivery-card h3 {
  margin: 0 0 .5rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}
.delivery-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

/* Catalog */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--grad-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 212, 184, 0.22);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #a01830);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  gap: .35rem;
}
.card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.card .desc {
  margin: 0;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.card-price-wrap .from {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.card-price-wrap .price {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: -0.02em;
}
.btn-card {
  min-height: 42px;
  padding: .5rem 1rem;
  font-size: .8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, transparent 0%, rgba(61, 31, 22, 0.28) 100%);
}
.faq { max-width: 640px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, rgba(184, 92, 56, 0.1) 0%, transparent 100%);
}
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.contact-cards {
  display: grid;
  gap: .85rem;
}
.info-card {
  padding: 1.35rem;
  background: var(--grad-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.info-card h3 {
  margin: 0 0 .4rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
}
.info-card p {
  margin: 0 0 .25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}
.info-card a { color: var(--warm); font-weight: 600; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.link-arrow {
  display: inline-block;
  margin-top: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--warm) !important;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* CTA Final */
.cta-final {
  background: var(--grad-cta);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(244, 212, 184, 0.12), transparent 55%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.cta-final h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 20ch;
}

/* Footer */
.footer {
  padding: 1.75rem 0 2.5rem;
  background: var(--terra-950);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.footer .brand strong { color: #fff; }
.footer .brand span { color: rgba(255, 255, 255, 0.5); }
.footer-row > p {
  margin: 0;
  font-size: .85rem;
}

/* Float WA */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s var(--ease);
}
.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.wa-float .ico-wa { width: 1.5rem; height: 1.5rem; }

/* Reveal */
.js [data-reveal] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .js [data-reveal-delay="1"] { transition-delay: .1s; }
  .js [data-reveal-delay="2"] { transition-delay: .2s; }
}

/* Mobile nav */
@media (max-width: 900px) {
  :root { --header-h: 4rem; }

  body { background-attachment: scroll; }

  .menu-btn { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    padding: calc(var(--header-h) + 1rem) var(--gutter) calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav a:not(.btn-wa) { font-size: 1.1rem; }
  .nav .btn-wa {
    margin-top: .5rem;
    width: min(100%, 18rem);
  }

  .hero {
    padding: 1.5rem 0 2.5rem;
  }
  .hero-grid {
    gap: 1.75rem;
  }
  .hero-content .btn-wa--hero {
    width: 100%;
  }
  .lead { max-width: none; }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }
  .hero-badges .pill:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .hero-visual {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }
  .hero-frame {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }
  .hero-accent { display: none; }

  .section {
    padding: 2.75rem 0;
  }
  .section-head {
    margin-bottom: 1.75rem;
  }
  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card-footer {
    flex-direction: row;
    align-items: center;
    gap: .75rem;
  }
  .card-price-wrap { flex: 1; min-width: 0; }
  .btn-card {
    width: auto;
    flex: 0 0 auto;
    min-width: 7.5rem;
    margin-top: 0;
  }

  .section--forno .wrap {
    width: 100%;
    padding-inline: 0;
  }
  .forno-media {
    min-height: 220px;
    max-height: 300px;
  }
  .forno-media img {
    min-height: 220px;
    max-height: 300px;
    object-position: center 42%;
  }
  .forno-copy {
    padding: 2rem var(--gutter) 2.25rem;
  }
  .forno-copy .btn-outline {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .delivery-card { padding: 1.5rem; }
  .feature { padding: 1.35rem; }

  .map-wrap {
    min-height: 240px;
  }
  .map-wrap iframe {
    min-height: 240px;
    height: 240px;
  }

  .cta-final__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-final h2 { max-width: none; }
  .cta-final .btn-wa--hero { width: 100%; }

  .footer {
    padding: 1.5rem 0 calc(5rem + env(safe-area-inset-bottom, 0px));
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-row > p {
    font-size: .82rem;
    line-height: 1.55;
  }
  .footer .btn-wa {
    width: 100%;
    justify-content: center;
  }

  .wa-float {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; }

  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: .86rem; }
  .brand span { font-size: .62rem; }

  .hero h1 { font-size: 1.75rem; }
  .hero-badges {
    grid-template-columns: 1fr;
  }
  .hero-badges .pill:last-child {
    grid-column: auto;
    justify-self: stretch;
  }
  .pill {
    width: 100%;
    justify-content: center;
  }

  .card-body { padding: 1rem; }
  .card h3 { font-size: 1.12rem; }
  .card .desc {
    -webkit-line-clamp: 4;
    font-size: .84rem;
  }
  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-card {
    width: 100%;
    min-height: 44px;
  }

  .faq summary {
    font-size: .9rem;
    align-items: flex-start;
  }
  .info-card { padding: 1.1rem; }

  .map-wrap,
  .map-wrap iframe {
    min-height: 210px;
    height: 210px;
  }
}

@media (max-width: 380px) {
  .brand-text span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}
