:root {
  --ink: #10241c;
  --ink-soft: #3d5348;
  --emerald: #0f4f3d;
  --emerald-deep: #0a3329;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --line: rgba(16, 36, 28, 0.08);
  --shadow: 0 18px 50px rgba(16, 36, 28, 0.08);
  --radius: 22px;
  --max: 1120px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --naskh: "Noto Naskh Arabic", "Amiri", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.gold {
  color: var(--gold);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.seal {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--emerald);
  font-family: var(--naskh);
  font-size: 1.15rem;
  background: linear-gradient(180deg, #fff, var(--cream));
  overflow: hidden;
  position: relative;
}

.seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.seal.has-img svg {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--emerald);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #128c7e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
}

.menu-btn {
  display: none;
  background: none;
  font-size: 1.4rem;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 22, 0.55), rgba(10, 28, 22, 0.78)),
    radial-gradient(circle at 30% 20%, rgba(196, 163, 90, 0.18), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23c4a35a' stroke-width='0.4' opacity='0.18' d='M40 4 L48 24 L68 24 L52 36 L58 56 L40 44 L22 56 L28 36 L12 24 L32 24 Z'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #0a3329 0%, #163c30 45%, #1b2a22 100%);
  background-size: cover, cover, 80px 80px, cover;
  z-index: -1;
}

.hero-ornament {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(232, 213, 163, 0.28);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  padding: 80px 20px 64px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 auto 18px;
}

.hero p {
  max-width: 42ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.hero-cta-col .btn {
  text-align: center;
}

.btn-trust {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.12);
  font-weight: 650;
}

.btn-trust:hover {
  background: var(--gold);
  color: var(--emerald-deep);
}

.btn-gold {
  background: var(--gold);
  color: var(--emerald-deep);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 650;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  background: transparent;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.18);
}

/* Verses */
.verses {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
}

.verse-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: drift 48s linear infinite;
}

.verse-card {
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
}

.verse-card .ar {
  font-family: var(--naskh);
  font-size: 1.2rem;
  direction: rtl;
  line-height: 1.8;
  margin-bottom: 8px;
}

.verse-card .tr {
  font-size: 0.86rem;
  color: var(--ink-soft);
  min-height: 2.6em;
}

.verse-card .ref {
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Profile */
.section {
  padding: 84px 0;
}

.profile-wrap {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 36px;
}

.profile-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, #e8d5a3, #c4a35a 42%, #0f4f3d 43%);
  color: #fff;
  font-family: var(--naskh);
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.avatar.has-img .avatar-fallback {
  display: none;
}

.profile-head h2 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.chip svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

h3.serif,
.serif-title {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-grid p + p {
  margin-top: 12px;
  color: var(--ink-soft);
}

/* Principles */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.principle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.principle strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.principle p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Services */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 36, 28, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--emerald);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Process */
.process {
  background: var(--emerald-deep);
  color: #fff;
}

.process .kicker {
  color: var(--gold-soft);
}

.process .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 213, 163, 0.18);
  border-radius: var(--radius);
  padding: 22px;
}

.num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.8rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 8px 0;
}

.step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* Reviews — Google widget look */
.g-widget {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ececec;
  box-shadow: 0 16px 40px rgba(16, 36, 28, 0.07);
  padding: 28px 28px 24px;
}

.g-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
}

.g-wordmark {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 2px;
}

.g-wordmark .c-b { color: #4285f4; }
.g-wordmark .c-r { color: #ea4335; }
.g-wordmark .c-y { color: #fbbc05; }
.g-wordmark .c-g { color: #34a853; }

.g-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.g-score {
  font-size: 1.85rem;
  font-weight: 700;
  color: #202124;
  letter-spacing: -0.03em;
}

.g-stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 1.15rem;
  line-height: 1;
}

.g-stars.sm {
  font-size: 0.82rem;
  letter-spacing: 0;
  margin-top: 2px;
}

.g-count {
  margin-top: 2px;
  font-size: 0.86rem;
  color: #70757a;
}

.g-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: #2b2d31;
  margin: 18px 0 16px;
}

.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.g-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 16px 16px 12px;
  background: #fff;
}

.g-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.g-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.g-avatar svg {
  width: 22px;
  height: 22px;
}

.g-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.g-meta strong {
  font-size: 0.95rem;
  color: #202124;
}

.g-meta span {
  font-size: 0.82rem;
  color: #80868b;
}

.g-card p {
  color: #3c4043;
  font-size: 0.92rem;
  line-height: 1.55;
  min-height: 4.6em;
}

.g-reply {
  display: inline-block;
  margin-top: 10px;
  color: #c4a35a;
  font-weight: 700;
  font-size: 0.92rem;
  background: none;
  padding: 0;
}

.note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* FAQ + CTA */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding-top: 8px;
  color: var(--ink-soft);
}

.cta-panel {
  background: linear-gradient(160deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  border-radius: 28px;
  padding: 32px;
}

.cta-panel h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 8px 0 12px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #0b1c16;
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 24px;
  font-size: 0.88rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo {
  color: #fff;
}

.disclaimer {
  max-width: 720px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-btn {
    display: block;
  }
  .profile-head,
  .about-grid,
  .principles,
  .cards,
  .steps,
  .g-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .header-cta {
    display: none;
  }
}
