/* Real Breddy's photography layer */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ticker {
  padding-block: 11px;
}

.ticker > .ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-loop 22s linear infinite;
  will-change: transform;
}

.ticker .ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: max-content;
  animation: none;
}

.ticker b {
  margin-inline: 14px;
}

.ticker + .highlights {
  padding-top: 52px;
}

/* Visual brand pillars */
.highlights .feature-grid {
  gap: 14px;
  border: 0;
}

.feature-grid .feature-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 39vw, 590px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #1a100f;
  color: var(--cream);
}

.feature-card::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 9, 0.05) 20%, rgba(20, 10, 9, 0.96) 92%);
}

.feature-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88);
  transition: transform 0.8s cubic-bezier(.2, .7, .2, 1), filter 0.5s ease;
}

.feature-card:hover > img {
  transform: scale(1.055);
  filter: saturate(1.08) brightness(0.98);
}

.feature-card .num {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 232, 208, 0.42);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(30, 15, 13, 0.32);
  backdrop-filter: blur(8px);
}

.feature-card-copy {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
}

.feature-card-copy .feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 0 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-size: 1.35rem;
}

.feature-card-copy small {
  display: block;
  margin-bottom: 10px;
  color: #f09b7c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature-grid .feature-card h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.feature-grid .feature-card p {
  max-width: 390px;
  color: rgba(245, 232, 208, 0.78);
}

@keyframes ticker-loop {
  to {
    transform: translateX(-16.6666667%);
  }
}

.menu-item:hover i {
  background: transparent;
  border-color: rgba(245, 232, 208, .3);
}

@media (hover: hover) and (pointer: fine) {
  .menu-item:hover i {
    background: var(--orange);
    border-color: var(--orange);
  }
}
.brand img {
  width: 180px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.footer-brand img {
  width: 220px;
  height: 88px;
}

.channel > .channel-icon {
  color: var(--orange);
  background: transparent;
}

.channel-icon img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.channel-icon.ifood-icon {
  width: 60px;
  height: 42px;
  flex: 0 0 60px;
  border-radius: 0;
}

.channel-icon.ifood-icon img {
  width: 54px;
  height: 29px;
  filter: brightness(0) invert(1);
}

.channel > b {
  display: grid;
  place-items: center;
}

.channel > b svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-link-icon {
  width: 17px;
  height: 17px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-link-icon.ifood-footer-icon {
  width: 48px;
  height: 26px;
}

.footer-link-icon.breddys-footer-icon {
  width: 46px;
  height: 25px;
}

.mobile-ifood {
  display: none;
}

.nav-ifood {
  width: 62px;
  height: 38px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-ifood img {
  width: 58px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.nav-ifood:hover {
  transform: translateY(-2px);
  opacity: .84;
}

.site-header nav .order-site-cta {
  min-width: 162px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 10px 18px;
  text-align: center;
  line-height: 1.05;
  border: 1px solid rgba(245, 232, 208, .8);
  box-shadow: 0 9px 24px rgba(201, 74, 34, .34);
}

@keyframes order-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 74, 34, .42), 0 9px 24px rgba(201, 74, 34, .34);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 9px rgba(201, 74, 34, 0), 0 13px 31px rgba(201, 74, 34, .52);
  }
}

.site-header nav .order-site-cta,
.mobile-header-cta,
.hero-order-cta {
  transform-origin: center;
  will-change: transform, box-shadow;
  animation: order-cta-pulse 1.8s ease-in-out infinite;
}

.order-site-cta span {
  font-size: .76rem;
}

.order-site-cta small {
  font-size: .5rem;
  letter-spacing: .75px;
  opacity: .9;
}

.hero-order-cta {
  border-color: var(--cream);
  border-width: 2px;
  box-shadow: 0 12px 34px rgba(201, 74, 34, .42);
}

.loyalty-note {
  max-width: 570px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin: 16px 0 0;
  color: #ead9c8;
  font-size: .83rem;
  line-height: 1.45;
}

.loyalty-note > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  font-size: .72rem;
}

.loyalty-note strong {
  color: var(--cream);
}

.channel.primary-channel {
  margin: 22px -12px 5px;
  padding: 17px 16px;
  border: 0;
  border-radius: 5px;
  background: var(--cream);
  color: var(--brown);
  box-shadow: 0 12px 28px rgba(75, 46, 42, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.channel.primary-channel:hover {
  padding-left: 16px;
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(75, 46, 42, .3);
}

.primary-channel .breddys-channel-icon {
  width: 78px;
  height: 48px;
  flex: 0 0 78px;
  padding: 3px 5px;
  border-radius: 4px;
  background: transparent;
}

.primary-channel .breddys-channel-icon img {
  width: 68px;
  height: 40px;
}

.primary-channel small {
  color: var(--orange);
  font-weight: 800;
}

.primary-channel > b {
  color: var(--orange);
}

.floating-order {
  display: none !important;
}

.open-card .status-dot {
  background: #e43c32;
  box-shadow: 0 0 0 5px rgba(228, 60, 50, .16);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.open-card.is-open .status-dot {
  background: #61c95a;
  box-shadow: 0 0 0 5px rgba(97, 201, 90, .14);
}

.open-card.is-closed .status-dot {
  background: #e43c32;
  box-shadow: 0 0 0 5px rgba(228, 60, 50, .16);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: #25d366;
  color: #102c1b;
  box-shadow: 0 14px 36px rgba(16, 44, 27, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 27, .4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}

.hero-photo {
  background-image: url('assets/hero-real.webp');
}

.food-showcase {
  background: #fff8ec;
  padding-top: 110px;
}

.showcase-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.showcase-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.showcase-heading > p {
  max-width: 420px;
  line-height: 1.7;
  color: #745d57;
  margin: 0 0 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
}

.photo-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

.photo-grid .photo-main {
  grid-row: 1 / 3;
}

.photo-grid .photo-wide {
  grid-column: 2 / 4;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-grid figure::after {
  content: '';
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(26, 12, 9, .86));
}

.photo-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--cream);
  display: grid;
  gap: 4px;
}

.photo-grid figcaption small {
  font-size: .58rem;
  letter-spacing: 2px;
  color: #e7b09b;
}

.photo-grid figcaption strong {
  font: 1.15rem 'Fugaz One';
  text-transform: uppercase;
}

.manifesto-photo {
  height: 560px;
  background: url('assets/mesa-breddys.webp') center / cover no-repeat;
  position: relative;
  box-shadow: 18px 18px 0 var(--orange);
}

.manifesto-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 232, 208, .18);
}

/* Complete linked menu */
.catalog {
  background: #fff8ec;
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.catalog-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.catalog-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #745d57;
  line-height: 1.7;
}

.catalog-category {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) 1fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.catalog-category:last-child {
  border-bottom: 1px solid var(--line);
}

.catalog-category > header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.catalog-category > header > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 74, 34, .45);
  border-radius: 50%;
  color: var(--orange);
  font: .72rem 'Fugaz One';
}

.catalog-category h3 {
  margin: 1px 0 5px;
  font: 1.2rem 'Fugaz One';
  text-transform: uppercase;
  line-height: 1.15;
}

.catalog-category header p {
  margin: 0;
  color: #8a7169;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.catalog-product {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(75, 46, 42, .16);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.catalog-product > span {
  color: var(--orange);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.catalog-product strong {
  min-width: 0;
  font-size: .9rem;
  line-height: 1.25;
}

.catalog-product i {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
  font-size: 1rem;
}

.catalog-product:hover,
.catalog-product:focus-visible {
  color: var(--cream);
  background: var(--brown);
  border-color: var(--brown);
  outline: none;
  transform: translateY(-2px);
}

.catalog-product:hover > span,
.catalog-product:hover i,
.catalog-product:focus-visible > span,
.catalog-product:focus-visible i {
  color: #ee8d68;
}

@media (max-width: 1180px) {
  .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .catalog-heading {
    display: block;
    margin-bottom: 38px;
  }

  .catalog-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .catalog-heading > p {
    margin-top: 24px;
  }

  .catalog-category {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 30px;
  }
}

@media (max-width: 800px) {
  .highlights .feature-grid {
    gap: 12px;
  }

  .feature-grid .feature-card {
    min-height: 430px;
    border-bottom: 0;
  }

  .feature-card-copy {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }
}

@media (max-width: 520px) {
  .catalog-heading h2 {
    font-size: clamp(2.18rem, 11vw, 2.85rem);
    letter-spacing: -2px;
  }

  .catalog-products {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-product {
    min-height: 66px;
    padding: 12px 14px;
  }
}

@media (max-width: 800px) {
  .ticker + .highlights {
    padding-top: 42px;
  }

  .brand img {
    width: 145px;
    height: 52px;
  }

  .footer-brand img {
    width: 190px;
    height: 76px;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(25, 12, 9, .98) 5%, rgba(30, 14, 11, .68) 58%, rgba(30, 14, 11, .18));
  }

  .showcase-heading {
    display: block;
    margin-bottom: 32px;
  }

  .showcase-heading h2 {
    font-size: 2.8rem;
  }

  .showcase-heading > p {
    margin-top: 24px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 220px 260px;
    gap: 8px;
  }

  .photo-grid .photo-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .photo-grid .photo-wide {
    grid-column: 1 / 3;
  }

  .photo-grid figcaption {
    left: 16px;
    bottom: 16px;
  }

  .photo-grid figcaption strong {
    font-size: .9rem;
  }

  .manifesto-photo {
    height: 430px;
    margin: 0 10px 30px 0;
    box-shadow: 10px 10px 0 var(--orange);
  }
}

/* Responsive layout refinements */
html {
  scroll-padding-top: 84px;
}

html.is-resetting-scroll {
  scroll-behavior: auto !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  gap: 16px;
  background: rgba(36, 23, 22, .76);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(36, 23, 22, .97);
  box-shadow: 0 10px 30px rgba(25, 12, 9, .26);
}

.mobile-header-cta {
  display: none;
}

body {
  min-width: 280px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.menu-item > div,
.channel > div {
  min-width: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 9px;
  gap: 6px;
  place-content: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cream);
  transition: transform .25s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (min-width: 1600px) {
  .site-header,
  .hero,
  .section,
  footer {
    padding-inline: max(6vw, calc((100vw - 1600px) / 2));
  }

  .manifesto {
    padding-inline: max(8vw, calc((100vw - 1600px) / 2));
  }

  .open-card {
    right: max(5vw, calc((100vw - 1600px) / 2));
  }

  .photo-grid {
    grid-template-rows: 350px 350px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 4vw;
  }

  .site-header nav {
    gap: 1.35rem;
  }

  .section {
    padding-inline: 5vw;
  }

  .section-heading {
    gap: 44px;
  }

  .feature-grid article {
    padding-inline: 24px;
  }

  .photo-grid {
    grid-template-rows: 280px 280px;
  }

  .menu-section {
    grid-template-columns: .9fr 1.1fr;
    gap: 5vw;
  }

  .manifesto {
    grid-template-columns: 1fr 1fr;
    padding: 90px 6vw;
  }

  .manifesto-photo {
    height: 510px;
  }

  .order {
    gap: 4vw;
  }

  .order-panel {
    padding: 42px 36px;
  }

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

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

@media (max-width: 960px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 76px;
    padding-inline: 24px;
  }

  .mobile-ifood {
    width: 62px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 62px;
    margin-left: auto;
    padding: 0;
    background: transparent;
  }

  .mobile-ifood img {
    width: 58px;
    height: 31px;
    display: block;
    object-fit: contain;
  }

  .mobile-header-cta {
    min-width: 124px;
    min-height: 44px;
    display: grid;
    place-content: center;
    gap: 2px;
    margin-left: 0;
    padding: 6px 12px;
    border-radius: 3px;
    background: var(--orange);
    color: var(--cream);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-header-cta .mobile-cta-label {
    display: block;
    font-size: .68rem;
    line-height: 1;
    letter-spacing: .8px;
  }

  .mobile-header-cta small {
    display: block;
    font-size: .44rem;
    line-height: 1;
    letter-spacing: .35px;
    opacity: .92;
  }

  .site-header nav {
    display: none;
    position: absolute;
    z-index: 1;
    top: 76px;
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    background: rgba(75, 46, 42, .98);
    border-bottom: 1px solid rgba(245, 232, 208, .2);
    box-shadow: 0 18px 38px rgba(25, 12, 9, .28);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
  }

  .site-header nav .nav-ifood {
    display: none;
  }

  .site-header nav .nav-cta {
    display: grid;
    justify-content: center;
    min-height: 58px;
    margin-top: 8px;
  }

  .menu-toggle {
    display: grid;
  }

  .section-heading h2,
  .menu-intro h2,
  .manifesto h2,
  .order h2,
  .showcase-heading h2 {
    font-size: clamp(2.65rem, 6vw, 4.2rem);
  }

  .feature-grid article {
    padding: 40px 18px;
  }

  .feature-grid h3 {
    font-size: 1.2rem;
  }

  .feature-grid p {
    font-size: .92rem;
  }

  .menu-item h3 {
    font-size: 1.45rem;
  }

  .menu-item p {
    font-size: .9rem;
    line-height: 1.5;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 70px;
    padding-inline: 20px;
  }

  .site-header nav {
    top: 70px;
  }

  .hero {
    height: auto;
    min-height: max(740px, 100svh);
    padding: 120px 22px 68px;
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  .open-card {
    top: 86px;
    right: 22px;
  }

  .section {
    padding: 72px 22px;
  }

  .ticker + .highlights {
    padding-top: 42px;
  }

  .section-heading h2,
  .menu-intro h2,
  .manifesto h2,
  .order h2,
  .showcase-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .photo-grid img {
    transition: none;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 220px 260px;
  }

  .menu-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 72px;
  }

  .menu-list {
    margin-top: 0;
  }

  .menu-item {
    gap: 18px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding: 72px 22px;
  }

  .order {
    gap: 42px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 22px 30px;
  }

  .footer-links,
  footer small {
    grid-column: 1;
  }

  .footer-links {
    row-gap: 18px;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .brand img {
    width: 110px;
    height: 43px;
  }

  .mobile-ifood {
    width: 58px;
    height: 36px;
    flex-basis: 58px;
    padding: 0;
  }

  .mobile-ifood img {
    width: 54px;
    height: 29px;
  }

  .mobile-header-cta {
    min-width: 112px;
    min-height: 42px;
    padding: 6px 9px;
  }

  .mobile-header-cta .mobile-cta-label {
    font-size: .62rem;
  }

  .mobile-header-cta small {
    font-size: .4rem;
    letter-spacing: .22px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 76px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 29px;
    height: 29px;
  }

  .hero {
    min-height: max(710px, 100svh);
    padding: 112px 18px 52px;
  }

  .hero-photo {
    background-position: 67% center;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
    letter-spacing: -2px;
  }

  .eyebrow {
    gap: 8px;
    letter-spacing: 2px;
    font-size: .64rem;
  }

  .lead {
    font-size: .92rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
  }

  .open-card {
    top: 82px;
    left: 18px;
    right: auto;
    padding: 11px 14px;
  }

  .ticker {
    padding-block: 9px;
    font-size: .84rem;
  }

  .ticker b {
    margin-inline: 11px;
  }

  .section {
    padding: 60px 18px;
  }

  .ticker + .highlights {
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .menu-intro h2,
  .manifesto h2,
  .order h2,
  .showcase-heading h2 {
    font-size: clamp(2.18rem, 11vw, 2.85rem);
    letter-spacing: -2px;
  }

  .feature-grid article {
    padding: 32px 8px;
  }

  .feature-icon {
    margin-bottom: 16px;
  }

  .food-showcase {
    padding-top: 64px;
  }

  .showcase-heading {
    margin-bottom: 26px;
  }

  .showcase-heading > p {
    margin-top: 18px;
    font-size: .94rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 230px 230px 260px;
  }

  .photo-grid .photo-main,
  .photo-grid .photo-wide {
    grid-column: 1;
    grid-row: auto;
  }

  .menu-section {
    gap: 32px;
  }

  .menu-intro > p:not(.eyebrow) {
    margin-block: 22px;
  }

  .menu-item {
    min-height: 0;
    padding: 24px 2px;
  }

  .menu-item h3 {
    font-size: 1.25rem;
  }

  .menu-item i {
    display: none;
  }

  .manifesto {
    padding: 60px 18px;
  }

  .manifesto-photo {
    height: 350px;
    margin-bottom: 24px;
  }

  .manifesto > div:last-child > p:last-child {
    font-size: .96rem;
    line-height: 1.65;
  }

  .order-time {
    margin: 26px 0 0;
  }

  .order-panel {
    padding: 30px 20px;
  }

  .order-panel h3 {
    font-size: 1.65rem;
  }

  .order-panel > p {
    font-size: .93rem;
  }

  .channel {
    gap: 12px;
    padding-block: 16px;
  }

  .channel.primary-channel {
    margin-inline: -8px;
    padding-inline: 11px;
  }

  .channel.primary-channel:hover {
    padding-left: 11px;
  }

  .primary-channel .breddys-channel-icon {
    width: 64px;
    height: 44px;
    flex-basis: 64px;
  }

  .primary-channel .breddys-channel-icon img {
    width: 56px;
    height: 36px;
  }

  .primary-channel strong {
    line-height: 1.15;
  }

  .channel > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .channel strong {
    font-size: 1rem;
  }

  .channel > b svg {
    width: 18px;
    height: 18px;
  }

  .footer-brand img {
    width: 168px;
    height: 68px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  footer small {
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 5px;
    padding-inline: 8px;
  }

  .mobile-header-cta {
    min-width: 104px;
    min-height: 40px;
    padding-inline: 6px;
  }

  .mobile-header-cta .mobile-cta-label {
    display: block;
    font-size: .56rem;
  }

  .mobile-header-cta small {
    font-size: .37rem;
    letter-spacing: .08px;
  }

  .whatsapp-float {
    bottom: 68px;
    width: 48px;
    height: 48px;
  }

  .brand img {
    width: 88px;
  }

  .mobile-ifood {
    width: 46px;
    height: 34px;
    flex-basis: 46px;
  }

  .mobile-ifood img {
    width: 44px;
    height: 24px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .section-heading h2,
  .menu-intro h2,
  .manifesto h2,
  .order h2,
  .showcase-heading h2 {
    font-size: 2.05rem;
  }

  .open-card strong {
    font-size: .9rem;
  }

  .order-panel {
    padding-inline: 16px;
  }

  .channel {
    gap: 9px;
  }

  .channel small {
    letter-spacing: 1px;
  }
}

@media (max-width: 320px) {
  .site-header {
    gap: 4px;
    padding-inline: 6px;
  }

  .brand img {
    width: 80px;
  }

  .mobile-ifood {
    width: 42px;
    flex-basis: 42px;
  }

  .mobile-ifood img {
    width: 40px;
    height: 22px;
  }

  .mobile-header-cta {
    min-width: 96px;
    padding-inline: 4px;
  }

  .mobile-header-cta .mobile-cta-label {
    font-size: .52rem;
  }

  .mobile-header-cta small {
    font-size: .34rem;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    padding: 5px;
  }

  .menu-toggle span {
    width: 22px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 600px;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: 560px;
  }

  h1 {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }

  .lead {
    margin-block: 14px;
  }

  .open-card {
    top: 86px;
    left: auto;
    right: 20px;
  }
}

/* Interactive dark-card carousel */
.showcase-side {
  width: min(100%, 430px);
  display: grid;
  gap: 20px;
}

.showcase-side > p {
  color: #745d57;
  line-height: 1.7;
  margin: 0;
}

.showcase-carousel {
  width: 100%;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(270px, 25vw, 380px);
  height: 460px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #160e0d;
  border: 1px solid rgba(75, 46, 42, .28);
  outline: none;
  cursor: pointer;
}

.showcase-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .07;
  filter: grayscale(.75) saturate(.35) brightness(.55);
  transform: scale(1.02);
  transition: opacity .55s ease, filter .55s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.showcase-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 11, 10, .18) 20%, rgba(19, 11, 10, .94) 88%);
  transition: background .45s ease;
}

.showcase-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 232, 208, .12);
  pointer-events: none;
}

.showcase-card:hover img,
.showcase-card:focus-visible img,
.showcase-card:focus-within img {
  opacity: .94;
  filter: grayscale(0) saturate(1.05) brightness(1);
  transform: scale(1.075);
}

.showcase-card:hover::before,
.showcase-card:focus-visible::before,
.showcase-card:focus-within::before {
  background: linear-gradient(180deg, rgba(19, 11, 10, .04) 20%, rgba(19, 11, 10, .9) 91%);
}

.showcase-card:focus-visible {
  box-shadow: inset 0 0 0 3px var(--orange);
}

.showcase-card-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  color: var(--cream);
}

.showcase-card-copy span {
  color: #e79373;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.showcase-card-copy strong {
  font: 1.45rem 'Fugaz One';
  line-height: 1.08;
  text-transform: uppercase;
}

.showcase-card-copy p {
  max-width: 310px;
  margin: 2px 0 0;
  color: #e1cec0;
  font-size: .9rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .showcase-side {
    margin-top: 22px;
    gap: 16px;
  }

  .showcase-card {
    flex-basis: clamp(240px, 44vw, 340px);
    height: 390px;
  }
}

@media (max-width: 520px) {
  .showcase-carousel {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .showcase-card {
    flex-basis: calc(50% - 14px);
    height: 340px;
  }

  .showcase-card-copy {
    left: 14px;
    right: 14px;
    bottom: 16px;
    gap: 6px;
  }

  .showcase-card-copy span {
    font-size: .5rem;
    letter-spacing: 1px;
  }

  .showcase-card-copy strong {
    font-size: .95rem;
  }

  .showcase-card-copy p {
    display: none;
  }
}

@media (max-width: 360px) {
  .showcase-card {
    height: 320px;
  }
}

@media (hover: none), (pointer: coarse) {
  .showcase-card img {
    opacity: .82;
    filter: grayscale(0) saturate(1) brightness(.9);
  }

  .showcase-card::before {
    background: linear-gradient(180deg, rgba(19, 11, 10, .05) 18%, rgba(19, 11, 10, .92) 90%);
  }
}

/* House mayo story */
.mayo-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 680px;
  background: var(--cream);
  color: var(--brown);
}

.mayo-story-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #18100f;
}

.mayo-story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(20, 12, 11, 0.7));
  pointer-events: none;
}

.mayo-story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2, .7, .2, 1);
}

.mayo-story:hover .mayo-story-photo img {
  transform: scale(1.035);
}

.mayo-story-photo > span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  padding: 11px 14px;
  border: 1px solid rgba(245, 232, 208, 0.32);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mayo-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(56px, 7vw, 110px);
}

.mayo-story-copy h2 {
  max-width: 820px;
  margin: 25px 0 28px;
  font: clamp(3.2rem, 5.7vw, 7.2rem)/0.91 'Fugaz One', sans-serif;
  letter-spacing: -0.045em;
}

.mayo-story-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.mayo-story-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(75, 46, 42, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
}

.mayo-signature {
  max-width: 560px;
  margin: 28px 0 32px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .mayo-story {
    grid-template-columns: 1fr;
  }

  .mayo-story-photo {
    min-height: min(82vw, 620px);
  }

  .mayo-story-copy {
    padding: 70px 24px 82px;
  }

  .mayo-story-copy h2 {
    font-size: clamp(3rem, 12vw, 5.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mayo-story-photo img {
    transition: none;
  }
}

/* Partners near the end of the page */
.partner-showcase {
  padding: clamp(76px, 8vw, 120px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #fff8ea;
  color: var(--brown);
}

.partner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 32px 8vw;
  padding: 0 6vw;
  margin-bottom: 48px;
}

.partner-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.partner-heading h2 {
  font-size: clamp(2.9rem, 5.5vw, 6.4rem);
}

.partner-heading > p:last-child {
  margin: 0;
  color: rgba(75, 46, 42, 0.72);
  line-height: 1.7;
}

.partner-marquee {
  overflow: hidden;
}

.partner-track {
  display: flex;
  width: max-content;
}

.partner-track.is-ready {
  animation: partner-loop 34s linear infinite;
}

.partner-set {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}

.partner-brand {
  width: clamp(170px, 15vw, 230px);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(75, 46, 42, 0.16);
  background: var(--cream);
  color: var(--brown);
  font: 1.18rem 'Fugaz One', sans-serif;
  letter-spacing: -0.035em;
  text-align: center;
  white-space: nowrap;
}

.partner-brand b {
  margin-left: 5px;
  color: var(--orange);
}

.partner-brand img {
  width: 104px;
  max-height: 42px;
  object-fit: contain;
}

.brand-meta { color: #0866ff; font-size: 1.55rem; text-transform: none; }
.brand-frimesa { color: #181818; text-decoration: underline 5px #d71920; text-underline-offset: 7px; }
.brand-perdigao, .brand-sadia { color: #c90020; }
.brand-beef, .brand-wessel { color: #3a201c; }
.brand-friboi { color: #e1251b; }
.brand-mccain { color: #f2b600; text-shadow: 1px 1px 0 #5c2015; }
.brand-mccoys { color: #c92127; font-style: italic; }
.brand-vigor { color: #184f96; }
.brand-junior { color: #b88422; }
.brand-brejeiro { color: #1e4e9a; }
.brand-ultragaz { color: #005baa; font-size: 1.45rem; text-transform: lowercase; }

@keyframes partner-loop {
  to { transform: translateX(-50%); }
}

@media (max-width: 800px) {
  .partner-heading {
    grid-template-columns: 1fr;
    padding: 0 22px;
    margin-bottom: 34px;
  }

  .partner-heading h2 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .partner-brand {
    width: 158px;
    height: 92px;
    padding: 16px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    overflow-x: auto;
  }

  .partner-track.is-ready {
    animation: none;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.category-grid .menu-item,
.category-grid .menu-item:last-child {
  min-height: 138px;
  padding: 20px;
  gap: 16px;
  border: 1px solid rgba(245, 232, 208, .22);
  background: rgba(245, 232, 208, .025);
}

.category-grid .menu-item h3 {
  margin-block: 8px 5px;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.category-grid .menu-item p {
  font-size: .82rem;
  line-height: 1.45;
}

.category-grid .menu-item i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

@media (max-width: 800px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-grid .menu-item,
  .category-grid .menu-item:last-child {
    min-height: 118px;
    padding: 18px;
  }
}

/* Real kitchen video showcase */
.motion-showcase {
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 74, 34, 0.22), transparent 34%),
    #241513;
  color: var(--cream);
  overflow: hidden;
}

.motion-layout {
  width: min(100%, 1440px);
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.75fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.motion-copy h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 6.6rem);
  line-height: 0.9;
}

.motion-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 32px;
  color: rgba(245, 232, 208, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.motion-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.motion-stage {
  position: relative;
  min-width: 0;
}

.motion-controls {
  display: none;
}

.motion-card {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 232, 208, 0.14);
  border-radius: 18px;
  background: #130c0b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.motion-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(15, 8, 7, 0.92));
  pointer-events: none;
}

.motion-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.motion-card:hover .motion-video {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.motion-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 22px;
  left: 20px;
  display: grid;
  gap: 6px;
}

.motion-card figcaption span {
  color: #f08a65;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.motion-card figcaption strong {
  font-family: 'Fugaz One', sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .motion-layout {
    grid-template-columns: 1fr;
  }

  .motion-copy {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .motion-showcase {
    padding-right: 0;
    padding-left: 0;
  }

  .motion-copy {
    padding: 0 22px;
  }

  .motion-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .motion-grid {
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72vw;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 14vw 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .motion-grid::-webkit-scrollbar {
    display: none;
  }

  .motion-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    pointer-events: none;
  }

  .motion-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(75, 46, 42, 0.16);
    border-radius: 50%;
    background: var(--cream);
    color: var(--orange);
    box-shadow: 0 8px 24px rgba(15, 8, 7, 0.3);
    font: 800 1.35rem/1 Arial, sans-serif;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  }

  .motion-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(0.92);
  }

  .motion-arrow:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
  }

  .motion-arrow:disabled {
    opacity: 0.28;
    cursor: default;
  }

  .motion-arrow-prev {
    left: 8px;
  }

  .motion-arrow-next {
    right: 8px;
  }

  .motion-card {
    scroll-snap-align: center;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header nav .order-site-cta,
  .mobile-header-cta,
  .hero-order-cta {
    animation: none;
    will-change: auto;
  }

  .showcase-track {
    scroll-behavior: auto;
  }

  .showcase-card img,
  .showcase-card::before {
    transition: none;
  }

  .motion-video {
    transition: none;
  }
}
