:root {
  --brand: #ab0b0b;
  --text: #2d2d2d;
  --text-secondary: rgba(45, 45, 45, 0.72);
  --muted: #f6f6f6;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

.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;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 75px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
}

.nav__toggle {
  display: none;
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__list a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav__list a:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  color: var(--white);
  margin-top: 76px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 120px;
}

.logo-tile {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 14px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.logo-tile__image {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: inherit;
}

h1 {
  font-size: clamp(32px, 5vw, 46px);
}

h2 {
  font-size: clamp(26px, 3.6vw, 36px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--brand);
  border: 2px solid var(--brand);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.section {
  padding: 90px 0;
}

.section--muted {
  background: var(--muted);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.section__grid--reversed {
  direction: rtl;
}

.section__grid--reversed > * {
  direction: ltr;
}

.section__text p {
  max-width: 640px;
}

.section__media img {
  width: 85%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(171, 11, 11, 0.04), rgba(171, 11, 11, 0.08));
  border: 1px solid rgba(171, 11, 11, 0.3);
  box-shadow: 0 12px 32px rgba(171, 11, 11, 0.12);
  margin-bottom: 14px;
  padding: 10px;
}

.benefit__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  justify-content: center;
}

.categories span {
  background: rgba(171, 11, 11, 0.08);
  color: var(--brand);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 16px;
}

.menu-gallery {
  position: relative;
}

.menu-gallery__frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: radial-gradient(circle at 20% 20%, rgba(171, 11, 11, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(171, 11, 11, 0.08), transparent 40%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.05), rgba(171, 11, 11, 0.04));
  border: 1px solid rgba(171, 11, 11, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  padding: 22px 26px;
  backdrop-filter: blur(6px);
}

.menu-gallery__frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(171, 11, 11, 0.08);
  z-index: 1;
}

.menu-gallery__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(171, 11, 11, 0.14);
  position: relative;
}

.menu-gallery__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-card {
  position: relative;
  min-width: 100%;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 78%);
  pointer-events: none;
  z-index: 1;
}

.menu-card img {
  width: 100%;
  height: clamp(440px, 50vw, 540px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  object-position: center;
}

.menu-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.8) 100%);
  color: #f9f9f9;
  z-index: 2;
  backdrop-filter: blur(1px);
}

.menu-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.menu-card h3 {
  margin-bottom: 8px;
}

.menu-card p {
  margin: 0;
}

.menu-gallery__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  border: 1px solid rgba(171, 11, 11, 0.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 3;
  backdrop-filter: blur(6px);
}

.menu-gallery__control:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.menu-gallery__control:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.menu-gallery__control--prev {
  left: 18px;
}

.menu-gallery__control--next {
  right: 18px;
}

.menu-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 2px 12px 0;
}

.menu-gallery__dot {
  width: 12px;
  height: 2px;
  border-radius: 18%;
  border: 1px solid rgba(171, 11, 11, 0.4);
  background: rgba(171, 11, 11, 0.1);
  transition: background var(--transition), transform var(--transition);
}

.menu-gallery__dot[aria-selected='true'] {
  background: var(--brand);
  transform: scale(1.08);
}

.menu-gallery__cta {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.menu-gallery__cta .btn {
  box-shadow: 0 12px 30px rgba(171, 11, 11, 0.35);
  padding-inline: 18px;
  line-height: 1.2;
}

.menu-card.is-active img {
  filter: saturate(1.1) brightness(1.02);
}

.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.location {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.location:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.link {
  color: var(--brand);
  font-weight: 700;
}

.list {
  padding-left: 18px;
  margin: 12px 0 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.insta-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.insta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.1);
}

.insta-card__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insta-card__media {
  position: relative;
  padding-top: 70%;
  overflow: hidden;
}

.insta-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-card__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.insta-card__body p {
  margin: 0;
  color: var(--text-secondary);
}

.insta-card__cta {
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insta-card--notice {
  background: rgba(171, 11, 11, 0.04);
  border: 1px dashed rgba(171, 11, 11, 0.4);
  box-shadow: none;
}

.insta-grid--static .insta-card {
  min-height: auto;
}
.delivery__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.delivery__logo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(171, 11, 11, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.delivery__logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.delivery__logo-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.delivery__logo-label {
  font-weight: 700;
}

.footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.86);
  padding: 48px 0;
  margin-top: 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.72);
}

.footer__links h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.socials__link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.socials__link:hover {
  color: #0f0f0f;
  background: #f1d59f;
  border-color: #f1d59f;
  transform: translateY(-2px);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer__copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.brand--footer .brand__logo {
  background: transparent;
  padding: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: absolute;
    top: 70px;
    right: 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    display: none;
  }

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

  .nav__list a {
    width: 100%;
  }

  .hero__content {
    padding: 100px 0 120px;
  }

  .menu-card img {
    height: clamp(360px, 68vw, 420px);
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 600px) {
  .header-inner {
    padding: 12px 0;
  }

  .hero {
    min-height: 82vh;
  }

  .card img {
    height: 180px;
  }

  .menu-gallery__frame {
    padding: 12px;
  }

  .menu-card img {
    height: clamp(260px, 88vw, 320px);
    aspect-ratio: 4 / 3;
  }

  .menu-gallery__cta {
    top: 12px;
    right: 12px;
  }

  .menu-gallery__control {
    display: none;
  }
}


@media (max-width: 768px) {
    .section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.benefit__icon {
    margin-inline: auto;
}
.benefit {
    text-align: center;
}
  .location {
    text-align: center;
}
  .hero__content {
    text-align: center;
}
  .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 16px;
    align-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
}
  .delivery__logos {
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
}
 #coffee {
    padding-top: 10px !important;
}
}
