/* ================================================================
   AAFIYA WELLNESS — SHARED STYLESHEET
   Sea-Island Clinical-Luxury Theme
   ================================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --ocean-900: #082C45;
  --ocean-700: #0F5272;
  --ocean-500: #1A7A8A;
  --ocean-400: #2898A8;
  --ocean-200: #7DCAD3;
  --ocean-100: #C0E8EC;
  --ocean-50:  #EBF8FA;

  --sand-900:  #7A5C38;
  --sand-600:  #B89870;
  --sand-300:  #E2CCAA;
  --sand-100:  #F4EAD8;
  --sand-50:   #FDFAF5;

  --coral-600: #B85A38;
  --coral-500: #CC6B47;
  --coral-400: #E07D58;

  --white: #FFFFFF;
  --ink-900: #0E1F2B;
  --ink-600: #2F4A5C;
  --ink-400: #567385;
  --ink-200: #9BB5C2;

  --border:    rgba(26,122,138,.14);
  --border-md: rgba(26,122,138,.22);
  --shadow-sm: 0 2px 12px rgba(8,44,69,.07);
  --shadow-md: 0 8px 40px rgba(8,44,69,.12);
  --shadow-lg: 0 20px 64px rgba(8,44,69,.16);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --max-w:  1200px;
  --nav-h:  72px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--sand-50); color: var(--ink-900); overflow-x: hidden; line-height: 1.72; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand-100); }
::-webkit-scrollbar-thumb { background: var(--ocean-400); border-radius: 3px; }

/* ── SKIP LINK (ACCESSIBILITY) ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ocean-700); color: var(--white);
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .85rem; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ================================================================
   NAVIGATION
================================================================ */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  background: rgba(253,250,245,.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 28px rgba(8,44,69,.10); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: var(--nav-h);
}
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-logo:focus-visible { outline: 2px solid var(--ocean-400); border-radius: 4px; }

.nav-list { display: flex; align-items: center; gap: .15rem; }
.nav-list li a {
  font-size: .78rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-600); padding: .5rem .9rem; border-radius: var(--radius-sm);
  transition: color .2s, background .2s; display: block;
}
.nav-list li a:hover          { color: var(--ocean-500); background: rgba(40,152,168,.07); }
.nav-list li a[aria-current]  { color: var(--ocean-500); }
.nav-list li a.nav-cta {
  background: var(--ocean-500); color: var(--white) !important;
  border-radius: 40px; padding: .52rem 1.3rem; font-weight: 600;
  transition: background .2s, transform .18s, box-shadow .18s;
  box-shadow: 0 2px 14px rgba(26,122,138,.3);
}
.nav-list li a.nav-cta:hover  { background: var(--ocean-700); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,122,138,.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ocean-900); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: var(--nav-h) 0 0;
  background: var(--sand-50); z-index: 899;
  flex-direction: column; padding: 1.5rem 2rem; gap: .2rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-900); padding: 1rem 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--ocean-500); }
.mobile-menu .mob-cta {
  margin-top: 1.2rem; background: var(--ocean-500); color: var(--white) !important;
  text-align: center; border-radius: 40px; padding: 1rem 2rem; border-bottom: none;
  font-weight: 600;
}

/* ================================================================
   SHARED LAYOUT HELPERS
================================================================ */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 2rem; }

.section     { padding: 5.5rem 2rem; }
.section-sm  { padding: 4rem 2rem; }
.section-lg  { padding: 7rem 2rem; }
.tc          { text-align: center; }

/* ── LABELS / EYEBROWS ── */
.eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocean-500); margin-bottom: .9rem;
}

/* ── HEADINGS ── */
.h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -.01em;
}
.h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 400; line-height: 1.18; letter-spacing: -.01em;
}
.h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500; line-height: 1.3;
}
.h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 500; line-height: 1.35;
}
em.serif { font-style: italic; color: var(--ocean-400); }
.color-ocean { color: var(--ocean-500); }
.color-white { color: var(--white); }

/* ── BODY TEXT ── */
.lead {
  font-size: 1.05rem; font-weight: 300; color: var(--ink-600); line-height: 1.82;
  max-width: 680px;
}
.body-sm { font-size: .9rem; font-weight: 300; color: var(--ink-400); line-height: 1.75; }

/* ── DIVIDERS ── */
.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: .8rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 40px; border: none; cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .18s; white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--ocean-400); outline-offset: 3px; }

.btn-primary {
  background: var(--coral-500); color: var(--white);
  box-shadow: 0 4px 20px rgba(204,107,71,.35);
}
.btn-primary:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,107,71,.42); }

.btn-ocean {
  background: var(--ocean-500); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,122,138,.28);
}
.btn-ocean:hover { background: var(--ocean-700); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.13); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-white {
  background: var(--white); color: var(--coral-600);
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

.btn-outline-ocean {
  background: transparent; color: var(--ocean-500);
  border: 1.5px solid var(--ocean-400);
}
.btn-outline-ocean:hover { background: var(--ocean-50); }

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32);
  color: var(--ocean-100); font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; padding: .4rem 1.1rem; border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* ── CARD BASE ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ================================================================
   HERO (inner pages)
================================================================ */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 4.5rem) 2rem 5rem;
  text-align: center; overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg,rgba(8,44,69,.88) 0%,rgba(15,82,114,.72) 60%,rgba(26,122,138,.55) 100%);
}
.page-hero-img {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.page-hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero .badge   { margin-bottom: 1.5rem; }
.page-hero .h1      { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead    { color: rgba(255,255,255,.82); margin: 0 auto; max-width: 600px; }

/* ================================================================
   HERO HOME
================================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(155deg,rgba(8,44,69,.80) 0%,rgba(15,82,114,.68) 50%,rgba(26,122,138,.46) 100%);
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px; z-index: 2;
  background: linear-gradient(to top, var(--sand-50), transparent);
}
.hero-content {
  position: relative; z-index: 3; max-width: 900px;
  text-align: center; padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}
.hero-content .badge   { margin-bottom: 2rem; }
.hero-content .h1      { color: var(--white); margin-bottom: 1.5rem; }
.hero-content .lead    { color: rgba(255,255,255,.84); margin: 0 auto 1.2rem; font-size: 1.08rem; }
.hero-tagline          { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ocean-200); margin-bottom: 2.5rem; }
.hero-btns             { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; z-index: 3; animation: cue-bounce 2.2s infinite; cursor: pointer;
}
.scroll-cue svg { width: 16px; height: 16px; }
@keyframes cue-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(7px); }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 1.2rem 2rem;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 500; color: var(--ink-600); letter-spacing: .04em;
}
.trust-item svg { width: 16px; height: 16px; color: var(--ocean-500); flex-shrink: 0; }

/* ================================================================
   CARE CARDS (3-col grid)
================================================================ */
.care-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  max-width: var(--max-w); margin: 3.5rem auto 0;
}
.care-card { padding: 2.2rem; }
.care-card-accent {
  display: inline-block; width: 36px; height: 4px;
  background: linear-gradient(90deg,var(--ocean-500),var(--ocean-200));
  border-radius: 2px; margin-bottom: 1.4rem;
}
.care-card .h4  { color: var(--ocean-900); margin-bottom: 1.1rem; }
.care-card ul   { }
.care-card ul li {
  font-size: .87rem; font-weight: 300; color: var(--ink-600);
  padding: .32rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: .6rem;
}
.care-card ul li:last-child { border-bottom: none; }
.care-card ul li::before { content: '—'; color: var(--ocean-400); flex-shrink: 0; font-size: .8rem; margin-top: .15rem; }

/* ================================================================
   OCEAN (dark) SECTION
================================================================ */
.ocean-section {
  background: linear-gradient(155deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  position: relative; overflow: hidden;
}
.ocean-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 80% 20%, rgba(125,202,211,.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(125,202,211,.06) 0%, transparent 50%);
}

.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem;
  max-width: var(--max-w); margin: 3.5rem auto 0;
}
.why-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.7rem;
  transition: background .3s;
}
.why-item:hover { background: rgba(255,255,255,.1); }
.why-check { display: block; width: 28px; height: 28px; border: 1.5px solid var(--ocean-200); border-radius: 50%; margin-bottom: .9rem; display: flex; align-items: center; justify-content: center; }
.why-check svg { width: 13px; height: 13px; color: var(--ocean-200); }
.why-item .h4  { color: var(--white); margin-bottom: .55rem; font-size: 1.1rem; }
.why-item p    { font-size: .87rem; color: rgba(255,255,255,.68); font-weight: 300; line-height: 1.72; }

/* ================================================================
   RESULTS GRID
================================================================ */
.results-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
  max-width: var(--max-w); margin: 3rem auto 0;
}
.result-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.result-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ocean-500), var(--ocean-200));
}
.result-time {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--ocean-500); margin-bottom: .5rem;
}
.result-card p { font-size: .87rem; color: var(--ink-600); font-weight: 300; line-height: 1.72; }

/* ================================================================
   TIMELINE (How to Get Started)
================================================================ */
.timeline { position: relative; max-width: 680px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 23px; top: 4px; bottom: 4px; width: 1.5px;
  background: linear-gradient(to bottom, var(--ocean-400), var(--ocean-100));
}
.timeline-item { display: flex; gap: 2rem; padding-bottom: 2.8rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.t-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--ocean-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--sand-50);
}
.t-body { flex: 1; padding-top: .65rem; }
.t-body .h4  { color: var(--ocean-900); margin-bottom: .5rem; }
.t-body p    { font-size: .9rem; font-weight: 300; color: var(--ink-600); line-height: 1.78; }

/* ================================================================
   PRICING
================================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  max-width: 1100px; margin: 3rem auto 0;
}
.pricing-card { display: flex; flex-direction: column; }
.pricing-card.featured {
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 2px var(--ocean-400), var(--shadow-md);
}
.pricing-head { padding: 2rem 1.9rem 1.5rem; border-bottom: 1px solid var(--border); position: relative; }
.pricing-pop {
  position: absolute; top: 0; right: 1.6rem;
  background: var(--ocean-500); color: var(--white);
  font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-tier { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ocean-500); margin-bottom: .35rem; }
.pricing-name { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--ocean-900); margin-bottom: .4rem; }
.pricing-amount { font-size: 2.8rem; font-weight: 600; color: var(--ocean-900); line-height: 1; }
.pricing-amount sup { font-size: 1.2rem; vertical-align: super; }
.pricing-note { font-size: .8rem; color: var(--ink-200); margin-top: .35rem; }
.pricing-body { padding: 1.5rem 1.9rem; flex: 1; }
.pricing-desc { font-size: .87rem; font-weight: 300; color: var(--ink-600); line-height: 1.68; margin-bottom: 1.2rem; }
.pricing-feats { }
.pricing-feats li {
  font-size: .84rem; font-weight: 300; color: var(--ink-600);
  padding: .38rem 0; display: flex; gap: .55rem;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.pricing-feats li:last-child { border-bottom: none; }
.feat-check { color: var(--ocean-500); flex-shrink: 0; font-size: .9rem; margin-top: .08rem; }
.pricing-foot { padding: 0 1.9rem 1.9rem; }
.pricing-cta {
  display: block; text-align: center;
  background: var(--ocean-500); color: var(--white);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .88rem 1.5rem; border-radius: 40px;
  transition: background .2s, transform .18s;
}
.pricing-cta:hover { background: var(--ocean-700); transform: translateY(-1px); }
.pricing-card.featured .pricing-cta { background: var(--coral-500); }
.pricing-card.featured .pricing-cta:hover { background: var(--coral-600); }

/* Membership cards */
.membership-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
  max-width: 900px; margin: 3rem auto 0;
}
.membership-card {
  padding: 2.2rem; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.membership-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mem-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ocean-500), var(--ocean-200));
}
.mem-type { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ocean-500); margin-bottom: .5rem; }
.mem-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--ocean-900); margin-bottom: .4rem; }
.mem-price { font-size: 2.4rem; font-weight: 600; color: var(--ocean-900); font-family: var(--font-display); line-height: 1; }
.mem-per   { font-size: .82rem; color: var(--ink-200); display: inline; }
.mem-desc  { font-size: .87rem; color: var(--ink-600); font-weight: 300; line-height: 1.7; margin: 1.2rem 0; }
.mem-cta {
  display: block; text-align: center;
  background: var(--ocean-500); color: var(--white);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .84rem 1.5rem; border-radius: 40px; margin-top: 1.5rem;
  transition: background .2s, transform .18s;
}
.mem-cta:hover { background: var(--ocean-700); transform: translateY(-1px); }

/* ================================================================
   WHO PAGE
================================================================ */
.who-list li {
  display: flex; gap: 1.1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start;
}
.who-list li:last-child { border-bottom: none; }
.who-dot {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ocean-400); margin-top: .6rem;
}
.who-list li p { font-size: .96rem; font-weight: 300; color: var(--ink-600); line-height: 1.72; }

.pullquote {
  background: var(--ocean-50); border-left: 3px solid var(--ocean-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.2rem; margin: 3rem 0;
}
.pullquote blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem;
  color: var(--ocean-900); line-height: 1.6; margin-bottom: .8rem;
}
.pullquote p { font-size: .9rem; color: var(--ink-600); font-weight: 300; line-height: 1.72; }

.poem-block {
  background: linear-gradient(140deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  border-radius: var(--radius-xl); padding: 4rem 3.5rem;
  text-align: center; position: relative; overflow: hidden; max-width: 680px; margin: 0 auto;
}
.poem-block::before {
  content: '"'; position: absolute; top: -28px; left: 16px;
  font-family: var(--font-display); font-size: 14rem; font-weight: 300;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
}
.poem-block .poem-title {
  font-family: var(--font-display); font-style: italic; font-size: 1.7rem;
  color: var(--ocean-200); margin-bottom: 1.8rem;
}
.poem-block p {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: rgba(255,255,255,.82); line-height: 2; max-width: 480px; margin: 0 auto;
}
.poem-block strong { color: var(--ocean-200); font-style: normal; font-weight: 600; }

/* Commitment pillars */
.pillars-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.5rem;
}
.pillar {
  background: var(--sand-50); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.4rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.pillar-mark {
  flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ocean-400); margin-top: .58rem;
}
.pillar-title { font-size: .88rem; font-weight: 500; color: var(--ink-900); margin-bottom: .25rem; }
.pillar-body  { font-size: .82rem; font-weight: 300; color: var(--ink-400); line-height: 1.65; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.doctor-frame { position: relative; }
.doctor-frame::before {
  content: ''; position: absolute; inset: -10px -10px 10px 10px;
  border: 1.5px solid var(--ocean-200); border-radius: var(--radius-lg);
  opacity: .4; z-index: 0;
}
.doctor-frame img {
  width: 100%; border-radius: var(--radius-md); object-fit: cover;
  aspect-ratio: 3/4; position: relative; z-index: 1;
}
.credentials-block {
  background: var(--ocean-900); border-radius: var(--radius-md); padding: 1.7rem; margin-top: 1.5rem;
}
.credentials-block h4 {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ocean-200); margin-bottom: 1rem;
}
.credentials-block ul { }
.credentials-block ul li {
  font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.75);
  padding: .42rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; gap: .5rem; align-items: flex-start;
}
.credentials-block ul li:last-child { border-bottom: none; }
.credentials-block ul li::before { content: '▸'; color: var(--ocean-200); font-size: .6rem; margin-top: .35rem; flex-shrink: 0; }

.meaning-panel {
  background: linear-gradient(135deg, var(--ocean-50), var(--ocean-100));
  border: 1px solid var(--ocean-100); border-radius: var(--radius-md); padding: 2.2rem; margin-bottom: 2.2rem;
}
.arabic-glyph {
  font-family: var(--font-display); font-size: 3.2rem; font-style: italic;
  color: var(--ocean-700); margin-bottom: .6rem; line-height: 1;
}
.dr-quote {
  background: var(--sand-100); border-radius: var(--radius-md); padding: 1.8rem;
  border-left: none; margin-top: 2.5rem;
}
.dr-quote blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.18rem;
  color: var(--ocean-900); line-height: 1.62; margin-bottom: .7rem;
}
.dr-quote cite { font-size: .8rem; font-style: normal; color: var(--ink-400); font-weight: 500; }

/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 0; background: none; border: none; text-align: left; gap: 1.5rem; cursor: pointer;
}
.faq-btn h3 { font-size: .95rem; font-weight: 500; color: var(--ink-900); line-height: 1.45; }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--ocean-50); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--ocean-500); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--ocean-500); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden; transition: max-height .44s ease, padding .3s;
}
.faq-item.open .faq-body { max-height: 900px; padding-bottom: 1.5rem; }
.faq-body p { font-size: .9rem; font-weight: 300; color: var(--ink-600); line-height: 1.8; }

/* ================================================================
   ENROLL PAGE
================================================================ */
.enroll-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 3.5rem; max-width: 660px; margin: 0 auto; box-shadow: var(--shadow-md);
}
.enroll-steps { margin: 2rem 0; }
.enroll-step { display: flex; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.enroll-step:last-child { border-bottom: none; }
.e-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ocean-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 600; flex-shrink: 0;
}
.e-body strong { display: block; font-size: .93rem; color: var(--ink-900); margin-bottom: .3rem; }
.e-body p { font-size: .88rem; font-weight: 300; color: var(--ink-600); line-height: 1.7; }
.enroll-note { font-size: .8rem; color: var(--ink-200); font-weight: 300; margin-top: 1.2rem; }

/* ================================================================
   CTA SECTION
================================================================ */
.cta-band {
  background: linear-gradient(130deg, var(--coral-500) 0%, var(--coral-600) 100%);
  padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 60px),
              repeating-linear-gradient(0deg,   rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 60px);
}
.cta-band .h2 { color: var(--white); margin-bottom: .9rem; position: relative; }
.cta-band p   { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 2rem; font-weight: 300; position: relative; }

/* ================================================================
   CONTACT STRIP
================================================================ */
.contact-strip { background: var(--sand-100); border-top: 1px solid var(--border); padding: 3rem 2rem; }
.contact-items { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.ci { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--ink-600); font-weight: 300; }
.ci a { color: var(--ink-600); transition: color .2s; }
.ci a:hover { color: var(--ocean-500); }
.ci svg { width: 15px; height: 15px; color: var(--ocean-500); flex-shrink: 0; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: var(--ocean-900); color: var(--white); padding: 4.5rem 2rem 2rem; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand .fl { height: 44px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.78; max-width: 300px; }
.footer-col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ocean-200); margin-bottom: 1.2rem; }
.footer-col ul { }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .86rem; font-weight: 300; color: rgba(255,255,255,.65);
  transition: color .2s; display: block;
}
.footer-col ul li a:hover { color: var(--ocean-200); }
.footer-bottom {
  max-width: var(--max-w); margin: 3rem auto 0;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); font-weight: 300; }

/* ================================================================
   UTILITIES / SPACING HELPERS
================================================================ */
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-5  { margin-top: 2.5rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.gap-1  { gap: 1rem; }
.gap-2  { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.jc-center { justify-content: center; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; }
  .care-grid      { grid-template-columns: 1fr 1fr; }
  .about-split    { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .why-grid       { grid-template-columns: 1fr; }
  .membership-grid{ grid-template-columns: 1fr; }
  .results-grid   { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner{ gap: 1.5rem; }
  .poem-block     { padding: 2.5rem 2rem; }
  .nav-list       { display: none; }
  .hamburger      { display: flex; }
  .hero-content   { padding-top: calc(var(--nav-h) + 3rem); }
}
@media (max-width: 540px) {
  .care-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .enroll-card    { padding: 2rem 1.4rem; }
  .hero-btns      { flex-direction: column; align-items: center; }
  .section        { padding: 4rem 1.2rem; }
  .contact-items  { flex-direction: column; align-items: center; }
}
