
/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --bg: #f7f2e8;
  --paper: #fffaf2;
  --paper-alt: #f3ede3;
  --text: #0f3040;
  --muted: #5b6b73;
  --navy: #003f53;
  --navy-2: #063445;
  --gold: #d4a63a;
  --gold-light: #ebc56e;
  --cream: #efe6d6;
  --green: #557a3f;
  --green-soft: rgba(85,122,63,.16);
  --gold-soft: rgba(212,166,58,.18);
  --line: rgba(0,63,83,.12);
  --shadow: 0 14px 36px rgba(0,63,83,.12);
  --shadow-lg: 0 24px 60px rgba(0,63,83,.18);
  --radius: 24px;
  --radius-sm: 16px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f1 0%, #f4eee4 100%);
  line-height: 1.6;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,250,242,.9);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}

/* Brand */
.brand { display: flex; gap: .65rem; align-items: center; min-width: 0; }
.site-logo {
  width: 42px; height: 42px;
  object-fit: cover; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,63,83,.16);
  border: 2px solid var(--cream);
  background: var(--navy);
}
.brand-mark {
  display: none; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-light); font-size: .9rem;
  border: 2px solid var(--cream); flex-shrink: 0;
}
.brand strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--navy); white-space: nowrap;
}
.brand-sub, .hero-persian { font-family: 'Noto Naskh Arabic', serif; }
.brand-sub {
  display: block; direction: rtl;
  color: var(--muted); font-size: .88rem;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { font-weight: 700; font-size: .9rem; color: #234554; transition: color .18s; }
.site-nav a:hover { color: var(--navy); }
.menu-toggle {
  display: none; border: none; background: none;
  font-size: 1.6rem; color: var(--navy); padding: .25rem;
  cursor: pointer; line-height: 1;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  display: grid; align-items: center;
  background:
    radial-gradient(circle at top right, rgba(212,166,58,.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,63,83,.08), transparent 30%),
    linear-gradient(135deg, #fbf9f4 0%, #f2ecdf 100%);
  /* Mobile: compact */
  min-height: 65dvh;
  padding: 3rem 0 4rem;
}
.hero-layout-single { display: grid; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .45; pointer-events: none; }
.glow-1 { width: 300px; height: 300px; right: -60px; top: 60px; background: rgba(212,166,58,.3); }
.glow-2 { width: 220px; height: 220px; left: -40px; bottom: 30px; background: rgba(0,63,83,.12); }

.hero-content { position: relative; }
.hero-logo-wrap { margin-bottom: 1.25rem; }
.hero-logo {
  width: min(130px, 34vw);
  aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0,63,83,.2);
  border: 4px solid var(--cream);
  background: var(--navy);
}

.eyebrow {
  display: inline-block; text-transform: uppercase;
  letter-spacing: .18em; font-size: .72rem;
  color: #8c6a20; margin-bottom: .85rem; font-weight: 800;
}
.eyebrow.dark { color: var(--navy); }

h2, h3 { line-height: 1.1; margin-top: 0; }
h2 { font-family: 'Playfair Display', serif; }
.hero-copy { font-size: 1rem; color: #3d5660; max-width: 54ch; }
.hero-actions { display: flex; gap: .75rem; margin-top: 1.75rem; flex-wrap: wrap; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: white;
  padding: .85rem 1.4rem;
  border-radius: 999px; font-weight: 800; font-size: .95rem;
  border: 1px solid var(--navy);
  box-shadow: var(--shadow); transition: .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--navy-2); border-color: var(--navy-2); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-accent:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ─── Salt Sprinkle ──────────────────────────────────────── */
.salt-sprinkle::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(239,230,214,.95) 0 1.4px, transparent 1.5px),
    radial-gradient(circle at 24% 46%, rgba(239,230,214,.95) 0 1.3px, transparent 1.4px),
    radial-gradient(circle at 53% 16%, rgba(239,230,214,.92) 0 1.2px, transparent 1.3px),
    radial-gradient(circle at 76% 28%, rgba(239,230,214,.92) 0 1.5px, transparent 1.6px),
    radial-gradient(circle at 84% 60%, rgba(239,230,214,.92) 0 1.3px, transparent 1.4px),
    radial-gradient(circle at 38% 78%, rgba(239,230,214,.95) 0 1.4px, transparent 1.5px),
    radial-gradient(circle at 60% 68%, rgba(239,230,214,.9) 0 1.2px, transparent 1.3px);
  opacity: .7;
}

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section.alt { background: linear-gradient(180deg, #f6f1e7 0%, #efe7dc 100%); }

.section-heading { max-width: 680px; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(1.75rem, 5vw, 2.8rem); margin-bottom: .6rem; color: var(--navy); }
.section-heading p { color: var(--muted); font-size: .97rem; }

.two-col { display: grid; gap: 2rem; }
.two-col h2 { font-size: clamp(1.75rem, 5vw, 3rem); margin-bottom: .75rem; color: var(--navy); }
.one-col-cards { display: grid; }
.single-card-center { max-width: 480px; margin: 0 auto; }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: rgba(255,250,242,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}

/* ─── Menu Grid ──────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.menu-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: transform .22s ease;
}
.menu-card:active { transform: scale(.99); }
.menu-card h3 { margin-bottom: .4rem; font-size: 1.1rem; color: var(--navy); }
.menu-card p { font-size: .93rem; color: var(--muted); }

/* Tags */
.tag, .tag-orange {
  display: inline-block; font-size: .72rem; padding: .3rem .6rem;
  border-radius: 999px; background: rgba(239,200,74,.18);
  color: #7a6520; font-weight: 800; margin-bottom: .75rem;
}
.tag-green {
  display: inline-block; font-size: .72rem; padding: .3rem .6rem;
  border-radius: 999px; background: rgba(0,150,30,.2);
  color: #2e5c1e; font-weight: 800; margin-bottom: .75rem;
}

/* ─── Icon Card ──────────────────────────────────────────── */
.icon-card { text-align: center; }
.icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  margin: 0 auto .85rem; border-radius: 14px;
  background: var(--gold-soft); color: var(--navy); font-size: 1.6rem;
}

/* ─── Visit ──────────────────────────────────────────────── */
.visit-grid { display: grid; gap: 2rem; }
.visit-grid h2 { font-size: clamp(1.5rem, 4.5vw, 2.6rem); margin-bottom: 1rem; color: var(--navy); }
.visit-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.visit-card p { margin-bottom: .85rem; font-size: .95rem; }
.contact-link {
  color: var(--navy); font-weight: 700;
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.contact-link:hover { color: #0a5068; }
.call-btn { margin-top: .5rem; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.8);
  padding: 1.2rem 0;
  /* Extra bottom padding on mobile for the sticky call bar */
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
}
.footer-wrap {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .88rem;
}
.footer-links { display: flex; gap: 1rem; }
.footer-links a:hover { color: var(--gold-light); }

/* ─── Mobile Sticky Call Bar ─────────────────────────────── */
.mobile-call-bar {
  display: none; /* hidden on desktop */
}

/* ══════════════════════════════════════════════════════════
   TABLET  ≥ 640px
══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .hero { min-height: 68dvh; padding: 4rem 0 5rem; }
  .hero-logo { width: min(160px, 28vw); }
  .hero-copy { font-size: 1.05rem; }
  .section { padding: 4.5rem 0; }
  .section-heading h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP  ≥ 900px — richer, bigger, more breathing room
══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {

  /* Header — slightly taller, larger logo */
  .nav-wrap { padding: 1rem 0; }
  .site-logo { width: 58px; height: 58px; border-width: 3px; }
  .brand { gap: .85rem; }
  .brand strong { font-size: 1.26rem; }
  .brand-sub { font-size: 1rem; color: var(--navy); }
  .site-nav { gap: 1.6rem; }
  .site-nav a { font-size: .95rem; }

  /* Hero — full cinematic height with large logo */
  .hero { min-height: 82vh; padding: 0; }
  .hero-content { padding: 7rem 0; }
  .hero-logo { width: min(220px, 18vw); border-width: 5px; }
  .hero-logo-wrap { margin-bottom: 1.5rem; }
  .glow-1 { width: 420px; height: 420px; right: -90px; top: 100px; }
  .glow-2 { width: 300px; height: 300px; left: -60px; bottom: 50px; }
  .hero-copy { font-size: 1.18rem; max-width: 58ch; }
  .hero-actions { gap: 1rem; margin-top: 2.25rem; }
  .btn { padding: 1rem 1.7rem; font-size: 1rem; }

  /* Sections */
  .section { padding: 6rem 0; }
  .section-heading { margin-bottom: 2.5rem; }
  .section-heading h2 { font-size: clamp(2.4rem, 3.5vw, 3.4rem); margin-bottom: .8rem; }
  .section-heading p { font-size: 1.05rem; }

  /* Menu — 3 column */
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .menu-card { padding: 1.6rem; }
  .menu-card:hover { transform: translateY(-4px); }
  .menu-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
  .menu-card p { font-size: .97rem; }

  /* About 2-col */
  .two-col { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
  .two-col h2 { font-size: clamp(2.2rem, 3vw, 3.2rem); }

  /* Visit */
  .visit-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 3rem; }
  .visit-grid h2 { font-size: clamp(2rem, 2.8vw, 2.8rem); }
  .visit-card { padding: 2rem; }
  .visit-card p { font-size: 1rem; }

  /* Experience card bigger */
  .card { padding: 2.2rem; }
  .single-card-center { max-width: 560px; }
  .icon { width: 64px; height: 64px; font-size: 1.9rem; border-radius: 18px; }

  /* Footer */
  .footer-wrap { font-size: .92rem; }
}

/* ══════════════════════════════════════════════════════════
   WIDE DESKTOP  ≥ 1200px — even more generous
══════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .hero { min-height: 88vh; }
  .hero-content { padding: 8rem 0; }
  .hero-logo { width: min(260px, 16vw); }
  .hero-copy { font-size: 1.22rem; }
  .section { padding: 7rem 0; }
  .menu-grid { gap: 1.6rem; }
  .menu-card { padding: 1.8rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE ONLY  ≤ 768px — compact + sticky call bar
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hamburger nav */
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,250,242,.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,63,83,.1);
    padding: 1rem 1rem 1.25rem;
    display: none; flex-direction: column; align-items: flex-start;
    gap: .1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: .6rem .4rem; font-size: 1.05rem; width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child { border-bottom: none; }

  /* Make hero actions full-width */
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn {
    width: 100%; max-width: 340px;
    padding: 1rem 1.5rem; font-size: 1rem;
  }
  /* Hide the "Call Now" hero button on mobile — sticky bar handles it */
  .hero-actions .btn-accent { display: none; }

  /* Sticky call bar at bottom */
  .mobile-call-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--navy);
    padding: .85rem 1.25rem calc(.85rem + env(safe-area-inset-bottom));
    gap: .75rem; align-items: center; justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,63,83,.22);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-call-bar .bar-text {
    color: rgba(255,255,255,.75); font-size: .82rem; line-height: 1.3;
  }
  .mobile-call-bar .bar-text strong { color: white; display: block; font-size: .95rem; }
  .mobile-call-bar .bar-btn {
    background: var(--gold); color: var(--navy);
    padding: .75rem 1.4rem; border-radius: 999px;
    font-weight: 800; font-size: .95rem; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(212,166,58,.4);
    flex-shrink: 0;
  }

  /* Push footer up so sticky bar doesn't cover it */
  .site-footer { padding-bottom: calc(1.2rem + 74px); }

  /* Compact section spacing */
  .section { padding: 3rem 0; }
  .section-heading h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Slightly tighter cards */
  .card { padding: 1.25rem; }
  .visit-card { padding: 1.2rem; }
  .menu-card { border-radius: var(--radius-sm); }

  .footer-wrap { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* ══════════════════════════════════════════════════════════
   SMALL PHONES  ≤ 400px
══════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .container { width: calc(100% - 1.5rem); }
  .brand strong { font-size: .95rem; }
  .brand-sub { font-size: .78rem; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-logo { width: min(110px, 32vw); }
  .hero-copy { font-size: .92rem; }
  .menu-card h3 { font-size: 1rem; }
}
