/* ============================================================
   HALAL VISTARO — v2 (Bluebird-influenced)
   Photo-first · sans-serif primary · generous whitespace
   Emerald accent kept · minimal ornament
   ============================================================ */

:root {
  --emerald:        #0E4D3A;
  --emerald-dark:   #0A3A2C;
  --emerald-deep:   #062A20;
  --gold:           #B8924A;
  --gold-soft:      #D4B57A;
  --bg:             #FBFAF7;
  --bg-warm:        #F4F0E8;
  --bg-deep:        #1F1F1F;
  --ink:            #1A1A1A;
  --ink-soft:       #4A4A4A;
  --gray:           #6B6B6B;
  --gray-light:     #9A9A9A;
  --line:           #E5E2DA;
  --sand-dark:      #D9D2BC;
  --white:          #FFFFFF;

  /* Layered warm-tinted shadows — premium "stacked paper" feel */
  --shadow-soft:    0 1px 2px rgba(30, 20, 10, 0.04), 0 8px 24px rgba(30, 20, 10, 0.06);
  --shadow-lifted:  0 2px 4px rgba(30, 20, 10, 0.05), 0 20px 48px rgba(30, 20, 10, 0.10);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --arabic: 'Amiri', 'Cormorant Garamond', serif;

  --max:   1280px;
  --pad:   clamp(1.25rem, 4vw, 2.5rem);
  --gap:   clamp(4rem, 9vw, 7.5rem);
  --gap-sm: clamp(2rem, 4vw, 3.5rem);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { padding-left: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 400; letter-spacing: -.02em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em; }
p  { margin: 0 0 1em; }

/* serif italic accent — used sparingly */
em, .accent-italic, h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--emerald);
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.eyebrow.gold { color: var(--gold-soft); }
.eyebrow.center { text-align: center; }
h2.center, p.center { text-align: center; }
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 680px;
  font-weight: 300;
  line-height: 1.6;
}
.lead.center { margin-left: auto; margin-right: auto; }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-header.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-bottom: 1rem;
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container.narrow { max-width: 800px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  border-radius: 0;
  transition: all .25s ease;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
}
.btn-lg { padding: 1.15rem 2.2rem; font-size: .92rem; }
.btn-full { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(251, 250, 247, 0.97);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: padding .3s ease;
}
.nav.scrolled .nav-inner {
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-arabic {
  font-family: var(--arabic);
  font-size: 1.45rem;
  color: var(--white);
  transition: color .3s;
}
.brand-en {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--gold-soft);
  margin-top: 4px;
  transition: color .3s;
}
.nav.scrolled .brand-arabic { color: var(--emerald-dark); }
.nav.scrolled .brand-en { color: var(--gold); }

.brand-arabic.large { font-size: 2.2rem; }
.brand-en.large { font-size: .9rem; letter-spacing: .3em; margin-top: 6px; }

/* Right-side cluster: Reserve CTA + hamburger always visible */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Reserve CTA — stays visible on every screen */
.nav-cta {
  border: 1px solid currentColor;
  padding: .6rem 1.1rem;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  transition: color .3s, background .3s, border-color .3s;
}
.nav.scrolled .nav-cta { color: var(--ink); }
.nav-cta:hover {
  background: var(--white);
  color: var(--emerald) !important;
  border-color: var(--white);
}
.nav.scrolled .nav-cta:hover {
  background: var(--emerald);
  color: var(--white) !important;
  border-color: var(--emerald);
}

/* Hamburger — always shown */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 26px;
  justify-content: center;
  position: relative;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: background .3s, transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* Hamburger → X when menu open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ LUXURY HAMBURGER MENU — split panel with hover preview ============ */
.nav-links {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: flex !important;
  flex-direction: column;
  background: var(--bg);
  padding: 0 !important;
  gap: 0 !important;
  border-top: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(14, 77, 58, 0.12);
  transform: translateY(-110%);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1), visibility .55s;
  visibility: hidden;
  z-index: -1;
  max-height: 90vh;
  overflow: hidden;
}
.nav-links.open {
  transform: translateY(0);
  visibility: visible;
}

.nav-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 520px;
}

/* Left side — link list */
.nav-menu-links {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.nav-menu-links a {
  display: grid !important;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0 !important;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  width: auto !important;
  font-style: normal !important;
  letter-spacing: 0 !important;

  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity .55s ease,
    transform .6s cubic-bezier(.4, 0, .2, 1),
    padding-left .35s ease,
    border-color .25s ease;
}
.nav-links.open .nav-menu-links a {
  opacity: 1;
  transform: translateX(0);
}
.nav-links.open .nav-menu-links a:nth-child(1) { transition-delay: .15s; }
.nav-links.open .nav-menu-links a:nth-child(2) { transition-delay: .22s; }
.nav-links.open .nav-menu-links a:nth-child(3) { transition-delay: .29s; }
.nav-links.open .nav-menu-links a:nth-child(4) { transition-delay: .36s; }
.nav-links.open .nav-menu-links a:nth-child(5) { transition-delay: .43s; }

.nav-menu-links a:hover {
  padding-left: 1rem !important;
  border-color: var(--gold);
}
.nav-menu-links a.active {
  border-color: var(--gold);
}
.nav-menu-links a.active::after { display: none !important; }
.nav-menu-links a.active .link-text { color: var(--emerald-dark); }
.nav-menu-links a.active::before {
  content: "";
  position: absolute;
}

.link-num {
  font-family: var(--sans) !important;
  font-size: .72rem !important;
  letter-spacing: .25em !important;
  color: var(--gold);
  font-weight: 600 !important;
}

.link-content {
  display: flex;
  flex-direction: column;
}

.link-text {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem) !important;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em !important;
  line-height: 1.05;
  transition: color .25s ease;
}
.nav-menu-links a:hover .link-text {
  color: var(--gold);
}

.link-meta {
  font-family: var(--sans) !important;
  font-size: .8rem !important;
  color: var(--ink-soft);
  margin-top: .4rem;
  letter-spacing: .04em !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none;
}

/* Right side — preview image stack */
.nav-menu-preview {
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
}
.preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 2s cubic-bezier(.4, 0, .2, 1);
}
.preview-img.active {
  opacity: 1;
  transform: scale(1);
}
.nav-menu-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 58, 44, 0.18) 0%, rgba(10, 58, 44, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

/* Contact overlay — sits at the bottom of the preview image with a soft gradient */
.nav-menu-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5rem clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
  z-index: 2;
  /* Soft dark gradient backdrop so text reads cleanly over any image */
  background: linear-gradient(180deg,
    rgba(6, 42, 32, 0) 0%,
    rgba(6, 42, 32, 0.35) 30%,
    rgba(6, 42, 32, 0.85) 100%);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  pointer-events: auto;
}
.nav-menu-footer .footer-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: .92rem !important;
  font-weight: 400 !important;
  letter-spacing: .12em !important;
  text-transform: none;
  padding: 0 !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  transform: none !important;
  opacity: 1 !important;
  transition: color .2s !important;
}
.nav-menu-footer .footer-link:hover {
  color: var(--gold-soft) !important;
}
.nav-menu-footer .footer-brand {
  display: block;
  font-family: var(--arabic) !important;
  font-size: 1.05rem !important;
  letter-spacing: .1em !important;
  color: var(--gold-soft);
  text-transform: none;
  font-style: normal !important;
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(212, 181, 122, 0.28);
}

/* Mobile — preview hides, but show contact info as a strip below links */
@media (max-width: 720px) {
  .nav-menu-grid { grid-template-columns: 1fr; min-height: auto; }
  .nav-menu-preview {
    /* Don't fully hide — still need the footer */
    background: var(--bg-warm);
    min-height: 0;
    height: auto;
    padding: 0;
  }
  .preview-img { display: none; }
  .nav-menu-footer {
    position: static;
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    padding: 1.5rem;
  }
  .nav-menu-footer .footer-link {
    color: var(--ink-soft) !important;
    letter-spacing: .15em !important;
  }
  .nav-menu-footer .footer-brand {
    color: var(--emerald-dark);
    border-color: var(--line);
  }
  .nav-menu-links { padding: 2.5rem 1.5rem; }
  .nav-menu-links a { grid-template-columns: 40px 1fr; padding: 1rem 0 !important; }
  .link-text { font-size: 1.5rem !important; }
  .link-meta { font-size: .72rem !important; }
}

@media (max-width: 540px) {
  .nav-cta { padding: .55rem .9rem; font-size: .72rem; }
  .nav-right { gap: .85rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 58, 44, 0.55) 0%,
    rgba(10, 58, 44, 0.35) 35%,
    rgba(10, 58, 44, 0.65) 100%
  );
  z-index: 1;
}

/* Softer hero variant — side gradient so the dome stays visible while text sits in a dark zone */
.hero-soft .hero-overlay {
  background:
    /* Vertical wash to keep top + bottom edges anchored */
    linear-gradient(180deg, rgba(10, 58, 44, 0.25) 0%, rgba(10, 58, 44, 0.15) 35%, rgba(10, 58, 44, 0.55) 100%),
    /* Side gradient: dark on left, fades to clear on right */
    linear-gradient(90deg,
      rgba(6, 42, 32, 0.88) 0%,
      rgba(6, 42, 32, 0.72) 30%,
      rgba(6, 42, 32, 0.35) 60%,
      rgba(6, 42, 32, 0.05) 100%);
}
@media (max-width: 880px) {
  .hero-soft .hero-overlay {
    background: linear-gradient(180deg,
      rgba(6, 42, 32, 0.4) 0%,
      rgba(6, 42, 32, 0.55) 40%,
      rgba(6, 42, 32, 0.85) 100%);
  }
}

/* Constrain text to left side on desktop so it doesn't bleed into the lighter right area */
.hero-soft .hero-inner {
  max-width: 680px;
}

/* Hero typography — warm cream + gold italic accent for harmony with mosque architecture */
.hero-soft .hero-eyebrow {
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: .35em;
}
.hero-soft .hero-title {
  color: #F4EAD0;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -.025em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.hero-soft .hero-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: -.01em;
}
.hero-soft .hero-sub {
  color: rgba(244, 234, 208, 0.96);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.35);
  font-size: 1.15rem;
  max-width: 560px;
  line-height: 1.6;
}
.hero-soft .hero-image img {
  /* Subtle KenBurns-style slow zoom */
  animation: hero-kenburns 18s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-soft .hero-image img { animation: none; }
}

/* Elegant primary button — softer than .btn-primary, more luxury feel */
.btn-elegant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
}
.btn-elegant:hover {
  background: var(--cream, var(--bg));
  color: var(--emerald-dark);
  border-color: var(--cream, var(--bg));
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

/* Text link with arrow — minimal, premium feel */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .25rem 0;
  font-family: var(--sans);
  color: var(--gold-soft);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 181, 122, 0.4);
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
  text-decoration: none;
}
.btn-link:hover {
  color: var(--white);
  border-color: var(--white);
  gap: .85rem;
}
.btn-link-arrow {
  font-size: 1.05em;
  transition: transform .25s ease;
}
.btn-link:hover .btn-link-arrow { transform: translateX(3px); }

/* Hero CTAs in soft variant — vertical alignment with breathing room */
.hero-ctas-soft {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem !important;
  margin-bottom: 4rem;
}
@media (max-width: 540px) {
  .btn-elegant { padding: 1rem 2rem; font-size: .78rem; }
  .btn-link { font-size: .78rem; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0 0 2rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--white);
  border-radius: 1px;
  animation: scroll 1.6s infinite;
}
@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ INTRO ============ */
.intro {
  padding: var(--gap) 0;
  background: var(--bg);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .intro-inner { grid-template-columns: 1fr; }
}
.intro-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.intro-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.intro-image:hover img { transform: scale(1.04); }
.intro-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.intro-text .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 1.75rem;
}

/* ============ CATEGORIES ============ */
.categories {
  padding: var(--gap) 0;
  background: var(--bg-warm);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 960px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  transition: transform .35s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.cat-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cat-card:hover .cat-image img { transform: scale(1.06); }

.cat-body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-tag {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .75rem;
}
.cat-body h3 {
  margin: 0 0 .75rem;
  font-size: 1.45rem;
  letter-spacing: -.01em;
}
.cat-body p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0 0 1.25rem;
  flex: 1;
}
.cat-link {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  margin-top: auto;
  transition: color .2s;
}
.cat-card:hover .cat-link { color: var(--gold); }

/* ============ FEATURED ITALY ============ */
.featured-italy {
  background: var(--bg);
  padding-bottom: var(--gap);
}
.italy-banner {
  position: relative;
  height: clamp(360px, 50vw, 560px);
  overflow: hidden;
  margin-bottom: var(--gap-sm);
}
.italy-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.italy-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 58, 44, 0.3), rgba(10, 58, 44, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem) var(--pad);
  color: var(--white);
}
.banner-eyebrow {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0 0 1rem;
}
.italy-banner-overlay h2 {
  color: var(--white);
  margin: 0 0 .5rem;
  font-weight: 300;
}
.banner-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin: 0 0 1rem;
  font-weight: 400;
}
.banner-meta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: .03em;
  margin: 0;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--ink);
  color: var(--white);
  margin-bottom: var(--gap-sm);
}
.date-strip > div {
  padding: 1.25rem .75rem;
  text-align: center;
  font-size: .82rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: .03em;
}
.date-strip > div:last-child { border-right: none; }
.date-strip span {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .35rem;
}
@media (max-width: 720px) {
  .date-strip { grid-template-columns: repeat(2, 1fr); }
  .date-strip > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* Day cards (image + content) */
.day-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--gap-sm);
}
@media (max-width: 720px) {
  .day-cards { grid-template-columns: 1fr; }
}
.day-card {
  background: var(--bg);
}
.day-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}
.day-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.day-card:hover .day-image img { transform: scale(1.05); }
.day-body {
  padding: 0 0 .5rem;
}
.day-tag {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .5rem;
}
.day-body h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--emerald-dark);
  margin: 0 0 .85rem;
  line-height: 1.25;
  letter-spacing: -.005em;
}
.day-body p {
  color: var(--ink-soft);
  margin: 0 0 .5rem;
}
.day-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day-body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .5rem;
  color: var(--ink-soft);
  font-size: .98rem;
}
.day-body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .85rem;
  top: 2px;
}
.day-body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--emerald);
  font-weight: 400;
}

/* Maulana credentials */
.maulana {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  background: var(--ink);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--gap-sm);
  align-items: center;
}
.avatar-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.avatar-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 146, 74, 0.18);
}
.maulana .eyebrow.gold { color: var(--gold-soft); margin-bottom: .5rem; }
.maulana h3 { color: var(--white); margin-bottom: 1.25rem; font-weight: 400; }
.maulana ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.maulana ul li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: .98rem;
}
.maulana ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 640px) {
  .maulana { grid-template-columns: 1fr; text-align: center; }
  .avatar-circle { margin: 0 auto; }
  .maulana ul li { text-align: left; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: var(--bg-warm);
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.inclusions {
  padding: clamp(2rem, 4vw, 3rem);
}
.inclusions h4 {
  font-size: .72rem;
  letter-spacing: .25em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.incl-grid li {
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding-left: 1.5rem;
}
.incl-grid li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .85rem;
}
.price-block {
  background: var(--emerald-deep);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .75rem;
}
.price {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 .75rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.price-note {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}
.price-block .btn {
  align-self: stretch;
  margin-bottom: 1rem;
}
.price-block .btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.price-block .btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.price-block .micro {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-style: italic;
}
@media (max-width: 600px) {
  .incl-grid { grid-template-columns: 1fr; }
}

/* ============ DESTINATIONS ============ */
.destinations {
  padding: var(--gap) 0;
  background: var(--bg);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 960px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  transition: transform .35s ease;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.dest-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.dest-card:hover .dest-image img { transform: scale(1.06); }
.dest-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: .35rem .75rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}
.dest-body {
  padding: 1.5rem 0 .5rem;
}
.dest-flag {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 .35rem;
}
.dest-body h4 {
  font-size: 1.4rem;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
}
.dest-body p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: 0 0 .25rem;
}
.dest-meta {
  font-size: .75rem !important;
  color: var(--gold) !important;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .85rem !important;
  font-weight: 600;
}
.dest-card.featured .dest-body h4 { color: var(--emerald-dark); }

/* ============ WHY ============ */
.why {
  padding: var(--gap) 0;
  background: var(--bg-warm);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2rem;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-item h4 {
  margin: .25rem 0 .75rem;
  font-size: 1.2rem;
  letter-spacing: -.01em;
}
.why-item p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}
.why-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  line-height: 1;
  letter-spacing: -.02em;
}

/* ============ DYNAMIC GALLERY (homepage marquee) ============ */
.gallery-strip {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.gallery-strip .section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  /* Soft fade on left/right edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-tile {
  position: relative;
  display: block;
  width: 320px;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
  transform: translateZ(0); /* GPU layer for smoother animation */
}
.marquee-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.marquee-tile:hover img {
  transform: scale(1.06);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 50%,
    rgba(10, 58, 44, 0.35) 75%,
    rgba(10, 58, 44, 0.85) 100%);
  color: var(--white);
  pointer-events: none;
  transition: background .35s ease;
}
.marquee-tile:hover .tile-overlay {
  background: linear-gradient(180deg,
    rgba(10, 58, 44, 0.15) 0%,
    rgba(10, 58, 44, 0.45) 60%,
    rgba(10, 58, 44, 0.92) 100%);
}
.tile-place {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.005em;
  margin-bottom: .25rem;
  color: var(--white);
}
.tile-country {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 720px) {
  .marquee-tile { width: 240px; }
  .tile-place { font-size: 1.3rem; }
  .marquee-track { animation-duration: 60s; gap: .75rem; }
}

/* Gallery footer CTA */
.gallery-footer {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}
.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 2.25rem;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1.5px solid var(--emerald);
}
.gallery-cta:hover {
  background: var(--emerald-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 77, 58, 0.25);
}
.gallery-cta span {
  font-size: 1.1rem;
  transition: transform .25s ease;
}
.gallery-cta:hover span { transform: translateX(4px); }

/* Reduce motion: stop the marquee */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    /* Show first row only — overflow hides the rest visually */
    transform: none;
  }
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ============ INTERACTIVE JOURNEY (Why Halal Vistaro) ============ */

/* Progress tracker */
.journey-progress {
  max-width: 880px;
  margin: 2.5rem auto 1.5rem;
  padding: 0 .5rem;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .65rem;
}
.progress-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.progress-count {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--emerald-dark);
  letter-spacing: -.02em;
}
.progress-count #progress-current {
  color: var(--gold);
  transition: color .3s;
}
.progress-bar {
  height: 4px;
  background: var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 2px;
  transition: width .6s cubic-bezier(.4, 1.4, .5, 1);
  position: relative;
}
.progress-fill::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-soft);
  opacity: 0;
  transition: opacity .3s;
}
.progress-fill[style*="0%"]::after { opacity: 0; }
.progress-fill:not([style*="0%"])::after { opacity: 1; }

.journey {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: 0 .5rem;
}

/* Vertical golden thread connecting all steps */
.journey::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 80px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 80%, transparent 100%);
  z-index: 0;
}
@media (max-width: 600px) {
  .journey::before { left: 22px; }
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.journey-step.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .journey-step { grid-template-columns: 50px 1fr; gap: 1rem; }
}

/* Numbered circles with icon + check states */
.journey-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--emerald-dark);
  letter-spacing: -.02em;
  z-index: 2;
  flex-shrink: 0;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.journey-step.visible .journey-num {
  box-shadow: 0 0 0 6px rgba(184, 146, 74, 0.08);
}

/* Three layers inside num: icon (default), text, check (when explored) */
.journey-icon,
.num-text,
.num-check {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s ease, transform .35s ease;
}
.journey-icon {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  transform: scale(1);
}
.num-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--emerald-dark);
  opacity: 0;
  transform: scale(.5);
}
.num-check {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(.5) rotate(-20deg);
}

/* On hover: icon fades out, number fades in */
.journey-step:not(.explored):not(.journey-final):hover .journey-num {
  background: var(--bg-warm);
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(184, 146, 74, 0.14);
}
.journey-step:not(.explored):not(.journey-final):hover .journey-icon {
  opacity: 0;
  transform: scale(.6);
}
.journey-step:not(.explored):not(.journey-final):hover .num-text {
  opacity: 1;
  transform: scale(1);
}

/* When explored: filled with gold, white check */
.journey-step.explored .journey-num {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 146, 74, 0.18);
}
.journey-step.explored .journey-icon { opacity: 0; transform: scale(.5); }
.journey-step.explored .num-text { opacity: 0; transform: scale(.5); }
.journey-step.explored .num-check {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Final step (05) icon — checkmark, no text or check overlay */
.journey-num.final-num {
  background: var(--bg);
  border-color: var(--gold);
  color: var(--gold);
}
.journey-num.final-num .journey-icon {
  stroke: var(--gold);
}
.journey-num.final-num .num-text {
  color: var(--gold);
}

/* When journey complete, final num transforms */
.journey.complete .journey-num.final-num {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(184, 146, 74, 0.25), 0 0 30px rgba(184, 146, 74, 0.4);
  animation: pulse-gold 2s ease-in-out infinite;
}
.journey.complete .journey-num.final-num .journey-icon {
  stroke: var(--white);
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 8px rgba(184, 146, 74, 0.25), 0 0 30px rgba(184, 146, 74, 0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(184, 146, 74, 0.15), 0 0 50px rgba(184, 146, 74, 0.6); }
}

@media (max-width: 600px) {
  .journey-num { width: 48px; height: 48px; }
  .journey-icon, .num-check { width: 20px; height: 20px; }
  .num-text { font-size: 1.1rem; }
}

/* Card buttons */
.journey-card {
  width: 100%;
  text-align: left;
  background: var(--bg-warm);
  padding: 1.75rem 2rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
  display: block;
}
.journey-card:hover {
  background: var(--sand-dark);
  box-shadow: 0 6px 24px rgba(14, 77, 58, 0.06);
}
.journey-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .journey-card { padding: 1.4rem 1.5rem; }
}

.journey-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.journey-tag {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .35rem;
}

.journey-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0 0 .5rem;
  color: var(--emerald-dark);
  line-height: 1.2;
}

.journey-tease {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.5;
}

/* The +/× toggle */
.journey-toggle {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s ease, background .25s ease, color .25s ease;
  margin-top: 4px;
  line-height: 1;
}
.journey-card[aria-expanded="true"] .journey-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

/* Expandable detail */
.journey-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding-top .35s ease;
  padding-top: 0;
}
.journey-card[aria-expanded="true"] .journey-detail {
  max-height: 600px;
  padding-top: 1.5rem;
}
.journey-detail p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.65;
}
.journey-detail p:last-child {
  margin-bottom: 0;
}

/* The "proof" callout block */
.journey-proof {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  font-size: .95rem !important;
  color: var(--ink) !important;
  line-height: 1.55 !important;
}
.journey-proof span {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .68rem;
  display: block;
  margin-bottom: .45rem;
}

/* Final CTA card (step 05) — Locked / Unlocked states */
.journey-final {
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.journey-cta {
  background: var(--bg-warm);
  color: var(--ink);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--gold);
  transition: background .8s ease, color .8s ease, border-color .8s ease, padding .4s ease;
}
.journey-cta::before {
  content: "✦";
  position: absolute;
  right: 1.75rem;
  top: 1.5rem;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
  transition: opacity .8s ease, transform .8s ease;
}
.journey-cta .journey-tag.gold {
  color: var(--gold);
}
.journey-cta h3 {
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: .85rem;
  font-weight: 500;
  letter-spacing: -.005em;
  transition: color .8s ease;
}
.journey-cta p {
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
  transition: color .8s ease;
}

/* Locked / Unlocked content states */
.journey-cta-locked,
.journey-cta-unlocked {
  transition: opacity .5s ease, max-height .5s ease, transform .5s ease;
  overflow: hidden;
}
.journey-cta-locked {
  opacity: 1;
  max-height: 400px;
}
.journey-cta-unlocked {
  opacity: 0;
  max-height: 0;
  transform: translateY(8px);
}

/* When unlocked: full vibrant emerald with celebrating glow */
.journey-final.unlocked .journey-cta {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  border: 1px solid var(--emerald-deep);
  box-shadow: 0 12px 48px rgba(14, 77, 58, 0.25);
  animation: unlock-glow .9s ease-out;
}
.journey-final.unlocked .journey-cta::before {
  opacity: .5;
  transform: rotate(180deg);
}
.journey-final.unlocked .journey-cta h3 {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 400;
}
.journey-final.unlocked .journey-cta p {
  color: rgba(255, 255, 255, 0.78);
}
.journey-final.unlocked .journey-cta-locked {
  opacity: 0;
  max-height: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.journey-final.unlocked .journey-cta-unlocked {
  opacity: 1;
  max-height: 400px;
  transform: translateY(0);
  transition-delay: .35s;
}

@keyframes unlock-glow {
  0%   { box-shadow: 0 0 0 0 rgba(184, 146, 74, 0); }
  50%  { box-shadow: 0 0 0 18px rgba(184, 146, 74, 0.25), 0 12px 48px rgba(14, 77, 58, 0.25); }
  100% { box-shadow: 0 0 0 0 rgba(184, 146, 74, 0), 0 12px 48px rgba(14, 77, 58, 0.25); }
}

.journey-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
@media (max-width: 600px) {
  .journey-cta { padding: 2rem 1.5rem; }
  .journey-cta h3 { font-size: 1.4rem; }
  .journey-final.unlocked .journey-cta h3 { font-size: 1.4rem; }
}

/* ============ THEMED ANIMATED VISUALS (per-promise mini-illustrations) ============ */
.theme-visual {
  width: 80px;
  height: 80px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0;
  transform: scale(.7) translateY(8px);
  transition: opacity .55s ease .15s, transform .55s cubic-bezier(.4, 1.4, .5, 1) .15s;
  filter: drop-shadow(0 4px 12px rgba(184, 146, 74, 0.15));
}
.journey-card[aria-expanded="true"] .theme-visual {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* === Promise 01 — HALAL: rotating dashed seal with crescent + star === */
[data-theme="halal"] .seal-rotor {
  transform-origin: 40px 40px;
  animation: spin-slow 14s linear infinite paused;
}
[data-theme="halal"] .seal-crescent,
[data-theme="halal"] .seal-star {
  transform-origin: 40px 40px;
  animation: pulse-gentle 2.6s ease-in-out infinite paused;
}
[data-theme="halal"] .seal-star { animation-delay: .8s; }
.journey-card[aria-expanded="true"] [data-theme="halal"] .seal-rotor,
.journey-card[aria-expanded="true"] [data-theme="halal"] .seal-crescent,
.journey-card[aria-expanded="true"] [data-theme="halal"] .seal-star {
  animation-play-state: running;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-gentle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.92); }
}

/* === Promise 02 — BOOK: pages flutter like reading === */
[data-theme="book"] .page-left {
  transform-origin: 40px 22px;
  animation: page-flutter-l 4s ease-in-out infinite paused;
}
[data-theme="book"] .page-right {
  transform-origin: 40px 22px;
  animation: page-flutter-r 4s ease-in-out infinite paused;
  animation-delay: -2s;
}
.journey-card[aria-expanded="true"] [data-theme="book"] .page-left,
.journey-card[aria-expanded="true"] [data-theme="book"] .page-right {
  animation-play-state: running;
}
@keyframes page-flutter-l {
  0%, 100% { transform: skewY(0deg); }
  50%      { transform: skewY(-1.5deg); }
}
@keyframes page-flutter-r {
  0%, 100% { transform: skewY(0deg); }
  50%      { transform: skewY(1.5deg); }
}

/* === Promise 03 — TARGET: sonar-style outward pulse === */
[data-theme="target"] .pulse-ring {
  transform-origin: 40px 40px;
  opacity: 0;
  animation: pulse-out 2.4s ease-out infinite paused;
}
[data-theme="target"] .pulse-1 { animation-delay: 0s; }
[data-theme="target"] .pulse-2 { animation-delay: .55s; }
[data-theme="target"] .pulse-3 { animation-delay: 1.1s; }
.journey-card[aria-expanded="true"] [data-theme="target"] .pulse-ring {
  animation-play-state: running;
}
@keyframes pulse-out {
  0%   { transform: scale(.45); opacity: .9; }
  60%  { transform: scale(1.05); opacity: .25; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* === Promise 04 — SCALE: balance arm tilts then settles === */
[data-theme="scale"] .balance-arm {
  transform-origin: 40px 20px;
  animation: balance 3.2s ease-in-out infinite paused;
}
.journey-card[aria-expanded="true"] [data-theme="scale"] .balance-arm {
  animation-play-state: running;
}
@keyframes balance {
  0%, 100% { transform: rotate(-7deg); }
  35%      { transform: rotate(7deg); }
  68%      { transform: rotate(-3deg); }
  85%      { transform: rotate(0deg); }
}

/* Reduced motion — visuals stay but don't loop animate */
@media (prefers-reduced-motion: reduce) {
  .theme-visual { transition: opacity .2s; transform: none !important; }
  .seal-rotor, .seal-crescent, .seal-star,
  .page-left, .page-right,
  .pulse-ring, .balance-arm {
    animation: none !important;
  }
}

/* Sparkle burst on card expand */
.journey-step.sparkling .journey-num::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: sparkle-burst .6s ease-out forwards;
  pointer-events: none;
}
@keyframes sparkle-burst {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Outline button variant for emerald background */
.btn-outline-emerald {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-emerald:hover {
  background: var(--white);
  color: var(--emerald-deep);
  border-color: var(--white);
}

/* Reduced motion respects user preferences */
@media (prefers-reduced-motion: reduce) {
  .journey-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .journey-detail { transition: none; }
  .journey-toggle { transition: none; }
}

/* ============ ITALY 2026 PAGE ============ */
.italy-hero {
  position: relative;
  min-height: clamp(440px, 60vw, 620px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  color: var(--white);
}
.italy-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.italy-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.italy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 58, 44, 0.45) 0%, rgba(10, 58, 44, 0.78) 100%);
  z-index: 1;
}
.italy-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.italy-hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

/* Bio block */
.bio-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-warm);
}
.bio-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(14, 77, 58, 0.06);
}
@media (max-width: 880px) {
  .bio-card { grid-template-columns: 1fr; text-align: center; }
}
.bio-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(184, 146, 74, 0.18);
  max-width: 280px;
  margin: 0 auto;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-content h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--emerald-dark);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -.005em;
}
.bio-intro {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.bio-content p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.bio-creds {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.bio-creds li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
}
.bio-creds li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.bio-creds strong {
  color: var(--emerald-dark);
  font-weight: 600;
}

/* Italy strip — sits between hero and detail */
.italy-strip {
  background: var(--bg-warm);
  padding-top: 2rem;
  padding-bottom: 0;
}
.italy-strip .date-strip { margin-bottom: 1.25rem; }
.strip-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  background: var(--emerald-deep);
  color: var(--gold-soft);
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: .95rem;
  letter-spacing: .03em;
}
@media (max-width: 600px) {
  .strip-note { font-size: .85rem; padding: .85rem 1rem; }
}

.italy-detail {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.italy-detail .day-cards {
  margin-bottom: 0;
}

/* ============ EXPLORE DESTINATIONS (vistaro cross-sell) ============ */
.explore-destinations {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-warm);
}
.explore-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .explore-pair { grid-template-columns: 1fr; }
}
.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  transition: transform .35s ease, box-shadow .35s ease;
  border-bottom: 3px solid var(--gold);
}
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 77, 58, 0.1);
}
.explore-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.explore-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.explore-card:hover .explore-image img { transform: scale(1.06); }
.explore-body {
  padding: 1.75rem 1.75rem 2rem;
}
.explore-body .dest-flag {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 .5rem;
}
.explore-body h3 {
  font-size: 1.45rem;
  margin: 0 0 .75rem;
  letter-spacing: -.005em;
  color: var(--emerald-dark);
}
.explore-body p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.explore-link {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  transition: color .2s;
}
.explore-card:hover .explore-link { color: var(--gold); }

.explore-footer {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.explore-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 2rem;
  border: 1.5px solid var(--emerald);
  color: var(--emerald);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.explore-cta:hover {
  background: var(--emerald);
  color: var(--white);
}
.explore-cta span { font-size: 1.1rem; }

/* ============ DAY-CARDS REVEAL (homepage Italy collapse) ============ */
.day-reveal {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  background: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  padding: 2rem 1rem;
  font-family: var(--sans);
  transition: transform .25s ease;
}
.day-reveal:hover { transform: translateY(-2px); }
.day-reveal:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.reveal-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 520px;
}
.reveal-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  max-width: 200px;
}
.reveal-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: transform .55s cubic-bezier(.4, 1.6, .5, 1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
}
.reveal-plus {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  transition: stroke .3s ease;
}
.day-reveal:hover .reveal-circle {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.3);
}
.day-reveal:hover .reveal-plus { stroke: var(--white); }
.day-reveal[aria-expanded="true"] .reveal-circle {
  transform: rotate(45deg);
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 8px 24px rgba(14, 77, 58, 0.25);
}
.day-reveal[aria-expanded="true"] .reveal-plus { stroke: var(--white); }

.reveal-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--emerald-dark);
  font-weight: 500;
  letter-spacing: -.005em;
}
.reveal-helper {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.day-reveal[aria-expanded="true"] .reveal-collapsed { display: none; }
.day-reveal:not([aria-expanded="true"]) .reveal-expanded { display: none; }

/* The collapsed extra cards container */
.day-cards-extra {
  grid-column: 1 / -1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .7s ease, opacity .5s ease;
}
.day-cards-extra .day-cards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
}
@media (max-width: 720px) {
  .day-cards-extra .day-cards-inner { grid-template-columns: 1fr; }
}
.day-cards-extra.expanded {
  max-height: 5000px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .day-cards-extra { transition: opacity .15s; }
  .reveal-circle { transition: background .15s, border-color .15s; }
}

/* ============ COMMUNITY ============ */
.community {
  position: relative;
  padding: var(--gap) 0;
  color: var(--white);
  overflow: hidden;
}
.community-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.community-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 42, 32, 0.85), rgba(6, 42, 32, 0.92));
  z-index: 1;
}
.community-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* === Split layout: text card on left, dome visible on right === */
.community-split { padding: 0; }
.community-split .community-overlay {
  background: linear-gradient(90deg,
    rgba(6, 42, 32, 0.95) 0%,
    rgba(6, 42, 32, 0.82) 30%,
    rgba(6, 42, 32, 0.4) 60%,
    rgba(6, 42, 32, 0.05) 100%);
}
@media (max-width: 880px) {
  .community-split .community-overlay {
    background: linear-gradient(180deg,
      rgba(6, 42, 32, 0.35) 0%,
      rgba(6, 42, 32, 0.45) 35%,
      rgba(6, 42, 32, 0.92) 65%,
      rgba(6, 42, 32, 0.96) 100%);
  }
}
.community-split .community-inner {
  text-align: left;
  max-width: var(--max);
  padding-top: clamp(5rem, 10vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
  min-height: 620px;
  display: flex;
  align-items: center;
}
.community-card {
  max-width: 560px;
}
.community-card .eyebrow {
  margin-bottom: 1.25rem;
}
.community-card h2 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.community-card h2 em {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
}
.give-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin: 0 0 2rem;
  line-height: 1.5;
  font-weight: 400;
}
.community-card blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2.25rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}
.community-card blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 1rem;
  font-weight: 600;
}
.give-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.give-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 300;
}
.give-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .9rem;
  top: 2px;
}
@media (max-width: 880px) {
  .community-split .community-inner {
    min-height: 720px;
    align-items: flex-end;
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .community-card { max-width: 100%; }
}
.community h2 { color: var(--white); font-weight: 300; }
.community blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  margin: 2.5rem 0;
  padding: 0 1rem;
  line-height: 1.5;
}
.community blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  font-weight: 600;
}
.give-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  text-align: left;
  margin-top: 3rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}
.give-grid em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
@media (max-width: 600px) { .give-grid { grid-template-columns: 1fr; } }

/* ============ NETWORK ============ */
.network {
  padding: var(--gap) 0;
  background: var(--bg);
}
.network-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.hub {
  background: var(--bg-warm);
  padding: 1.25rem 2rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--emerald-dark);
  border-bottom: 2px solid var(--gold);
  letter-spacing: .03em;
}
.hub.muted {
  background: transparent;
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-style: italic;
}

/* ============ FAQ ============ */
.faq {
  padding: var(--gap) 0;
  background: var(--bg-warm);
}
.faq details {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  padding: 1.5rem 1.5rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3.5rem;
  transition: color .2s;
}
.faq summary:hover { color: var(--emerald); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .2s;
  font-family: var(--sans);
  font-weight: 300;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 1.5rem 1.75rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ============ BOOK ============ */
.book {
  padding: var(--gap) 0;
  background: var(--bg);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .book-grid { grid-template-columns: 1fr; } }
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 540px) { .contact-block { grid-template-columns: 1fr; } }
.contact-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .35rem;
}
.contact-block a {
  font-size: .98rem;
  color: var(--ink);
  font-weight: 400;
}
.contact-block a:hover { color: var(--emerald); }

.book-form {
  background: var(--bg-warm);
  padding: clamp(2rem, 4vw, 3rem);
}
.book-form label {
  display: block;
  margin-bottom: 1.5rem;
}
.book-form span {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .5rem;
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .2s;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--emerald);
}
.book-form textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 1.25rem 0 0;
  font-style: italic;
  text-align: center;
  font-weight: 300;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(4rem, 6vw, 5.5rem) 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .brand-arabic { color: var(--white); }
.footer-brand .brand-en { color: var(--gold); }
.footer-tag {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.footer-heading {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: .65rem;
  font-size: .92rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p { margin: 0; }
.footer-quote {
  font-family: var(--serif);
  color: var(--gold-soft);
  font-style: italic;
}

/* ============ UTILITIES ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

::selection { background: var(--emerald); color: var(--white); }

/* ============================================================
   PREMIUM POLISH PASS (applied site-wide)
   ============================================================ */

/* Smooth scroll with offset for fixed nav */
html { scroll-padding-top: 88px; }

/* Universal focus-visible — gold ring with offset, only for keyboard users */
*:focus { outline: none; }
*:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Slow image zoom — 1200ms feels intentional, "I'm being shown something" */
.cat-image img,
.day-image img,
.dest-image img,
.intro-image img,
.italy-banner img,
.wwd-image img,
.explore-image img,
.bio-photo img {
  transition: transform 1200ms cubic-bezier(.2, .8, .2, 1) !important;
}

/* Card hover-lift — uniform 4px lift with warm-shadow expansion */
.cat-card:hover,
.dest-card:hover,
.wwd-card:hover,
.explore-card:hover {
  box-shadow: var(--shadow-lifted);
}

/* Underline-grow on inline body links (links inside <p> tags) */
.intro-text p a,
.bio-content p a,
section p a:not(.btn):not(.btn-elegant):not(.btn-link):not(.cat-link):not(.wwd-link):not(.dest-link):not(.trip-link):not(.footer-link):not(.explore-link):not(.gallery-cta):not(.explore-cta):not(.nav-cta) {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 400ms cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  padding-bottom: 1px;
}
.intro-text p a:hover,
.bio-content p a:hover {
  background-size: 100% 1px;
}

/* Image fade-in on load */
img {
  transition: opacity 600ms ease;
}
img[loading="lazy"]:not(.preview-img) {
  opacity: 0;
}
img[loading="lazy"]:not(.preview-img).loaded,
img[loading="eager"] {
  opacity: 1;
}

/* Smart number formatting — tabular figures inside pricing/spec values */
.wwd-specs dd,
.price,
.day-tag,
.dest-meta {
  font-variant-numeric: tabular-nums;
}

/* WWD card height equalization — all cards in a row line up */
.wwd-card {
  height: 100%;
}
.wwd-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wwd-body > .wwd-tag,
.wwd-body > h3,
.wwd-body > h4 {
  flex-shrink: 0;
}

/* Push the trust+link group to the BOTTOM of every card.
   Only ONE element has margin-top:auto — siblings flow naturally beneath it. */
.wwd-trust {
  margin-top: auto !important;
  padding-top: 1.25rem;
}
.wwd-link {
  align-self: flex-start;
  margin-top: 1rem !important;
}

/* WWD spec dt — fixed column width so labels align across all cards */
.wwd-specs > div {
  align-items: start;
}
.wwd-specs dt {
  white-space: nowrap;
}

/* Marquee — mobile breakpoint */
@media (max-width: 540px) {
  .marquee-tile { width: 200px; }
  .marquee-track { animation-duration: 50s; }
  .tile-place { font-size: 1.15rem; }
}

/* Form inputs — premium focus state */
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  background: var(--bg-warm);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.15);
}

/* Button :focus-visible (additional, gold outline matches) */
.btn,
.btn-elegant,
.btn-link,
.wwd-filter,
.nav-cta,
.faq summary {
  position: relative;
}
.faq summary:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
}

/* Disabled state for buttons */
.btn:disabled,
.btn-elegant:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Network hub muted — slightly more visible dashed border */
.hub.muted {
  border-width: 1.5px;
}

/* Generous section padding — match Agent 2's "12vw clamp" recommendation
   (only applies where var(--gap) is used) */
:root {
  --gap: clamp(4rem, 9vw, 7.5rem);
}

/* ============================================================
   SUBPAGE STYLES (what-we-do.html and future sub-pages)
   ============================================================ */

/* Subpages need extra top padding because nav is solid from the start */
.page-subpage {
  padding-top: 0;
}

/* Solid-from-load nav variant for sub-pages */
.nav.nav-solid {
  position: fixed;
  background: rgba(251, 250, 247, 0.97);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.nav-solid .brand-arabic { color: var(--emerald-dark); }
.nav.nav-solid .brand-en { color: var(--gold); }
.nav.nav-solid .nav-links a { color: var(--ink); }
.nav.nav-solid .nav-links a:hover { color: var(--emerald); }
.nav.nav-solid .nav-toggle span { background: var(--ink); }
.nav.nav-solid .nav-cta:hover {
  background: var(--emerald);
  color: var(--white) !important;
  border-color: var(--emerald);
}

/* Active page indicator in nav */
.nav-links a.active {
  color: var(--emerald) !important;
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--gold);
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 1.5rem; }
.page-header h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 900px;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.page-header .lead {
  font-size: 1.2rem;
  max-width: 760px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ============ OFFERINGS ============ */
.offering {
  padding: var(--gap) 0;
}
.offering-light { background: var(--bg); }
.offering-warm { background: var(--bg-warm); }

.offering-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .offering-row { grid-template-columns: 1fr; }
}
.offering-reverse {
  direction: rtl;
}
.offering-reverse > * {
  direction: ltr;
}
@media (max-width: 880px) {
  .offering-reverse { direction: ltr; }
}

.offering-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
}
.offering-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.offering-image:hover img { transform: scale(1.04); }

.offering-text .cat-tag {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
}
.offering-text h2 {
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}
.offering-text .lead {
  margin-bottom: 1.75rem;
}

.offering-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.offering-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .65rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}
.offering-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  top: 1px;
}

.offering-now {
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  font-size: .98rem;
  color: var(--ink);
  margin: 0 0 1.75rem;
}
.offering-warm .offering-now {
  background: var(--bg);
}
.offering-now strong {
  color: var(--emerald-dark);
  font-weight: 600;
}

/* Two-column split inside Programs section */
.program-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 600px) { .program-split { grid-template-columns: 1fr; } }
.program-split h4 {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--emerald-dark);
  margin: 0 0 .85rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}
.program-split .offering-list { margin-bottom: 0; }
.program-split .offering-list li { font-size: .95rem; }

/* ============ WHAT WE DO — explorer (filter pills + featured + grid) ============ */
.wwd-explorer {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--bg);
}

/* Filter pills row */
.wwd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.wwd-filter {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  padding: .7rem 1.25rem;
  cursor: pointer;
  border-radius: 999px;
  transition: all .25s ease;
}
.wwd-filter:hover {
  color: var(--emerald);
  border-color: var(--gold);
}
.wwd-filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Section sub-eyebrow */
.sub-eyebrow {
  margin: 0 0 1.5rem;
  letter-spacing: .25em;
}

/* Featured row — flex so filtered single cards center cleanly */
.wwd-featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.wwd-featured .wwd-card-large {
  flex: 1 1 480px;
  max-width: 580px;
  min-width: 280px;
}

/* Smaller grid — flex with min/max widths */
.wwd-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.wwd-grid .wwd-card {
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 240px;
}
@media (max-width: 540px) {
  .wwd-grid .wwd-card,
  .wwd-featured .wwd-card-large {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* Card base */
.wwd-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
  overflow: hidden;
}
.wwd-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
  box-shadow: 0 14px 32px rgba(14, 77, 58, 0.08);
}
.wwd-card.wwd-card-large {
  background: var(--bg-warm);
}

/* Card image */
.wwd-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.wwd-card-large .wwd-image {
  aspect-ratio: 4 / 3;
}
.wwd-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.wwd-card:hover .wwd-image img { transform: scale(1.06); }

/* "Booking now" badge (legacy) */
.wwd-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: .35rem .75rem;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}

/* Status badges — every card gets one (Booking now / Coming / Year-round) */
.wwd-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .4rem .85rem;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.status-booking {
  background: var(--gold);
  color: var(--ink);
  /* Subtle pulse to signal urgency */
  animation: status-pulse 2.5s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 146, 74, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(184, 146, 74, 0); }
}
.status-coming {
  background: rgba(14, 77, 58, 0.92);
  color: var(--gold-soft);
}
.status-anytime {
  background: rgba(255, 255, 255, 0.92);
  color: var(--emerald-dark);
}

/* Trust pills — micro-badges under specs (Scholar / Halal / Prayer-friendly) */
.wwd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .65rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.wwd-trust li {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--emerald);
  font-weight: 600;
  background: rgba(14, 77, 58, 0.06);
  padding: .35rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.wwd-card-large .wwd-trust { gap: .5rem .75rem; margin-top: 1.25rem; }
.wwd-card-large .wwd-trust li { font-size: .72rem; padding: .4rem .85rem; }

/* Finder above filter pills */
.wwd-finder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.wwd-finder-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: -.005em;
}
.wwd-finder .wwd-filters {
  margin-bottom: 0;
}

/* Card body */
.wwd-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.wwd-card-large .wwd-body { padding: 2rem 2rem 2.25rem; gap: .65rem; }

.wwd-tag {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
.wwd-body h3 {
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--emerald-dark);
  margin: 0;
}
.wwd-body h4 {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--emerald-dark);
  margin: 0;
}
.wwd-body p {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.55;
  margin: 0;
}
.wwd-meta {
  font-size: .78rem !important;
  color: var(--gold) !important;
  letter-spacing: .12em;
  font-weight: 600;
  margin-top: .25rem !important;
}
/* Spec list (Dates · Duration · Price · Led by) */
.wwd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.5rem;
  margin: .35rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.wwd-card-large .wwd-specs {
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.75rem;
  padding: 1.25rem 0 .25rem;
}
.wwd-specs > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.wwd-specs dt {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.wwd-specs dd {
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.wwd-card-large .wwd-specs dd {
  font-size: 1rem;
}
@media (max-width: 540px) {
  .wwd-specs { grid-template-columns: 1fr 1fr; gap: .5rem 1rem; }
  .wwd-specs dt { font-size: .6rem; }
  .wwd-specs dd { font-size: .88rem; }
}

.wwd-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 1.25rem;
  transition: color .2s, gap .25s ease;
}
.wwd-card:hover .wwd-link { color: var(--gold); gap: .6rem; }

/* Filtered-out cards animate out */
.wwd-card.filtered-out {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  max-width: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.wwd-empty {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin: 2rem 0 0;
  font-size: .98rem;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: var(--gap) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step h4 {
  margin: .5rem 0 .75rem;
  font-size: 1.15rem;
  letter-spacing: -.005em;
}
.step p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  line-height: 1;
  letter-spacing: -.02em;
}

/* ============ PAGE CTA ============ */
.page-cta {
  padding: var(--gap) 0;
  background: var(--emerald-deep);
  color: var(--white);
  text-align: center;
}
.page-cta h2 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-cta .lead {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--emerald-deep);
  border-color: var(--white);
}

/* ============ COMMUNITY PAGE — network-detail two-up ============ */
.network-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 5vw, 4rem);
}
@media (max-width: 720px) { .network-detail { grid-template-columns: 1fr; } }
.network-card {
  background: var(--bg-warm);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 3px solid var(--gold);
}
.network-card .cat-tag {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .85rem;
}
.network-card h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
.network-card p {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.network-card em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--emerald);
  font-weight: 400;
}
.network-card .cat-link {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  transition: color .2s;
}
.network-card .cat-link:hover { color: var(--gold); }

/* ============ BACK TO TOP BUTTON ============ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  border: 1.5px solid var(--emerald);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease, border-color .2s ease;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(10, 58, 44, 0.25);
  padding: 0;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 58, 44, 0.35);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 540px) {
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg { width: 16px; height: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .15s, visibility .15s; transform: none !important; }
}
