: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: 48px;
  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;
}

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

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

  .hero {
    min-height: 82vh;
  }

  .card img {
    height: 180px;
  }
}
