/* =====================================================
   AL ATTAR PUBLIC KITCHEN  v2
   Aesthetic: editorial, refined, magazine-grade
   Palette:   #FFF9F0 cream blush · #181818 onyx ·
              #E14411 spicy tangerine · #FCF3E2 vanilla mist ·
              #113E65 deep ocean blue
   Typography: Fraunces (display, with optical sizing) +
               Bricolage Grotesque (body, distinctive sans)
   ===================================================== */

:root {
  /* Palette */
  --c-cream:    #FFF9F0;
  --c-vanilla:  #FCF3E2;
  --c-onyx:     #181818;
  --c-onyx-soft:#2b2b2b;
  --c-tang:     #E14411;
  --c-tang-deep:#b3340c;
  --c-ocean:    #113E65;
  --c-ocean-soft:#1f5587;

  /* Tints used as borders / atmospherics */
  --c-line:     #ebe2cc;
  --c-line-soft:#f4ecd6;
  --c-mute:     #6e6258;

  /* Type */
  --f-display:  "Fraunces", "Times New Roman", serif;
  --f-body:     "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-pill: 999px;
  --r-md:   12px;
  --r-lg:   24px;
  --r-xl:   40px;

  /* Shadow */
  --shadow-soft: 0 1px 2px rgba(24,24,24,.06), 0 8px 24px -10px rgba(24,24,24,.12);
  --shadow-hard: 0 20px 50px -20px rgba(17,62,101,.35);

  /* Widths */
  --w-page: 1240px;
  --w-narrow: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-onyx);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-tang-deep); text-decoration: none; transition: color .18s; }
a:hover { color: var(--c-tang); }

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-onyx);
  line-height: 1.05;
  font-variation-settings: "opsz" 100;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 5.6rem); font-variation-settings: "opsz" 144, "SOFT" 0; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .6em; font-variation-settings: "opsz" 100; }
h3 { font-size: 1.5rem; margin-bottom: .4em; }
h4 { font-size: 1.05rem; font-weight: 500; margin-bottom: .3em; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-tang);
}

p { margin-bottom: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ocean);
  margin-bottom: 1.4em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--c-tang);
  display: inline-block;
}

.serif-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
}

/* =========================================
   Utility Bar
   ========================================= */
.utility-bar {
  background: var(--c-onyx);
  color: var(--c-cream);
  font-size: 0.82rem;
  font-weight: 400;
}
.utility-bar .inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 11px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.utility-bar a { color: var(--c-cream); }
.utility-bar a:hover { color: var(--c-tang); }
.util-contacts { display: flex; gap: 28px; flex-wrap: wrap; }
.util-contacts span { display: inline-flex; align-items: center; gap: 8px; }
.util-contacts span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-tang);
  display: inline-block;
}

/* =========================================
   Header
   ========================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 240, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--c-onyx);
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 500;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-ocean);
  color: var(--c-cream);
  display: grid; place-items: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 1.35rem;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; bottom: -10px; right: -10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-tang);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 4px;
}

.nav-primary { display: flex; align-items: center; gap: 28px; }
.nav-primary > ul { display: flex; gap: 28px; list-style: none; }
.nav-primary a {
  color: var(--c-onyx);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
}
.nav-primary a::after {
  content: "";
  position: absolute; left: 0; bottom: 2px;
  height: 1.5px; width: 0;
  background: var(--c-tang);
  transition: width .22s ease;
}
.nav-primary a:hover::after { width: 100%; }

.nav-cta {
  background: var(--c-onyx);
  color: var(--c-cream) !important;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.88rem;
  transition: all .2s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--c-tang); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.6rem; color: var(--c-onyx);
  cursor: pointer;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-weight: 500; font-size: 0.95rem;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-decoration: none;
}
.btn-primary { background: var(--c-onyx); color: var(--c-cream); }
.btn-primary:hover { background: var(--c-tang); color: var(--c-cream); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ocean { background: var(--c-ocean); color: var(--c-cream); }
.btn-ocean:hover { background: var(--c-tang); color: var(--c-cream); transform: translateY(-2px); }
.btn-tang { background: var(--c-tang); color: var(--c-cream); }
.btn-tang:hover { background: var(--c-onyx); color: var(--c-cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-onyx); border-color: var(--c-onyx); }
.btn-ghost:hover { background: var(--c-onyx); color: var(--c-cream); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }
.btn-group { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================
   Sections — base
   ========================================= */
section { padding: 110px 32px; position: relative; }
section .inner { max-width: var(--w-page); margin: 0 auto; }
section.narrow .inner { max-width: var(--w-narrow); }
section.vanilla { background: var(--c-vanilla); }
section.ocean { background: var(--c-ocean); color: var(--c-cream); }
section.ocean h1, section.ocean h2, section.ocean h3, section.ocean h4 { color: var(--c-cream); }
section.ocean .eyebrow { color: var(--c-tang); }
section.ocean p { color: rgba(255,249,240,.78); }
section.onyx { background: var(--c-onyx); color: var(--c-cream); }
section.onyx h1, section.onyx h2, section.onyx h3 { color: var(--c-cream); }
section.onyx .eyebrow { color: var(--c-tang); }
section.onyx p { color: rgba(255,249,240,.78); }

.section-head { max-width: 820px; margin: 0 auto 70px; text-align: center; }
.section-head p { color: var(--c-mute); font-size: 1.1rem; margin-top: 12px; }
.section-head.left { text-align: left; margin-left: 0; }

/* =========================================
   HERO — editorial split
   ========================================= */
.hero {
  background: var(--c-cream);
  padding: 80px 32px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--c-tang) 0%, transparent 60%);
  opacity: .08;
  pointer-events: none;
}
.hero .inner {
  max-width: var(--w-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 110px;
  position: relative;
}
.hero h1 {
  margin-bottom: 0.4em;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-vanilla);
  border: 1px solid var(--c-line);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--c-ocean);
  margin-bottom: 2em;
  font-weight: 500;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-tang);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-lede {
  font-size: 1.18rem;
  color: var(--c-onyx-soft);
  max-width: 540px;
  margin: 1.6em 0 2.4em;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 3em;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 2.4em;
  border-top: 1px solid var(--c-line);
}
.hero-meta > div { padding-right: 18px; border-right: 1px solid var(--c-line); }
.hero-meta > div:last-child { border-right: none; padding-right: 0; padding-left: 18px; }
.hero-meta > div:nth-child(2) { padding-left: 18px; }
.hero-meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--c-ocean);
  line-height: 1;
  font-variation-settings: "opsz" 144;
  margin-bottom: 4px;
}
.hero-meta span { font-size: 0.82rem; color: var(--c-mute); }

/* Hero visual — collaged image placeholders */
.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-img {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-vanilla);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
}
.hero-img-1 { top: 0; right: 0; width: 76%; aspect-ratio: 4/5; }
.hero-img-2 { bottom: 40px; left: 0; width: 56%; aspect-ratio: 1/1; z-index: 2; }
.hero-img-3 { top: 50%; right: 8%; width: 32%; aspect-ratio: 1/1; transform: translateY(-50%); z-index: 3; border-radius: 50%; background: var(--c-ocean); color: var(--c-cream); display: grid; place-items: center; padding: 24px; text-align: center; }
.hero-img-3 .num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  color: var(--c-tang);
}
.hero-img-3 .lbl {
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255,249,240,.8);
}

/* Image placeholder visual */
.img-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg,
      transparent 0, transparent 18px,
      rgba(17,62,101,.04) 18px, rgba(17,62,101,.04) 19px),
    var(--c-vanilla);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--c-ocean);
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  padding: 20px;
}
.img-placeholder::before {
  content: "";
  width: 48px; height: 48px;
  border: 1.5px solid var(--c-ocean);
  border-radius: 50%;
  margin-bottom: 14px;
  position: relative;
  background: radial-gradient(circle at 35% 40%, var(--c-ocean) 18%, transparent 19%) center/100% 100%;
}
.img-placeholder span {
  opacity: .7;
  max-width: 160px;
  line-height: 1.4;
}
.img-placeholder small {
  display: block;
  font-size: 0.62rem;
  margin-top: 6px;
  font-family: var(--f-mono);
  opacity: .5;
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================
   Card systems
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-ocean);
  box-shadow: var(--shadow-soft);
}

.card-number {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-mute);
  margin-bottom: 22px;
  letter-spacing: .14em;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-vanilla);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all .25s ease;
  border: 1px solid var(--c-line);
}
.card:hover .card-icon { background: var(--c-tang); color: var(--c-cream); border-color: var(--c-tang); transform: scale(1.05); }
.card h3 { margin-bottom: .4em; font-size: 1.4rem; }
.card p { color: var(--c-mute); font-size: 0.95rem; flex: 1; line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-weight: 500; font-size: 0.85rem;
  color: var(--c-onyx);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 4px;
  width: fit-content;
}
.card-link::after { content: "→"; transition: transform .22s ease; }
.card:hover .card-link { color: var(--c-tang); border-color: var(--c-tang); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Service cards with image headers */
.card-img {
  margin: -36px -30px 26px;
  aspect-ratio: 16/10;
  background: var(--c-vanilla);
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}

/* =========================================
   Two column
   ========================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.wide-img { grid-template-columns: 1.2fr 1fr; }
.two-col.text-img { grid-template-columns: 1fr 1.1fr; }

.media-frame {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-vanilla);
  border: 1px solid var(--c-line);
  position: relative;
}
.media-frame.square { aspect-ratio: 1/1; }
.media-frame.wide  { aspect-ratio: 16/10; }

/* =========================================
   Process steps
   ========================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step { counter-increment: step; position: relative; }
.step-num {
  display: inline-block;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-size: 3.5rem;
  color: var(--c-tang);
  line-height: 1;
  margin-bottom: 24px;
}
.step-num::before {
  content: counter(step, decimal-leading-zero);
}
.step h3 { font-size: 1.3rem; margin-bottom: .4em; }
.step p { color: var(--c-mute); font-size: 0.95rem; }
.step::after {
  content: "";
  position: absolute;
  top: 30px; right: -20px;
  width: 40px; height: 1.5px;
  background: var(--c-line);
}
.step:last-child::after { display: none; }

/* =========================================
   Stat strip
   ========================================= */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-ocean);
  color: var(--c-cream);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: "";
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--c-tang);
  opacity: .15;
}
.stat-strip > div {
  position: relative;
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255,249,240,.18);
}
.stat-strip > div:last-child { border-right: none; }
.stat-strip strong {
  display: block;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--c-tang);
  line-height: 1;
  margin-bottom: .4em;
}
.stat-strip span {
  font-size: 0.85rem;
  color: rgba(255,249,240,.75);
  letter-spacing: .04em;
}

/* =========================================
   Pricing tiers
   ========================================= */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 50px 0 30px;
}
.tier {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  text-align: left;
  transition: all .25s ease;
  position: relative;
}
.tier:hover { border-color: var(--c-ocean); transform: translateY(-3px); }
.tier-vol {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.tier strong {
  display: block;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-size: 2.2rem;
  color: var(--c-ocean);
  margin: 18px 0 8px;
  line-height: 1;
}
.tier em {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--c-mute);
  display: block;
}

/* =========================================
   Iftar deals
   ========================================= */
.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.deal {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .25s ease;
}
.deal:hover { border-color: var(--c-tang); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.deal-img {
  margin: -32px -28px 24px;
  aspect-ratio: 4/3;
  background: var(--c-vanilla);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.deal-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--c-tang);
  color: var(--c-cream);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 4;
}
.deal h3 { font-size: 1.25rem; margin-bottom: 4px; }
.deal-price {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-size: 2.2rem;
  color: var(--c-ocean);
  margin: 12px 0 6px;
  line-height: 1;
}
.deal-price small {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: block;
  margin-top: 6px;
  font-weight: 400;
}
.deal ul {
  list-style: none;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--c-onyx-soft);
}
.deal ul li {
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.deal ul li::before {
  content: "+";
  color: var(--c-tang);
  font-weight: 600;
  flex-shrink: 0;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--c-line);
  padding: 26px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--c-line); }
.faq summary {
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-onyx);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--c-vanilla);
  border-radius: 50%;
  background-image: linear-gradient(var(--c-onyx), var(--c-onyx)), linear-gradient(var(--c-onyx), var(--c-onyx));
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .25s ease;
}
.faq summary:hover { color: var(--c-tang); }
.faq details[open] summary::after {
  background-image: linear-gradient(var(--c-cream), var(--c-cream)), linear-gradient(var(--c-cream), var(--c-cream));
  background-color: var(--c-tang);
  transform: rotate(180deg);
}
.faq details[open] summary::after {
  background-image: linear-gradient(var(--c-cream), var(--c-cream));
  background-size: 12px 1.5px;
}
.faq details p {
  margin-top: 18px;
  color: var(--c-mute);
  max-width: 720px;
}

/* =========================================
   Tables
   ========================================= */
table.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.95rem;
}
table.menu-table th {
  text-align: left;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ocean);
  border-bottom: 1.5px solid var(--c-onyx);
  padding: 16px 14px;
}
table.menu-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
table.menu-table tr:hover td { background: var(--c-vanilla); }

/* =========================================
   Quote / Editorial
   ========================================= */
.pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--c-onyx);
  line-height: 1.35;
  position: relative;
  padding: 30px 0;
}
.pull-quote::before {
  content: """;
  position: absolute;
  top: -30px; left: -10px;
  font-size: 8rem;
  color: var(--c-tang);
  line-height: 1;
  font-family: var(--f-display);
  opacity: .3;
}
.pull-quote cite {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}

/* =========================================
   Editorial Quote block (full width)
   ========================================= */
.editorial-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.editorial-quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.3;
  color: var(--c-cream);
  margin-bottom: 30px;
}
.editorial-quote cite {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-tang);
}

/* =========================================
   Breadcrumbs
   ========================================= */
.breadcrumbs {
  background: var(--c-vanilla);
  padding: 16px 32px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.82rem;
  color: var(--c-mute);
}
.breadcrumbs .inner { max-width: var(--w-page); margin: 0 auto; }
.breadcrumbs a { color: var(--c-onyx); }
.breadcrumbs a:hover { color: var(--c-tang); }
.breadcrumbs span { margin: 0 12px; opacity: .4; }

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--c-onyx);
  color: rgba(255,249,240,.7);
  padding: 100px 32px 30px;
  font-size: 0.92rem;
}
.site-footer .inner { max-width: var(--w-page); margin: 0 auto; }
.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,249,240,.1);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .brand { color: var(--c-cream); margin-bottom: 22px; }
.footer-brand .brand .brand-text small { color: rgba(255,249,240,.5); }
.footer-brand p {
  color: rgba(255,249,240,.55);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-contacts {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contacts a {
  color: var(--c-cream);
  font-size: 0.95rem;
  font-family: var(--f-display);
  font-style: italic;
}
.footer-contacts a:hover { color: var(--c-tang); }
.footer-grid h4 {
  color: var(--c-tang);
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 6px 0; }
.footer-grid a {
  color: rgba(255,249,240,.6);
  transition: color .2s, padding-left .2s;
}
.footer-grid a:hover { color: var(--c-tang); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,249,240,.4);
}

/* =========================================
   Floating CTAs
   ========================================= */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-cta a {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: var(--shadow-hard);
  transition: transform .2s, background .2s;
}
.floating-cta a:hover { transform: scale(1.08) rotate(-3deg); }
.fc-whatsapp { background: #25D366; }
.fc-call { background: var(--c-tang); }

/* =========================================
   Form
   ========================================= */
.quote-form {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  border: 1px solid var(--c-line);
}
.quote-form h2 { margin-bottom: .8em; }
.quote-form label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
  color: var(--c-ocean);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-vanilla);
  font-family: var(--f-body);
  font-size: 0.96rem;
  margin-bottom: 22px;
  transition: all .2s;
  color: var(--c-onyx);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--c-ocean);
  background: var(--c-cream);
}
.quote-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* =========================================
   Hadith / Editorial card
   ========================================= */
.hadith-card {
  background: var(--c-onyx);
  color: var(--c-cream);
  padding: 70px 50px;
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hadith-card::before {
  content: """;
  position: absolute;
  top: -40px; left: 30px;
  font-size: 14rem;
  color: var(--c-tang);
  opacity: .1;
  font-family: var(--f-display);
  line-height: 1;
}
.hadith-card p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: var(--c-cream);
}
.hadith-card cite {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-tang);
}

/* =========================================
   Article (blog)
   ========================================= */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.article h1 { margin-bottom: .4em; }
.article .meta {
  color: var(--c-mute);
  font-size: 0.85rem;
  margin-bottom: 2.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--c-line);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.article .meta span { display: inline-flex; align-items: center; gap: 8px; }
.article .meta span::before {
  content: ""; width: 4px; height: 4px;
  background: var(--c-tang); border-radius: 50%; display: inline-block;
}
.article-img {
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  background: var(--c-vanilla);
  border: 1px solid var(--c-line);
  margin-bottom: 50px;
  overflow: hidden;
}
.article h2 {
  margin-top: 1.8em;
  font-size: 1.9rem;
}
.article h3 { margin-top: 1.4em; font-size: 1.3rem; }
.article ul, .article ol { margin: 1em 0 1.4em 1.4em; }
.article ul li, .article ol li { margin-bottom: .55em; }
.article blockquote {
  margin: 2em -10px;
  padding: 28px 36px;
  border-left: 3px solid var(--c-tang);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  background: var(--c-vanilla);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--c-onyx);
}

/* =========================================
   Gallery grid (masonry-feel)
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  background: var(--c-vanilla);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform .3s;
  border: 1px solid var(--c-line);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.square { aspect-ratio: 1/1; }
.gallery-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  color: var(--c-cream);
  font-size: 0.85rem;
  z-index: 2;
}

/* =========================================
   Marquee / scroll strip
   ========================================= */
.marquee {
  background: var(--c-onyx);
  color: var(--c-cream);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
}
.marquee-track span {
  display: inline-block;
  padding: 0 30px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--c-tang);
  margin-left: 60px;
  font-size: 1rem;
  vertical-align: middle;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   Decorative number labels
   ========================================= */
.section-counter {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-mute);
  letter-spacing: .14em;
  display: block;
  margin-bottom: 18px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1080px) {
  section { padding: 80px 28px; }
  .hero { padding: 60px 28px 0; }
  .hero .inner { gap: 50px; padding-bottom: 80px; }
}

@media (max-width: 900px) {
  .hero .inner { grid-template-columns: 1fr; gap: 50px; padding-bottom: 60px; }
  .hero-visual { min-height: 480px; }
  .two-col, .two-col.wide-img, .two-col.text-img { grid-template-columns: 1fr; gap: 40px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 40px 0; padding: 40px 28px; }
  .stat-strip > div { border-right: none; padding: 0 22px; }
  .stat-strip > div:nth-child(odd) { border-right: 1px solid rgba(255,249,240,.18); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 3; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .marquee-track { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 64px 20px; }
  .nav-primary { display: none; }
  .menu-toggle { display: block; }
  .nav-primary.is-open {
    display: flex !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    padding: 28px;
    gap: 18px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-soft);
  }
  .nav-primary.is-open > ul { flex-direction: column; gap: 14px; width: 100%; }
  .hero { padding: 40px 20px 0; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .hero-meta > div { border-right: none !important; border-bottom: 1px solid var(--c-line); padding: 0 0 24px 0 !important; }
  .hero-meta > div:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .hero-img-1 { width: 86%; aspect-ratio: 4/5; }
  .hero-img-2 { width: 50%; }
  .hero-img-3 { width: 36%; right: 5%; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .tiers { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip > div { border-right: none !important; padding: 24px 0; border-bottom: 1px solid rgba(255,249,240,.18); }
  .stat-strip > div:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .util-contacts { gap: 14px; font-size: 0.76rem; }
  .floating-cta { bottom: 16px; right: 16px; }
  .floating-cta a { width: 50px; height: 50px; }
  .quote-form { padding: 32px 22px; }
}

@media print {
  .site-header, .footer, .floating-cta, .utility-bar { display: none; }
}
