:root {
  color-scheme: light;
  --primary: #3b5998;
  --primary-strong: #253c70;
  --primary-soft: #e8edf8;
  --on-primary: #fff;
  --brand-green: #1c4334;
  --brand-green-2: #285b47;
  --accent: #a94708;
  --accent-soft: #fff2e6;
  --background: #f6f7f9;
  --surface: #fff;
  --surface-2: #edf1f4;
  --surface-3: #e4e9ed;
  --text: #14231f;
  --text-strong: #0a1612;
  --muted: #5f6e68;
  --border: #d8e0dc;
  --success: #237a4b;
  --danger: #b42318;
  --focus: #e5a63b;
  --shadow-sm: 0 8px 24px rgba(20, 35, 31, .07);
  --shadow-md: 0 18px 55px rgba(20, 35, 31, .12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 78px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --primary: #8ea8e4;
  --primary-strong: #b8c8f1;
  --primary-soft: #23314e;
  --on-primary: #0b1325;
  --brand-green: #8bb8a1;
  --brand-green-2: #a6ceb9;
  --accent: #f2b56b;
  --accent-soft: #3b2a18;
  --background: #0d1513;
  --surface: #141f1c;
  --surface-2: #192723;
  --surface-3: #22332e;
  --text: #f1f5f3;
  --text-strong: #fff;
  --muted: #aab8b3;
  --border: #2c3c37;
  --success: #81c89f;
  --danger: #ff9d96;
  --focus: #f2b56b;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .2);
  --shadow-md: 0 18px 55px rgba(0, 0, 0, .32);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Noto Sans Arabic", Vazirmatn, IRANSans, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  transition: background-color .25s ease, color .25s ease;
}
body.drawer-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--text-strong); line-height: 1.35; }
h1, h2 { font-family: "Noto Naskh Arabic", "Noto Sans Arabic", Tahoma, sans-serif; }
p { color: var(--muted); }
::selection { background: var(--primary); color: var(--on-primary); }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: 84px; }
.section--tight { padding-block: 42px 72px; }
.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; }
.skip-link { position: fixed; top: 12px; right: 12px; z-index: 2000; padding: 10px 16px; transform: translateY(-160%); background: var(--text-strong); color: var(--surface); border-radius: var(--radius-sm); }
.skip-link:focus { transform: translateY(0); }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in srgb, var(--primary) 25%, transparent); }
.button:active { transform: translateY(0) scale(.98); }
.button--small { min-height: 42px; padding-inline: 16px; font-size: 14px; }
.button--secondary { background: var(--brand-green); border-color: var(--brand-green); color: #fff; }
.button--outline { background: transparent; color: var(--primary-strong); }
.button--outline:hover { background: var(--primary-soft); }
.button--light { background: #fff; border-color: #fff; color: #163d2f; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--primary-strong); font-weight: 700; }
.text-link .icon { transition: transform .2s var(--ease); }
.text-link:hover .icon { transform: translateX(-4px); }
.text-link--light { color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.eyebrow--light { color: rgba(255, 255, 255, .8); }
:where(span, a).tag { display: inline-flex; align-items: center; width: max-content; padding: 4px 10px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-strong); font-size: 12px; font-weight: 700; }
:where(span, a).tag--light { background: rgba(255, 255, 255, .18); color: #fff; backdrop-filter: blur(8px); }
.ad-label { display: inline-flex; align-items: center; width: max-content; padding: 2px 8px; border: 1px solid currentColor; border-radius: 5px; font-size: 10px; font-weight: 600; letter-spacing: .04em; opacity: .72; }

.top-ad { background: #253c70; color: #fff; }
.top-ad__inner { min-height: 64px; display: flex; align-items: center; gap: 20px; }
.top-ad__copy { display: flex; align-items: baseline; gap: 14px; flex: 1; min-width: 0; }
.top-ad__copy strong { font-size: 14px; }
.top-ad__copy span { color: rgba(255, 255, 255, .72); font-size: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--surface) 92%, transparent); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 52px; height: 54px; object-fit: contain; }
.brand__words { display: flex; flex-direction: column; line-height: 1.2; }
.brand__words strong { color: var(--brand-green); font-family: "Noto Naskh Arabic", serif; font-size: 24px; }
.brand__words small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.desktop-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; padding-inline: 13px; color: var(--muted); font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 13px; bottom: 5px; width: 0; height: 2px; background: var(--primary); transition: width .2s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--primary-strong); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { width: calc(100% - 26px); }
.header__actions { display: flex; align-items: center; gap: 9px; }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; transition: color .2s, background-color .2s, border-color .2s; }
.icon-button:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-soft); }
.theme-toggle { width: 66px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.theme-toggle__track { position: relative; width: 62px; height: 34px; display: flex; align-items: center; justify-content: space-between; padding-inline: 8px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-2); color: var(--muted); transition: background-color .25s, border-color .25s; }
.theme-toggle__track .icon { width: 16px; height: 16px; z-index: 1; }
.theme-toggle__thumb { position: absolute; left: 3px; top: 3px; width: 26px; height: 26px; border-radius: 50%; background: var(--surface); box-shadow: 0 3px 10px rgba(0, 0, 0, .18); transition: transform .28s var(--ease), background-color .25s; }
html[data-theme="dark"] .theme-toggle__thumb { transform: translateX(28px); }
.mobile-menu-button { display: none; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 149; background: rgba(4, 12, 9, .58); backdrop-filter: blur(3px); }
.mobile-drawer { position: fixed; z-index: 150; inset-block: 0; right: 0; width: min(88vw, 360px); display: flex; flex-direction: column; padding: 20px; background: var(--surface); box-shadow: -20px 0 60px rgba(0, 0, 0, .25); transform: translateX(105%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
.mobile-drawer.is-open { transform: translateX(0); visibility: visible; }
.mobile-drawer__head { min-height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); font-weight: 700; }
.mobile-drawer nav { display: grid; gap: 4px; padding-block: 18px; }
.mobile-drawer nav a { min-height: 52px; display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 10px; color: var(--muted); font-weight: 600; }
.mobile-drawer nav a:hover { background: var(--primary-soft); color: var(--primary-strong); }
.mobile-drawer__cta { margin-top: auto; }

.hero { position: relative; padding-top: 38px; }
.hero__shell { min-height: 590px; display: grid; grid-template-columns: 55% 45%; overflow: hidden; border-radius: var(--radius-lg); background: var(--brand-green); box-shadow: var(--shadow-md); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 66px clamp(28px, 5vw, 74px); background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .09), transparent 24%), linear-gradient(130deg, #1c4334, #102f24); }
.hero__content::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .08; background-image: repeating-radial-gradient(circle at 0 100%, transparent 0 28px, #fff 29px 30px); background-size: 170px 170px; }
.hero h1 { position: relative; z-index: 1; margin-bottom: 18px; color: #fff; font-size: clamp(47px, 5.4vw, 76px); font-weight: 700; letter-spacing: -.035em; }
.hero h1 em { color: #bcdacb; font-style: normal; }
.hero__content > p { position: relative; z-index: 1; max-width: 590px; margin-bottom: 28px; color: rgba(255, 255, 255, .78); font-size: 17px; line-height: 2; }
.hero-search { position: relative; z-index: 1; min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 7px 8px 7px 14px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 16px; background: #fff; box-shadow: 0 15px 40px rgba(0, 0, 0, .22); }
.hero-search__icon { color: #557068; }
.hero-search input { min-width: 0; height: 48px; border: 0; outline: 0; background: transparent; color: #14231f; font-size: 15px; }
.hero-search input::placeholder { color: #73827d; opacity: 1; }
.popular-searches { position: relative; z-index: 1; min-height: 44px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; color: rgba(255, 255, 255, .64); font-size: 12px; }
.popular-searches a { color: #fff; border-bottom: 1px dashed rgba(255, 255, 255, .5); }
.hero__media { position: relative; min-height: 100%; overflow: hidden; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(16, 47, 36, .75)); }
.hero__media > img { width: 100%; height: 100%; object-fit: cover; }
.hero__place-card { position: absolute; z-index: 2; right: 28px; left: 28px; bottom: 30px; min-height: 74px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 15px; background: rgba(11, 28, 22, .74); color: #fff; backdrop-filter: blur(14px); }
.hero__place-card > .icon { transform: rotate(180deg); }
.hero__pin { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .13); }
.hero__place-card span:nth-child(2) { display: flex; flex-direction: column; }
.hero__place-card small { color: rgba(255, 255, 255, .65); }
.hero__place-card strong { font-size: 17px; }
.hero__stamp { position: absolute; z-index: 2; top: 28px; left: 28px; width: 92px; height: 92px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255, 255, 255, .55); border-radius: 50%; color: #fff; background: rgba(28, 67, 52, .2); backdrop-filter: blur(8px); transform: rotate(-7deg); }
.hero__stamp .icon { width: 25px; height: 25px; }
.hero__stamp span { text-align: center; font-size: 10px; line-height: 1.45; }
.hero__stats { position: relative; z-index: 3; width: calc(100% - 54px); min-height: 94px; display: grid; grid-template-columns: repeat(3, 140px) 1fr; align-items: center; gap: 18px; margin: -28px auto 0; padding: 16px 28px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-sm); }
.hero__stats > div:not(.hero__stats-note) { display: flex; flex-direction: column; padding-left: 18px; border-left: 1px solid var(--border); }
.hero__stats strong { color: var(--brand-green); font-family: "Noto Naskh Arabic", serif; font-size: 26px; line-height: 1.2; }
.hero__stats span { color: var(--muted); font-size: 12px; }
.hero__stats-note { display: flex; align-items: center; justify-self: end; gap: 10px; max-width: 350px; }
.hero__stats-note .icon { color: var(--brand-green); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 6px; font-size: clamp(30px, 3.5vw, 44px); }
.section-heading p { max-width: 640px; margin-bottom: 0; }
.section-heading--compact h2 { margin-bottom: 0; font-size: 30px; }
.section-heading--rule { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-card { min-height: 112px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); transition: transform .22s var(--ease), border-color .2s, box-shadow .2s; }
.category-card:hover { transform: translateY(-4px); border-color: var(--brand-green); box-shadow: var(--shadow-sm); }
.category-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-2); color: var(--brand-green); }
.category-card > span:nth-child(2) { display: flex; flex-direction: column; }
.category-card strong { font-size: 15px; }
.category-card small { color: var(--muted); font-size: 11px; }
.category-card__arrow { width: 18px; height: 18px; color: var(--muted); transform: rotate(180deg); }

.native-ad { min-height: 118px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 20px; padding: 24px 28px; border: 1px solid color-mix(in srgb, var(--brand-green) 38%, var(--border)); border-radius: 18px; background: linear-gradient(100deg, var(--surface), color-mix(in srgb, var(--brand-green) 8%, var(--surface))); }
.native-ad__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-green); color: #fff; }
.native-ad__copy { display: flex; flex-direction: column; }
.native-ad__copy strong { color: var(--text-strong); font-size: 18px; }
.native-ad__copy span { color: var(--muted); font-size: 13px; }

.cities { overflow: hidden; }
.filter-tabs { display: flex; align-items: center; gap: 6px; padding: 5px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.filter-tab { min-height: 40px; padding: 7px 15px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; transition: background-color .2s, color .2s; }
.filter-tab:hover { color: var(--primary-strong); }
.filter-tab.is-active { background: var(--primary); color: var(--on-primary); }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 15px; }
.city-card { min-width: 0; overflow: hidden; border-radius: 18px; background: var(--surface-2); }
.city-card--large { grid-column: span 2; grid-row: span 2; }
.city-card--wide { grid-column: span 2; }
.city-card.is-hidden { display: none; }
.city-card a { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .3s; }
.city-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(6, 18, 13, .82)); }
.city-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; gap: 8px; padding: 24px; color: #fff; }
.city-card__content strong { max-width: 470px; color: #fff; font-size: 19px; line-height: 1.65; }
.city-card--large .city-card__content strong { font-family: "Noto Naskh Arabic", serif; font-size: 31px; }
.city-card__content > span:last-child { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .7); font-size: 11px; }
.city-card__content .icon { width: 15px; height: 15px; }
.city-card:hover img { transform: scale(1.05); filter: saturate(1.08); }

.editorial { background: var(--surface); border-block: 1px solid var(--border); }
.editorial__layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, .82fr); gap: 54px; }
.feature-story { display: grid; grid-template-columns: 52% 48%; min-height: 390px; margin-bottom: 26px; border-bottom: 1px solid var(--border); padding-bottom: 26px; }
.feature-story__media { position: relative; overflow: hidden; border-radius: 18px; }
.feature-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.feature-story__media:hover img { transform: scale(1.035); }
.feature-story__index { position: absolute; right: 16px; bottom: 8px; color: rgba(255, 255, 255, .88); font-family: Georgia, serif; font-size: 46px; }
.feature-story__content { display: flex; flex-direction: column; justify-content: center; padding-right: 34px; }
.feature-story__content h3 { margin-block: 14px; font-family: "Noto Naskh Arabic", serif; font-size: clamp(25px, 2.8vw, 37px); }
.feature-story__content h3 a:hover, .story-row h3 a:hover { color: var(--primary); }
.feature-story__content p { margin-bottom: 20px; }
.story-meta { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 11px; }
.story-list { display: grid; gap: 20px; }
.story-row { display: grid; grid-template-columns: 210px 1fr; gap: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.story-row__media { min-height: 150px; overflow: hidden; border-radius: 14px; }
.story-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.story-row__media:hover img { transform: scale(1.04); }
.story-row h3 { margin-block: 8px; font-size: 19px; }
.story-row p { margin-bottom: 8px; font-size: 13px; }
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-block { padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--background); }
.sidebar-block__head { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.sidebar-block__head h2 { font-family: inherit; font-size: 16px; }
.sidebar-block__head > span { color: var(--muted); font-size: 10px; }
.sidebar-block--ad { background: var(--surface-2); }
.uploaded-ad { display: block; overflow: hidden; border: 1px solid var(--border); background: #fff; aspect-ratio: 296 / 250; }
.uploaded-ad img { width: 100%; height: 100%; object-fit: contain; }
.ad-reserve-link { min-height: 44px; display: flex; align-items: center; justify-content: space-between; margin-top: 8px; color: var(--primary-strong); font-size: 12px; font-weight: 700; }
.ad-reserve-link .icon { width: 17px; height: 17px; }
.trending-list { list-style: none; padding: 0; margin: 0; counter-reset: item; }
.trending-list li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding-block: 12px; border-bottom: 1px solid var(--border); }
.trending-list li:last-child { border-bottom: 0; }
.trending-list li > span { color: var(--brand-green); font-family: Georgia, serif; font-size: 22px; }
.trending-list a { font-size: 13px; font-weight: 600; line-height: 1.8; }
.trending-list a:hover { color: var(--primary); }
.sidebar-block--green { min-height: 280px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; color: #fff; background: linear-gradient(145deg, #285b47, #15372a); }
.sidebar-block--green > .icon { width: 50px; height: 50px; margin-bottom: auto; opacity: .5; }
.sidebar-block--green h2 { color: #fff; font-size: 23px; }

.businesses { background: var(--background); }
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.business-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); transition: transform .25s var(--ease), box-shadow .25s; }
.business-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.business-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.business-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.business-card:hover .business-card__media img { transform: scale(1.045); }
.sponsor-badge { position: absolute; top: 14px; right: 14px; padding: 5px 10px; border-radius: 7px; background: #fff; color: #5f3308; font-size: 10px; font-weight: 700; box-shadow: var(--shadow-sm); }
.sponsor-badge::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 5px; border-radius: 50%; background: #d97706; }
.sponsor-badge--neutral { color: #183d30; }
.sponsor-badge--neutral::before { background: #237a4b; }
.business-card__body { padding: 20px; }
.business-card__type { display: flex; align-items: center; gap: 6px; color: var(--primary); font-size: 11px; font-weight: 700; }
.business-card__type .icon { width: 16px; height: 16px; }
.business-card h3 { margin-block: 10px 5px; font-size: 21px; }
.business-card p { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; font-size: 12px; }
.business-card p .icon { width: 15px; height: 15px; }
.business-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.business-card__footer > a { color: var(--primary-strong); font-size: 12px; font-weight: 700; }
.rating { display: inline-flex; align-items: center; gap: 4px; color: var(--text-strong); font-size: 12px; font-weight: 700; }
.rating .icon { width: 16px; height: 16px; fill: #e5a63b; stroke: #e5a63b; }
.rating small { color: var(--muted); font-weight: 400; }

.wide-ad { position: relative; min-height: 220px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; overflow: hidden; padding: 38px 52px; border-radius: 20px; background: #253c70; color: #fff; }
.wide-ad__pattern { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(30deg, transparent 40%, #fff 40% 42%, transparent 42%), linear-gradient(-30deg, transparent 45%, #fff 45% 47%, transparent 47%); background-size: 70px 70px; }
.wide-ad > *:not(.wide-ad__pattern) { position: relative; z-index: 1; }
.wide-ad__copy { display: flex; flex-direction: column; }
.wide-ad__copy span { color: rgba(255, 255, 255, .68); font-size: 12px; }
.wide-ad__copy strong { max-width: 650px; font-family: "Noto Naskh Arabic", serif; font-size: clamp(26px, 3.5vw, 42px); line-height: 1.5; }

.food-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.food-card { min-height: 160px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 26px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); transition: border-color .2s, transform .2s var(--ease); }
.food-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.food-card__number { color: var(--surface-3); font-family: Georgia, serif; font-size: 55px; line-height: 1; }
.food-card > div > span { color: var(--accent); font-size: 11px; font-weight: 700; }
.food-card h3 { margin-block: 4px; font-size: 23px; }
.food-card p { margin: 0; font-size: 12px; }
.food-card > .icon { width: 38px; height: 38px; color: var(--brand-green); opacity: .65; }

.newsletter { padding-top: 30px; }
.newsletter__shell { min-height: 270px; display: grid; grid-template-columns: 140px minmax(260px, 1fr) minmax(300px, .85fr); align-items: center; gap: 34px; overflow: hidden; padding: 42px 54px; border-radius: 24px; background: linear-gradient(135deg, #1c4334, #285b47); color: #fff; }
.newsletter__mark { width: 140px; height: 140px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; background: rgba(255, 255, 255, .06); }
.newsletter__mark img { width: 92px; height: 96px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.newsletter__copy h2 { margin-bottom: 9px; color: #fff; font-size: clamp(28px, 3.4vw, 42px); }
.newsletter__copy p { margin: 0; color: rgba(255, 255, 255, .7); }
.newsletter__form label { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, .76); font-size: 12px; }
.newsletter__form > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 6px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 14px; background: rgba(255, 255, 255, .1); }
.newsletter__form input { min-width: 0; height: 48px; padding-inline: 12px; border: 0; outline: 0; background: transparent; color: #fff; direction: ltr; text-align: left; }
.newsletter__form input::placeholder { color: rgba(255, 255, 255, .55); }

.site-footer { margin-top: 90px; padding-top: 64px; background: #0e251d; color: rgba(255, 255, 255, .72); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; padding-bottom: 54px; }
.site-footer .brand__words strong { color: #a9cdbb; }
.site-footer .brand__words small { color: rgba(255, 255, 255, .5); }
.footer__brand p { max-width: 420px; margin-block: 20px; color: rgba(255, 255, 255, .62); }
.site-footer .brand img { width: 64px; height: 66px; object-fit: contain; }
.archive-actions { display:flex; justify-content:center; margin-top:32px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px; transition: background-color .2s, color .2s; }
.socials a:hover { background: #fff; color: #183d30; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer__grid h2 { margin-bottom: 18px; color: #fff; font-family: inherit; font-size: 15px; }
.footer__grid > div:not(.footer__brand) a { min-height: 40px; display: flex; align-items: center; font-size: 13px; }
.footer__grid > div:not(.footer__brand) a:hover { color: #fff; }
.footer__bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .45); font-size: 11px; }

.back-to-top { position: fixed; z-index: 80; left: 22px; bottom: 22px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); color: var(--primary-strong); box-shadow: var(--shadow-sm); cursor: pointer; }
.back-to-top[hidden] { display: none; }
.toast { position: fixed; z-index: 1000; left: 50%; bottom: 24px; min-width: min(420px, calc(100% - 32px)); padding: 12px 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--text-strong); color: var(--surface); text-align: center; box-shadow: var(--shadow-md); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .22s, transform .22s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.is-js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.is-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --container: 960px; }
  .desktop-nav a { padding-inline: 8px; font-size: 13px; }
  .header__business { display: none; }
  .hero__shell { grid-template-columns: 58% 42%; }
  .hero__content { padding-inline: 42px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card:nth-child(4), .category-card:nth-child(5) { grid-column: span 1; }
  .editorial__layout { gap: 32px; }
  .newsletter__shell { grid-template-columns: 100px 1fr; }
  .newsletter__mark { width: 100px; height: 100px; }
  .newsletter__mark img { width: 75px; height: 78px; }
  .newsletter__form { grid-column: 2; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .header__inner { justify-content: space-between; }
  .hero__shell { min-height: auto; grid-template-columns: 1fr; }
  .hero__content { min-height: 570px; }
  .hero__media { min-height: 420px; }
  .hero__media::after { background: linear-gradient(180deg, rgba(16, 47, 36, .35), transparent 55%); }
  .hero__stats { grid-template-columns: repeat(3, 1fr); width: calc(100% - 30px); }
  .hero__stats-note { grid-column: 1 / -1; justify-self: stretch; max-width: none; padding-top: 12px; border-top: 1px solid var(--border); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .native-ad { grid-template-columns: auto 1fr auto; }
  .native-ad > .ad-label { position: absolute; margin: 8px; align-self: start; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card--large, .city-card--wide { grid-column: span 2; }
  .editorial__layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .sidebar-block--green { grid-column: span 2; min-height: 250px; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .business-card:last-child { grid-column: span 2; display: grid; grid-template-columns: 45% 55%; }
  .business-card:last-child .business-card__media { aspect-ratio: auto; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 62px; }
  .section--tight { padding-block: 32px 56px; }
  .top-ad__inner { min-height: 54px; gap: 10px; }
  .top-ad__copy { display: block; line-height: 1.4; }
  .top-ad__copy strong { display: block; font-size: 11px; }
  .top-ad__copy span { display: none; }
  .top-ad .text-link { font-size: 11px; white-space: nowrap; }
  .top-ad .text-link .icon { display: none; }
  .brand img { width: 43px; height: 45px; }
  .brand__words strong { font-size: 20px; }
  .brand__words small { display: none; }
  .search-trigger { display: none; }
  .theme-toggle { width: 58px; }
  .theme-toggle__track { width: 56px; }
  html[data-theme="dark"] .theme-toggle__thumb { transform: translateX(22px); }
  .hero { padding-top: 18px; }
  .hero__shell { border-radius: 20px; }
  .hero__content { min-height: 560px; padding: 45px 22px; }
  .hero h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero__content > p { font-size: 15px; line-height: 1.9; }
  .hero-search { grid-template-columns: auto 1fr; padding: 7px 12px; }
  .hero-search .button { grid-column: 1 / -1; width: 100%; }
  .hero__media { min-height: 330px; }
  .hero__place-card { right: 14px; left: 14px; bottom: 14px; }
  .hero__stamp { top: 16px; left: 16px; width: 76px; height: 76px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 6px; padding-inline: 12px; }
  .hero__stats > div:not(.hero__stats-note) { padding-left: 6px; }
  .hero__stats strong { font-size: 20px; }
  .hero__stats span { font-size: 9px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .section-heading h2 { font-size: 31px; }
  .section-heading .text-link { align-self: flex-start; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 92px; }
  .native-ad { grid-template-columns: auto 1fr; padding: 24px 18px; }
  .native-ad .button { grid-column: 1 / -1; width: 100%; }
  .native-ad__copy strong { font-size: 15px; }
  .filter-tabs { width: 100%; overflow-x: auto; }
  .filter-tab { flex: 1; white-space: nowrap; }
  .city-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .city-card--large, .city-card--wide { grid-column: auto; grid-row: auto; }
  .city-card--large .city-card__content strong { font-size: 24px; }
  .feature-story { grid-template-columns: 1fr; }
  .feature-story__media { min-height: 300px; }
  .feature-story__content { padding: 24px 0 0; }
  .story-row { grid-template-columns: 112px 1fr; gap: 14px; }
  .story-row__media { min-height: 130px; }
  .story-row p { display: none; }
  .story-row h3 { font-size: 16px; }
  .sidebar { grid-template-columns: 1fr; }
  .sidebar-block--green { grid-column: auto; }
  .business-grid { grid-template-columns: 1fr; }
  .business-card:last-child { grid-column: auto; display: block; }
  .business-card:last-child .business-card__media { aspect-ratio: 16 / 10; }
  .wide-ad { grid-template-columns: 1fr; justify-items: start; min-height: 300px; padding: 34px 26px; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card { min-height: 140px; padding: 20px; }
  .food-card__number { font-size: 42px; }
  .newsletter__shell { grid-template-columns: 1fr; padding: 34px 24px; }
  .newsletter__mark { display: none; }
  .newsletter__form { grid-column: auto; }
  .newsletter__form > div { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
  .back-to-top { left: 14px; bottom: 14px; }
}

@media (max-width: 380px) {
  .brand__words { display: none; }
  .header__actions { gap: 5px; }
  .hero h1 { font-size: 42px; }
  .hero__content { padding-inline: 17px; }
  .hero__stats { width: calc(100% - 18px); }
  .story-row { grid-template-columns: 1fr; }
  .story-row__media { min-height: 180px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div { grid-column: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .is-js .reveal { opacity: 1; transform: none; }
}
