/* =========================================================
   WILLS FOR FAMILY — Premium CSS Design System
   willsforfamily.com
   ========================================================= */

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

/* ── Design Tokens ───────────────────────────────────── */
:root {
  /* Core Palette */
  --black:        #080808;
  --charcoal:     #111118;
  --dark:         #16161f;
  --dark-mid:     #1e1e2a;
  --surface:      #242432;

  /* Gold System */
  --gold-light:   #f0d070;
  --gold:         #c9a84c;
  --gold-dark:    #a07838;
  --gold-gradient: linear-gradient(135deg, #f0d070 0%, #c9a84c 50%, #a07838 100%);
  --gold-glow:    rgba(201, 168, 76, 0.25);

  /* Ivory / Light Palette */
  --ivory:        #faf7f2;
  --ivory-mid:    #f3ede4;
  --champagne:    #e8dcc8;
  --white:        #ffffff;

  /* Text */
  --text-primary:   #1a1a24;
  --text-secondary: #4a4a5e;
  --text-muted:     #8a8a9a;
  --text-light:     #c8c8d8;
  --text-on-dark:   rgba(255,255,255,0.88);
  --text-dim:       rgba(255,255,255,0.55);

  /* Borders */
  --border-dark:   rgba(255,255,255,0.08);
  --border-gold:   rgba(201,168,76,0.35);
  --border-light:  rgba(0,0,0,0.1);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing Scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4.5rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.2);
  --shadow-dark: 0 20px 80px rgba(0,0,0,0.5);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition:  0.35s var(--ease-out);
  --transition-fast: 0.2s var(--ease-out);

  /* Layout */
  --container:   1240px;
  --header-h:    82px;
}

/* ── 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-sans);
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────── */
.serif      { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 600; }

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.8; }

/* ── Layout Utilities ────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-xl); }
.section { padding: var(--space-5xl) 0; }
.section-sm { padding: var(--space-3xl) 0; }
.section-lg { padding: calc(var(--space-5xl) * 1.4) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Section Header ──────────────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-3xl); }
.section-header.left { text-align: left; margin-left: 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold-gradient);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-title { color: var(--text-primary); margin-bottom: var(--space-md); }
.section-title.light { color: var(--white); }
.section-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-desc { color: var(--text-secondary); max-width: 600px; }
.section-desc.light { color: var(--text-dim); max-width: 100%; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 2rem; border-radius: var(--radius-full);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em; transition: var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0; transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold-gradient); color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn-outline-dark:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--gold);
  padding: 0.7rem 0; border-radius: 0;
}
.btn-ghost::after { display: none; }
.btn-ghost span {
  display: inline-block; transition: transform 0.25s var(--ease-out);
}
.btn-ghost:hover span { transform: translateX(4px); }

.btn-wa {
  background: #25D366; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* ── Announcement Bar ────────────────────────────────── */
.announcement-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.6rem var(--space-xl);
  text-align: center; position: relative; z-index: 101;
}
.announcement-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.announcement-bar .ann-text {
  font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.04em;
  flex: 1; text-align: center;
}
.announcement-bar .ann-text strong { color: var(--gold-light); }
.announcement-bar .ann-links {
  display: flex; align-items: center; gap: var(--space-md);
  flex-shrink: 0;
}
.announcement-bar .ann-link {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-dim);
  transition: color 0.2s;
}
.announcement-bar .ann-link:hover { color: var(--gold-light); }
.announcement-bar .ann-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── Header / Navigation ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-dark);
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--space-xl);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: var(--space-xs); }
.nav-link {
  position: relative; padding: 0.5rem 0.9rem;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1.5px; background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: var(--space-md); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: var(--space-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu .m-nav-link {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 600; color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  transform: translateY(20px); opacity: 0;
}
.mobile-menu.open .m-nav-link {
  transform: translateY(0); opacity: 1;
}
.mobile-menu .m-nav-link:hover { color: var(--gold-light); }
.mobile-menu .m-cta {
  margin-top: var(--space-md);
  transform: translateY(20px); opacity: 0;
}
.mobile-menu.open .m-cta { transform: translateY(0); opacity: 1; }
/* Stagger mobile link reveals */
.mobile-menu .m-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu .m-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu .m-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu .m-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu .m-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu .m-nav-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu .m-cta { transition-delay: 0.35s; }
.mobile-menu .mobile-contact {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-top: var(--space-xl); opacity: 0;
  transition: opacity 0.4s 0.4s var(--ease-out);
}
.mobile-menu.open .mobile-contact { opacity: 1; }
.mobile-contact a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.mobile-contact a:hover { color: var(--gold-light); }

/* ── Floating WhatsApp ───────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
  50%        { box-shadow: 0 6px 50px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* Back to Top */
.back-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: var(--transition);
}
.back-top.visible { opacity: 1; visibility: visible; pointer-events: all; }
.back-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; stroke: white; }

/* ── HERO SECTION ────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--black);
  min-height: calc(100vh - var(--header-h) - 44px);
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 30%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
              linear-gradient(165deg, #111118 0%, #0a0a10 60%, #080810 100%);
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12; mix-blend-mode: luminosity;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.12; pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #6040c0; bottom: -150px; left: -100px; }
.hero-content {
  position: relative; z-index: 2;
  padding: var(--space-5xl) 0;
  max-width: 780px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: var(--space-xl);
}
.hero-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); display: block;
  box-shadow: 0 0 8px var(--gold-light); animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  color: var(--white); font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: var(--space-xl);
}
.hero-title .gold-line {
  display: block;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.68); line-height: 1.8;
  max-width: 600px; margin-bottom: var(--space-2xl);
}

.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-2xl); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-lg);
  border-top: 1px solid var(--border-dark); padding-top: var(--space-xl);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.hero-trust-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }

/* Hero Stats Bar */
.hero-stats {
  display: flex; gap: var(--space-2xl); flex-wrap: wrap;
  padding: var(--space-xl) 0; margin-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 700; color: var(--white); line-height: 1;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.3rem; letter-spacing: 0.04em; }

/* Hero Image Column */
.hero-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: var(--space-3xl); align-items: center; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  min-height: 500px;
}
.hero-img-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.12);
}
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; z-index: 3;
  background: rgba(14,14,22,0.85); backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}
.hero-badge-tl { top: 1.5rem; left: -1.5rem; }
.hero-badge-br { bottom: 2rem; right: -1.5rem; }
.badge-num {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 0.2rem;
}
.badge-text { font-size: 0.73rem; color: var(--text-dim); }

/* ── Why a Will Matters ───────────────────────────────── */
.why-section { background: var(--ivory); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl);
  align-items: start;
}
.why-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: var(--space-2xl); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card.danger { border-top: 3px solid #c0392b; }
.why-card.safe  { border-top: 3px solid #27ae60; }

.why-card-head {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.why-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-card.danger .why-card-icon { background: rgba(192,57,43,0.1); }
.why-card.safe  .why-card-icon  { background: rgba(39,174,96,0.1); }
.why-card-icon svg { width: 22px; height: 22px; }
.why-card.danger .why-card-icon svg { stroke: #c0392b; }
.why-card.safe  .why-card-icon svg  { stroke: #27ae60; }

.why-card h4 { font-size: 1.1rem; font-weight: 700; }
.why-list { display: flex; flex-direction: column; gap: var(--space-md); }
.why-item {
  display: flex; gap: var(--space-md); align-items: flex-start;
  padding: var(--space-md); border-radius: var(--radius-md);
  background: var(--ivory); border: 1px solid var(--border-light);
}
.why-item-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-card.danger .why-item-icon { background: rgba(192,57,43,0.1); }
.why-card.safe  .why-item-icon  { background: rgba(39,174,96,0.1); }
.why-item-icon svg { width: 14px; height: 14px; }
.why-card.danger .why-item-icon svg { stroke: #c0392b; }
.why-card.safe  .why-item-icon svg  { stroke: #27ae60; }

.why-item-text strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.why-item-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ── Services Grid ───────────────────────────────────── */
.services-section { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.2);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.service-card h4 {
  font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600;
  color: var(--white); margin-bottom: var(--space-sm); line-height: 1.3;
}
.service-card p {
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.service-link {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.7rem; }

/* ── About / Expert Section ──────────────────────────── */
.about-section { background: var(--ivory); }
.about-layout { display: grid; grid-template-columns: 0.9fr 1fr; gap: var(--space-4xl); align-items: center; }
.about-img-frame {
  position: relative; max-width: 460px;
}
.about-img-border {
  position: absolute; inset: -12px;
  border: 1px solid var(--border-gold); border-radius: var(--radius-xl);
  pointer-events: none;
}
.about-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.about-img img { width: 100%; height: 540px; object-fit: cover; display: block; }
.about-cred-chip {
  position: absolute; z-index: 3;
  background: rgba(8,8,8,0.88); backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg);
  display: flex; align-items: center; gap: 0.7rem;
}
.about-cred-chip.right { bottom: -1.5rem; right: -1.5rem; }
.about-cred-chip.left  { top: -1.5rem; left: -1.5rem; }
.cred-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.cred-label { font-size: 0.7rem; color: var(--text-dim); }
.cred-value { font-size: 0.88rem; font-weight: 600; color: var(--white); }

.about-name {
  font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.about-title-role {
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: var(--space-xl);
}
.about-bio { margin-bottom: var(--space-xl); }
.about-bio p { margin-bottom: var(--space-md); }

.creds-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.cred-row {
  display: flex; align-items: center; gap: var(--space-md);
  padding: 0.75rem var(--space-md); border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--border-light);
}
.cred-row-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cred-row-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.cred-row strong { font-size: 0.88rem; font-weight: 600; }
.cred-row span { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 1px; }

/* ── Why Choose Us ───────────────────────────────────── */
.trust-section { background: var(--charcoal); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }

.trust-card {
  padding: var(--space-xl); border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.trust-card-icon {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: rgba(201,168,76,0.1); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-lg);
}
.trust-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.trust-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: var(--space-sm); }
.trust-card p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.7; }

/* ── Will Registration Options ───────────────────────── */
.registry-section { background: var(--ivory); }
.registry-tabs {
  display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light); margin-bottom: var(--space-2xl);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.reg-tab {
  flex: 1; padding: 0.9rem var(--space-lg); text-align: center;
  font-size: 0.88rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: var(--transition-fast); border: none; background: none;
  border-right: 1px solid var(--border-light);
}
.reg-tab:last-child { border-right: none; }
.reg-tab.active {
  background: var(--gold-gradient); color: var(--black);
}
.reg-panels { display: none; }
.reg-panel { display: none; }
.reg-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.reg-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.reg-card h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-primary); margin-bottom: var(--space-md); }
.reg-card .subtitle { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-lg); }
.reg-list { display: flex; flex-direction: column; gap: 0.75rem; }
.reg-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; }
.reg-list li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 0.55rem;
}

/* ── CTA Strip ───────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  padding: var(--space-4xl) 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-inner p { color: var(--text-dim); margin-bottom: var(--space-2xl); }
.cta-buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ── Blog Cards ──────────────────────────────────────── */
.blog-section { background: var(--ivory-mid); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }

.blog-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-card-img {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-category {
  position: absolute; bottom: var(--space-md); left: var(--space-md);
  background: rgba(8,8,8,0.75); backdrop-filter: blur(8px);
  color: var(--gold-light); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.3);
}
.blog-card-body { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: var(--space-sm); }
.blog-card-body h4 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.35; margin-bottom: var(--space-sm);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-body h4 { color: var(--gold-dark); }
.blog-card-body p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.blog-card-footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.read-more {
  font-size: 0.8rem; font-weight: 600; color: var(--gold-dark);
  display: flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.04em; transition: gap 0.2s;
}
.blog-card:hover .read-more { gap: 0.65rem; }

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }

.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--border-gold); box-shadow: 0 4px 20px var(--gold-glow); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl); cursor: pointer;
  background: var(--white); transition: background 0.2s;
}
.faq-q:hover { background: var(--ivory); }
.faq-q-text { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.faq-item.open .faq-q-text { color: var(--gold-dark); }

.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--gold-gradient); border-color: transparent; }
.faq-toggle svg { width: 14px; height: 14px; stroke: var(--text-secondary); transition: transform 0.3s, stroke 0.2s; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); stroke: var(--black); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-light);
}
.faq-answer-inner p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-4xl) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-2xl); padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { max-width: 280px; }
.footer-logo { height: 44px; width: auto; margin-bottom: var(--space-lg); }
.footer-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.75; margin-bottom: var(--space-xl); }
.footer-socials { display: flex; gap: var(--space-sm); }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.social-link:hover { background: rgba(201,168,76,0.15); border-color: var(--border-gold); }
.social-link svg { width: 16px; height: 16px; stroke: var(--text-dim); transition: stroke 0.2s; }
.social-link:hover svg { stroke: var(--gold-light); }

.footer-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-dark);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item span {
  font-size: 0.84rem; color: var(--text-dim); transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding: var(--space-lg) 0;
}
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { font-size: 0.75rem; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
  background: var(--dark); padding: var(--space-4xl) 0;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient); opacity: 0.4;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.07), transparent);
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-dim); margin-bottom: var(--space-lg);
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--text-dim); }
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ── About Page ──────────────────────────────────────── */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.approach-card {
  padding: var(--space-xl); background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); text-align: center; transition: var(--transition);
}
.approach-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.approach-num {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 700; line-height: 1;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: var(--space-sm);
}
.approach-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-sm); }
.approach-card p { font-size: 0.84rem; color: var(--text-secondary); }

/* ── Services Page ───────────────────────────────────── */
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }

.service-detail-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-detail-head {
  padding: var(--space-xl); background: var(--charcoal);
  display: flex; align-items: center; gap: var(--space-md);
  border-bottom: 1px solid var(--border-dark);
}
.svc-icon-lg {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(201,168,76,0.12); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon-lg svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-detail-head h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); }
.service-detail-body { padding: var(--space-xl); }
.service-detail-body p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-lg); }
.service-detail-body ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: var(--space-xl); }
.service-detail-body li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--text-secondary); }
.service-detail-body li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 0.6em;
}

/* ── FAQ Page ────────────────────────────────────────── */
.faq-page-wrap { max-width: 840px; margin: 0 auto; }
.faq-category-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-md); margin-top: var(--space-2xl);
  display: flex; align-items: center; gap: 0.7rem;
}
.faq-category-label::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }

/* ── Contact Page ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }

.contact-info-card {
  background: var(--charcoal); border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark); padding: var(--space-2xl);
  color: var(--white);
}
.contact-info-card h3 { font-family: var(--font-serif); color: var(--white); margin-bottom: var(--space-sm); }
.contact-info-card > p { color: var(--text-dim); margin-bottom: var(--space-2xl); }

.contact-method {
  display: flex; gap: var(--space-md); align-items: flex-start;
  padding: var(--space-md); border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  transition: var(--transition); margin-bottom: var(--space-md);
}
.contact-method:hover { border-color: var(--border-gold); background: rgba(201,168,76,0.06); }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(201,168,76,0.1); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-method-label { font-size: 0.73rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-method-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.contact-method-value a { color: inherit; transition: color 0.2s; }
.contact-method-value a:hover { color: var(--gold-light); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-family: var(--font-serif); margin-bottom: var(--space-sm); }
.contact-form-card > p { margin-bottom: var(--space-xl); }

.form-group { margin-bottom: var(--space-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-lg); }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-primary); letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem var(--space-md);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); background: var(--ivory);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

/* ── Blog Listing Page ───────────────────────────────── */
.blog-listing { background: var(--ivory); }
.blog-featured {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
.blog-featured-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.blog-featured-card:hover { box-shadow: var(--shadow-md); }
.blog-featured-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: var(--space-xl); }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }

/* ── Blog Detail / Article ───────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-3xl); align-items: start; }
.article-main {}
.article-hero-img { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: var(--space-2xl); }
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.article-meta { display: flex; gap: var(--space-lg); align-items: center; margin-bottom: var(--space-2xl); flex-wrap: wrap; }
.article-author { display: flex; gap: 0.7rem; align-items: center; }
.article-author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.article-author-name { font-size: 0.85rem; font-weight: 600; }
.article-author-role { font-size: 0.72rem; color: var(--text-muted); }
.article-date, .article-read { font-size: 0.78rem; color: var(--text-muted); }

.article-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.article-body h3 { font-size: 1.25rem; margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.article-body p { margin-bottom: var(--space-lg); font-size: 1.02rem; line-height: 1.85; }
.article-body ul, .article-body ol { margin: var(--space-md) 0 var(--space-lg) var(--space-xl); }
.article-body li { margin-bottom: 0.5rem; font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }

.article-pullquote {
  border-left: 3px solid var(--gold); padding: var(--space-lg) var(--space-xl);
  background: var(--ivory); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-2xl) 0;
}
.article-pullquote p {
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic;
  color: var(--text-primary); line-height: 1.6; margin: 0;
}
.article-pullquote cite { display: block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-muted); font-style: normal; }

.article-cta-box {
  background: var(--dark); border-radius: var(--radius-xl);
  padding: var(--space-2xl); text-align: center; margin: var(--space-2xl) 0;
  border: 1px solid var(--border-gold);
}
.article-cta-box h4 { font-family: var(--font-serif); color: var(--white); margin-bottom: var(--space-sm); }
.article-cta-box p { color: var(--text-dim); margin-bottom: var(--space-xl); }

.article-sidebar { position: sticky; top: calc(var(--header-h) + var(--space-xl)); }
.sidebar-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); padding: var(--space-xl);
  box-shadow: var(--shadow-sm); margin-bottom: var(--space-xl);
}
.sidebar-card h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: var(--space-md); }
.related-article { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--border-light); }
.related-article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-article img { width: 64px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.related-article h6 { font-size: 0.84rem; font-weight: 600; line-height: 1.35; color: var(--text-primary); }
.related-article h6:hover { color: var(--gold-dark); }
.related-article span { font-size: 0.72rem; color: var(--text-muted); }

/* ── Animations (Scroll Reveal) ──────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Divider ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-light); }
.divider-gold { height: 1px; background: var(--gold-gradient); opacity: 0.35; }

/* ── Stats Counter Strip ─────────────────────────────── */
.stats-strip { background: var(--charcoal); padding: var(--space-3xl) 0; }
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: var(--space-xl); }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.4rem; letter-spacing: 0.06em; }

/* ── Testimonial ─────────────────────────────────────── */
.testimonials-section { background: var(--ivory-mid); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); padding: var(--space-xl);
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-serif); font-size: 5rem;
  color: var(--champagne); line-height: 1; position: absolute;
  top: var(--space-md); left: var(--space-lg);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--space-md); padding-top: var(--space-lg); }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testimonial-text { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: var(--space-lg); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--champagne); flex-shrink: 0; overflow: hidden; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-frame { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .reg-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .announcement-bar .ann-links { display: none; }
}

@media (max-width: 640px) {
  :root { --space-5xl: 5rem; --space-4xl: 4rem; --space-3xl: 3rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-stats { gap: var(--space-lg); }
  .registry-tabs { flex-direction: column; }
  .reg-tab { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stats-row { gap: var(--space-2xl); }
  .about-cred-chip.right { right: 0; }
  .about-cred-chip.left { left: 0; }
  .wa-float { bottom: 1.5rem; right: 1.5rem; }
  .back-top { display: none; }
}

/* ═══════════════════════════════════════════════════════
   UI OVERRIDES — header, logos, floating buttons, footer
   ═══════════════════════════════════════════════════════ */

/* Transparent header by default — hero/page-hero pulled behind it via negative margin */
.site-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.site-header.scrolled {
  background: #000000 !important;
  backdrop-filter: none !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6) !important;
}

/* Pull hero section up behind the transparent header */
.hero {
  margin-top: calc(-1 * var(--header-h)) !important;
  min-height: calc(100vh - 44px) !important; /* 44px = announcement bar */
}

/* Pull inner-page hero behind the transparent header, push content down to clear it */
.page-hero {
  margin-top: calc(-1 * var(--header-h)) !important;
  padding-top: calc(var(--header-h) + var(--space-3xl)) !important;
}

/* Larger header logo */
.logo-img { height: 120px !important; }

/* Larger footer logo */
.footer-logo { height: 115px !important; }

/* Move floating buttons above footer */
.wa-float { bottom: 5rem !important; }
.back-top  { bottom: 5rem !important; }

/* Footer bottom padding so content clears floating buttons */
.site-footer { padding-bottom: 6rem !important; }

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════ */
/* Only hide default cursor when cursor.js has confirmed a fine pointer and activated */
body.cursor-active { cursor: none; }
body.cursor-active *, body.cursor-active *::before, body.cursor-active *::after { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s, transform 0.15s, width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  pointer-events: none;
  z-index: 99998;
  transition: opacity 0.3s, width 0.25s, height 0.25s, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}

/* Hover state: ring expands and glows, dot turns white */
.cursor-ring.cursor-hover {
  width: 54px; height: 54px;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.45), 0 0 36px rgba(201, 168, 76, 0.2);
}
.cursor-dot.cursor-hover {
  background: #ffffff;
  width: 6px; height: 6px;
}

/* Press state: ring contracts, dot scales up slightly */
.cursor-ring.cursor-press {
  width: 28px; height: 28px;
  border-color: var(--gold-dark);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}
.cursor-dot.cursor-press {
  transform: translate(var(--cx, 0), var(--cy, 0)) translate(-50%, -50%) scale(1.6) !important;
  background: var(--gold);
}

/* Touch / mobile: restore default cursor */
@media (pointer: coarse) {
  body, *, *::before, *::after { cursor: auto !important; cursor: unset; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-dark { background: var(--dark); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.mt-auto { margin-top: auto; }
.fw-600 { font-weight: 600; }
.gap-md { gap: var(--space-md); }

/* Gold separator line */
.gold-line-sep {
  width: 60px; height: 2px; background: var(--gold-gradient);
  margin: var(--space-md) 0;
}
.gold-line-sep.center { margin: var(--space-md) auto; }

/* ── Print / accessibility ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
