﻿

:root {
  --brand-primary: #C8102E;
  --brand-secondary: #0F2A2E;
  --brand-accent: #D4A24C;
  --brand-cream: #FAF4E6;
  --ink: #1B1410;
  --ink-2: #4C4036;
  --muted: #8B7E72;
  --line: #E6DDC9;
  --bg: #FFFFFF;
  --bg-soft: #FAF6EE;
  --gold: #D4A24C;
  --gold-3: #E8C788;
  --gold-glow: rgba(212, 162, 76, 0.45);
  --dark: #0F2A2E;
  --dark-2: #173a3f;
  --burgundy: #8A2332;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 12px rgba(20, 14, 8, .06);
  --shadow: 0 10px 30px rgba(20, 14, 8, .10);
  --shadow-lg: 0 28px 70px rgba(20, 14, 8, .18);
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }

.section { padding: var(--space-7) 0; }
.section--sm { padding: var(--space-6) 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-5); }
.section-header .eyebrow { display: inline-block; padding: 6px 14px; background: var(--brand-cream); color: var(--brand-primary); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--ink-2); font-size: 1.05rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem; border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; }
.btn--primary { background: #A4001E; color: #fff; box-shadow: 0 10px 24px rgba(164,0,30,.30); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(200,16,46,.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--gold { background: var(--brand-accent); color: #fff; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(212,162,76,.4); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid rgba(20,14,8,.06); }
.site-header__inner { max-width: var(--container); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 56px; height: 56px; object-fit: contain; }
.brand__text strong { display: block; font-weight: 900; font-size: 1.05rem; color: var(--brand-secondary); letter-spacing: -.01em; }
.brand__text em { display: block; font-style: normal; font-size: .76rem; color: var(--brand-primary); font-weight: 600; margin-top: 2px; }
.primary-nav { flex: 1; }
.primary-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.primary-nav li { display: inline-flex; }
.nav-link { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 16px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--ink-2); transition: all .2s var(--ease); }
.nav-link:hover { color: var(--brand-primary); background: var(--brand-cream); }
.nav-link.is-active { color: var(--brand-primary); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 800; font-size: .95rem; color: var(--ink); transition: all .25s var(--ease); }
.lang-switch:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.nav-toggle { display: none; background: #fff; border: 1.5px solid var(--line); border-radius: 12px; width: 44px; height: 44px; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; margin: 3px 0; transition: all .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-overlay { position: fixed; inset: 0; background: rgba(15,17,10,.55); backdrop-filter: blur(6px); z-index: 199; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); background: linear-gradient(180deg, var(--brand-secondary) 0%, #14393f 50%, var(--brand-secondary) 100%); color: #d8c9a8; z-index: 200; transform: translateX(100%); transition: transform .45s cubic-bezier(.32,.72,.32,1.05); display: flex; flex-direction: column; overflow-y: auto; padding: 0; box-shadow: -8px 0 40px rgba(0,0,0,.45); }
[dir="ltr"] .mobile-drawer { right: auto; left: 0; transform: translateX(-100%); }
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid rgba(216,182,112,.18); }
.mobile-drawer__brand { display: flex; gap: 12px; align-items: center; color: #fff; flex: 1; min-width: 0; }
.mobile-drawer__brand img { width: 56px; height: 56px; object-fit: contain; }
.mobile-drawer__brand strong { display: block; color: #fff; font-weight: 900; font-size: 1.05rem; line-height: 1.2; }
.mobile-drawer__brand em { display: block; color: var(--gold-3); font-style: normal; font-size: .76rem; font-weight: 500; margin-top: 2px; }
.mobile-drawer__close { background: rgba(216,182,112,.10); border: 1px solid rgba(216,182,112,.25); color: var(--gold-3); width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s var(--ease); }
.mobile-drawer__close:hover { background: var(--gold); color: #fff; transform: rotate(90deg); }
.mobile-drawer__nav { padding: 18px 16px 8px; display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__nav a { display: flex; align-items: center; gap: 12px; padding: 13px 16px; color: #d8c9a8; border-radius: 12px; font-size: 1rem; font-weight: 600; transition: all .25s var(--ease); }
.mobile-drawer__nav a .dot { width: 6px; height: 6px; background: rgba(216,182,112,.40); border-radius: 50%; transition: all .25s var(--ease); flex-shrink: 0; }
.mobile-drawer__nav a:hover { background: rgba(216,182,112,.10); color: #fff; padding-inline-start: 20px; }
.mobile-drawer__nav a:hover .dot { background: var(--gold-3); box-shadow: 0 0 12px var(--gold-glow); }
.mobile-drawer__nav a.is-active { background: linear-gradient(135deg, rgba(180,137,56,.25), rgba(180,137,56,.10)); color: #fff; }
.mobile-drawer__cta { padding: 18px 22px; display: grid; gap: 10px; border-top: 1px solid rgba(216,182,112,.18); margin-top: auto; }
.mobile-drawer__cta .btn { width: 100%; padding: 14px; justify-content: center; }
.mobile-drawer__cta .btn--ghost { background: transparent; color: #E8C788; border-color: rgba(216,182,112,.5); }
.mobile-drawer__cta .btn--ghost:hover { background: rgba(216,182,112,.18); color: #fff; border-color: var(--gold-3); }
.mobile-drawer__contact { padding: 14px 22px; display: grid; gap: 10px; border-top: 1px solid rgba(216,182,112,.10); }
.mobile-drawer__contact a { display: inline-flex; gap: 10px; align-items: center; color: #d8c9a8; font-size: .92rem; padding: 8px 0; }
.mobile-drawer__contact a svg { color: var(--gold-3); }
.mobile-drawer__bottom { padding: 14px 22px 22px; border-top: 1px solid rgba(216,182,112,.10); display: flex; justify-content: center; }
.mobile-drawer__bottom .lang-switch { background: rgba(216,182,112,.10); color: var(--gold-3); border-color: rgba(216,182,112,.25); }

body.no-scroll { overflow: hidden; }

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand__text { display: none; }
  .hide-on-sm { display: none !important; }
  .site-header__inner { padding: 12px 18px; gap: 12px; justify-content: space-between; }
  .brand { gap: 8px; }
  .brand__logo { width: 44px; height: 44px; }
  .header-actions { gap: 6px; }
}
@media (min-width: 981px) {
  .mobile-drawer, .drawer-overlay { display: none; }
}

.site-footer { background: var(--brand-secondary); color: #d6cdb9; padding: 70px 0 24px; margin-top: 0; }
.site-footer h4, .site-footer h5 { color: #fff; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { color: #b7ac98; font-size: .94rem; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--brand-primary); transform: translateY(-2px); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 14px; font-size: .92rem; color: #b7ac98; }
.footer-col li strong { display: block; color: #fff; margin-bottom: 4px; }
.footer-col li span { display: block; line-height: 1.5; }
.footer-col li { min-height: 44px; }
.footer-col a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; color: #d6cdb9; transition: color .2s; }
.footer-col a:hover { color: var(--gold-3); }
.footer-bottom { padding-top: 24px; text-align: center; color: #8e836f; font-size: .86rem; }

.wa-float { position: fixed; bottom: 22px; inset-inline-start: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 16px 36px rgba(37,211,102,.4); z-index: 90; transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--ink); font-size: .92rem; }
.form-control { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 1rem; background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-control:focus { outline: none; border-color: var(--brand-primary); box-shadow: 0 0 0 4px rgba(200,16,46,.10); }
textarea.form-control { min-height: 120px; resize: vertical; }

.breadcrumb { padding: 18px 0; font-size: .9rem; color: var(--muted); }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--muted); }

.page-hero { padding: 70px 0 50px; background: linear-gradient(180deg, var(--brand-cream), #fff); text-align: center; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-2); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

.cta-band { background: var(--brand-secondary); color: #fff; padding: 70px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6cdb9; font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }

.article__body { font-size: 1.08rem; line-height: 1.85; color: var(--ink-2); }
.article__body h2 { margin-top: 1.6em; color: var(--ink); }
.article__body h3 { margin-top: 1.4em; color: var(--ink); }
.article__body p { margin-bottom: 1.2em; }
.article__body ul, .article__body ol { padding-inline-start: 1.4em; margin-bottom: 1.2em; }
.article__body li { margin-bottom: .5em; }
.article__body img { border-radius: var(--radius); margin: 1.4em auto; box-shadow: var(--shadow); }
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 28px; }
.toc h4 { margin-bottom: 12px; font-size: 1rem; color: var(--brand-primary); }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 8px; }
.toc li.h3 { padding-inline-start: 14px; font-size: .94rem; }
.toc a { color: var(--ink-2); transition: color .2s; }
.toc a:hover { color: var(--brand-primary); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 22px; }
.card__title { font-size: 1.15rem; margin-bottom: 8px; }
.card__desc { color: var(--ink-2); font-size: .94rem; margin-bottom: 14px; }

@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp    { from { opacity: 0; transform: translate3d(0, 60px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInDown  { from { opacity: 0; transform: translate3d(0,-60px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft  { from { opacity: 0; transform: translate3d(-80px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; transform: translate3d(80px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes zoomIn      { from { opacity: 0; transform: scale3d(.85,.85,.85); } to { opacity: 1; transform: none; } }
@keyframes zoomOutIn   { from { opacity: 0; transform: scale3d(1.18,1.18,1.18); } to { opacity: 1; transform: none; } }

.js [data-anim] { opacity: 0; }
.js [data-anim].in-view { opacity: 1; animation-fill-mode: both; animation-duration: 1s; animation-timing-function: var(--ease); }
.js [data-anim="up"].in-view    { animation-name: fadeInUp; }
.js [data-anim="down"].in-view  { animation-name: fadeInDown; }
.js [data-anim="left"].in-view  { animation-name: fadeInLeft; }
.js [data-anim="right"].in-view { animation-name: fadeInRight; }
.js [data-anim="start"].in-view { animation-name: fadeInLeft; }
.js [data-anim="end"].in-view   { animation-name: fadeInRight; }
[dir="rtl"].js [data-anim="start"].in-view { animation-name: fadeInRight; }
[dir="rtl"].js [data-anim="end"].in-view   { animation-name: fadeInLeft; }
.js [data-anim="zoom"].in-view     { animation-name: zoomIn; }
.js [data-anim="zoom-out"].in-view { animation-name: zoomOutIn; }
.js [data-anim="fade"].in-view     { animation-name: fadeIn; }

.js [data-anim][data-delay="100"].in-view { animation-delay: .10s; }
.js [data-anim][data-delay="200"].in-view { animation-delay: .20s; }
.js [data-anim][data-delay="300"].in-view { animation-delay: .30s; }
.js [data-anim][data-delay="400"].in-view { animation-delay: .40s; }
.js [data-anim][data-delay="500"].in-view { animation-delay: .50s; }

.js .stagger > * { opacity: 0; transform: translateY(50px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.is-revealed > *:nth-child(1) { transition-delay:  80ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(2) { transition-delay: 180ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(3) { transition-delay: 280ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(4) { transition-delay: 380ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(5) { transition-delay: 480ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(6) { transition-delay: 580ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(7) { transition-delay: 680ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(8) { transition-delay: 780ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(9) { transition-delay: 880ms; opacity: 1 !important; transform: none !important; }
.stagger.is-revealed > *:nth-child(n+10) { transition-delay: 980ms; opacity: 1 !important; transform: none !important; }

.js .section:not([data-anim]):not(.no-anim):not(.hero),
.js .cta-band:not([data-anim]),
.js .page-hero:not([data-anim]),
.js .article__body {
  opacity: 0; transform: translateY(45px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.section.in-view, .cta-band.in-view, .page-hero.in-view, .article__body.in-view {
  opacity: 1 !important; transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-anim], .js .stagger > *, .js .section, .js .cta-band, .js .page-hero, .js .article__body {
    opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important;
  }
}



body.v1 { background: #FFFBF3; }
.v1 h1, .v1 h2, .v1 h3 { font-family: 'Playfair Display', 'Tajawal', serif; letter-spacing: -.015em; }
.v1 .site-header { background: rgba(15,42,46,.92); border-bottom-color: rgba(212,162,76,.20); }
.v1 .brand__text strong { color: #fff; }
.v1 .brand__text em { color: #E8C788; }
.v1 .nav-link { color: #E1D7C0; }
.v1 .nav-link:hover { color: #fff; background: rgba(212,162,76,.18); }
.v1 .nav-link.is-active { color: #E8C788; background: rgba(212,162,76,.12); }
.v1 .lang-switch { border-color: rgba(212,162,76,.4); color: #E8C788; }
.v1 .lang-switch:hover { background: var(--brand-accent); color: #0F2A2E; border-color: var(--brand-accent); }
.v1 .nav-toggle { background: rgba(212,162,76,.10); border-color: rgba(212,162,76,.30); }
.v1 .nav-toggle span { background: #E8C788; }

.v1-section-eyebrow { display: inline-block; color: var(--brand-accent); font-family: 'Tajawal', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .14em; margin-bottom: 16px; }
.v1 .section-header h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.v1 .section-header p { color: var(--ink-2); font-size: 1.05rem; }

.v1-eyebrow { display: inline-block; padding: 8px 18px; background: rgba(212,162,76,.18); color: #E8C788; border: 1px solid rgba(212,162,76,.35); border-radius: 999px; font-weight: 600; font-size: .8rem; letter-spacing: .18em; margin-bottom: 28px; }

.v1-hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; color: #fff; padding: 80px 0 60px; }
.v1-hero__bg { position: absolute; inset: 0; z-index: 0; }
.v1-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.v1-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,42,46,.92) 0%, rgba(15,42,46,.72) 50%, rgba(15,42,46,.96) 100%); z-index: 1; }
.v1-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 20% 30%, rgba(212,162,76,.25), transparent 70%); z-index: 1; pointer-events: none; }
.v1-hero__content { position: relative; z-index: 2; max-width: 900px; }
.v1-hero__title { color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 24px; }
.v1-hero__sub { color: #E1D7C0; font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 620px; margin-bottom: 36px; }
.v1-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: #0F2A2E; }
.v1-hero__meta { display: flex; gap: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18); }
.v1-hero__meta strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #E8C788; line-height: 1; }
.v1-hero__meta span { color: #E1D7C0; font-size: .92rem; }

.v1-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 880px) { .v1-story__grid { grid-template-columns: 1fr; gap: 30px; } }
.v1-story__img { position: relative; }
.v1-story__img img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: 6px; box-shadow: 0 40px 80px rgba(15,42,46,.25); }
.v1-badge { position: absolute; top: 24px; inset-inline-end: 24px; padding: 10px 18px; background: var(--brand-accent); color: #0F2A2E; font-weight: 800; font-size: .82rem; letter-spacing: .12em; border-radius: 999px; }
.v1-story__text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 24px; line-height: 1.15; }
.v1-story__text p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-2); }
.v1-link { display: inline-block; margin-top: 14px; color: var(--brand-accent); font-weight: 700; border-bottom: 2px solid var(--brand-accent); padding-bottom: 4px; transition: gap .25s var(--ease); }

.v1-cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 880px) { .v1-cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .v1-cats__grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
.v1-cat { display: block; text-align: center; padding: 24px; background: #fff; border-radius: 16px; border: 1px solid var(--line); transition: all .3s var(--ease); }
.v1-cat:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(15,42,46,.15); border-color: var(--brand-accent); }
.v1-cat__img { aspect-ratio: 1; background: linear-gradient(135deg, #FFFBF3 0%, #F5E9D2 100%); border-radius: 12px; padding: 18px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.v1-cat__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.v1-cat:hover .v1-cat__img img { transform: scale(1.05); }
.v1-cat h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 4px; }
.v1-cat__count { color: var(--brand-accent); font-weight: 600; font-size: .88rem; }

.v1-why { background: linear-gradient(180deg, #FFFBF3 0%, #FFF 100%); }
.v1-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 880px) { .v1-why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v1-why__grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
.v1-why__item { padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: 18px; position: relative; }
.v1-why__num { display: inline-flex; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-accent), #E8C788); color: #0F2A2E; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.v1-why__item h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.v1-why__item p { color: var(--ink-2); font-size: .96rem; line-height: 1.7; }

.v1-branches { background: #FFF; }
.v1-branches__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
@media (max-width: 880px) { .v1-branches__grid { grid-template-columns: 1fr; gap: 20px; } }
.v1-branch { background: linear-gradient(180deg, #0F2A2E 0%, #173a3f 100%); border-radius: 22px; overflow: hidden; color: #fff; box-shadow: 0 30px 60px rgba(15,42,46,.2); }
.v1-branch__img { aspect-ratio: 16/10; overflow: hidden; }
.v1-branch__img img { width: 100%; height: 100%; object-fit: cover; }
.v1-branch__body { padding: 32px 30px; }
.v1-branch__since { color: var(--brand-accent); font-weight: 700; font-size: .8rem; letter-spacing: .14em; }
.v1-branch__body h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.7rem; margin: 8px 0 10px; }
.v1-branch__body p { color: #E1D7C0; margin-bottom: 8px; }
.v1-branch__hours { color: var(--brand-accent); font-size: .92rem; }
.v1-branch__cta { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.v1 .v1-branch .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.v1 .v1-branch .btn--ghost:hover { background: #fff; color: #0F2A2E; }

.v1-cta { position: relative; overflow: hidden; background:
  linear-gradient(135deg, rgba(15,42,46,.94) 0%, rgba(23,58,63,.88) 50%, rgba(15,42,46,.96) 100%),
  url('/assets/img/hero-biryani.webp') center/cover no-repeat;
  isolation: isolate;
}
.v1-cta::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(800px 400px at 20% 10%, rgba(212,162,76,.22), transparent 70%),
  radial-gradient(600px 400px at 90% 90%, rgba(200,16,46,.22), transparent 70%);
  pointer-events: none; z-index: 0;
}
.v1-cta > * { position: relative; z-index: 1; }
.v1-cta h2 { font-family: 'Playfair Display', serif; color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.35); }

.v1-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 880px) { .v1-blog__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 540px) { .v1-blog__grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
.v1-post { display: block; text-align: center; }
.v1-post__img { aspect-ratio: 1/1; overflow: visible; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; padding: 8px; }
.v1-post__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.v1-post:hover .v1-post__img img { transform: scale(1.04); }
.v1-post__meta { color: var(--brand-accent); font-size: .82rem; letter-spacing: .08em; font-weight: 700; }
.v1-post h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 8px 0 6px; }
.v1-post p { color: var(--ink-2); font-size: .94rem; }

@media (max-width: 540px) {
  .v1-hero__meta { gap: 20px; }
  .v1-hero__meta strong { font-size: 1.8rem; }
}

.v1 .page-hero {
  position: relative; min-height: 420px; padding: 110px 0 80px;
  text-align: start; overflow: hidden; color: #fff;
  background-color: #0F2A2E;
  background-image: linear-gradient(135deg, rgba(15,42,46,.88) 0%, rgba(23,58,63,.72) 50%, rgba(15,42,46,.92) 100%), var(--hero-img, url('/assets/img/hero-biryani.webp'));
  background-size: cover; background-position: center; background-repeat: no-repeat;
  isolation: isolate;
}
.v1 .page-hero::before {
  content: ""; position: absolute; top: -120px; inset-inline-end: -100px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212,162,76,.45) 0%, rgba(212,162,76,.18) 45%, transparent 75%);
  filter: blur(10px); pointer-events: none; z-index: 0;
}
.v1 .page-hero::after {
  content: ""; position: absolute; bottom: -120px; inset-inline-start: -80px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.30) 0%, transparent 70%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.v1 .page-hero > .container { position: relative; z-index: 1; max-width: 980px; }
.v1 .page-hero .breadcrumb { color: #d6cdb9; padding: 0 0 22px; }
.v1 .page-hero .breadcrumb a { color: #E8C788; transition: color .2s; }
.v1 .page-hero .breadcrumb a:hover { color: #fff; }
.v1 .page-hero .breadcrumb .sep, .v1 .page-hero .breadcrumb span:last-child { color: #d6cdb9; }
.v1 .page-hero .v1-section-eyebrow { display: inline-block; padding: 6px 16px; background: rgba(212,162,76,.18); border: 1px solid rgba(212,162,76,.40); border-radius: 999px; color: #E8C788; margin-bottom: 18px; backdrop-filter: blur(6px); }
.v1 .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 18px; line-height: 1.1;
  text-shadow: 0 6px 28px rgba(0,0,0,.30);
}
.v1 .page-hero p { color: #E1D7C0; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 720px; margin: 0; line-height: 1.7; }
.v1 .page-hero .page-hero__decor { position: absolute; top: 50%; inset-inline-end: 4%; transform: translateY(-50%); width: clamp(180px, 22vw, 320px); aspect-ratio: 1; z-index: 0; pointer-events: none; opacity: .9; }
.v1 .page-hero .page-hero__decor img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); animation: pageHeroSpin 90s linear infinite; }
@keyframes pageHeroSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (max-width: 880px) { .v1 .page-hero .page-hero__decor { display: none; } .v1 .page-hero { padding: 80px 0 60px; min-height: 320px; } }
@media (prefers-reduced-motion: reduce) { .v1 .page-hero .page-hero__decor img { animation: none; } }

@media (max-width: 540px) {
  .v1-cat { padding: 14px; }
  .v1-cat h3 { font-size: 1rem; }
  .v1-cat__count { font-size: .78rem; }
  .v1-why__item { padding: 18px 14px; }
  .v1-why__item h3 { font-size: 1rem; }
  .v1-why__item p { font-size: .86rem; }
  .v1-why__num { width: 40px; height: 40px; font-size: 1.2rem; margin-bottom: 10px; }
  .v1-post h3 { font-size: 1rem; }
  .v1-post p { font-size: .82rem; }
  .v1-post__meta { font-size: .72rem; }
  .v1-post__img { padding: 4px; }
}

.v1-cat-hero { padding-bottom: 50px; }
.v1-cat-hero__grid { display: grid; grid-template-columns: 180px 1fr; gap: 30px; align-items: center; }
@media (max-width: 540px) { .v1-cat-hero__grid { grid-template-columns: 100px 1fr; gap: 18px; } }
.v1-cat-hero__img { width: 180px; height: 180px; background: linear-gradient(135deg, #FFFBF3 0%, #F5E9D2 100%); border-radius: 50%; padding: 26px; box-shadow: 0 20px 40px rgba(15,42,46,.12); }
@media (max-width: 540px) { .v1-cat-hero__img { width: 100px; height: 100px; padding: 14px; } }
.v1-cat-hero__img img { width: 100%; height: 100%; object-fit: contain; }

.v1-dishes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 50px; }
@media (max-width: 720px) { .v1-dishes__grid { grid-template-columns: 1fr; } }
.v1-dish { padding: 18px 0; border-bottom: 1px dashed rgba(212,162,76,.4); }
.v1-dish__head { display: flex; align-items: baseline; gap: 12px; }
.v1-dish__head h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 0; flex-shrink: 0; }
.v1-dish__dots { flex: 1; border-bottom: 2px dotted rgba(212,162,76,.5); margin-bottom: 6px; min-width: 20px; }
.v1-dish__price { font-family: 'Playfair Display', serif; font-weight: 800; color: var(--brand-primary); font-size: 1.05rem; white-space: nowrap; }
.v1-dish__desc { margin: 6px 0 0; color: var(--ink-2); font-size: .92rem; line-height: 1.6; }

.v1-article__hero { padding: 50px 0 30px; }
.v1-article__hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 16px; }
.v1-article__excerpt { font-size: 1.15rem; color: var(--ink-2); margin-bottom: 22px; }
.v1-article__meta { color: var(--muted); font-size: .94rem; display: flex; gap: 12px; flex-wrap: wrap; }
.v1-article__cover { margin-bottom: 36px; }
.v1-article__cover img { width: 100%; border-radius: 14px; box-shadow: 0 30px 60px rgba(15,42,46,.18); aspect-ratio: 16/10; object-fit: cover; }
.v1-article__share { margin-top: 50px; padding: 22px; background: var(--bg-soft); border-radius: var(--radius); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.v1-article__share span { font-weight: 700; color: var(--ink); }
.v1-article__share a { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--brand-secondary); display: inline-flex; align-items: center; justify-content: center; transition: all .25s var(--ease); border: 1.5px solid var(--line); }
.v1-article__share a:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); transform: translateY(-2px); }

.v1-branch-detail__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 880px) { .v1-branch-detail__grid { grid-template-columns: 1fr; gap: 30px; } }
.v1-branch-detail__img img { width: 100%; height: 100%; max-height: 540px; object-fit: cover; border-radius: 16px; box-shadow: 0 30px 60px rgba(15,42,46,.18); }
.v1-branch-detail__info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 10px 0 14px; }
.v1-branch-detail__addr { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 22px; }
.v1-branch-detail__list { list-style: none; padding: 0; margin: 0 0 28px; }
.v1-branch-detail__list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.v1-branch-detail__list strong { color: var(--brand-primary); font-weight: 700; margin-inline-end: 8px; }

.v1-contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; }
@media (max-width: 880px) { .v1-contact__grid { grid-template-columns: 1fr; } }
.v1-contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.v1-contact__info { display: grid; gap: 18px; }
.v1-contact__card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.v1-contact__card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; color: var(--brand-secondary); }
.v1-contact__card p { margin-bottom: 10px; color: var(--ink-2); }
.v1-contact__card a { color: var(--brand-primary); font-weight: 600; }
.v1-alert { padding: 16px 20px; background: #E6F5E6; color: #1B5E20; border-radius: var(--radius); margin-bottom: 24px; font-weight: 600; }
.v1-form .form-control { border-radius: 10px; }

.v1-faq__list { display: flex; flex-direction: column; gap: 14px; }
.v1-faq__item { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.v1-faq__item[open] { border-color: var(--brand-accent); box-shadow: 0 18px 40px rgba(212,162,76,.15); }
.v1-faq__item summary { display: flex; align-items: center; gap: 18px; padding: 20px 24px; cursor: pointer; list-style: none; user-select: none; transition: background .2s ease; }
.v1-faq__item summary::-webkit-details-marker { display: none; }
.v1-faq__item summary:hover { background: var(--bg-soft); }
.v1-faq__num { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--brand-accent); font-weight: 800; min-width: 32px; }
.v1-faq__q { flex: 1; font-family: 'Playfair Display', 'Tajawal', serif; font-size: 1.08rem; font-weight: 700; color: var(--brand-secondary); line-height: 1.4; }
.v1-faq__icon { color: var(--brand-accent); transition: transform .3s var(--ease); flex-shrink: 0; }
.v1-faq__item[open] .v1-faq__icon { transform: rotate(180deg); color: var(--brand-primary); }
.v1-faq__a { padding: 0 24px 22px calc(24px + 32px + 18px); color: var(--ink-2); line-height: 1.85; font-size: 1rem; }
@media (max-width: 540px) {
  .v1-faq__item summary { padding: 14px 16px; gap: 12px; }
  .v1-faq__num { font-size: 1.1rem; min-width: 24px; }
  .v1-faq__q { font-size: .96rem; }
  .v1-faq__a { padding: 0 16px 18px 16px; font-size: .92rem; }
}

.v1-reviews { background: #fff; padding: 80px 0; }
.v1-reviews__head { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.v1-reviews__google { flex-shrink: 0; }
.v1-reviews__marquee { overflow: hidden; padding: 6px 0; direction: ltr; mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%); }
.v1-reviews__track { display: flex; gap: 22px; width: max-content; animation: v1MarqueeLeft 70s linear infinite; }
.v1-reviews__track:hover { animation-play-state: paused; }

.v1-review { width: 340px; flex-shrink: 0; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 12px 30px rgba(15,42,46,.08); display: flex; flex-direction: column; gap: 14px; direction: rtl; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.v1-review:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(15,42,46,.18); border-color: var(--brand-accent); }
.v1-review__head { display: flex; gap: 12px; align-items: center; }
.v1-review__avatar { position: relative; flex-shrink: 0; }
.v1-review__avatar > img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.v1-review__source { position: absolute; bottom: -3px; inset-inline-end: -3px; background: #fff; border-radius: 50%; padding: 2px; box-shadow: 0 2px 6px rgba(0,0,0,.15); width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; }
.v1-review__head strong { display: block; font-weight: 800; color: var(--brand-secondary); font-size: 1rem; line-height: 1.2; }
.v1-review__date { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.v1-review__stars { display: flex; gap: 2px; align-items: center; }
.v1-review__verified { margin-inline-start: 6px; }
.v1-review__text { color: var(--ink); font-size: .98rem; line-height: 1.7; margin: 0; min-height: 3.4em; }

@media (max-width: 540px) {
  .v1-review { width: 280px; padding: 18px; }
  .v1-review__text { font-size: .92rem; }
  .v1-reviews__track { gap: 14px; animation-duration: 55s; }
}

.v1-gallery { background: linear-gradient(180deg, #FFFBF3 0%, #FFF 100%); }
.v1-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.v1-gallery__item { display: block; overflow: hidden; border-radius: 16px; position: relative; box-shadow: 0 14px 30px rgba(15,42,46,.10); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.v1-gallery__item:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(15,42,46,.20); }
.v1-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.v1-gallery__item:hover img { transform: scale(1.06); }
.v1-gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,42,46,.5) 100%); opacity: 0; transition: opacity .3s var(--ease); }
.v1-gallery__item:hover::after { opacity: 1; }
.v1-gallery__item--tall { grid-row: span 2; }
.v1-gallery__item--wide { grid-column: span 2; }
@media (max-width: 880px) { .v1-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 540px) { .v1-gallery__grid { grid-auto-rows: 140px; gap: 10px; } .v1-gallery__item--wide { grid-column: span 2; } .v1-gallery__item--tall { grid-row: span 2; } }

.v1-branch-menu { padding: 60px 0 40px; }
.v1-branch-menu + .v1-branch-menu { padding-top: 0; }
.v1-branch-menu__head { text-align: center; margin-bottom: 28px; }
.v1-branch-menu__head h2 { font-family: 'Playfair Display', 'Tajawal', serif; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0; }
.v1-branch-menu__cta { text-align: center; margin-top: 20px; }

.v1-marquee { overflow: hidden; position: relative; padding: 8px 0; mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); direction: ltr; }
.v1-marquee__track { display: flex; gap: 28px; width: max-content; animation: v1MarqueeLeft 55s linear infinite; will-change: transform; direction: ltr; }
.v1-branch-menu.is-reverse .v1-marquee__track { animation-name: v1MarqueeRight; }
.v1-marquee__track:hover { animation-play-state: paused; }
@keyframes v1MarqueeLeft  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes v1MarqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .v1-marquee__track { animation: none; } }

.v1-marquee__item { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 140px; transition: transform .3s var(--ease); }
.v1-marquee__item:hover { transform: translateY(-4px); }
.v1-marquee__img { width: 130px; height: 130px; display: flex; align-items: center; justify-content: center; padding: 4px; }
.v1-marquee__img img { width: 100%; height: 100%; object-fit: contain; }
.v1-marquee__name { display: block; margin-top: 10px; color: var(--ink); font-weight: 700; font-size: .96rem; text-align: center; direction: rtl; }
[lang="en"] .v1-marquee__name { direction: ltr; }
.v1-branch-menu.is-reverse { background: linear-gradient(180deg, #FFFBF3 0%, #FFF 100%); padding-top: 50px; }

@media (max-width: 540px) {
  .v1-branch-menu { padding: 40px 0 24px; }
  .v1-marquee__item { width: 110px; }
  .v1-marquee__img { width: 100px; height: 100px; }
  .v1-marquee__name { font-size: .82rem; margin-top: 6px; }
  .v1-marquee__track { gap: 16px; animation-duration: 40s; }
}

.v1-delivery { background: linear-gradient(180deg, #FFF 0%, #FFFBF3 100%); padding: 80px 0; }
.v1-delivery__grid-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .v1-delivery__grid-wrap { grid-template-columns: 1fr; gap: 30px; } }

.v1-delivery__visual { position: relative; aspect-ratio: 1/1; max-width: 560px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: center; }
.v1-delivery__halo { position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(circle, #FFD9A8 0%, #FFB562 55%, transparent 100%); z-index: 0; }
.v1-delivery__visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(15,42,46,.25)); }

.v1-delivery__copy h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 10px 0 14px; line-height: 1.2; }
.v1-delivery__copy > p { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 26px; line-height: 1.75; }

.v1-delivery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 540px) { .v1-delivery__grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.v1-delivery__card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 10px 14px; background: #fff; border: 1.5px solid var(--line); border-radius: 14px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); overflow: hidden; min-height: 130px; justify-content: center; gap: 8px; }
.v1-delivery__card::before { content: ""; position: absolute; inset: 0; background: var(--app-color, var(--brand-accent)); opacity: 0; transition: opacity .35s var(--ease); border-radius: inherit; z-index: 0; }
.v1-delivery__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,42,46,.15); border-color: var(--app-color, var(--brand-accent)); }
.v1-delivery__card:hover::before { opacity: .08; }
.v1-delivery__card.is-featured { border-color: var(--brand-accent); box-shadow: 0 14px 30px rgba(212,162,76,.18); }
.v1-delivery__logo { width: 64px; height: 64px; border-radius: 50%; padding: 4px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: transform .35s var(--ease); }
.v1-delivery__card:hover .v1-delivery__logo { transform: scale(1.08); }
.v1-delivery__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.v1-delivery__card strong { position: relative; z-index: 1; font-family: 'Tajawal', sans-serif; font-size: .9rem; color: var(--brand-secondary); font-weight: 800; }
.v1-delivery__badge { position: absolute; top: 8px; inset-inline-end: 8px; padding: 3px 8px; background: var(--brand-accent); color: #0F2A2E; font-weight: 800; font-size: .62rem; letter-spacing: .08em; border-radius: 999px; z-index: 2; }

