:root {
  --bg: #f3ede4;
  --surface: #ffffff;
  --cream: #f9f3ea;
  --dark: #111111;
  --dark-2: #171717;
  --text: #211b16;
  --muted: #6d6258;
  --green: #14924f;
  --green-dark: #0e6f3c;
  --red: #d5502f;
  --gold: #f4a94b;
  --shadow: 0 18px 48px rgba(22, 16, 10, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 80, 47, 0.08), transparent 23%),
    radial-gradient(circle at top right, rgba(20, 146, 79, 0.08), transparent 20%),
    var(--bg);
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #120f0d;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 237, 228, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 27, 22, 0.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: 12px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #2a170b;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu {
  display: none;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 56px; height: 56px; object-fit: contain; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow); padding: 4px;
}
.header-logo {
  width: 150px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); margin-top: 3px; font-size: .84rem; }
.nav {
  display: flex;
  gap: 22px;
  color: #4a4037;
  font-weight: 700;
  margin-left: auto;
}
.nav a:hover { color: var(--red); }
.header-cta {
  margin-left: 24px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 14px 22px;
  font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 30px rgba(20, 146, 79, 0.22);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero { padding: 0; }
.hero-dark {
  background:
    linear-gradient(180deg, #0f0f0f 0%, #171717 74%, #271b13 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(117,76,45,.44));
  pointer-events: none;
}
.hero-slider {
  position: relative;
  min-height: 560px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(15,15,15,.96) 0%, rgba(15,15,15,.72) 34%, rgba(15,15,15,.14) 68%),
    var(--hero-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .45s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-grid,
.promo-grid,
.trend-grid,
.quality-grid,
.reserve-grid,
.delivery-banner {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-grid { grid-template-columns: .9fr 1.1fr; }
.promo-grid, .trend-grid, .quality-grid, .reserve-grid {
  grid-template-columns: 1fr 1fr;
}

.eyebrow {
  display: inline-flex;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-dark .eyebrow { color: #f2a26a; }

.hero-copy h1,
.hero-copy .hero-title,
.section-head h2,
.dark-promo-copy h2,
.trend-copy h2,
.quality-copy h2,
.reserve-copy h2,
.delivery-banner h2 {
  margin: 12px 0 0;
  line-height: .96;
  letter-spacing: -.06em;
}
.hero-copy h1,
.hero-copy .hero-title {
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  max-width: 9ch;
  font-weight: 900;
  text-transform: uppercase;
}
.section-head h2,
.dark-promo-copy h2,
.trend-copy h2,
.quality-copy h2,
.reserve-copy h2,
.delivery-banner h2 { font-size: clamp(2rem, 4vw, 3.35rem); }

.hero-copy p,
.dark-promo-copy p,
.trend-copy p,
.quality-copy p,
.reserve-copy p,
.delivery-banner p,
.food-card p,
.mini-card p,
.promo-tile p,
.service-strip p,
.footer-inner p {
  color: var(--muted);
  line-height: 1.65;
}
.hero-copy p { max-width: 46ch; margin-top: 18px; color: rgba(255,255,255,.76); }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px;
}
.carousel-control {
  position:absolute; top:50%; translate:0 -50%;
  width:46px; height:46px; border-radius:50%; border:0;
  background: rgba(255,255,255,.95); color: var(--text);
  font-size:1.8rem; line-height:1; box-shadow: var(--shadow); cursor:pointer; z-index:5;
  pointer-events: auto;
}
.carousel-control.prev { left:16px; }
.carousel-control.next { right:16px; }
.carousel-dots {
  position: relative;
  z-index: 3;
  display:flex;
  justify-content:center;
  gap:10px;
  padding: 0 0 22px;
  margin-top: -34px;
}
.dot {
  width:10px; height:10px; border-radius:999px; border:0;
  background: rgba(255,255,255,.34); cursor:pointer;
}
.dot.active { width:30px; background: linear-gradient(135deg, #fff, #f1a86f); }

.section { padding: 68px 0; }
.section-menu { background: var(--cream); }
.section-menu-alt { background: #f6efe5; }
.section-head { max-width: 720px; margin-bottom: 24px; }
.section-head h2 { margin-top: 12px; }

.menu-grid { display: grid; gap: 18px; }
.menu-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.menu-grid-eight { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.food-card,
.mini-card,
.promo-tile,
.split-card,
.reserve-form,
.service-strip,
.quote-box,
.footer-inner,
.dark-promo,
.quality-grid,
.delivery-banner {
  background: #fff;
  border: 1px solid rgba(28,22,18,.08);
  box-shadow: var(--shadow);
}

.food-card,
.mini-card:not(.action-card) {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 270px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.2) 45%, rgba(0,0,0,.78) 100%),
    var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.food-card-media,
.mini-card-media {
  display: none;
}
.food-card h3, .mini-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.food-card p, .mini-card p { margin: 0; font-size: .95rem; }
.food-card p,
.mini-card:not(.action-card) p {
  color: rgba(255,255,255,.82);
}

.promo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.promo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dark-tile { background: linear-gradient(135deg, #1a1714, #25201b); color: #fff; border-color: transparent; }
.dark-tile p { color: rgba(255,255,255,.72); }
.red-tile {
  background: linear-gradient(135deg, #cb261f, #f04f2d);
  color: #fff;
  border-color: transparent;
}
.red-tile .eyebrow,
.dark-tile .eyebrow {
  color: #ffc76e;
}
.red-tile p {
  color: rgba(255,255,255,.82);
}
.tile-with-image {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.08) 100%),
    var(--tile-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.tile-with-image > * {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.partners-band {
  padding: 22px 0;
  min-height: 118px;
  display: flex;
  align-items: center;
}
.partners-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  color: #a39a92;
  font-weight: 700;
  text-align: center;
  align-items: center;
}
.partners-strip span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px 8px; border-radius: 999px; border: 1px dashed rgba(0,0,0,.08);
  background: rgba(255,255,255,.45);
}

.section-dark-promo { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0)); }
.dark-promo {
  min-height: 420px;
  border-radius: 30px;
  padding: 52px 48px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(17,17,17,.96) 0%, rgba(17,17,17,.82) 42%, rgba(17,17,17,.18) 100%),
    var(--bg-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.dark-promo-copy {
  max-width: 620px;
}
.dark-promo-copy p { color: rgba(255,255,255,.78); max-width: 48ch; }
.dark-promo-copy .btn { margin-top: 14px; }
.bg-cover {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mini-card {
  border-radius: 8px; overflow: hidden; padding-bottom: 16px; background: #fff;
}
.action-card {
  display:flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: 22px;
}

.trend-grid { grid-template-columns: 0.9fr 1.1fr; }
.trend-art, .quality-image {
  border-radius: 28px; overflow: hidden; min-height: 320px;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 24px; color: var(--muted); }
.check-list li::before { content: "•"; position:absolute; left:0; color: var(--green); font-weight: 900; }

.mendez-section {
  background:
    linear-gradient(90deg, rgba(252,204,4,.13), rgba(209,20,24,.08), rgba(246,123,4,.1), rgba(252,157,4,.12)),
    #fff8ec;
}
.mendez-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.mendez-copy .eyebrow {
  color: #d11418;
}
.mendez-copy h2 {
  max-width: 680px;
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
  font-weight: 900;
  color: #d11418;
}
.mendez-copy p {
  max-width: 58ch;
  color: #6b2c12;
  line-height: 1.65;
}
.mendez-copy .btn {
  margin-top: 18px;
  background: linear-gradient(135deg, #d11418, #f67b04);
  box-shadow: 0 16px 30px rgba(209,20,24,.22);
}
.mendez-carousel {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252,204,4,.2), rgba(252,157,4,.22)),
    #fff3d5;
  border: 2px solid rgba(209,20,24,.14);
  box-shadow: var(--shadow);
}
.mendez-carousel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: linear-gradient(180deg, #fccc04, #d11418, #f67b04, #fc9d04);
}
.mendez-product {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 18px;
  padding: 34px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
}
.mendez-product.active {
  opacity: 1;
  transform: translateX(0);
}
.mendez-product img {
  max-width: 82%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(32,20,10,.16));
}
.mendez-product h3 {
  max-width: 420px;
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.12;
  color: #3a190b;
}
.mendez-controls {
  position: absolute;
  inset: auto 20px 20px auto;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.mendez-control {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background: linear-gradient(135deg, #d11418, #f67b04);
  color: #fff;
  font-size: 1.25rem;
  line-height: 0;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 20px rgba(209,20,24,.2);
}

.coffee-ad-section {
  background:
    linear-gradient(90deg, rgba(74,48,26,.08), rgba(211,123,39,.1)),
    #f7efe2;
}
.coffee-ad-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.coffee-ad-image {
  border-radius: 28px;
  overflow: hidden;
  background: #ead9bf;
  box-shadow: var(--shadow);
}
.coffee-ad-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}
.coffee-ad-copy {
  max-width: 720px;
}
.coffee-ad-copy .eyebrow {
  color: #9b5c20;
}
.coffee-ad-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .98;
  font-weight: 900;
  color: #2a170b;
}
.coffee-ad-copy p {
  max-width: 62ch;
  color: #694628;
  line-height: 1.7;
}
.coffee-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.coffee-stats span {
  padding: 11px 14px;
  border-radius: 999px;
  background: #fff8ec;
  border: 1px solid rgba(74,48,26,.12);
  color: #4a301a;
  font-weight: 800;
  font-size: .9rem;
}

.service-band { padding-top: 22px; }
.service-strip {
  border-radius: 28px; padding: 24px; background: #232323; color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-strip article {
  padding: 16px 10px;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: 6px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 18px 34px rgba(20, 146, 79, .3),
    0 0 0 10px rgba(20, 146, 79, .12);
  margin-bottom: 22px;
}
.service-icon svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}
.service-strip h3 { margin: 0 0 10px; font-size: 1.08rem; }
.service-strip p { margin: 0; color: rgba(255,255,255,.72); }

.quality-grid {
  grid-template-columns: 1fr 1fr; border-radius: 30px; padding: 24px; background: #fff;
}
.quality-copy { padding-right: 10px; }
.quality-copy p { max-width: 54ch; margin-top: 16px; }
.quality-copy .btn { margin-top: 22px; }

.duo-banners {
  padding-left: 0;
  padding-right: 0;
}
.special-banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(18,16,14,.96) 0%, rgba(18,16,14,.78) 36%, rgba(18,16,14,.18) 100%),
    var(--bg-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.special-banner-inner {
  padding: 58px 0;
}
.special-banner h2 {
  max-width: 620px;
  margin: 12px 0 12px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .96;
  font-weight: 900;
}
.special-banner p {
  max-width: 520px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.special-banner .btn {
  margin-top: 16px;
}

.quote-box {
  border-radius: 28px; padding: 32px; text-align: center; background: transparent;
  box-shadow: none; border: 0;
}
.quote-box p {
  font-size: clamp(1.3rem, 2.2vw, 2rem); font-weight: 800; letter-spacing: -.03em;
  max-width: 900px; margin: 0 auto; color: var(--text);
}

.delivery-banner {
  min-height: 430px;
  border-radius: 30px;
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12,128,61,.96) 0%, rgba(12,128,61,.82) 42%, rgba(12,128,61,.2) 100%),
    var(--bg-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.delivery-content {
  max-width: 560px;
}
.delivery-banner p { color: rgba(255,255,255,.82); max-width: 44ch; }

.reserve-grid { grid-template-columns: 0.95fr 1.05fr; }
.reserve-copy p { max-width: 50ch; margin-top: 16px; }
.reserve-form {
  border-radius: 28px; padding: 24px; display: grid; gap: 14px; background: #fff;
}
.reserve-form label {
  display: grid; gap: 8px; font-size: .92rem; color: var(--muted);
}
.reserve-form input,
.reserve-form textarea {
  width: 100%;
  border: 1px solid rgba(28,22,18,.12);
  border-radius: 16px; padding: 14px 16px;
  font: inherit; background: #fff; color: var(--text);
}

.site-footer {
  padding: 54px 0 34px;
  background: #d37b27;
  border-top: 1px solid rgba(28,22,18,.12);
  color: #2a170b;
}
.footer-inner {
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr;
  gap: 34px;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-logo {
  width: 180px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: #fff5e9;
}
.footer-column {
  display: grid;
  gap: 10px;
  color: #fff5e9;
}
.footer-column h3 {
  margin: 0 0 8px;
  color: #2a170b;
  font-size: 1rem;
  font-weight: 900;
}
.footer-column a,
.footer-column span {
  color: #fff5e9;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.45;
}
.footer-column a:hover {
  color: #2a170b;
}

.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .hero-grid, .promo-grid, .trend-grid, .mendez-grid, .coffee-ad-grid, .quality-grid, .reserve-grid, .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .menu-grid-four, .menu-grid-eight, .promo-cards, .partners-strip, .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav,
  .header-cta { display: none; }
  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
  .mobile-menu {
    display: grid;
    gap: 12px;
    padding: 0 16px 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .28s ease, opacity .28s ease, padding-top .28s ease;
  }
  .mobile-menu.is-open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 10px;
  }
  .mobile-menu a {
    color: #2a170b;
    font-weight: 700;
  }
  .mobile-menu-cta {
    width: fit-content;
    margin-top: 4px;
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 22px, 1180px); }
  .topbar {
    display: none;
  }
  section {
    scroll-margin-top: 84px;
  }
  .section {
    padding: 44px 0;
  }
  .section-head {
    margin-bottom: 18px;
  }
  .partners-band,
  .service-band {
    padding: 44px 0;
    min-height: 0;
  }
  .duo-banners {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .quote-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .site-footer {
    padding: 44px 0 28px;
  }
  .menu-grid-four, .menu-grid-eight, .promo-cards, .partners-strip, .service-strip { grid-template-columns: 1fr; }
  .service-strip {
    text-align: center;
  }
  .service-strip article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
  }
  .service-strip p {
    max-width: 26ch;
    margin: 0 auto;
  }
  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-slider { min-height: 640px; }
  .hero-slide {
    align-items: center;
    padding-top: 0;
    background-image:
      linear-gradient(180deg, rgba(15,15,15,.96) 0%, rgba(15,15,15,.72) 42%, rgba(15,15,15,.12) 100%),
      var(--hero-bg);
    background-position: center bottom;
  }
  .hero-grid {
    min-height: 640px;
    align-items: center;
  }
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }
  .header-logo {
    width: 116px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow:
      0 14px 28px rgba(44, 29, 17, .12),
      inset 0 1px 0 rgba(255,255,255,.75);
  }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 55;
    gap: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,241,230,.98) 100%);
    border: 1px solid rgba(42, 23, 11, .08);
    box-shadow:
      0 22px 48px rgba(42, 23, 11, .16),
      0 6px 18px rgba(211, 123, 39, .12);
    backdrop-filter: blur(12px);
  }
  .mobile-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211,123,39,.42), transparent);
  }
  .mobile-menu a:not(.mobile-menu-cta) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(42,23,11,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    font-size: 1rem;
    transition: transform .18s ease, background .18s ease, color .18s ease;
  }
  .mobile-menu a:not(.mobile-menu-cta)::after {
    content: "›";
    font-size: 1.05rem;
    color: #d37b27;
  }
  .mobile-menu a:not(.mobile-menu-cta):hover,
  .mobile-menu a:not(.mobile-menu-cta):focus-visible {
    transform: translateY(-1px);
    background: #fff;
    color: #1f140c;
  }
  .mobile-menu-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    margin-bottom: 2px;
    font-size: 1rem;
    box-shadow:
      0 16px 28px rgba(20, 146, 79, .24),
      inset 0 1px 0 rgba(255,255,255,.18);
  }
  .hero-copy h1,
  .hero-copy .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    max-width: 10ch;
  }
  .section-head h2,
  .dark-promo-copy h2,
  .trend-copy h2,
  .quality-copy h2,
  .reserve-copy h2,
  .delivery-banner h2,
  .coffee-ad-copy h2,
  .special-banner h2 {
    font-size: clamp(1.6rem, 7vw, 2.35rem);
    line-height: 1.05;
  }
  .hero-copy p,
  .trend-copy p,
  .quality-copy p,
  .reserve-copy p,
  .delivery-banner p,
  .coffee-ad-copy p {
    font-size: .98rem;
  }
  .hero-actions .btn,
  .mobile-menu-cta {
    width: 100%;
    justify-content: center;
  }
  .hero-copy {
    padding-right: 12px;
    align-self: center;
  }
  .hero-copy .eyebrow,
  .section-head .eyebrow {
    font-size: .72rem;
  }
  .nav a,
  .mobile-menu a {
    font-size: .95rem;
  }
  .carousel-control {
    width: 40px;
    height: 40px;
    bottom: 18px;
    top: auto;
    translate: 0 0;
  }
  .carousel-control.prev {
    left: 16px;
  }
  .carousel-control.next {
    right: 16px;
  }
  .carousel-dots {
    bottom: 20px;
  }
  .special-banner {
    min-height: 340px;
    background-position: 64% center;
  }
  .special-banner-inner {
    padding: 34px 0;
  }
  .delivery-banner {
    min-height: 340px;
    padding: 32px 22px;
    background-position: 70% center;
  }
  .food-card,
  .mini-card,
  .promo-card,
  .mendez-copy,
  .mendez-carousel,
  .coffee-ad-copy,
  .coffee-ad-image,
  .footer-inner {
    border-radius: 22px;
  }
  .site-footer {
    padding: 40px 0 92px;
    background:
      linear-gradient(180deg, #d37b27 0%, #c86f1c 100%);
  }
  .footer-inner {
    gap: 24px;
    text-align: center;
    padding-top: 8px;
  }
  .footer-brand {
    justify-content: center;
    margin-bottom: 12px;
  }
  .footer-logo {
    width: 170px;
    margin: 0 auto;
  }
  .footer-brand-block p {
    margin: 0 auto;
    max-width: 30ch;
    color: #fff8f0;
    font-size: 1rem;
    line-height: 1.7;
  }
  .footer-column {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255, 248, 240, 0.12);
    border: 1px solid rgba(255, 248, 240, 0.18);
    box-shadow: 0 14px 30px rgba(74, 36, 8, 0.12);
    justify-items: center;
    gap: 8px;
  }
  .footer-column h3 {
    margin-bottom: 6px;
    color: #fff3df;
    font-size: 1.08rem;
    letter-spacing: -.02em;
  }
  .footer-column a,
  .footer-column span {
    text-align: center;
    color: #fffaf4;
    font-weight: 600;
  }
  .tile-with-image > * { max-width: 100%; }
  .mendez-carousel { min-height: 430px; }
  .mendez-product {
    padding: 26px 26px 78px;
  }
  .mendez-controls {
    inset: auto 16px 16px auto;
    gap: 6px;
  }
  .coffee-ad-grid {
    align-items: stretch;
  }
  .coffee-ad-image {
    height: 100%;
    min-height: 520px;
  }
  .coffee-ad-image img {
    height: 100%;
    min-height: 520px;
  }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .section,
  .partners-band,
  .service-band,
  .duo-banners,
  .quote-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .section-head {
    margin-bottom: 16px;
  }
  .hero-slider {
    min-height: 580px;
  }
  .hero-slide {
    background-position: 62% bottom;
  }
  .hero-grid {
    min-height: 580px;
  }
  .hero-copy h1,
  .hero-copy .hero-title {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    letter-spacing: -.04em;
  }
  .section-head h2,
  .dark-promo-copy h2,
  .trend-copy h2,
  .quality-copy h2,
  .reserve-copy h2,
  .delivery-banner h2,
  .coffee-ad-copy h2,
  .special-banner h2 {
    font-size: clamp(1.45rem, 6.8vw, 2rem);
  }
  .hero-copy p,
  .trend-copy p,
  .quality-copy p,
  .reserve-copy p,
  .delivery-banner p,
  .coffee-ad-copy p,
  .special-banner p {
    font-size: .94rem;
  }
  .mobile-menu {
    gap: 10px;
  }
  .mobile-menu {
    left: 10px;
    right: 10px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 20px;
  }
  .mobile-menu a:not(.mobile-menu-cta) {
    min-height: 48px;
    padding: 0 14px;
    font-size: .98rem;
    border-radius: 14px;
  }
  .mobile-menu-cta {
    min-height: 50px;
  }
  .mendez-product {
    padding: 22px 22px 74px;
  }
  .mendez-product h3 {
    font-size: 1.08rem;
  }
  .mendez-controls {
    inset: auto 14px 14px auto;
  }
  .site-footer {
    padding: 34px 0 90px;
  }
  .footer-inner {
    gap: 22px;
  }
  .footer-brand-block {
    padding: 0 8px 4px;
  }
  .footer-logo {
    width: 154px;
  }
  .footer-brand-block p,
  .footer-column a,
  .footer-column span {
    font-size: .95rem;
    line-height: 1.55;
  }
  .footer-column {
    padding: 16px 14px;
    border-radius: 18px;
  }
  .footer-column h3 {
    font-size: 1rem;
  }
  .special-banner,
  .delivery-banner {
    min-height: 300px;
  }
  .coffee-ad-image {
    min-height: 460px;
  }
  .coffee-ad-image img {
    height: 100%;
    min-height: 460px;
  }
}
