/* ═══════════════════════════════════════════════════════
   ICC Selam Rotterdam — v3 Warm Premium
   Aman warmth · charity:water fundraising · Aesop elegance
   Surface gradients · Cinematic depth · Premium shadows
   ═══════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --green: #2d6b4a;
  --green-dark: #1f4f37;
  --green-deep: #1a3d2b;
  --green-light: #e6f0ea;
  --green-ultra: #f0f6f2;
  --gold: #9a845a;
  --gold-light: #b8a47a;
  --gold-dark: #86764f;
  --gold-bg: #f7f4ed;
  --teal: #3a7d7a;
  --teal-light: #e8f4f3;
  --teal-dark: #2b5e5c;
  --white: #fffdf9;
  --off-white: #f5f2eb;
  --cream: #faf8f3;
  --text: #2a2520;
  --text-mid: #5a5248;
  --text-light: #8a8078;
  --border: #e5e0d6;

  /* Type scale — 9 steps ONLY */
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-display: clamp(2.4rem, 5.5vw, 4.2rem);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --sp-xs: .25rem;
  --sp-sm: .5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 5rem;
  --sp-section: 6rem;
  --sp-section-lg: 8rem;

  /* Radii — 4 tokens ONLY */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 999px;

  /* Shadows — warmer, richer (Aman-inspired) */
  --sh-card: 0 1px 2px rgba(140,120,80,.06), 0 4px 16px rgba(140,120,80,.05), 0 0 0 1px rgba(140,120,80,.06);
  --sh-lift: 0 8px 40px rgba(45,42,31,.12), 0 0 0 1px rgba(140,120,80,.08);
  --sh-hero: 0 20px 60px rgba(26,61,43,.15);

  /* Surface gradient for cards (Aesop warmth) */
  --surface: linear-gradient(165deg, #fffefb 0%, #faf7f0 100%);
  --surface-hover: linear-gradient(165deg, #fffefb 0%, #f6f2e8 100%);

  --nav-h: 96px;
  --container: 1100px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body {
  font-family: var(--font-b);
  color: var(--text);
  line-height: 1.75;
  font-size: var(--text-base);
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background: #f8f5ee;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(45,107,74,.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(154,132,90,.04) 0%, transparent 50%);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }

/* ── Shared Elements ── */
.label {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--sp-sm); position: relative;
}
.line { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin-top: var(--sp-sm); }
.line--c { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  font-family: var(--font-b); font-size: var(--text-sm); font-weight: 700;
  padding: .7rem 1.6rem; border-radius: var(--r-full);
  letter-spacing: .03em; transition: all .35s var(--ease);
  line-height: 1.4; border: 1.5px solid transparent;
}
.btn--white { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn--white:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.45); transform: translateY(-2px); }
.btn--white.btn--outline { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.2); }
.btn--white.btn--outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,107,74,.25); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(154,132,90,.25); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,125,122,.25); }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 26px; height: 26px; }

/* ═══ ANIMATION SYSTEM — 5 variants ═══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: opacity 1s var(--ease); }
.reveal-fade.visible { opacity: 1; }
.reveal-scale { opacity: 0; transform: scale(.95); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(16px); }
.stagger.visible > * { animation: staggerIn .6s var(--ease) forwards; }
.stagger.visible > *:nth-child(1) { animation-delay: 0s; }
.stagger.visible > *:nth-child(2) { animation-delay: .07s; }
.stagger.visible > *:nth-child(3) { animation-delay: .14s; }
.stagger.visible > *:nth-child(4) { animation-delay: .21s; }
.stagger.visible > *:nth-child(5) { animation-delay: .28s; }
.stagger.visible > *:nth-child(6) { animation-delay: .35s; }
.stagger.visible > *:nth-child(7) { animation-delay: .42s; }
@keyframes staggerIn { to { opacity: 1; transform: translateY(0); } }

.counter { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }
.text-body { color: var(--text); }
.text-muted { color: var(--text-light); }
.note-muted { color: var(--text-light); }
.progress-zero { width: 0%; }

/* ═══ SCROLL PROGRESS BAR ═══ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1100;
  background: transparent; pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--gold));
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(58,125,122,.3);
}


/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: all .5s var(--ease);
  background: rgba(248,245,238,.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(154,132,90,.08);
}
.nav.scrolled { height: 80px; background: rgba(250,247,240,.96); box-shadow: 0 4px 30px rgba(140,120,80,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo img { height: 60px; width: auto; transition: height .3s var(--ease); }
.nav__logo-l { display: none; }
.nav__logo-d { display: block; }
.nav.scrolled .nav__logo img { height: 52px; }
.nav__menu { display: flex; list-style: none; gap: 1.75rem; align-items: center; }
.nav__link {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .065em;
  text-transform: uppercase; color: var(--text-mid); transition: color .3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--teal);
  transition: width .4s var(--ease);
}
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { width: 100%; }
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--green) !important; }
.nav__cta {
  background: var(--green); color: var(--white) !important;
  padding: .55rem 1.2rem; border-radius: var(--r-full);
  font-weight: 700; font-size: var(--text-xs); letter-spacing: .06em;
  transition: all .3s;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,107,74,.2); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--green-deep); transition: all .3s var(--ease); }
/* Burger animation */
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; margin: 0 12px 0; border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(154,132,90,.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(20,33,24,.78) 0%, rgba(26,61,43,.62) 40%, rgba(15,25,18,.88) 100%);
}
.hero__pat {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; opacity: .06; pointer-events: none;
}
.pat-crescent { fill: #b39c73; fill-rule: evenodd; }
.pat-star { fill: #b39c73; fill-rule: evenodd; }
.hero__glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; z-index: 2; pointer-events: none;
  background: radial-gradient(circle, rgba(154,132,90,.12), rgba(58,125,122,.04) 40%, transparent 65%);
  transform: translate(-50%,-50%); transition: left .3s, top .3s;
}
.hero__content { position: relative; z-index: 3; padding: 14rem 0 5.5rem; }
.hero__intro { max-width: 640px; }
.hero__display {
  font-family: var(--font-d); font-size: var(--text-display);
  font-weight: 600; line-height: 1.08; color: #fff;
  letter-spacing: -.02em; max-width: 14ch;
}
.hero__lead { margin-top: var(--sp-lg); font-size: var(--text-base); color: rgba(255,255,255,.65); line-height: 1.75; max-width: 52ch; }
.hero__trustlist { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--sp-xl); }
.hero__trustpill {
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.7); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.hero__trustpill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero__ornament-wrap {
  width: 88px; height: 88px; margin-top: var(--sp-xl); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__ornament-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(179,156,115,.2);
  animation: ornSpin 40s linear infinite;
}
@keyframes ornSpin { to { transform: rotate(360deg); } }
.hero__ornament { width: 56px; opacity: .35; }
.hero__ctas { display: flex; gap: var(--sp-md); margin-top: var(--sp-2xl); flex-wrap: wrap; }
.hero__ctas .btn { min-width: 200px; justify-content: center; }
.hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); text-align: center; z-index: 3; }
.hero__scroll-text {
  display: block; font-size: var(--text-xs); letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: .5rem;
}
.hero__scroll-line {
  width: 1px; height: 40px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(179,156,115,.45), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }


/* ═══════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════ */
.trust-strip { margin-top: -36px; position: relative; z-index: 10; padding-bottom: var(--sp-2xl); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
.trust-strip__item {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md); padding: 1.6rem 1.5rem;
  box-shadow: var(--sh-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.trust-strip__item:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); background: var(--surface-hover); }
.trust-strip__eyebrow {
  display: block; margin-bottom: .35rem; font-size: var(--text-xs);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--teal);
}
.trust-strip__item strong { display: block; font-size: var(--text-base); color: var(--green-deep); margin-bottom: .25rem; }
.trust-strip__item p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; margin: 0; }


/* ═══════════════════════════════════════════════════════
   HADITH FEATURE
   ═══════════════════════════════════════════════════════ */
.hadith-feature { padding: var(--sp-2xl) 0 var(--sp-3xl); text-align: center; }
.hadith-feature__shell {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-lg); padding: 2.5rem 2rem; box-shadow: var(--sh-card);
  position: relative; overflow: hidden;
}
.hadith-feature__shell::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(154,132,90,.06), transparent 70%);
  pointer-events: none;
}
.hadith-feature__header { margin-bottom: var(--sp-xl); }
.hadith-feature__header h2 { font-family: var(--font-d); font-size: var(--text-2xl); color: var(--green-deep); }
.hadith-feature__header p { font-size: var(--text-sm); color: var(--text-light); margin-top: var(--sp-sm); }
.hero__editorial { position: relative; }
.hadith-carousel { min-height: 180px; position: relative; overflow: hidden; }
.hadith-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; }
.hadith-slide.active { position: relative; opacity: 1; }
.hadith-theme {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal);
  padding: .3rem .8rem; border-radius: var(--r-full);
  background: var(--teal-light); margin-bottom: var(--sp-md);
}
.hero__verse {
  font-family: var(--font-d); font-size: clamp(1.3rem,3.5vw,1.9rem); font-style: italic;
  color: var(--green-deep); line-height: 1.5; max-width: 36ch;
}
.hero__cite { display: block; margin-top: var(--sp-md); font-size: var(--text-sm); color: var(--gold); font-weight: 600; font-style: normal; }
.hadith-dots { display: flex; justify-content: center; gap: .5rem; margin-top: var(--sp-md); }
.hadith-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
  transition: all .3s; cursor: pointer;
}
.hadith-dot.active { background: var(--teal); border-color: var(--teal); transform: scale(1.15); }
.hadith-dot:hover { border-color: var(--teal); }


/* ═══════════════════════════════════════════════════════
   MANIFEST (Mission)
   ═══════════════════════════════════════════════════════ */
.manifest { padding: var(--sp-section) 0; }
.manifest__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--sp-2xl); align-items: start; }
.manifest__story {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--sh-card);
  position: relative; overflow: hidden;
}
.manifest__story::after {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,125,122,.07), transparent 70%);
  pointer-events: none;
}
.manifest__story h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: var(--green-deep); line-height: 1.12; }
.manifest__story p { font-size: var(--text-sm); color: var(--text-mid); margin-top: var(--sp-md); line-height: 1.8; }
.manifest__signature { margin-top: var(--sp-lg); font-family: var(--font-d); font-size: var(--text-lg); font-style: italic; color: var(--teal); }
.manifest__pills { display: flex; gap: var(--sp-sm); margin-top: var(--sp-lg); flex-wrap: wrap; }
.manifest__pill {
  padding: .3rem .8rem; font-size: var(--text-xs); font-weight: 600;
  border-radius: var(--r-full); border: 1px solid rgba(154,132,90,.15); color: var(--text-mid);
  background: rgba(154,132,90,.04);
}

.manifest__side { display: flex; flex-direction: column; gap: var(--sp-md); }
.manifest__card {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md); padding: 1.35rem; box-shadow: var(--sh-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.manifest__card:hover { transform: translateY(-2px); box-shadow: var(--sh-lift); }
.manifest__eyebrow {
  display: block; margin-bottom: .3rem; font-size: var(--text-xs);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--gold);
}
.manifest__card strong { display: block; font-size: var(--text-base); color: var(--green-deep); margin-bottom: .25rem; }
.manifest__card p { margin: 0; color: var(--text-mid); font-size: var(--text-sm); line-height: 1.65; }

.manifest__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-sm); }
.manifest__stat {
  padding: 1rem; text-align: center;
  background: var(--surface); border: 1px solid rgba(154,132,90,.1); border-radius: var(--r-md);
  transition: transform .3s var(--ease);
}
.manifest__stat:hover { transform: translateY(-2px); }
.manifest__num { display: block; font-family: var(--font-d); font-size: var(--text-xl); font-weight: 600; color: var(--green-deep); }
.manifest__label { display: block; margin-top: .1rem; font-size: var(--text-xs); color: var(--text-light); }

.manifest__quote {
  padding: 1.2rem 1.3rem; border-radius: var(--r-md);
  border: 1px solid rgba(154,132,90,.1); background: var(--surface); box-shadow: var(--sh-card);
  border-left: 3px solid var(--gold);
}
.manifest__quote p { margin: 0; color: var(--text-mid); line-height: 1.75; font-style: italic; font-size: var(--text-sm); }

.manifest__ornament-panel {
  padding: 1.1rem; border-radius: var(--r-md);
  border: 1px solid rgba(154,132,90,.1); background: var(--surface); box-shadow: var(--sh-card);
}
.manifest__mini-list { display: grid; gap: .5rem; margin: .6rem 0 0; padding: 0; }
.manifest__mini-item {
  display: grid; gap: .1rem; padding: .65rem .8rem; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--cream), #f5f1e7); border: 1px solid rgba(154,132,90,.08);
}
.manifest__mini-item strong { font-size: var(--text-xs); color: var(--green-deep); font-weight: 800; }
.manifest__mini-item span { font-size: var(--text-sm); line-height: 1.55; color: var(--text-mid); }


/* ═══════════════════════════════════════════════════════
   SEPARATOR (only 1 remains)
   ═══════════════════════════════════════════════════════ */
.sep {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.4rem; opacity: .5;
}
.sep__line {
  height: 1px; flex: 1; max-width: 200px;
  background: linear-gradient(90deg, transparent, rgba(154,132,90,.5), transparent);
}
.sep__line--r { background: linear-gradient(90deg, rgba(154,132,90,.5), transparent); }
.sep__diamond { width: 5px; height: 5px; background: #b39c73; transform: rotate(45deg); margin: 0 .4rem; flex-shrink: 0; opacity: .5; }
.sep__diamond--sm { width: 4px; height: 4px; }
.sep__logo { width: 42px; height: 32px; flex-shrink: 0; margin: 0 .3rem; opacity: .85; }
.sep__logo svg { width: 100%; height: 100%; }
.sep__star { transform-origin: 720px 400px; animation: sepSpin 30s linear infinite; }
@keyframes sepSpin { to { transform: rotate(360deg); } }
.sep__crescent { animation: sepBreathe 4s ease-in-out infinite; }
@keyframes sepBreathe { 0%,100% { opacity: .7; } 50% { opacity: 1; } }


/* ═══════════════════════════════════════════════════════
   FULL-BLEED PHOTO BREAK (replaces separators)
   ═══════════════════════════════════════════════════════ */
.photo-break {
  position: relative; height: clamp(280px, 40vw, 450px);
  overflow: hidden; margin: 0;
}
.photo-break img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85) saturate(1.1);
}
.photo-break__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,33,24,.4) 0%, rgba(20,33,24,.65) 50%, rgba(20,33,24,.5) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.photo-break__text {
  font-family: var(--font-d); font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  color: #fff; font-style: italic; line-height: 1.4; max-width: 28ch;
  opacity: .92; padding: 0 2rem; text-shadow: 0 2px 20px rgba(0,0,0,.2);
}


/* ═══════════════════════════════════════════════════════
   RAMAZAN PROGRAM
   ═══════════════════════════════════════════════════════ */
.rz-program { padding: var(--sp-section) 0; }
.rz-program .label { color: var(--teal); }
.rz-head h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: var(--green-deep); }
.rz-head p { font-size: var(--text-sm); color: var(--text-mid); margin-top: var(--sp-sm); max-width: 52ch; }
.rz-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-xl); margin-top: var(--sp-2xl); }
.rz-left { display: flex; flex-direction: column; gap: var(--sp-xl); }

/* Vaktija */
.rz-block, .rz-vkt-wrap {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--sh-card);
}
.rz-date { font-size: var(--text-sm); color: var(--text-mid); margin-bottom: .1rem; }
.rz-hijri { font-size: var(--text-xs); color: var(--gold); margin-bottom: var(--sp-md); }
.rz-daily { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: var(--sp-md); }
.rz-prayer {
  text-align: center; padding: .7rem .5rem; border-radius: var(--r-sm);
  background: linear-gradient(165deg, #fefdfb, #f7f4ec); border: 1px solid rgba(154,132,90,.08);
  transition: all .4s var(--ease);
}
.rz-prayer.is-next { background: linear-gradient(165deg, #eef7f6, #e3f0ef); border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,125,122,.08), 0 2px 8px rgba(58,125,122,.1); }
.rz-prayer.is-next .rz-pname { color: var(--teal-dark); }
.rz-picon { width: 20px; height: 20px; margin: 0 auto .2rem; color: var(--text-light); stroke: currentColor; fill: none; }
.rz-prayer.is-next .rz-picon { color: var(--teal); }
.rz-pname { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--text-mid); }
.rz-ptime { display: block; font-family: var(--font-d); font-size: var(--text-xl); font-weight: 600; color: var(--green-deep); margin-top: .1rem; }
.rz-next {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-md);
  padding: .9rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, #142118, #1a3d2b); color: #fff; text-align: center;
  box-shadow: 0 4px 16px rgba(20,33,24,.2);
}
.rz-next-label { font-size: var(--text-xs); font-weight: 600; opacity: .65; letter-spacing: .05em; }
.rz-next-time { font-family: var(--font-d); font-size: var(--text-2xl); font-weight: 600; }
.rz-notice {
  margin-top: var(--sp-md); padding: .55rem .9rem; font-size: var(--text-xs);
  border-radius: var(--r-sm); background: linear-gradient(135deg, rgba(232,244,243,.6), rgba(232,244,243,.4)); color: var(--teal-dark); text-align: center;
  border: 1px solid rgba(58,125,122,.08);
}

.rz-block h3 { font-size: var(--text-base); font-weight: 700; color: var(--green-deep); margin-bottom: var(--sp-sm); }
.rz-extra { display: grid; gap: .5rem; }
.rz-extra-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem .75rem; border-radius: var(--r-sm);
  background: linear-gradient(165deg, #fefdfb, #f7f4ec); border: 1px solid rgba(154,132,90,.08);
}
.rz-extra-row strong { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.rz-extra-row span { font-family: var(--font-d); font-size: var(--text-lg); font-weight: 600; color: var(--green); }

/* Events */
.rz-right h3 { font-size: var(--text-xl); font-weight: 700; color: var(--green-deep); margin-bottom: var(--sp-lg); }
.rz-timeline { position: relative; padding-left: 24px; }
.rz-timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
.rz-evt {
  position: relative; margin-bottom: var(--sp-lg);
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem;
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rz-evt:hover { transform: translateX(4px); box-shadow: var(--sh-lift); background: var(--surface-hover); }
.rz-evt::before {
  content: ''; position: absolute; left: -21px; top: 1.1rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light);
  border: 2px solid var(--teal); z-index: 1;
}
.rz-evt__date { font-size: var(--text-xs); font-weight: 700; color: var(--teal); display: block; margin-bottom: .15rem; }
.rz-evt h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text); margin-bottom: .1rem; }
.rz-evt p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; margin: 0; }
.rz-evt .badge {
  display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: var(--r-full); background: var(--teal-light); color: var(--teal-dark);
  margin-top: .35rem;
}
.rz-side-note {
  margin-top: var(--sp-lg); display: grid; grid-template-columns: auto 1fr; gap: var(--sp-sm);
  padding: 1.1rem; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  box-shadow: var(--sh-card);
}
.rz-side-note__icon { margin-top: 2px; color: var(--gold); }
.rz-side-note__eyebrow { font-size: var(--text-xs); font-weight: 700; color: var(--gold); display: block; margin-bottom: .15rem; }
.rz-side-note__body p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; margin: 0; }
.rz-next-evt { margin-top: var(--sp-md); font-size: var(--text-sm); color: var(--text-mid); padding: .55rem .8rem; border-radius: var(--r-sm); background: linear-gradient(165deg, #fefdfb, #f7f4ec); border: 1px solid rgba(154,132,90,.08); text-align: center; }


/* ═══════════════════════════════════════════════════════
   REKONSTRUKCIJA — DARK SECTION ★
   ═══════════════════════════════════════════════════════ */
.rekon {
  padding: var(--sp-section-lg) 0;
  background: linear-gradient(180deg, #142118 0%, #0c1810 40%, #0a140d 100%);
  color: #fff; position: relative; overflow: hidden;
}
.rekon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(58,125,122,.08), transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(154,132,90,.06), transparent 50%);
  pointer-events: none;
}
.rekon__bg-fade {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%; z-index: 0; pointer-events: none;
}
.rekon__bg-fade img { width: 100%; height: 100%; object-fit: cover; }
.rekon__bg-fade::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-deep) 0%, rgba(15,30,21,.4) 50%, rgba(15,30,21,.65) 100%);
}
.rekon__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-2xl); position: relative; z-index: 1; }
.rekon .label { color: var(--gold-light); }
.rekon h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: #fff; line-height: 1.12; }
.rekon .line { background: var(--gold-light); }
.rekon p { font-size: var(--text-sm); color: rgba(255,255,255,.72); line-height: 1.8; margin-top: var(--sp-md); }
.rekon p strong { color: #fff; }

.rekon__progress {
  margin-top: var(--sp-xl); padding: 1.4rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.rekon__pbar {
  height: 10px; border-radius: var(--r-full); position: relative;
  background: rgba(255,255,255,.08); overflow: visible;
}
.rekon__pfill {
  height: 100%; border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--teal), #5abfb5, var(--gold-light));
  transition: width 1.5s var(--ease);
  box-shadow: 0 0 12px rgba(58,125,122,.3), 0 0 4px rgba(58,125,122,.2);
}
.rekon__milestones { position: absolute; inset: 0; pointer-events: none; }
.rekon__ms {
  position: absolute; top: -20px; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.3); transform: translateX(-50%);
}
.rekon__plabels { display: flex; justify-content: space-between; margin-top: .5rem; font-size: var(--text-xs); color: rgba(255,255,255,.45); }
.rekon__plabels strong { color: var(--teal); }

.rekon__ctas { display: flex; gap: var(--sp-md); margin-top: var(--sp-xl); flex-wrap: wrap; }

.rekon__banks {
  margin-top: var(--sp-xl); padding: 1.2rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
}
.rekon__banks h4 { font-size: var(--text-sm); font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: var(--sp-sm); }
.rekon__bank { font-size: var(--text-sm); color: rgba(255,255,255,.75); margin-bottom: .25rem; }
.rekon__bank strong { color: #fff; }
.rekon .iban-warning {
  margin-top: var(--sp-sm); padding: .5rem .7rem;
  font-size: var(--text-xs); color: #fbbf24;
  background: rgba(251,191,36,.06); border: 1px solid rgba(251,191,36,.15);
  border-radius: var(--r-sm); border-left: 3px solid #fbbf24;
}

.rekon__pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); margin-top: var(--sp-xl); }
.rekon__pillar {
  padding: 1.1rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.rekon__pillar:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.rekon__pillar-kicker { display: block; font-size: var(--text-xs); font-weight: 700; color: var(--teal); margin-bottom: .15rem; }
.rekon__pillar strong { display: block; font-size: var(--text-sm); color: #fff; margin-bottom: .25rem; }
.rekon__pillar p { font-size: var(--text-xs); color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }

/* Curtain */
.rekon__curtain {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--green-deep);
}
.rekon__curtain-slide { position: absolute; inset: 0; z-index: 1; }
.rekon__curtain-slide img { width: 100%; height: 100%; object-fit: cover; }
.rekon__curtain-l, .rekon__curtain-r {
  position: absolute; top: 0; width: 50%; height: 100%; z-index: 2;
  background: var(--green-deep); transition: transform 1.2s var(--ease);
}
.rekon__curtain-l { left: 0; transform-origin: left; }
.rekon__curtain-r { right: 0; transform-origin: right; }
.rekon__curtain.open .rekon__curtain-l { transform: translateX(-100%); }
.rekon__curtain.open .rekon__curtain-r { transform: translateX(100%); }
.rekon__curtain-shine {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.05) 50%, transparent 60%);
  pointer-events: none;
}
.rekon__curtain-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; z-index: 4; opacity: .12; pointer-events: none; transition: opacity .8s;
}
.rekon__curtain.open .rekon__curtain-logo { opacity: 0; }
.rekon__curtain-num { position: absolute; bottom: 1rem; right: 1rem; z-index: 5; font-size: var(--text-xs); color: rgba(255,255,255,.5); background: rgba(0,0,0,.3); padding: .2rem .55rem; border-radius: var(--r-full); }
.rekon__curtain-dots { display: flex; gap: .4rem; position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 5; }
.rekon__cdot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); background: transparent; cursor: pointer; transition: all .3s; }
.rekon__cdot.active { background: #fff; border-color: #fff; }

.rekon__aside {
  margin-top: var(--sp-md); padding: 1.1rem 1.2rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
}
.rekon__aside-title { font-size: var(--text-xs); font-weight: 700; color: var(--gold-light); margin-bottom: var(--sp-sm); }
.rekon__aside-row { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: var(--text-sm); }
.rekon__aside-row:last-child { border-bottom: 0; }
.rekon__aside-row strong { color: rgba(255,255,255,.55); font-weight: 600; }
.rekon__aside-row span { color: rgba(255,255,255,.8); }


/* ═══════════════════════════════════════════════════════
   ZEKAT — TEAL TINTED SECTION ★
   ═══════════════════════════════════════════════════════ */
.zekat-section {
  padding: var(--sp-section) 0;
  background: linear-gradient(180deg, #edf6f5 0%, #e2efed 50%, #edf6f5 100%);
  position: relative;
}
.zekat-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,125,122,.2), transparent);
}
.zekat-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,125,122,.2), transparent);
}
.zekat-section__head { text-align: center; margin-bottom: var(--sp-2xl); }
.zekat-section__head h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: var(--green-deep); }
.zekat-section .label { color: var(--teal-dark); }
.zekat-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-xl); }
.zkt, .zkt-info {
  background: linear-gradient(165deg, #fffefb 0%, #f5fafa 100%); border: 1px solid rgba(58,125,122,.1);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
}
.zkt__body { padding: 1.4rem; }
.zkt__item { padding: var(--sp-md) 0; border-bottom: 1px solid var(--border); }
.zkt__item:last-child { border-bottom: 0; }
.zkt__item-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .05em; color: var(--teal-dark); text-transform: uppercase; }
.zkt__item-val { font-family: var(--font-d); font-size: var(--text-2xl); font-weight: 600; color: var(--green-deep); margin-top: .2rem; }
.zkt__item-sub { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; margin-top: .25rem; }
.zkt__footnote { padding: .7rem 1.4rem; font-size: var(--text-xs); color: var(--text-light); border-top: 1px solid var(--border); }
.zkt__footnote--alt { border-top: 0; }
.zkt-info { padding: 1.4rem; }
.zkt__dates { margin-top: var(--sp-md); }
.zkt__dates h4 { font-size: var(--text-sm); font-weight: 700; color: var(--green-deep); margin-bottom: .3rem; }
.zkt__dates p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.8; }
.zkt__dates strong { color: var(--teal-dark); }


/* ═══════════════════════════════════════════════════════
   DUO (O nama + Aktivnosti)
   ═══════════════════════════════════════════════════════ */
.duo { padding: var(--sp-section) 0; }
.duo__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--sp-xl); }
.duo__card {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-card);
  transition: box-shadow .4s var(--ease);
}
.duo__card:hover { box-shadow: var(--sh-lift); }
.duo__card-head { padding: 1.5rem 1.5rem 0; }
.duo__card-head h2 { font-family: var(--font-d); font-size: var(--text-2xl); color: var(--green-deep); line-height: 1.18; }
.duo__card-body { padding: 1rem 1.5rem 1.5rem; }
.duo__card-body p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.8; margin-top: var(--sp-md); }
.duo__quote {
  margin-top: var(--sp-md); padding: 1.1rem 1.3rem; border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
  background: linear-gradient(135deg, rgba(232,244,243,.6), rgba(232,244,243,.3));
}
.duo__quote p { font-size: var(--text-sm); color: var(--teal-dark); font-style: italic; margin: 0 !important; line-height: 1.7; }
.duo__badge { display: flex; align-items: center; gap: var(--sp-md); margin-top: var(--sp-lg); }
.duo__badge-n { font-family: var(--font-d); font-size: var(--text-4xl); font-weight: 700; color: var(--green-deep); line-height: 1; }
.duo__badge-t { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.5; }
.duo__micro-note { font-size: var(--text-xs); color: var(--text-light); margin-top: var(--sp-sm); }

.act-list { padding: 0 1.5rem 1.5rem; }
.act-item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-md); align-items: start;
  padding: var(--sp-md) 0; border-bottom: 1px solid var(--border);
}
.act-item:last-child { border-bottom: 0; }
.act-item__icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--green-light), #d8eadf); display: flex; align-items: center; justify-content: center; color: var(--green);
}
.act-item h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.act-item p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; margin-top: .1rem; }


/* ═══════════════════════════════════════════════════════
   FACEBOOK — cream bg section
   ═══════════════════════════════════════════════════════ */
.fb-section {
  padding: var(--sp-section) 0;
  background: linear-gradient(180deg, #f7f4ec 0%, #f2eee4 50%, #f7f4ec 100%);
  position: relative;
}
.fb-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,132,90,.15), transparent);
}
.fb-section__head { text-align: center; margin-bottom: var(--sp-2xl); }
.fb-section__head h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: var(--green-deep); }
.fb-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: start; }
.fb-section__embed {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid rgba(154,132,90,.1); min-height: 500px;
  box-shadow: var(--sh-card);
}
.fb-section__info { display: flex; flex-direction: column; gap: var(--sp-md); }
.fb-section__card {
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md); padding: 1.35rem; box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fb-section__card:hover { transform: translateY(-2px); box-shadow: var(--sh-lift); }
.fb-section__card h3 { font-size: var(--text-base); font-weight: 700; color: var(--green-deep); margin-bottom: .25rem; }
.fb-section__card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.65; margin: 0; }
.fb-section__meta {
  padding: var(--sp-md) 1.1rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--green-light), #d8eadf); border: 1px solid rgba(45,107,74,.1);
}
.fb-section__meta strong { display: block; font-size: var(--text-sm); color: var(--green-deep); margin-bottom: .15rem; }
.fb-section__meta span { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact { padding: var(--sp-section) 0; }
.contact__head { text-align: center; margin-bottom: var(--sp-xl); }
.contact__head h2 { font-family: var(--font-d); font-size: var(--text-3xl); color: var(--green-deep); }
.contact__hospitality { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); margin-bottom: var(--sp-2xl); }
.contact__hospitality-item {
  padding: 1.2rem; border-radius: var(--r-md); text-align: center;
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact__hospitality-item:hover { transform: translateY(-2px); box-shadow: var(--sh-lift); }
.contact__hospitality-item strong { display: block; font-size: var(--text-sm); color: var(--green-deep); margin-bottom: .2rem; }
.contact__hospitality-item span { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
.contact__items { display: flex; flex-direction: column; gap: var(--sp-sm); }
.contact__item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-md); align-items: start;
  padding: 1.1rem; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid rgba(154,132,90,.1);
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact__item:hover { transform: translateX(4px); box-shadow: var(--sh-lift); }
.contact__c-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--green-light), #d8eadf); display: flex; align-items: center; justify-content: center; color: var(--green);
}
.contact__item h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.contact__item p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; margin-top: .1rem; }
.contact__item a { color: var(--teal); border-bottom: 1px solid rgba(58,125,122,.2); transition: color .3s; }
.contact__item a:hover { color: var(--green); }
.contact__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(154,132,90,.1); box-shadow: var(--sh-card); }
.contact__map iframe { width: 100%; height: 320px; display: block; }
.contact__map-meta { padding: var(--sp-md); }
.contact__map-row { display: flex; gap: var(--sp-md); padding: .35rem 0; font-size: var(--text-sm); }
.contact__map-row strong { color: var(--text); min-width: 80px; }
.contact__map-row span { color: var(--text-mid); }


/* ═══════════════════════════════════════════════════════
   SECURITY UI (iban, decode, consent)
   ═══════════════════════════════════════════════════════ */
.iban-warning {
  margin-top: var(--sp-sm); padding: .5rem .7rem;
  font-size: var(--text-xs); line-height: 1.55; color: #8b4513;
  background: rgba(210,105,30,.06); border: 1px solid rgba(210,105,30,.15);
  border-radius: var(--r-sm); border-left: 3px solid #d2691e;
}
.js-decode {
  color: var(--teal); cursor: pointer;
  border-bottom: 1px dashed rgba(58,125,122,.3);
  transition: color .3s, border-color .3s;
}
.js-decode:hover { color: var(--green); border-color: var(--green); }
.fb-consent {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 1.5rem; min-height: 400px;
  background: var(--cream);
}
.fb-consent__icon { margin-bottom: var(--sp-md); }
.fb-consent__text { font-size: var(--text-sm); line-height: 1.65; color: var(--text-mid); max-width: 36ch; margin-bottom: var(--sp-lg); }
.fb-consent__text strong { color: var(--text); display: block; margin-bottom: .3rem; font-size: var(--text-base); }
.fb-consent__btn { margin-bottom: var(--sp-sm); }
.fb-consent__link { font-size: var(--text-xs); color: var(--gold); border-bottom: 1px solid rgba(154,132,90,.3); }
.fb-consent__link:hover { color: var(--teal); }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #162a1d 0%, #0f1e14 100%); color: rgba(255,255,255,.8);
  margin: 0 12px 12px; border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: var(--sp-2xl) 0 0;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,132,90,.3), transparent);
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-2xl); padding-bottom: var(--sp-2xl); }
.footer__brand img { height: 48px; margin-bottom: var(--sp-md); }
.footer__brand p { font-size: var(--text-sm); color: rgba(255,255,255,.45); line-height: 1.7; max-width: 32ch; }
.footer__col h5 { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: var(--sp-md); }
.footer__col a { display: block; font-size: var(--text-sm); color: rgba(255,255,255,.6); padding: .2rem 0; transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-md) 0; border-top: 1px solid rgba(255,255,255,.07);
  font-size: var(--text-xs); color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color .3s; }
.footer__bottom a:hover { color: #fff; }
.footer__social { display: flex; gap: var(--sp-md); }
.footer__social a { color: rgba(255,255,255,.35); transition: color .3s; }
.footer__social a:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════ */
.btt {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  width: 44px; height: 44px; border-radius: var(--r-full);
  background: var(--white); color: var(--green);
  box-shadow: 0 2px 12px rgba(140,120,80,.1), 0 0 0 1px rgba(154,132,90,.08);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease);
}
.btt.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { background: var(--green); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,107,74,.25); }
.btt svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤960px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .hero { margin: 0; border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .footer { margin: 0; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .rz-layout, .zekat-grid, .rekon__grid, .contact__grid, .fb-section__grid,
  .duo__grid, .manifest__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .contact__hospitality, .rekon__pillars { grid-template-columns: 1fr; }
  .manifest__stats { grid-template-columns: repeat(3,1fr); }
  .rekon__bg-fade { width: 100%; opacity: .12; height: 40%; top: auto; bottom: 0; }
  .rekon__bg-fade::after { background: linear-gradient(180deg, var(--green-deep) 0%, rgba(15,30,21,.3) 100%); }
  .rz-side-note { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Tablet Portrait (≤768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .contact__hospitality { grid-template-columns: 1fr; }
  .photo-break { height: clamp(200px, 30vw, 300px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤680px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  :root { --nav-h: 80px; }
  .container { padding: 0 1.25rem; }

  .nav { height: var(--nav-h); }
  .nav__menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(250,247,240,.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-xl);
    opacity: 0; transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav__menu.open { display: flex; opacity: 1; transform: translateY(0); }
  .nav__menu.open .nav__link { font-size: var(--text-base); }
  .nav__burger { display: flex; }
  .nav__logo img { height: 48px; }
  .nav.scrolled .nav__logo img { height: 42px; }

  .hero { min-height: auto; padding-top: var(--nav-h); }
  .hero__content { padding: 6rem 0 3rem; }
  .hero__display { font-size: clamp(1.9rem, 9vw, 3rem); max-width: 13ch; }
  .hero__lead { font-size: var(--text-sm); }
  .hero__trustpill { font-size: 11px; }
  .hero__ctas .btn { min-width: unset; width: 100%; }
  .hero__ctas, .rekon__ctas { flex-direction: column; align-items: stretch; }
  .hero__ornament-wrap { width: 72px; height: 72px; }
  .hero__ornament { width: 48px; }

  .hadith-carousel { min-height: 220px; }
  .hadith-slide { padding: 1rem; }
  .hero__verse { max-width: none; font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .trust-strip { margin-top: -24px; }

  .manifest, .duo { padding: 2.5rem 0; }
  .rz-program, .zekat-section, .contact, .fb-section { padding: 3rem 0; }
  .rekon { padding: 3.5rem 0; }
  .rz-daily { grid-template-columns: repeat(3,1fr); }
  .rz-timeline { padding-left: 0; }
  .rz-timeline::before, .rz-evt::before { display: none; }
  .photo-break { height: 220px; }
  .photo-break__text { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }

  .rz-block, .rz-vkt-wrap, .rekon__progress, .rekon__banks,
  .contact__map, .fb-section__embed, .manifest__story, .manifest__card,
  .rekon__pillar, .contact__hospitality-item, .duo__card, .hadith-feature__shell { border-radius: var(--r-md); }

  .sep { padding: 1.25rem 1rem; }
  .sep__line { max-width: 100px; }
  .sep__logo { width: 32px; height: 24px; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .rekon__pillars { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Small Phone (≤480px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .rz-daily { grid-template-columns: repeat(2,1fr); }
  .manifest__stats { grid-template-columns: 1fr 1fr; }
  .hero__display { font-size: 1.75rem; }
}

/* ═══════════════════════════════════════
   v3.1 — New Components
   Vaktija grid · Daily cards · Events timeline
   Video showcase · Quote divider · Scroll reveal
   ═══════════════════════════════════════ */

/* ── Vaktija Section ── */
.vaktija-section { padding: var(--sp-section) 0 var(--sp-xl); }
.vaktija-section__header { text-align: center; margin-bottom: var(--sp-2xl); }
.vaktija-section__header h2 {
  font-family: var(--font-d); font-size: var(--text-3xl);
  color: var(--green-deep); font-weight: 600;
}
.label--teal { color: var(--teal); }
.line--c { margin-left: auto; margin-right: auto; }

/* Vaktija Card */
.vaktija-card {
  background: var(--surface);
  border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto var(--sp-xl);
}
.vaktija-card__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(154,132,90,.06);
}
.vaktija-card__date { font-size: var(--text-sm); color: var(--text-mid); }
.vaktija-card__date strong { color: var(--green-deep); font-weight: 700; }
.vaktija-card__hijri { font-size: var(--text-xs); color: var(--gold); font-weight: 600; letter-spacing: .03em; }
.vaktija-notice { font-size: var(--text-sm); color: var(--teal-dark); padding: .75rem 1.75rem; margin: 0; background: rgba(58,125,122,.04); }

/* Prayer Grid */
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.prayer-tile {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(154,132,90,.06);
  transition: all .35s var(--ease);
  position: relative;
}
.prayer-tile:last-child { border-right: none; }
.prayer-tile__icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  margin: 0 auto .65rem;
  background: rgba(154,132,90,.06);
  color: var(--text-light);
  transition: all .35s var(--ease);
}
.prayer-tile__icon .icon { width: 18px; height: 18px; }
.prayer-tile__name {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: .35rem;
  transition: color .35s var(--ease);
}
.prayer-tile__time {
  display: block; font-family: var(--font-d);
  font-size: 1.6rem; font-weight: 600;
  color: var(--green-deep); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.prayer-tile__sub {
  display: block; font-size: .7rem; color: var(--text-light); margin-top: .3rem;
}

/* Active prayer tile */
.prayer-tile.is-active {
  background: linear-gradient(180deg, rgba(58,125,122,.06) 0%, rgba(58,125,122,.02) 100%);
}
.prayer-tile.is-active::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; background: var(--teal); border-radius: 2px 2px 0 0;
}
.prayer-tile.is-active .prayer-tile__icon { background: var(--teal); color: #fff; }
.prayer-tile.is-active .prayer-tile__name { color: var(--teal-dark); }
.prayer-tile.is-active .prayer-tile__time { color: var(--teal-dark); }

/* Countdown Bar */
.countdown-bar {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #142118, #1a3d2b);
  color: #fff;
}
.countdown-bar__label {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; opacity: .5;
}
.countdown-bar__name { font-size: var(--text-sm); font-weight: 700; }
.countdown-bar__time {
  font-family: var(--font-d); font-size: 1.75rem; font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.countdown-bar__sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); }


/* ── Daily Activity Cards ── */
.daily-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; max-width: 900px; margin: 0 auto;
}
.daily-card {
  background: var(--surface);
  border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md);
  padding: 1.2rem; box-shadow: var(--sh-card);
  display: flex; gap: .85rem; align-items: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.daily-card:hover { transform: translateY(-2px); box-shadow: var(--sh-lift); }
.daily-card__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-light), #d5e8dc);
  color: var(--green);
}
.daily-card__icon .icon { width: 18px; height: 18px; }
.daily-card__title { font-size: var(--text-sm); font-weight: 700; color: var(--green-deep); margin-bottom: .15rem; }
.daily-card__desc { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.55; }


/* ── Events Section ── */
.events-section { padding: var(--sp-xl) 0 var(--sp-section); }
.events-section__header { text-align: center; margin-bottom: var(--sp-xl); }
.events-section__header h2 {
  font-family: var(--font-d); font-size: var(--text-2xl);
  color: var(--green-deep); font-weight: 600;
}

.events-timeline {
  max-width: 700px; margin: 0 auto;
  position: relative; padding-left: 2.5rem;
}
.events-timeline::before {
  content: ''; position: absolute; left: 10px; top: 20px; bottom: 20px;
  width: 1px; background: linear-gradient(180deg, var(--teal), rgba(154,132,90,.2));
}
.evt {
  position: relative; margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid rgba(154,132,90,.1);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-card);
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.evt:hover { transform: translateX(4px); box-shadow: var(--sh-lift); }
.evt::before {
  content: ''; position: absolute; left: -2.15rem; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-light); border: 2px solid var(--teal);
  transform: translateY(-50%);
}
.evt__date-block {
  text-align: center; min-width: 48px;
  padding: .5rem .4rem; border-radius: var(--r-sm);
  background: rgba(154,132,90,.04); border: 1px solid rgba(154,132,90,.06);
}
.evt__day {
  display: block; font-family: var(--font-d);
  font-size: 1.4rem; font-weight: 700;
  color: var(--green-deep); line-height: 1;
}
.evt__month {
  display: block; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); margin-top: .15rem;
}
.evt__body h4 { font-size: var(--text-sm); font-weight: 700; color: var(--text); margin-bottom: .15rem; }
.evt__body p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.55; margin: 0; }
.evt__tag {
  display: inline-block; font-size: .6rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .15rem .5rem; border-radius: var(--r-full); margin-bottom: .3rem;
}
.evt__tag--guest { background: rgba(58,125,122,.08); color: var(--teal-dark); }
.evt__tag--iftar { background: rgba(154,132,90,.08); color: var(--gold); }
.evt__tag--special { background: rgba(45,107,74,.08); color: var(--green); }
.evt__tag--bajram { background: var(--green); color: #fff; }


/* ── Quote Divider ── */
.quote-divider {
  padding: 5rem 2rem; text-align: center; position: relative;
  background: linear-gradient(180deg, #142118 0%, #0c1810 100%);
  overflow: hidden;
}
.quote-divider::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(58,125,122,.08), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(154,132,90,.06), transparent 50%);
}
.quote-divider__ornament {
  width: 32px; height: 1px; margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  position: relative;
}
.quote-divider__ornament::before {
  content: '✦'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: .6rem; color: var(--gold-light); background: #142118; padding: 0 .5rem;
}
.quote-divider__text {
  font-family: var(--font-d); font-size: clamp(1.3rem, 3vw, 2rem);
  color: rgba(255,255,255,.85); font-style: italic;
  line-height: 1.45; max-width: 30ch; margin: 0 auto; position: relative;
}
.quote-divider__cite {
  display: block; margin-top: 1rem;
  font-family: var(--font-b); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-light); font-style: normal;
}
.quote-divider__line-b {
  width: 48px; height: 1px; margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(179,156,115,.3), transparent);
}


/* ── Video Showcase ── */
.video-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: var(--sp-md);
}
.video-card {
  border-radius: var(--r-md); overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.video-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--r-md);
}
.video-card__label {
  position: absolute; bottom: .65rem; left: .65rem;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: var(--r-full);
  background: rgba(0,0,0,.45); color: rgba(255,255,255,.85);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.08);
}


/* ── Scroll Reveal (fade-in / fade-out) ── */
.scroll-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.is-exiting { opacity: 0; transform: translateY(-16px); }

/* Staggered children */
.scroll-reveal.stagger-children > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.scroll-reveal.stagger-children.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .08s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .16s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .24s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .32s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .4s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .48s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: .56s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: .64s; }
.scroll-reveal.stagger-children.is-visible > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: .72s; }
.scroll-reveal.stagger-children.is-exiting > * { opacity: 0; transform: translateY(-12px); }


/* ── v3.1 Responsive overrides ── */
@media (max-width: 768px) {
  .prayer-grid { grid-template-columns: repeat(3, 1fr); }
  .prayer-tile { padding: 1.2rem .8rem; }
  .prayer-tile:nth-child(3) { border-right: none; }
  .prayer-tile:nth-child(n+4) { border-top: 1px solid rgba(154,132,90,.06); }
  .prayer-tile:last-child { border-right: none; }
  .daily-grid { grid-template-columns: 1fr 1fr; }
  .events-timeline { padding-left: 2rem; }
  .video-showcase { grid-template-columns: 1fr; }
  .countdown-bar { flex-wrap: wrap; gap: .75rem; }
  .countdown-bar__sep { display: none; }
}
@media (max-width: 520px) {
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
  .prayer-tile:nth-child(2) { border-right: none; }
  .prayer-tile:nth-child(n+3) { border-top: 1px solid rgba(154,132,90,.06); }
  .prayer-tile:nth-child(odd) { border-right: 1px solid rgba(154,132,90,.06); }
  .prayer-tile:nth-child(even) { border-right: none; }
  .daily-grid { grid-template-columns: 1fr; }
  .countdown-bar { padding: .8rem 1rem; }
}

/* Event timeline states */
.evt--past { opacity: .5; }
.evt--next { border-left: 3px solid var(--teal); }
.evt--next::before { background: var(--teal); border-color: var(--teal-light); width: 10px; height: 10px; }
.evt__next-badge {
  display: inline-block; font-size: .55rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .1rem .4rem; border-radius: var(--r-full);
  background: var(--teal); color: #fff; margin-left: .35rem;
  vertical-align: middle;
}

/* Imam WhatsApp Bubble */
.imam-bubble {
  margin-bottom: var(--sp-md);
}
.imam-bubble__header {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: .5rem;
}
.imam-bubble__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
  border: 2px solid #25D366;
}
.imam-bubble__name {
  display: block; font-size: var(--text-sm); font-weight: 700;
  color: var(--green-deep);
}
.imam-bubble__role {
  display: block; font-size: .65rem; color: var(--text-light);
  letter-spacing: .02em;
}
.imam-bubble__body {
  position: relative;
  background: #dcf8c6;
  border-radius: 0 12px 12px 12px;
  padding: 1rem 1.1rem .6rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  max-width: 100%;
}
.imam-bubble__tail {
  position: absolute; top: 0; left: -8px;
  width: 0; height: 0;
  border-top: 0px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #dcf8c6;
}
.imam-bubble__body p {
  font-size: .82rem;
  color: #1a1a1a;
  line-height: 1.65;
  margin: 0 0 .7rem;
}
.imam-bubble__body p:last-of-type { margin-bottom: .35rem; }
.imam-bubble__time {
  display: block; text-align: right;
  font-size: .6rem; color: #6b8f71;
  margin-top: .15rem;
  letter-spacing: .01em;
}
