/* =========================================================
   Albalad Halal Market — Design System
   Modern Luxury + Halal + Middle Eastern Heritage + Fresh
   ========================================================= */

:root {
  --black: #0c0c0c;
  --charcoal: #161616;
  --charcoal-soft: #1e1e1e;
  --gold: #c4a35a;
  --gold-light: #dbbf7a;
  --gold-deep: #9a7b3c;
  --green: #3d6b4f;
  --green-bright: #4f8a63;
  --green-soft: #e8f0eb;
  --cream: #f6f3ee;
  --cream-deep: #ebe6dc;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --text-on-dark: #f3efe7;
  --text-muted-dark: #b7b0a4;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --container: 1180px;
  --header-h: 78px;
  --promo-h: 36px;
  --radius: 4px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--promo-h) + var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.section-eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.section-eyebrow--gold {
  color: var(--gold-light);
}

.section-eyebrow--green {
  color: var(--green);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-lead--light {
  color: var(--text-muted-dark);
}

.section-header {
  margin-bottom: 3rem;
  max-width: 42rem;
}

.section-header--light {
  color: var(--white);
}

.body-lg {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.body-lg--muted {
  color: var(--text-muted-dark);
}

.arabic-phrase {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold-deep);
  line-height: 1.4;
}

.arabic-meaning {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--gold-deep);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.text-link:hover {
  gap: 0.75rem;
  color: var(--black);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.28);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #e6cb8a, var(--gold-light));
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--black);
}

.btn--outline-dark:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--charcoal);
}

.btn--sm {
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* ---------- Promo Bar ---------- */

.promo-bar {
  position: relative;
  z-index: 60;
  height: var(--promo-h);
  overflow: hidden;
  background: var(--black);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-bar__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  height: 100%;
  padding-inline: 1rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}

.promo-bar__dot {
  color: var(--gold);
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-top {
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.55), transparent);
}

.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.header__logo img {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.header__nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 1.65rem;
}

.nav-list a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--gold-light);
}

.nav-list a:hover::after,
.nav-list a.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.icon-btn:hover {
  background: rgba(196, 163, 90, 0.2);
  color: var(--gold-light);
}

.header__cta {
  display: none;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.search-panel {
  position: absolute;
  inset: 100% 0 auto;
  padding: 1rem 0 1.25rem;
  background: rgba(12, 12, 12, 0.98);
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.search-panel__inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.search-panel input {
  flex: 1;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  outline: none;
}

.search-panel input:focus {
  border-color: var(--gold);
}

.search-close {
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-weight: 500;
}

.search-results {
  padding-top: 0.75rem;
}

.search-results a {
  display: block;
  padding: 0.65rem 0;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.search-results a:hover {
  color: var(--gold-light);
}

/* ---------- Mobile Nav ---------- */

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: block;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(88vw, 360px);
  height: 100%;
  padding: 1.25rem;
  background: var(--charcoal);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav__list a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-family: var(--font-display);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__list a:hover {
  color: var(--gold-light);
}

.mobile-nav__footer {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 5rem;
  color: var(--white);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 48%, rgba(8, 8, 8, 0.35) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.75) 0%, transparent 45%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, var(--gold) 0.8px, transparent 1px),
    radial-gradient(circle at 80% 60%, var(--gold) 0.8px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, black 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  padding-bottom: 1rem;
}

.hero__logo {
  width: clamp(220px, 42vw, 340px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.trust-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(79, 138, 99, 0.25);
}

.hero__title {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--gold-light);
}

.hero__text {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: rgba(243, 239, 231, 0.82);
  font-size: 1.05rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  60% { opacity: 0.2; transform: translate(-50%, 14px); }
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

/* Intro */
.intro {
  background: var(--cream);
}

.intro__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.intro__media {
  position: relative;
}

.arch-frame {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 12px 12px / 18% 18% 12px 12px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}

.arch-frame:hover img {
  transform: scale(1.05);
}

.intro__accent {
  position: absolute;
  inset: 8% -6% -6% 8%;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 12px 12px / 18% 18% 12px 12px;
  z-index: -1;
  opacity: 0.55;
}

/* Stats */
.stats {
  padding: 0;
  background: var(--black);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat__value {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat__label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted-dark);
}

/* Halal */
.halal {
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 163, 90, 0.12), transparent 40%),
    var(--charcoal);
  color: var(--white);
}

.halal__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.halal__list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.halal__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 500;
}

.halal__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79, 138, 99, 0.2);
  color: var(--green-bright);
  flex-shrink: 0;
}

.halal__icon svg {
  width: 14px;
  height: 14px;
}

.halal__visual {
  position: relative;
}

.halal__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.halal__seal {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--black) 55%, var(--charcoal));
  border: 2px solid var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.halal__seal-ar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.halal__seal-en {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-bright);
}

.halal__seal-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* Departments */
.departments {
  background: var(--cream);
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dept-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--white);
  isolation: isolate;
}

.dept-card__media {
  position: absolute;
  inset: 0;
}

.dept-card__media img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.dept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.dept-card:hover .dept-card__media img {
  transform: scale(1.08);
}

.dept-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.35rem;
}

.dept-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.dept-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.dept-card__arrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  opacity: 0.85;
  transition: opacity 0.25s, letter-spacing 0.25s;
}

.dept-card:hover .dept-card__arrow {
  opacity: 1;
  letter-spacing: 0.1em;
}

.dept-card--featured {
  border: 1px solid rgba(196, 163, 90, 0.45);
}

.dept-card--wide {
  grid-column: span 2;
  min-height: 220px;
}

/* Meat */
.meat {
  background:
    linear-gradient(160deg, #101010 0%, #1a1412 50%, #0c0c0c 100%);
  color: var(--white);
}

.meat__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.meat__editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.85rem;
  align-items: end;
}

.meat__img-main,
.meat__img-side {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.meat__img-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.meat__img-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 2rem;
}

.meat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 2rem;
}

.meat__tags li {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* International */
.international {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.international__bg {
  position: absolute;
  inset: 0;
}

.international__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.9);
}

.international__content {
  position: relative;
  z-index: 1;
}

.flavor-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.flavor-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 240px;
}

.flavor-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.flavor-item:hover img {
  transform: scale(1.06);
}

.flavor-item__label {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.flavor-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.flavor-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.flavor-chips li {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

/* About */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__promises {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 1.5rem 0 2rem;
}

.about__promises li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about__promises li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--cream-deep);
}

.founder__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.founder__name {
  margin: 0;
  font-weight: 600;
}

.founder__role {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about__badge span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

/* Why */
.why {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold-deep);
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Freshness */
.freshness {
  background: var(--white);
}

.fresh-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.fresh-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  min-height: 220px;
}

.fresh-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.fresh-tile:hover img {
  transform: scale(1.05);
}

.fresh-tile figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.8rem;
  background: rgba(12, 12, 12, 0.72);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 2px solid var(--green-bright);
}

.fresh-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
}

/* Deals */
.deals {
  background: var(--cream);
}

.deals-placeholder {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
}

.deals-placeholder__visual {
  min-height: 240px;
}

.deals-placeholder__visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.deals-placeholder__content {
  padding: 2rem 1.5rem;
}

.deals-placeholder__content h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.deals-placeholder__content p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.deals-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.deals-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.deal-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.deal-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.deal-card__media img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.deal-card:hover .deal-card__media img {
  transform: scale(1.05);
}

.deal-card__body {
  padding: 1.25rem;
}

.deal-card__badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deal-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.deal-card__price {
  margin: 0 0 1rem;
  font-weight: 600;
}

.deal-card__price ins {
  text-decoration: none;
  color: var(--green);
  font-size: 1.15rem;
  margin-right: 0.45rem;
}

.deal-card__price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

/* Experience */
.experience {
  background: var(--cream-deep);
}

.experience__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.experience__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.experience__list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--text-muted);
}

.experience__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--gold);
  transform: rotate(45deg);
}

.experience__gallery {
  display: grid;
  gap: 1rem;
}

.experience__img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.experience__img--main {
  aspect-ratio: 4 / 3;
}

.experience__img--sub {
  aspect-ratio: 16 / 9;
}

/* Payments */
.payments {
  background: var(--white);
}

.pay-grid {
  display: grid;
  gap: 1.5rem;
}

.pay-group {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pay-group h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.pay-list {
  display: grid;
  gap: 0.9rem;
}

.pay-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 500;
}

.pay-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  border: 1px solid rgba(196, 163, 90, 0.35);
  flex-shrink: 0;
}

.pay-icon svg {
  width: 22px;
  height: 22px;
}

/* Visit */
.visit {
  background:
    radial-gradient(circle at 10% 20%, rgba(196, 163, 90, 0.12), transparent 35%),
    var(--black);
  color: var(--white);
}

.visit__grid {
  display: grid;
  gap: 2.5rem;
}

.visit__details {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}

.visit__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.visit__item a,
.visit__item p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}

.visit__item a:hover {
  color: var(--gold-light);
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit__map {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 163, 90, 0.25);
  min-height: 340px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  gap: 2.5rem;
}

.contact__meta {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__meta li {
  display: grid;
  gap: 0.2rem;
}

.contact__meta strong {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact__meta a:hover {
  color: var(--green);
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-status.is-success {
  background: var(--green-soft);
  color: var(--green);
}

.form-status.is-error {
  background: #f8e8e8;
  color: #8a2f2f;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  width: 180px;
  margin-bottom: 1rem;
}

.footer__tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.footer__contact {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__col h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__col a {
  display: block;
  padding: 0.3rem 0;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.footer__legal-links a {
  color: var(--text-muted-dark);
  transition: color 0.25s;
}

.footer__legal-links a:hover {
  color: var(--gold-light);
}

/* ---------- Legal pages ---------- */

.legal-page .site-header {
  background: rgba(12, 12, 12, 0.96);
}

.legal-page .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.legal {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
}

.legal__wrap {
  max-width: 760px;
}

.legal__updated {
  margin: -0.35rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal__content {
  color: var(--text-muted);
}

.legal__content h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--black);
}

.legal__content p {
  margin: 0 0 1rem;
}

.legal__content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 0.45rem;
}

.legal__content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__content a:hover {
  color: var(--green);
}

.legal__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-deep);
  font-weight: 600;
}

.legal__nav a {
  color: var(--gold-deep);
}

.legal__nav a:hover {
  color: var(--black);
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .promo-bar__track,
  .hero__img,
  .hero__scroll span { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat:last-child {
    border-right: 0;
  }

  .dept-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dept-card--wide {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fresh-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .fresh-tile--lg {
    grid-row: span 2;
    min-height: 100%;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .pay-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .header__cta {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .header__nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .intro__grid,
  .halal__grid,
  .about__grid,
  .experience__grid,
  .contact__grid,
  .visit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .meat__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .flavor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deals-placeholder {
    grid-template-columns: 1.1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  }

  .dept-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dept-card--featured {
    grid-column: span 2;
    min-height: 320px;
  }

  .dept-card--wide {
    grid-column: span 2;
  }

  .fresh-mosaic {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .fresh-tile--lg {
    grid-row: 1 / span 2;
  }

  .fresh-tile--wide {
    grid-column: 2 / span 2;
  }

  .visit__map {
    min-height: 460px;
  }

  .visit__map iframe {
    min-height: 460px;
  }
}

@media (min-width: 1100px) {
  .hero {
    align-items: center;
    padding-top: 8rem;
  }

  .hero__content {
    max-width: 44rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero {
    min-height: 92svh;
    padding: 6.5rem 0 4rem;
  }

  .halal__seal {
    width: 96px;
    height: 96px;
    top: -0.5rem;
    left: 0.5rem;
  }

  .about__promises {
    grid-template-columns: 1fr;
  }
}
