/* ===== Halo — radial / orbit design tokens (moonlit pearl & gold) ===== */
:root {
  --paper:     #f7f3ef;
  --paper-2:   #efe7df;
  --shell-bg:  #fbf8f5;
  --mist:      #e9ddcf;
  --gold:      #c2a05a;
  --gold-soft: #e3cf9b;
  --gold-deep: #8c6b32;
  --bronze:    #a07f44;
  --night:     #2c2722;   /* deep espresso */
  --night-2:   #3a332b;
  --ink:       #2a2521;
  --muted:     #847868;
  --line:      #e7dccc;
  --white:     #ffffff;

  --grad:      linear-gradient(135deg, #e6cf90 0%, #c2a05a 48%, #8c6b32 100%);
  --grad-soft: linear-gradient(140deg, #f8f0e0, #ecdcbd);
  --ring-line: rgba(194, 160, 90, .34);

  --shadow-sm: 0 4px 18px rgba(44, 39, 34, .07);
  --shadow-md: 0 16px 46px rgba(44, 39, 34, .13);
  --shadow-lg: 0 34px 84px rgba(44, 39, 34, .20);
  --shadow-gold: 0 14px 32px rgba(194, 160, 90, .38);

  --radius: 20px;
  --radius-lg: 28px;
  --shell: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: "Vazirmatn", system-ui, "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(1100px 700px at 50% -8%, #fdfaf6, transparent 60%),
    var(--paper);
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
  overflow-x: hidden;
}
/* page-wide ambient light: slow-drifting soft gold glows behind all content */
body::before {
  content: "";
  position: fixed;
  inset: -12% 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 44% at 16% 20%, rgba(227, 207, 155, .30), transparent 70%),
    radial-gradient(34% 40% at 84% 28%, rgba(245, 227, 196, .26), transparent 72%),
    radial-gradient(50% 52% at 50% 90%, rgba(194, 160, 90, .14), transparent 72%);
  background-repeat: no-repeat;
  animation: bgPan 28s ease-in-out infinite;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }

.skip-link {
  position: absolute; right: 12px; top: -60px; z-index: 200;
  background: var(--night); color: #fff; padding: 10px 18px; border-radius: 999px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; right: 0; height: 3px; width: 0;
  background: var(--grad); z-index: 120;
  box-shadow: 0 0 10px rgba(194, 160, 90, .6);
  transition: width .1s linear;
}

/* ===== Buttons ===== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-gold); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  inset-inline-start: -60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: inset-inline-start .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(194,160,90,.5); }
.btn-primary:hover::after { inset-inline-start: 120%; }
.btn-ghost { background: var(--white); color: var(--gold-deep); border: 1.5px solid var(--gold-soft); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ===== Top bar ===== */
.topbar { background: var(--night); color: #e9dcc4; font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; gap: 26px; min-height: 42px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item.tb-cta { margin-inline-start: auto; color: var(--gold-soft); font-weight: 700; }
.topbar a:hover { color: var(--gold-soft); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 239, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(247, 243, 239, .96); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  overflow: hidden; box-shadow: var(--shadow-gold);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.35; }
.brand-name { font-weight: 800; font-size: 1.06rem; }
.brand-sub { font-family: "Playfair Display", serif; font-size: .72rem; letter-spacing: 2px; color: var(--gold-deep); }

.main-nav { display: flex; gap: 4px; margin-inline-start: auto; }
.main-nav a {
  position: relative; padding: 8px 14px; border-radius: 999px; font-weight: 600;
  color: var(--ink); font-size: .96rem; transition: color .25s, background .25s;
}
.main-nav a::after {
  content: ""; position: absolute; bottom: 3px; right: 50%; width: 5px; height: 5px;
  background: var(--grad); border-radius: 50%; transform: translateX(50%) scale(0);
  transition: transform .3s var(--ease);
}
.main-nav a:hover { color: var(--gold-deep); }
.main-nav a:hover::after, .main-nav a.active::after { transform: translateX(50%) scale(1); }

.header-cta { margin-inline-start: 4px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 50%; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero — centered halo composition ===== */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(70px, 9vw, 120px);
  background:
    radial-gradient(ellipse 120% 80% at 50% 20%, #fdfbf7 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, #f5f1e9 0%, #e9e4d9 100%);
}
.hero-aura { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aura { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.aura-1 { width: 540px; height: 540px; background: #f0ebe3; top: -160px; left: 50%; transform: translateX(-50%); animation: aura1Drift 28s ease-in-out infinite, auraGlow 12s ease-in-out infinite; }
.aura-2 { width: 360px; height: 360px; background: #f1e3c4; bottom: -120px; right: 8%; animation: drift 20s ease-in-out infinite, auraGlow 10s ease-in-out 2s infinite; }

.hero-silk {
  position: absolute; inset: 28% 0 auto 0; width: 100%; height: 42%;
  opacity: .85; mix-blend-mode: soft-light;
}

.bokeh {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,252,245,.95) 0%, rgba(255,248,230,.35) 35%, transparent 70%);
  filter: blur(1px);
  opacity: var(--o, .3);
  animation: bokehFloat 13s ease-in-out infinite;
}
.bk1 { width: 120px; height: 120px; top: 18%; left: 12%; --o: .35; animation-duration: 15s; }
.bk2 { width: 80px; height: 80px; top: 32%; right: 10%; --o: .28; animation-duration: 12s; animation-delay: -3s; }
.bk3 { width: 60px; height: 60px; bottom: 28%; left: 18%; --o: .22; animation-duration: 16s; animation-delay: -6s; }
.bk4 { width: 100px; height: 100px; bottom: 22%; right: 14%; --o: .3; animation-duration: 14s; animation-delay: -2s; }
.bk5 { width: 44px; height: 44px; top: 48%; left: 6%; --o: .18; animation-duration: 11s; animation-delay: -8s; }
.bk6 { width: 52px; height: 52px; top: 22%; right: 28%; --o: .2; animation-duration: 17s; animation-delay: -5s; }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; color: var(--gold-deep);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 30px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ===== Halo — glass disc, orbit rings, gold beads (reference match) ===== */
.halo {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  animation: haloIn 1.1s cubic-bezier(.22, 1, .36, 1) both, floatY 7s ease-in-out 1.1s infinite;
}

.halo-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.orbit-outer { z-index: 2; animation: spin 42s linear infinite; transform-origin: 50% 50%; }
.orbit-inner { z-index: 2; animation: spin 30s linear infinite reverse; transform-origin: 50% 50%; }
.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* metallic gold beads on orbit paths */
.bead {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff8e8 0%, #f9f4e1 18%, #d4af37 42%, #af8231 72%, #8c6b32 100%);
  box-shadow:
    0 2px 8px rgba(140, 107, 50, .35),
    inset -2px -3px 6px rgba(100, 75, 30, .25),
    inset 2px 2px 5px rgba(255, 248, 225, .65);
  animation: beadGlow 4s ease-in-out infinite;
}
.bead-o2 { animation-delay: -1.3s; }
.bead-o3 { animation-delay: -2.6s; }
.bead-i1 { animation-delay: -.7s; }
.bead-o1 { width: 14px; height: 14px; top: 8.5%; left: 22%; }
.bead-o2 { width: 11px; height: 11px; bottom: 22%; right: 14%; }
.bead-o3 { width: 10px; height: 10px; bottom: 8%; left: 50%; transform: translateX(-50%); }
.bead-i1 { width: 9px; height: 9px; top: 50%; left: 7.5%; transform: translateY(-50%); }

.bead-flare {
  position: absolute;
  top: -6px; right: -8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,248,220,.4) 35%, transparent 70%);
  filter: blur(1px);
  animation: flarePulse 3s ease-in-out infinite;
}

/* frosted glass layer behind inner emblem */
.halo-glass {
  position: absolute;
  z-index: 1;
  width: 76%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 252, 248, .28);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 18px 48px rgba(44, 39, 34, .12),
    0 4px 16px rgba(194, 160, 90, .08),
    inset 0 1px 0 rgba(255, 255, 255, .85),
    inset 0 -1px 0 rgba(194, 160, 90, .06);
  animation: glassBreath 6.5s ease-in-out infinite;
}

.halo-core {
  position: relative;
  z-index: 3;
  width: 54%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 32px rgba(44, 39, 34, .1);
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: coreGlow 5.5s ease-in-out infinite;
}

.halo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(194, 160, 90, .12));
}

/* ambient sparkles along orbit paths */
.spark {
  position: absolute;
  z-index: 4;
  color: #e3cf9b;
  pointer-events: none;
  opacity: 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, .85);
  animation: twinkle 4.5s ease-in-out infinite;
}
.sp1 { top: 2%; right: 28%; font-size: 11px; animation-delay: .2s; }
.sp2 { bottom: 14%; right: 4%; font-size: 14px; animation-delay: 1.4s; }
.sp3 { top: 20%; left: 2%; font-size: 10px; animation-delay: .8s; }
.sp4 { bottom: 4%; left: 22%; font-size: 13px; animation-delay: 2.1s; }
.sp5 { top: 42%; right: 1%; font-size: 9px; animation-delay: 1.8s; }

.hero-title { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 800; line-height: 1.18; }
.grad-text {
  background: linear-gradient(110deg, #c2a05a 0%, #e9cd84 25%, #fff3d6 42%, #c2a05a 60%, #8c6b32 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
.hero-lead { margin: 22px auto 32px; font-size: clamp(1rem, 2.4vw, 1.18rem); color: var(--muted); max-width: 52ch; }
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-badge {
  margin-top: 26px; background: var(--white);
  padding: 9px 18px; border-radius: 999px; font-size: .85rem; font-weight: 700;
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #34c47a; box-shadow: 0 0 0 4px rgba(52,196,122,.2); animation: pulse 2s infinite; }

/* hero stat ring gauges */
.hero-stats { display: flex; gap: clamp(24px, 5vw, 56px); margin-top: 52px; flex-wrap: wrap; justify-content: center; }
.hero-stats li { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gauge { position: relative; width: 112px; height: 112px; display: grid; place-items: center; }
.gauge svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge .g-track { fill: none; stroke: var(--line); stroke-width: 7; }
.gauge .g-fill {
  fill: none; stroke: var(--gold); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.gauge.filled .g-fill { stroke-dashoffset: 49; } /* ~85% */
.stat-num { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; color: var(--gold-deep); line-height: 1; }
.stat-label { font-size: .9rem; color: var(--muted); }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--gold-soft); border-radius: 999px; display: grid; justify-items: center; padding-top: 7px; z-index: 1; }
.scroll-cue span { width: 5px; height: 8px; background: var(--gold); border-radius: 3px; animation: cue 1.6s infinite; }

/* ===== Trust bar — ring of orbs ===== */
.trustbar { background: var(--white); border-block: 1px solid var(--line); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; font-weight: 600; color: var(--gold-deep); text-align: center; }
.trust-orb {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--gold-soft), var(--shadow-sm);
}

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(44px, 6vw, 70px); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-weight: 700;
  color: var(--gold-deep); font-size: .9rem; margin-bottom: 14px;
}
.section-eyebrow::before { content: ""; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--ring-line); background: radial-gradient(circle, var(--gold) 0 3px, transparent 4px); }
.section-head .section-eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.32; }
.section-head .section-title { position: relative; padding-bottom: 26px; }
.section-head .section-title::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 16px;
  background:
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px) left center / 16px 16px no-repeat,
    radial-gradient(circle, var(--gold-soft) 0 4px, transparent 5px) center / 16px 16px no-repeat,
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px) right center / 16px 16px no-repeat;
}
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.section-text { color: var(--muted); margin-top: 16px; }

/* ===== About — circular portrait ===== */
.about-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-visual { display: grid; place-items: center; }
.doc-disc { position: relative; width: min(420px, 86vw); aspect-ratio: 1 / 1; display: grid; place-items: center; }
.disc-ring {
  position: absolute; inset: -4%; border-radius: 50%;
  border: 1px dashed var(--ring-line);
  animation: spin 70s linear infinite;
}
.disc-ring::before { content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); transform: translateX(-50%); box-shadow: 0 0 14px 2px rgba(194,160,90,.6); }
.doc-frame {
  position: relative; width: 88%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  padding: 9px; background: var(--grad); box-shadow: var(--shadow-lg);
}
.doc-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 50%; }
.doc-credential {
  position: absolute; bottom: 6%; right: -6%; background: var(--white); padding: 14px 22px;
  border-radius: 999px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; line-height: 1.5; z-index: 3;
  border: 1px solid var(--line); text-align: center;
}
.doc-credential strong { color: var(--gold-deep); font-size: 1rem; }
.doc-credential span { font-size: .82rem; color: var(--muted); }
.about-content .section-eyebrow { margin-bottom: 10px; }
.about-list { margin: 24px 0 30px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-inline-start: 34px; color: var(--ink); }
.about-list li::before { content: "✦"; position: absolute; right: 0; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); color: var(--gold-deep); font-size: .8rem; display: grid; place-items: center; }

/* ===== Services — radial orbit field around a hub ===== */
.services {
  background:
    radial-gradient(circle at 50% 50%, rgba(194,160,90,.05), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}
.orbit-field {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
/* central hub (decorative, desktop radial only) */
.orbit-hub { display: none; }
.hub-ring { position: absolute; inset: -26px; border-radius: 50%; border: 1px dashed var(--ring-line); }

.service-node {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service-node::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; z-index: 0;
  background: radial-gradient(circle at 50% 0%, #4a3f30, var(--night));
}
.service-node > * { position: relative; z-index: 1; transition: color .4s; }
.service-node:hover, .service-node:focus { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; outline: none; }
.service-node:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.service-node:hover::before, .service-node:focus::before { opacity: 1; }
.service-node:hover h3, .service-node:focus h3 { color: #fff; }
.service-node:hover p, .service-node:focus p { color: #e7dccb; }
.service-node:hover .node-link, .service-node:focus .node-link { color: var(--gold-soft); }
.service-node:hover .node-icon, .service-node:focus .node-icon { background: rgba(226,199,128,.18); box-shadow: inset 0 0 0 1px rgba(226,199,128,.4); }
.node-icon {
  width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.8rem; background: var(--grad-soft); margin: 0 auto 20px;
  box-shadow: inset 0 0 0 1px var(--gold-soft); transition: background .4s, box-shadow .4s;
}
.service-node h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.service-node p { color: var(--muted); font-size: .96rem; }
.node-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--gold-deep); font-size: .9rem; }

/* ===== Why — ring of orbs ===== */
.why-ring { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.why-orb {
  position: relative; width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 20px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.why-orb::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px dashed var(--ring-line); transition: transform .6s var(--ease); }
.why-item:hover .why-orb { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-item:hover .why-orb::before { transform: rotate(40deg); }
.why-num { font-size: 1.5rem; font-weight: 800; color: var(--gold-deep); }
.why-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: .94rem; max-width: 26ch; }

/* ===== Gallery — arched / circular frames ===== */
.gallery {
  background:
    radial-gradient(circle at 50% 100%, rgba(194,160,90,.05), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}
.gallery-orbit {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; align-items: start;
}
.gallery-item { position: relative; margin: 0; }
.gallery-item picture { display: block; position: relative; overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--white); }
.gi-arch picture { border-radius: 50% 50% 18px 18px; aspect-ratio: 3 / 4; }
.gi-feature { grid-column: span 2; grid-row: span 2; align-self: stretch; }
.gi-feature picture { border-radius: 50%; aspect-ratio: 1 / 1; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  margin-top: 14px; text-align: center; font-weight: 700; font-size: .95rem; color: var(--gold-deep);
}

/* ===== Testimonials — medallion cards ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 30px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px 28px 32px; box-shadow: var(--shadow-sm); position: relative; text-align: center;
  transition: transform .35s var(--ease), box-shadow .4s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.testi-medallion {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 1.5rem;
  box-shadow: var(--shadow-gold), 0 0 0 6px var(--white);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testi-card blockquote { color: var(--ink); font-size: 1rem; }
.testi-card figcaption { margin-top: 18px; font-weight: 700; color: var(--gold-deep); }

/* ===== FAQ ===== */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 700; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 50%; background: var(--grad-soft); font-size: 1.25rem; color: var(--gold-deep); font-weight: 400;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 20px; animation: fadeIn .4s var(--ease); }

/* ===== Contact ===== */
.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(194,160,90,.05), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 26px 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.contact-list span { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); font-size: 1.05rem; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a { padding: 9px 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 700; font-size: .9rem; color: var(--gold-deep); transition: transform .3s var(--ease), border-color .3s; }
.socials a:hover { transform: translateY(-3px); border-color: var(--gold); }

.booking-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); display: grid; gap: 18px; position: relative; overflow: hidden; }
.booking-form::before { content: ""; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px; border-radius: 50%; background: var(--grad-soft); opacity: .5; }
.field { display: grid; gap: 8px; position: relative; z-index: 1; }
.field label { font-weight: 700; font-size: .92rem; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 16px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--shell-bg); color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background .25s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #bcae9c; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(194, 160, 90, .15);
}
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid select { border-color: #e05b5b; box-shadow: 0 0 0 4px rgba(224,91,91,.12); }
.form-status { font-weight: 700; font-size: .95rem; min-height: 1.2em; text-align: center; position: relative; z-index: 1; }
.form-status.success { color: #2e9e63; }
.form-status.error { color: #d64a4a; }

/* ===== Location / Map ===== */
.map-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(194,160,90,.05), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}
.map-wrap { position: relative; }
.map-frame {
  position: relative; padding: 10px; border-radius: var(--radius-lg);
  background: var(--grad);
  box-shadow: var(--shadow-lg);
}
.map-frame iframe {
  display: block; width: 100%; height: 480px; border: 0; border-radius: 20px;
  filter: saturate(.92) contrast(1.02);
}
.map-card {
  position: absolute; top: 50%; transform: translateY(-50%);
  inset-inline-start: 46px; width: min(360px, 86%);
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px 28px; box-shadow: var(--shadow-md); z-index: 2; text-align: center;
}
.map-pin {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-gold); margin: 0 auto 16px;
}
.map-pin svg { width: 28px; height: 28px; animation: floatY 3.4s ease-in-out infinite; }
.map-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.map-info { display: grid; gap: 12px; margin-bottom: 22px; text-align: start; }
.map-info li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: .95rem; line-height: 1.7; }
.map-info li span { font-size: 1.1rem; flex: 0 0 auto; }
.map-info a:hover { color: var(--gold-deep); }

@media (max-width: 880px) {
  .map-frame iframe { height: 360px; }
  .map-card {
    position: static; transform: none; width: auto; margin-top: -40px;
    margin-inline: 16px; backdrop-filter: none; background: var(--white);
  }
}

/* ===== Footer ===== */
.site-footer { background: var(--night); color: #efe4d2; position: relative; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: clamp(48px, 7vw, 84px) 0 40px; }
.footer-brand .brand-name { font-size: 1.35rem; font-weight: 800; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { color: #d9cab2; max-width: 38ch; }
.footer-nav, .footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-nav h4, .footer-contact h4 { color: var(--gold-soft); font-size: 1.05rem; margin-bottom: 6px; }
.footer-nav a { color: #d9cab2; transition: color .25s, padding .25s; width: max-content; }
.footer-nav a:hover { color: #fff; padding-inline-start: 6px; }
.footer-contact p { color: #d9cab2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .9rem; color: #cdbca2; text-align: center; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Keyframes ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: 220% center; } }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px,22px) scale(1.08); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(52,196,122,.4); } 50% { box-shadow: 0 0 0 7px rgba(52,196,122,0); } }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.4) rotate(0); } 50% { opacity: .95; transform: scale(1) rotate(45deg); } }
@keyframes flarePulse { 0%, 100% { opacity: .7; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes glassBreath { 0%, 100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.045); opacity: 1; } }
@keyframes coreGlow {
  0%, 100% { box-shadow: 0 10px 32px rgba(44, 39, 34, .12), 0 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 14px 40px rgba(44, 39, 34, .16), 0 0 36px 4px rgba(212, 175, 55, .3); }
}
@keyframes haloIn { from { opacity: 0; transform: scale(.82) translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes beadGlow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.35); } }
@keyframes bgPan {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%; }
  50%      { background-position: 12% 10%, 86% 4%, 44% 90%; }
}
@keyframes aura1Drift {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-50%) translateY(30px) scale(1.1); }
}
@keyframes auraGlow { 0%, 100% { opacity: .42; } 50% { opacity: .68; } }
@keyframes bokehFloat {
  0%   { transform: translateY(0) scale(1); opacity: var(--o, .3); }
  50%  { transform: translateY(-28px) scale(1.14); opacity: calc(var(--o, .3) + .22); }
  100% { transform: translateY(0) scale(1); opacity: var(--o, .3); }
}

/* ===== Desktop radial orbit for services (motion + fine pointer only) ===== */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .orbit-field {
    display: block; position: relative;
    height: 820px; max-width: 760px; margin-inline: auto;
  }
  .orbit-hub {
    display: grid; place-items: center; position: absolute; top: 50%; left: 50%;
    width: 168px; height: 168px; border-radius: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle at 50% 38%, #fffdf8, #f1e3c4);
    box-shadow: var(--shadow-md), inset 0 0 0 1px var(--gold-soft); z-index: 2; text-align: center;
  }
  .hub-label { font-weight: 800; color: var(--gold-deep); font-size: 1.15rem; line-height: 1.4; }
  /* Six uniform nodes evenly placed on a circle (radius 280px), starting at top.
     Scoped to .orbit-field so this transform outranks .reveal.visible { transform:none },
     otherwise the entrance animation would collapse every node onto the centre. */
  .orbit-field .service-node {
    position: absolute; top: 50%; left: 50%;
    width: 220px; height: 240px;
    display: flex; flex-direction: column; justify-content: center;
    --r: 280px; --a: calc(var(--i) * 60deg);
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
    padding: 24px 20px;
  }
  .orbit-field .service-node .node-icon {
    width: 56px; height: 56px; font-size: 1.5rem; margin: 0 auto 14px;
  }
  .orbit-field .service-node h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .orbit-field .service-node p {
    font-size: .86rem; line-height: 1.7;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
  }
  .orbit-field .service-node .node-link { margin-top: 12px; }
  .orbit-field .service-node:hover,
  .orbit-field .service-node:focus {
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a))) translateY(-8px);
    z-index: 5;
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .orbit-field { grid-template-columns: repeat(2, 1fr); }
  .why-ring { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-orbit { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .gi-feature { grid-column: span 2; grid-row: auto; }
  .gi-feature picture { aspect-ratio: 16 / 9; height: auto; border-radius: 50% 50% 22px 22px; }
}

@media (max-width: 760px) {
  .topbar-item.tb-hide { display: none; }
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 4px;
    background: var(--white); padding: 16px 20px 24px; box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .4s var(--ease); margin: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; margin-inline-start: auto; }
  .orbit-field { grid-template-columns: 1fr; }
  .why-ring { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .gallery-orbit { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; max-width: 480px; margin-inline: auto; }
  .gallery-item picture { border-width: 4px; }
  .gi-feature { grid-column: span 2; }
  .gi-feature picture { aspect-ratio: 5 / 3; height: auto; border-radius: 50% 50% 18px 18px; }
  .gi-arch picture { aspect-ratio: 3 / 4; border-radius: 50% 50% 16px 16px; }
  .gallery-item figcaption { margin-top: 10px; font-size: .85rem; }
}

@media (max-width: 420px) {
  .hero-stats { gap: 18px; }
  .gauge { width: 96px; height: 96px; }
  .doc-credential { right: -2%; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
