@font-face {
  font-family: "Frutiger Latin";
  src: url("../../FONTS/Frutiger.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frutiger Latin";
  src: url("../../FONTS/Frutiger_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frutiger Arabic";
  src: url("../../FONTS/Frutiger LT Arabic 45 Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frutiger Arabic";
  src: url("../../FONTS/Frutiger LT Arabic 65 Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --azka-black: #0f0b08;
  --azka-black-soft: #18110d;
  --azka-cream: #f8efe4;
  --azka-cream-soft: #e8d4bf;
  --azka-cream-deep: #dbc3a8;
  --azka-orange: #ef6b12;
  --azka-orange-dark: #bd4100;
  --azka-white: #ffffff;
  --azka-text-dark: #1c150f;
  --azka-text-soft: #5c4a3c;
  --azka-topbar-bg: #d86a1d;
  --azka-navbar-bg: #fdf3e6;
  --azka-navbar-border: rgba(28, 21, 15, 0.08);
  --azka-latin-font: "Frutiger Latin", Arial, Helvetica, sans-serif;
  --azka-arabic-font: "Frutiger Arabic", Tahoma, Arial, sans-serif;

  --azka-container: 1180px;
  --azka-header-height: 106px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--azka-white);
  font-family: var(--azka-latin-font);
  background: var(--azka-black);
}

body.azka-menu-open {
  overflow: hidden;
}

html[lang="ar"] body {
  font-family: var(--azka-arabic-font);
  font-weight: 300;
}

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

img {
  display: block;
  max-inline-size: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.azka-container {
  inline-size: min(var(--azka-container), calc(100% - 32px));
  margin-inline: auto;
}

.azka-anchor {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
}

/* Header */

.azka-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  color: var(--azka-white);
  pointer-events: none;
  transition: transform 0.26s ease;
  will-change: transform;
}

.azka-header.is-hidden {
  transform: translateY(calc(-1.2 * var(--azka-header-height)));
}

.azka-header > * {
  pointer-events: auto;
}

.azka-topbar {
  border-block-end: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--azka-topbar-bg);
  backdrop-filter: blur(14px);
}

.azka-topbar-inner {
  min-block-size: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.azka-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 249, 243, 0.96);
  transition: color 0.2s ease;
}

.azka-topbar-link:hover {
  color: rgba(28, 21, 15, 0.88);
}

.azka-topbar-number {
  direction: ltr;
  unicode-bidi: isolate;
}

.azka-topbar-address {
  margin: 0;
  color: rgba(255, 245, 235, 0.82);
}

.azka-navbar {
  border-block-end: 1px solid var(--azka-navbar-border);
  background: var(--azka-navbar-bg);
  box-shadow: 0 6px 18px rgba(28, 21, 15, 0.06);
  backdrop-filter: blur(12px);
}

.azka-navbar-inner {
  min-block-size: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.azka-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.azka-logo img {
  inline-size: 78px;
  block-size: auto;
}

.azka-nav-panel {
  display: flex;
  align-items: center;
  gap: 34px;
}

.azka-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.azka-nav-links a {
  position: relative;
  color: rgba(28, 21, 15, 0.78);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.azka-nav-links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -8px;
  inline-size: 0;
  block-size: 1px;
  background: var(--azka-orange);
  transition: inline-size 0.2s ease;
}

.azka-nav-links a:hover,
.azka-nav-links a.is-active {
  color: var(--azka-text-dark);
}

.azka-nav-links a:hover::after,
.azka-nav-links a.is-active::after {
  inline-size: 100%;
}

/* Language switcher */

.azka-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--azka-text-soft);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.azka-language-switcher span {
  inline-size: 1px;
  block-size: 14px;
  background: rgba(28, 21, 15, 0.18);
}

.azka-language-switcher a {
  position: relative;
  padding-block: 6px;
  color: var(--azka-text-soft);
  transition: color 0.2s ease;
}

.azka-language-switcher a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  block-size: 1px;
  background: transparent;
}

.azka-language-switcher a:hover,
.azka-language-switcher a.is-active {
  color: var(--azka-text-dark);
}

.azka-language-switcher a.is-active::after {
  background: var(--azka-orange);
}

/* Mobile button */

.azka-menu-button {
  display: none;
  inline-size: 44px;
  block-size: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--azka-text-dark);
  cursor: pointer;
}

.azka-menu-button span {
  display: block;
  inline-size: 25px;
  block-size: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.azka-menu-button span + span {
  margin-block-start: 7px;
}

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

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

/* Hero */

.azka-hero {
  position: relative;
  min-block-size: 100svh;
  overflow: hidden;
  background: var(--azka-black);
}

.azka-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 8, 5, 0.3) 0%,
      rgba(12, 8, 5, 0.55) 48%,
      rgba(12, 8, 5, 0.86) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(239, 107, 18, 0.12) 0%,
      rgba(15, 11, 8, 0.26) 34%,
      rgba(15, 11, 8, 0.76) 100%
    ),
    url("../images/hero/hero-food2.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.azka-hero-inner {
  position: relative;
  z-index: 1;
  min-block-size: 100svh;
  display: grid;
  place-items: center;
  padding-block-start: var(--azka-header-height);
  padding-block-end: 56px;
  text-align: center;
}

.azka-hero-content {
  inline-size: min(960px, 100%);
  display: grid;
  justify-items: center;
}

.azka-hero-logo {
  inline-size: clamp(160px, 18vw, 260px);
  block-size: auto;
  margin-block-end: 22px;
}

.azka-hero h1 {
  margin: 0;
  color: var(--azka-white);
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.azka-hero-title-small,
.azka-hero-title-main {
  display: block;
}

.azka-hero-title-small {
  font-size: 0.7em;
  margin-block-end: 0.16em;
}

.azka-hero-slogan {
  margin: 24px 0 0;
  max-inline-size: 520px;
  color: rgba(255, 245, 235, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.8;
}

.azka-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-block-start: 34px;
}

.azka-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-inline-size: 168px;
  min-block-size: 54px;
  padding-inline: 23px;
  border: 1px solid transparent;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.azka-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 28px;
  block-size: 20px;
  flex: 0 0 auto;
}

.azka-btn-icon svg {
  inline-size: 100%;
  block-size: 100%;
}

.azka-btn-label {
  display: inline-block;
}

.azka-btn:hover {
  transform: translateY(-2px);
}

.azka-btn-primary {
  background: var(--azka-orange);
  border-color: var(--azka-orange);
  color: var(--azka-white);
}

.azka-btn-primary:hover {
  background: #ff7c22;
  border-color: #ff7c22;
}

.azka-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--azka-white);
}

.azka-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.64);
}

/* RTL support */

html[dir="rtl"] .azka-nav-links a {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-hero-kicker,
html[dir="rtl"] .azka-btn,
html[dir="rtl"] .azka-language-switcher {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-hero h1 {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-hero-title-small {
  margin-block-end: 0.34em;
}
html[dir="rtl"] .azka-hero-title-main {
  margin-block-end: 1.1rem;
}

html[lang="ar"] .azka-hero h1,
html[lang="ar"] .azka-nav-links a,
html[lang="ar"] .azka-btn {
  font-family: var(--azka-arabic-font);
  font-weight: 700;
}

/* Featured menu */

.azka-featured-menu {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(248, 239, 228, 0.94);
  color: #231814;
}

.azka-featured-menu__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/sections/tatreez-section-bg-wide.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.azka-featured-menu__inner {
  width: min(1880px, calc(100%));
  margin-inline: auto;
  padding-block-start: clamp(48px, 6vw, 84px);
  padding-block-end: clamp(72px, 9vw, 120px);
}

.azka-featured-menu__heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.azka-featured-menu__eyebrow {
  margin: 0 0 12px;
  color: #9b2624;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.azka-featured-menu__heading h2 {
  margin: 0;
  color: #9b2624;
  font-size: clamp(2.45rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.azka-featured-menu__heading p {
  margin: 18px 0 0;
  color: #2b2522;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.azka-featured-menu__slider-wrap {
  position: relative;
  margin-block-start: clamp(38px, 5vw, 64px);
}

.azka-featured-menu__scroll-hint {
  position: absolute;
  inset-block-start: -3.5%;
  inset-inline-end: 170px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(122, 34, 61, 0.72);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.azka-featured-menu__arrow {
  display: inline-block;
  font-size: 1.15rem;
  transform: translateY(-1px);
  animation: azka-scroll-nudge 1.7s ease-in-out infinite;
}

.azka-featured-menu__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 365px);
  gap: clamp(18px, 2.2vw, 28px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: max(16px, calc((100vw - 1880px) / 2));
  padding-block: 14px 26px;
  padding-inline: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.azka-featured-menu__track::-webkit-scrollbar {
  display: none;
}

.azka-menu-card {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: start;
  scroll-snap-align: center;
  overflow: hidden;
  border: 1px solid rgba(122, 34, 61, 0.06);
  border-radius: 72px;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.azka-menu-card:hover {
  transform: translateY(-6px);
}

.azka-menu-card--shawarma {
  background: #f3ddd0;
}

.azka-menu-card--combo {
  background: #efc1a3;
}

.azka-menu-card--fries {
  background: #eedbbf;
}

.azka-menu-card__image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 275px;
}

.azka-menu-card__image::before {
  content: "";
  position: absolute;
  z-index: 0;
  /* width: min(68%, 210px); */
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(122, 34, 61, 0.04),
    0 18px 34px rgba(82, 44, 22, 0.08);
}

.azka-menu-card__image img {
  position: relative;
  z-index: 1;
  width: min(74%, 235px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #fffaf5;
  filter: none;
  transform: rotate(-2deg) scale(0.96);
  transition: transform 0.22s ease;
}

.azka-menu-card:hover .azka-menu-card__image img {
  transform: rotate(0deg) translateY(-4px) scale(0.98);
}

.azka-menu-card__content {
  padding: 16px 34px 40px;
  text-align: center;
}

.azka-menu-card__content h3 {
  margin: 0;
  color: #211917;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
}

.azka-menu-card__content p {
  margin: 16px 0 0;
  color: rgba(35, 24, 20, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.azka-featured-menu__track > .azka-menu-card:first-child {
  margin-inline-start: 15px;
}

.azka-featured-menu__track > .azka-menu-card:last-child {
  margin-inline-end: 15px;
}

@keyframes azka-scroll-nudge {
  0%,
  100% {
    transform: translateX(0) translateY(-1px);
  }

  50% {
    transform: translateX(6px) translateY(-1px);
  }
}

/* RTL support */

html[dir="rtl"] .azka-featured-menu__heading h2 {
  letter-spacing: 0;
  margin-block-end: 2.8rem;
  margin-block-start: 1.2rem;
}

html[dir="rtl"] .azka-featured-menu__eyebrow,
html[dir="rtl"] .azka-featured-menu__scroll-hint {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-featured-menu__arrow {
  transform: scaleX(-1) translateY(-1px);
}

html[dir="rtl"] .azka-featured-menu__arrow {
  animation-name: azka-scroll-nudge-rtl;
}

@keyframes azka-scroll-nudge-rtl {
  0%,
  100% {
    transform: scaleX(-1) translateX(0) translateY(-1px);
  }

  50% {
    transform: scaleX(-1) translateX(6px) translateY(-1px);
  }
}

/* About banner */

.azka-about-banner {
  position: relative;
  overflow: hidden;
  background: #9b2624;
  color: #fff7ef;
}

.azka-about-banner::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 107, 18, 0.75),
    transparent
  );
}

.azka-about-banner__inner {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(22px, 3.5vw, 46px);
  padding-block: clamp(42px, 5vw, 64px);
}

.azka-about-banner__image {
  --azka-about-image-radius: 34px;
  position: relative;
  min-block-size: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--azka-about-image-radius);
}

.azka-about-banner__image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--azka-about-image-radius) - 12px);
  pointer-events: none;
}

.azka-about-banner__image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.04);
}

.azka-about-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding-block: 12px;
}

.azka-about-banner__eyebrow {
  margin: 0 0 14px;
  color: #ef6b12;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.azka-about-banner__content h2 {
  margin: 0;
  max-inline-size: 680px;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.azka-about-banner__content p {
  margin: 24px 0 0;
  max-inline-size: 640px;
  color: rgba(255, 247, 239, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.85;
}

.azka-about-banner__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-block-start: 30px;
  padding-block-start: 24px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.11);
}

.azka-about-banner__details span {
  position: relative;
  color: rgba(255, 247, 239, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.azka-about-banner__details span:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: -12px;
  inset-block-start: 50%;
  inline-size: 4px;
  block-size: 4px;
  background: #ef6b12;
  transform: translateY(-50%) rotate(45deg);
}

/* RTL */

html[dir="rtl"] .azka-about-banner__eyebrow,
html[dir="rtl"] .azka-about-banner__content h2,
html[dir="rtl"] .azka-about-banner__details span {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-about-banner__content h2 {
  line-height: 1.1;
}

/* Location */

.azka-location {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(248, 239, 228, 0.94);
  color: #231814;
}

.azka-location__decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  background-image: url("../images/sections/tatreez-second.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.azka-location__decor--top {
  inset: 0;
}

.azka-location__decor--bottom {
  display: none;
}

.azka-location__inner {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(42px, 5vw, 70px);
}

.azka-location__heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.azka-location__eyebrow {
  margin: 0 0 12px;
  color: #8a2745;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.azka-location__heading h2 {
  margin: 0;
  color: #a82423;
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.azka-location__heading p {
  max-width: 580px;
  margin: 18px auto 0;
  color: rgba(35, 24, 20, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.azka-location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  margin-block-start: clamp(28px, 4vw, 44px);
}

.azka-location__map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #1a100b;
  border: 1px solid rgba(122, 34, 61, 0.12);
  box-shadow: 0 28px 80px rgba(82, 44, 22, 0.12);
}

.azka-location__map::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.azka-location__map iframe {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}

.azka-location__card {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3.4vw, 34px);
  background: #fff7eed9;
  border: 1px solid rgba(122, 34, 61, 0.12);
  box-shadow: 0 24px 70px rgba(82, 44, 22, 0.085);
}

.azka-location__card-header {
  padding-block-end: 24px;
  border-block-end: 1px solid rgba(122, 34, 61, 0.12);
}

.azka-location__small-label {
  display: inline-block;
  margin-block-end: 10px;
  color: #ef6b12;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.azka-location__card h3 {
  margin: 0;
  color: #231814;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.azka-location__info-list {
  display: grid;
  gap: 20px;
  margin-block-start: 26px;
}

.azka-location__info-item span {
  display: block;
  margin-block-end: 6px;
  color: #8a2745;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.azka-location__info-item p {
  margin: 0;
  color: rgba(35, 24, 20, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.azka-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 32px;
}

.azka-location__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 48px;
  padding-inline: 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.azka-location__button:hover {
  transform: translateY(-2px);
}

.azka-location__button--primary {
  background: #ef6b12;
  border-color: #ef6b12;
  color: #ffffff;
}

.azka-location__button--primary:hover {
  background: #ff7a1f;
  border-color: #ff7a1f;
}

.azka-location__button--secondary {
  background: transparent;
  border-color: rgba(122, 34, 61, 0.28);
  color: #7a223d;
}

.azka-location__button--secondary:hover {
  background: rgba(122, 34, 61, 0.08);
  border-color: rgba(122, 34, 61, 0.42);
}

/* RTL */

html[dir="rtl"] .azka-location__eyebrow,
html[dir="rtl"] .azka-location__small-label,
html[dir="rtl"] .azka-location__info-item span,
html[dir="rtl"] .azka-location__button {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-location__heading h2,
html[dir="rtl"] .azka-location__card h3 {
  letter-spacing: 0;
  line-height: 1.12;
}

/* Footer */

.azka-footer {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.82);
}

.azka-footer a {
  color: inherit;
  text-decoration: none;
}

.azka-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.azka-footer__top {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: clamp(26px, 4vw, 70px);
  padding-block: 46px 42px;
}

.azka-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.azka-footer__social .azka-footer__contact-item {
  justify-content: center;
}

.azka-footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: start;
}

.azka-footer__contact-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-align: start;
}

.azka-footer__contact-item p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.azka-footer__contact-item a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.azka-footer__contact-item a:hover {
  color: #ef6b12;
}

.azka-footer__contact-value {
  display: inline-block;
  text-align: start;
}

.azka-footer__contact-value--ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

.azka-footer__email {
  min-inline-size: 16ch;
}

.azka-footer__icon {
  display: inline-grid;
  place-items: center;
  inline-size: 50px;
  block-size: 50px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
}

.azka-footer__icon svg {
  inline-size: 23px;
  block-size: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.azka-footer__icon i {
  font-size: 1.08rem;
  line-height: 1;
}

.azka-footer__logo {
  display: inline-flex;
  justify-self: end;
}

.azka-footer__logo img {
  inline-size: 300px;
  block-size: auto;
  object-fit: contain;
}

.azka-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
}

.azka-footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.azka-footer__links a,
.azka-footer__copyright {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
  line-height: 1.6;
}

.azka-footer__links span {
  inline-size: 1px;
  block-size: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.azka-footer__links a {
  transition: color 0.18s ease;
}

.azka-footer__links a:hover {
  color: #ef6b12;
}

.azka-footer__copyright {
  margin: 0;
  text-align: end;
}

.azka-footer__credit {
  position: relative;
  z-index: 1;
  padding-block: 10px;
  padding-inline: 12px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  text-align: center;
}

.azka-footer__credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  line-height: 1.6;
}

.azka-footer__credit a {
  color: rgba(255, 255, 255, 0.772);
  border-block-end: 1px solid #d86a1d;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.azka-footer__credit a:hover {
    border-block-end: 1px solid var(--azka-cream-deep);
}

/* RTL */

html[dir="rtl"] .azka-footer__contact-item {
  direction: rtl;
  flex-direction: row;
  text-align: start;
}

html[dir="rtl"] .azka-footer__contact-copy {
  text-align: start;
}

html[dir="rtl"] .azka-footer__contact-value--ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

html[dir="rtl"] .azka-footer__copyright {
  text-align: start;
}

.azka-legal-page {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(248, 239, 228, 0.244),
      rgba(248, 239, 228, 0.219)
    ),
    url("../images/sections/tatreez-section-bg-wide.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #231814;
}

.azka-legal-container,
.azka-legal-card {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.azka-legal-hero {
  padding-block: calc(var(--azka-header-height) + clamp(34px, 5vw, 58px)) clamp(28px, 4vw, 48px);
  text-align: center;
}

.azka-legal-hero h1 {
  margin: 0;
  color: #9b2624;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.azka-legal-hero p:last-child {
  margin: 16px 0 0;
  color: rgba(35, 24, 20, 0.58);
  font-size: 0.98rem;
}

.azka-legal-content {
  padding-block: 0 clamp(72px, 8vw, 120px);
}

.azka-legal-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(35, 24, 20, 0.08);
  box-shadow: 0 26px 80px rgba(82, 44, 22, 0.1);
  padding: clamp(28px, 5vw, 56px);
}

.azka-legal-card p {
  margin: 0;
  color: rgba(35, 24, 20, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.azka-legal-card p + p {
  margin-block-start: 14px;
}

.azka-legal-card h2 {
  margin: 34px 0 10px;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(35, 24, 20, 0.08);
  color: #9b2624;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.azka-legal-card h2:first-of-type {
  margin-block-start: 30px;
}

html[dir="rtl"] .azka-legal-kicker {
  letter-spacing: 0;
}

html[dir="rtl"] .azka-legal-hero h1 {
  letter-spacing: 0;
  line-height: 1.15;
}

html[dir="rtl"] .azka-legal-card {
  text-align: start;
}

.azka-page-notice {
  position: relative;
  min-block-size: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--azka-header-height) + 48px) 20px 72px;
  overflow: hidden;
  isolation: isolate;
  background: #f8efe4;
  text-align: center;
}

.azka-page-notice__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/sections/tatreez-section-bg-wide.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.azka-page-notice__inner {
  inline-size: min(100%, 720px);
}

.azka-page-notice h1 {
  margin: 0;
  color: #9b2624;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.azka-page-notice p {
  margin: 18px auto 0;
  max-inline-size: 520px;
  color: #9b2624;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.8;
}

html[dir="rtl"] .azka-page-notice h1 {
  line-height: 1.12;
}
