/* ============================================================
   Mustafa Ahmed RPSI — site.css v2
   ============================================================ */

:root {
  --ink:        #0B1B2E;       /* base navy bg */
  --ink-2:      #142b46;       /* card bg navy */
  --ink-3:      #1f3a5c;
  --gold:       #c9a961;
  --gold-warm:  #b8902c;
  --gold-soft:  #e8d8a8;
  --gold-pale:  #f5ebd0;
  --cream:      #0B1B2E;       /* now navy */
  --cream-2:    #142b46;       /* now lighter navy */
  --paper:      #142b46;       /* card bg navy */
  --rule:       rgba(255,255,255,0.10);
  --rule-strong:rgba(255,255,255,0.22);
  --text:       #e8ecf2;       /* white text */
  --muted:      #a8b3c1;       /* light muted */
  --success:    #2d6a4f;
  --error:      #b3261e;
  --display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --body:    'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --arabic:  'Amiri', 'Traditional Arabic', serif;
  --container: 1180px;
  --container-narrow: 820px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #0B1B2E;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ffffff; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-warm); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 999; border-radius: var(--radius-sm); }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; color: #ffffff; margin: 0 0 .4em; letter-spacing: -0.005em; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 500; letter-spacing: -0.015em; line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.02rem; font-family: var(--body); font-weight: 600; color: #ffffff; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--body);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 999px;
}
.eyebrow::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 60ch; line-height: 1.55; }
.arabic { font-family: var(--arabic); direction: rtl; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .94rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-warm); border-color: var(--gold-warm); color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 28px -12px rgba(184,144,44,.55); }
.btn-secondary { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,.04); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-1px); }
.btn-large { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.topstrip { background: var(--ink); color: #d8dce3; font-size: .82rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.topstrip .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topstrip strong { color: var(--gold-soft); font-weight: 600; }
.topstrip a { color: #d8dce3; }
.topstrip a:hover { color: var(--gold-soft); }
.topstrip .right { display: flex; gap: 18px; align-items: center; }

header.site {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,27,46,.92);
}
header.site .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 42px; height: 42px; background: var(--gold); color: var(--ink); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.brand .name { line-height: 1.18; }
.brand .name .n { font-family: var(--display); font-weight: 500; color: var(--gold); font-size: 1.12rem; display: block; letter-spacing: -0.005em; }
.brand .name .t { font-size: .8rem; color: #a8b3c1; text-transform: uppercase; letter-spacing: 0.1em; }

nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a { padding: 8px 12px; font-size: .92rem; color: #ffffff; font-weight: 500; border-radius: var(--radius-sm); }
nav.primary a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
nav.primary a.active { color: var(--gold-warm); }
nav.primary .cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: #ffffff; margin: 5px 0; transition: all .3s var(--ease); }
@media (max-width: 980px) {
  nav.primary { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #0B1B2E; border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 24px 18px; gap: 2px; }
  nav.primary.open { display: flex; }
  nav.primary a { padding: 12px 8px; border-bottom: 1px solid var(--rule); }
  nav.primary .cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .menu-toggle { display: block; }
}

/* HERO (homepage) */
.hero { padding: 72px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 78% 8%, rgba(201,169,97,.12), transparent 65%); pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-arabic { font-family: var(--arabic); font-size: 2.1rem; color: var(--gold-warm); margin-bottom: 6px; direction: rtl; line-height: 1; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero .sub-ar { font-family: var(--arabic); color: var(--muted); font-size: 1.15rem; direction: rtl; margin: -6px 0 22px; }
.hero .sub { font-size: 1.12rem; color: var(--muted); max-width: 56ch; margin-bottom: 30px; line-height: 1.55; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero .availability { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--success); font-weight: 500; }
.hero .availability::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(45,106,79,.18); animation: pulse 2.2s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(45,106,79,.18); } 50% { box-shadow: 0 0 0 7px rgba(45,106,79,.08); } }

.hero-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.35); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 36px 70px -34px rgba(11,27,46,.28), 0 6px 18px -10px rgba(11,27,46,.08); position: relative; }
.hero-card::before { content: ''; position: absolute; top: -1px; left: 26px; right: 26px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-card img { border-radius: var(--radius); margin-bottom: 18px; width: 100%; height: auto; display: block; }
.hero-card .who { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--gold); margin-bottom: 2px; }
.hero-card .role { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.hero-card ul { list-style: none; margin: 0 0 16px; padding: 0; }
.hero-card ul li { display: flex; gap: 10px; padding: 9px 0; border-top: 1px solid var(--rule); font-size: .88rem; line-height: 1.4; }
.hero-card ul li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.hero-card ul li strong { display: block; color: var(--gold); font-family: var(--body); font-weight: 600; font-size: .9rem; }
.hero-card ul li span { color: var(--muted); }
.hero-card .stars { font-size: .85rem; color: var(--gold-warm); display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid var(--rule); }
.hero-card .stars b { color: #ffffff; font-family: var(--body); font-weight: 600; }
@media (max-width: 960px) {
  .hero { padding: 44px 0 48px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 380px; margin: 0 auto; }
}

/* PAGE HERO (sub-pages) */
.page-hero { padding: 64px 0 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 0%, rgba(201,169,97,.12), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; max-width: 820px; }
.page-hero .crumb { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.page-hero .crumb a { color: var(--muted); border-bottom: 1px dotted var(--rule-strong); padding-bottom: 1px; }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero h1 .em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; line-height: 1.55; margin-bottom: 24px; }
.page-hero .ar { font-family: var(--arabic); font-size: 1.8rem; color: var(--gold-warm); direction: rtl; line-height: 1; margin-bottom: 10px; }
.page-hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* MARQUEE */
.marquee { background: var(--ink); color: #d8dce3; padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 42s linear infinite; font-size: .88rem; font-weight: 500; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::before { content: '✦'; color: var(--gold); font-size: .7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; } }

/* SECTION SHELL */
section { padding: 90px 0; position: relative; }
section.tight { padding: 64px 0; }
.section-head { max-width: 740px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lede { margin: 0; }

/* ABOUT / COMMITMENTS */
.about { background: #0B1B2E; }
.about .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.about-intro h2 { margin-bottom: 20px; }
.about-intro p { color: var(--muted); }
.commitments { list-style: none; padding: 0; margin: 0; }
.commitments li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--rule); }
.commitments li:last-child { border-bottom: 1px solid var(--rule); }
.commitments .num { font-family: var(--arabic); font-size: 1.6rem; color: var(--gold-warm); font-weight: 700; direction: rtl; line-height: 1; padding-top: 4px; }
.commitments .title { font-family: var(--body); font-weight: 600; color: #ffffff; display: block; margin-bottom: 4px; font-size: 1rem; }
.commitments .desc { color: var(--muted); font-size: .94rem; line-height: 1.55; }
@media (max-width: 900px) { .about .container { grid-template-columns: 1fr; gap: 40px; } }

/* STATS */
.stats { background: var(--ink); color: #fff; padding: 64px 0; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--gold); font-weight: 500; line-height: 1; letter-spacing: -0.015em; }
.stat .l { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: #a8b3c1; margin-top: 12px; }
@media (max-width: 720px) { .stats .container { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* PULL QUOTE */
.pull-quote { background: #142b46; padding: 64px 0; text-align: center; border-bottom: 1px solid var(--rule); }
.pull-quote blockquote { font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 1.95rem); font-style: italic; font-weight: 400; color: #ffffff; max-width: 820px; margin: 0 auto; line-height: 1.4; }
.pull-quote blockquote::before { content: '“'; color: var(--gold); font-size: 3.2rem; line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.pull-quote blockquote::after { content: '”'; color: var(--gold); font-size: 3.2rem; line-height: 0; vertical-align: -0.4em; margin-left: 6px; }

/* PRACTICE / GENERIC CARD GRIDS */
.practice { background: #0B1B2E; }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.practice-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 26px; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.practice-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.practice-card:hover { transform: translateY(-3px); border-color: var(--rule-strong); box-shadow: 0 22px 42px -22px rgba(11,27,46,.2); }
.practice-card:hover::before { transform: scaleY(1); }
.practice-card .tag { display: inline-block; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--gold-warm); margin-bottom: 12px; }
.practice-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.practice-card p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .practice-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .practice-grid { grid-template-columns: 1fr; } }

/* NOTES FROM THE BOOTH */
.notes { background: var(--cream-2); position: relative; }
.notes::before { content: ''; position: absolute; inset: 0; background: radial-gradient(40% 50% at 0% 0%, rgba(201,169,97,.08), transparent 55%), radial-gradient(40% 50% at 100% 100%, rgba(11,27,46,.05), transparent 55%); pointer-events: none; }
.notes .container { position: relative; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px; }
.note { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px 28px 26px; position: relative; transition: all .35s var(--ease); }
.note::before { content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: var(--gold); opacity: .7; }
.note:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -22px rgba(11,27,46,.18); }
.note .ar { font-family: var(--arabic); font-size: 1.35rem; color: var(--gold-warm); direction: rtl; margin-bottom: 12px; line-height: 1; }
.note h3 { font-family: var(--display); font-size: 1.25rem; font-style: italic; font-weight: 500; color: #ffffff; margin-bottom: 14px; line-height: 1.3; }
.note p { font-family: var(--display); font-size: 1rem; color: var(--text); line-height: 1.65; margin-bottom: 18px; }
.note .marg { font-family: var(--body); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--rule); }
.note .marg::before { content: '↳'; color: var(--gold-warm); font-size: 1rem; }
@media (max-width: 960px) { .notes-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ADVISORY */
.advisory { background: var(--ink); color: #e8ecf2; position: relative; overflow: hidden; }
.advisory::before { content: ''; position: absolute; inset: 0; background: radial-gradient(45% 60% at 100% 0%, rgba(201,169,97,.18), transparent 60%); pointer-events: none; }
.advisory .container { position: relative; }
.advisory-intro { max-width: 720px; margin-bottom: 48px; }
.advisory h2 { color: #fff; margin-bottom: 18px; }
.advisory .eyebrow { color: var(--gold); }
.advisory .eyebrow::before { background: var(--gold); }
.advisory .lede { color: #b8c4d4; max-width: 64ch; margin-bottom: 22px; }
.advisory .intro-detail { color: #b8c4d4; font-size: 1rem; line-height: 1.65; max-width: 64ch; }
.advisory .intro-detail em { color: var(--gold-soft); font-style: italic; }
.advisory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.advisory-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 24px; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.advisory-card:hover { background: rgba(255,255,255,.06); border-color: rgba(201,169,97,.35); transform: translateY(-2px); }
.advisory-card.featured { background: linear-gradient(180deg, rgba(201,169,97,.12), rgba(201,169,97,.04)); border-color: rgba(201,169,97,.4); }
.advisory-card .price { font-family: var(--display); font-size: 1.45rem; color: var(--gold); font-weight: 500; display: block; margin-bottom: 4px; line-height: 1.1; }
.advisory-card .price small { font-size: .68rem; color: #a8b3c1; text-transform: uppercase; letter-spacing: .12em; margin-left: 6px; font-family: var(--body); font-weight: 600; }
.advisory-card h4 { color: #fff; margin: 4px 0 8px; font-size: 1rem; }
.advisory-card p { color: #b8c4d4; font-size: .88rem; margin: 0 0 14px; line-height: 1.5; flex-grow: 1; }
.advisory-card .ribbon { display: inline-block; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--ink); background: var(--gold); padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; align-self: flex-start; }
.advisory-cta { margin-top: 36px; text-align: center; }
.advisory-cta a { color: var(--gold-soft); border-bottom: 1px dotted rgba(232,216,168,.4); font-weight: 600; padding-bottom: 2px; }
.advisory-cta a:hover { color: #fff; border-color: #fff; }
@media (max-width: 960px) { .advisory-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .advisory-grid { grid-template-columns: 1fr; } }

/* DIALECTS */
.dialects { background: #0B1B2E; }
.dialects-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.dialect { text-align: center; padding: 28px 12px 24px; border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); transition: all .3s var(--ease); background: rgba(255,255,255,.03); }
.dialect:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(11,27,46,.16); }
.dialect a { display: block; color: inherit; text-decoration: none; }
.dialect .ar { font-family: var(--arabic); font-size: 1.8rem; color: var(--gold); direction: rtl; margin-bottom: 10px; line-height: 1; }
.dialect .en { font-family: var(--body); font-weight: 600; color: #ffffff; font-size: .92rem; }
.dialect .tier { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-warm); font-weight: 700; margin-top: 5px; }
.dialect.specialist { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,169,97,.07), transparent); }
@media (max-width: 980px) { .dialects-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .dialects-grid { grid-template-columns: repeat(2, 1fr); } }

/* RATES */
.rates { background: #0B1B2E; }
.rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rate-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 32px 30px; transition: all .3s var(--ease); position: relative; }
.rate-card:hover { border-color: var(--rule-strong); box-shadow: 0 20px 40px -20px rgba(11,27,46,.14); transform: translateY(-2px); }
.rate-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.rate-card .min { font-size: .82rem; color: var(--muted); margin-bottom: 22px; }
.rate-card ul { list-style: none; margin: 0; padding: 0; }
.rate-card ul li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-top: 1px solid var(--rule); font-size: .94rem; }
.rate-card ul li:last-child { border-bottom: 1px solid var(--rule); }
.rate-card ul li .label { color: var(--text); }
.rate-card ul li .price { font-family: var(--display); font-weight: 500; color: var(--gold-soft); font-size: 1.1rem; white-space: nowrap; }
.rates-note { font-size: .85rem; color: var(--muted); margin-top: 26px; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .rates-grid { grid-template-columns: 1fr; } }

/* VERIFY */
.verify { background: #0B1B2E; }
.verify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.verify-card { border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 28px; transition: all .3s var(--ease); background: rgba(255,255,255,.03); }
.verify-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.verify-card .icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--gold); border-radius: var(--radius-sm); font-family: var(--display); font-size: 1.15rem; margin-bottom: 16px; }
.verify-card h4 { color: #ffffff; margin-bottom: 6px; font-size: 1rem; }
.verify-card p { color: var(--muted); font-size: .9rem; margin: 0 0 10px; line-height: 1.5; }
.verify-card a { font-size: .85rem; font-weight: 600; color: var(--gold-warm); border-bottom: 1px solid currentColor; }
@media (max-width: 900px) { .verify-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .verify-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonials { background: #0B1B2E; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 30px; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.t-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -18px rgba(11,27,46,.14); }
.t-card .stars { color: var(--gold-warm); margin-bottom: 14px; font-size: .9rem; }
.t-card blockquote { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--text); margin: 0 0 18px; flex-grow: 1; font-size: 1rem; line-height: 1.55; }
.t-card cite { font-style: normal; font-size: .88rem; }
.t-card cite b { display: block; color: #ffffff; font-family: var(--body); font-weight: 600; }
.t-card cite span { color: var(--muted); }
.t-link { text-align: center; margin-top: 32px; }
.t-link a { font-weight: 600; color: var(--gold-warm); border-bottom: 1px solid var(--gold-warm); padding-bottom: 2px; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { background: #0B1B2E; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary { padding: 22px 40px 22px 0; font-family: var(--display); font-weight: 500; color: #ffffff; font-size: 1.1rem; cursor: pointer; list-style: none; position: relative; transition: color .2s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold-warm); font-weight: 400; transition: transform .3s var(--ease); font-family: var(--body); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold-warm); }
.faq-item .a { padding: 0 40px 22px 0; color: var(--muted); font-size: .96rem; line-height: 1.65; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* FINAL CTA */
.final-cta { background: var(--ink); color: #fff; padding: 84px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 70% at 50% 100%, rgba(201,169,97,.18), transparent 70%); }
.final-cta .container { position: relative; }
.final-cta .eyebrow { color: var(--gold); justify-content: center; }
.final-cta .eyebrow::before { background: var(--gold); }
.final-cta h2 { color: #fff; max-width: 660px; margin: 0 auto 16px; }
.final-cta p { color: #b8c4d4; max-width: 580px; margin: 0 auto 28px; }
.final-cta .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,.3); }
.final-cta .btn-secondary:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }

/* PROSE (privacy, blog content) */
.prose { max-width: 720px; margin: 0 auto; font-size: 1rem; line-height: 1.7; color: #e8ecf2; }
.prose h2 { font-size: 1.45rem; margin-top: 2.2em; margin-bottom: .6em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; margin-bottom: .5em; font-family: var(--display); font-weight: 600; }
.prose p { color: var(--text); margin-bottom: 1.15em; }
.prose ul { padding-left: 1.4em; margin-bottom: 1.15em; }
.prose ul li { margin-bottom: .4em; }
.prose a { color: var(--gold-warm); border-bottom: 1px solid currentColor; }
.prose strong { color: var(--gold); }

/* FORM */
.form-shell { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 30px 60px -32px rgba(11,27,46,.22); position: relative; }
.form-shell::before { content: ''; position: absolute; top: -1px; left: 36px; right: 36px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: #ffffff; }
.field label .req { color: var(--gold-warm); margin-left: 3px; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .95rem; color: #ffffff;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: all .2s var(--ease); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .8rem; color: var(--muted); }
.form-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.form-actions .consent { font-size: .82rem; color: var(--muted); flex: 1; min-width: 240px; }
.form-actions .consent a { color: var(--gold-warm); border-bottom: 1px solid currentColor; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-shell { padding: 24px; } }

/* CONTACT META PANEL */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.contact-meta { display: flex; flex-direction: column; gap: 14px; }
.contact-block { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 22px 24px; }
.contact-block h4 { font-size: .92rem; margin-bottom: 8px; }
.contact-block p { font-size: .92rem; color: var(--muted); margin: 0 0 6px; line-height: 1.55; }
.contact-block a { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold-warm); padding-bottom: 1px; }
.contact-block .tag { display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--gold-warm); margin-bottom: 6px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,97,.20); border-radius: var(--radius); padding: 28px; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(11,27,46,.18); border-color: var(--rule-strong); }
.blog-card .meta { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-warm); font-weight: 600; margin-bottom: 12px; }
.blog-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: #ffffff; }
.blog-card h3 a:hover { color: var(--gold-warm); }
.blog-card p { color: var(--muted); font-size: .94rem; line-height: 1.55; flex-grow: 1; margin-bottom: 16px; }
.blog-card .more { font-size: .88rem; font-weight: 600; color: var(--gold-warm); border-bottom: 1px solid currentColor; align-self: flex-start; padding-bottom: 1px; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* FOOTER */
footer.site { background: #08152a; color: #a8b3c1; padding: 60px 0 24px; font-size: .9rem; }
footer.site .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 52px; }
footer.site h4 { color: #fff; font-family: var(--body); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
footer.site .about-block p { color: #a8b3c1; max-width: 38ch; line-height: 1.55; }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site ul li { margin-bottom: 8px; }
footer.site a { color: #a8b3c1; }
footer.site a:hover { color: var(--gold-soft); }
.legal { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 20px; font-size: .82rem; color: #6b7689; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { footer.site .container { grid-template-columns: 1fr; gap: 32px; } }

/* MOBILE BAR */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #142b46; border-top: 1px solid rgba(255,255,255,.08); padding: 8px; gap: 8px; box-shadow: 0 -8px 24px -10px rgba(0,0,0,.4); }
.mobile-bar a { flex: 1; text-align: center; padding: 12px 6px; font-weight: 600; font-size: .85rem; border-radius: var(--radius-sm); }
.mobile-bar a.call { background: rgba(255,255,255,.08); color: #ffffff; }
.mobile-bar a.wa { background: #25D366; color: #fff; }
.mobile-bar a.book { background: var(--gold); color: var(--ink); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .topstrip .right { display: none; }
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .44s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .52s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .60s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: .68s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero .availability::before { animation: none; }
}
