/* ============================================================
   VISA CONNECTION — Premium enhancement layer  (v1)
   Loads AFTER styles.css. Additive only — extends the existing
   "Quiet Luxury" system (Navy · Antique Gold · Ivory). Fully
   reversible: remove this file + its <link> and the data-motion-*
   attributes to revert.

   Inspired by the best 21st.dev component ideas, re-expressed in
   the site's own palette and vanilla CSS + `motion`:
     • Spotlight cards (cursor-follow warm-gold glow)
     • Premium ambient hover glow
     • Refined primary CTA presence
   ============================================================ */

/* ---------- Spotlight cards — a warm gold glow follows the cursor ---------- */
/* --mx / --my are set per-card by js/motion-enhance.js (px, relative to card). */
/* Isolate each card so the glow can sit ABOVE its background but BELOW its
   content (z-index:-1) — no need to touch child stacking, which keeps any
   absolutely-positioned elements inside cards exactly where they were. */
.card{isolation:isolate}
.card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  z-index:-1;
  opacity:0;
  transition:opacity var(--t) var(--ease);
  background:radial-gradient(
    260px circle at var(--mx,50%) var(--my,50%),
    rgba(198,161,76,.18),
    rgba(198,161,76,.07) 42%,
    transparent 68%
  );
}
.card:hover::after,
.card:focus-within::after{opacity:1}

/* ---------- Premium ambient hover glow ---------- */
/* Extends the existing lift with a soft gold halo + hairline gold ring. */
.card{will-change:transform}
.card:hover{
  box-shadow:
    var(--sh-3),
    0 0 0 1px rgba(198,161,76,.28),
    0 22px 60px -18px rgba(150,114,38,.34);
}

/* ---------- Refined primary CTA presence ---------- */
/* A quiet, always-on depth so the main conversion button reads as "expensive". */
.btn-primary{
  box-shadow:var(--sh-2), 0 10px 34px -12px rgba(8,18,42,.55);
}
.btn-primary:hover{
  box-shadow:var(--sh-3), 0 16px 44px -12px rgba(8,18,42,.6);
}

/* ============================================================
   HERO — cinematic upgrade (additive; extends styles.css)
   Elevates the existing hero in place: richer aurora, a gold
   glow-ring around the portrait, a glassmorphic name card, and a
   soft halo on the seal. No new floating elements, so nothing can
   land in the wrong place.
   ============================================================ */
/* richer, more vivid animated aurora */
.hero-aurora::before{width:640px;height:640px;background:radial-gradient(circle,rgba(214,190,127,.52),transparent 68%)}
.hero-aurora::after{width:700px;height:700px;background:radial-gradient(circle,rgba(58,86,180,.60),transparent 70%)}

/* soft gold ambient glow behind the portrait */
.hero-visual::after{
  content:"";position:absolute;inset:-10% -8% -6% -10%;z-index:-1;border-radius:28px;pointer-events:none;
  background:radial-gradient(58% 55% at 68% 22%, rgba(214,190,127,.30), transparent 62%);
  filter:blur(34px);
}

/* portrait frame: gold gradient glow-ring + deeper cinematic shadow */
.hero-frame{
  box-shadow:var(--sh-3), 0 0 0 1px rgba(214,190,127,.30), 0 44px 100px -34px rgba(150,114,38,.5);
}

/* glassmorphic director name card (readable: stays fairly opaque) */
.hero-card{
  background:rgba(255,255,255,.80);
  backdrop-filter:blur(18px) saturate(1.25);
  -webkit-backdrop-filter:blur(18px) saturate(1.25);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--sh-3), inset 0 1px 0 rgba(255,255,255,.85);
}

/* seal: soft outer halo ring */
.hero-seal{box-shadow:var(--sh-gold), 0 0 0 7px rgba(214,190,127,.14)}

/* ---------- Hero: instant on-load entrance (no blank first paint) ---------- */
/* Above-the-fold hero content animates in immediately via CSS (not gated by
   IntersectionObserver), so the hero is never blank on load. */
.hero .reveal,
.hero .reveal-zoom{
  animation: heroIn .6s cubic-bezier(.22,.61,.25,1) both;
  animation-delay: var(--d, 0ms);
}
@keyframes heroIn{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .hero .reveal, .hero .reveal-zoom{ animation:none; opacity:1; transform:none; }
}

/* ---------- Hero headline: bigger, tighter, more dramatic ---------- */
.hero h1{
  font-size:clamp(2.5rem, 4.6vw, 4.1rem);
  line-height:1.02;
  letter-spacing:-.028em;
  margin-top:1.35rem;
}
.hero .lead{font-size:1.06rem; line-height:1.72; color:#c0cce0}
/* kicker → a touch more premium */
.hero .kicker{background:rgba(214,190,127,.09); border-color:rgba(214,190,127,.4)}
/* deepen the hero floor so the fold reads richer */
.hero::after{content:""; position:absolute; inset:auto 0 0 0; height:38%; z-index:-1;
  background:linear-gradient(180deg, transparent, rgba(3,8,20,.5)); pointer-events:none}

/* ---------- Signature: quiet gold sheen on the hero highlight ---------- */
/* One restrained moment — a slow highlight drifts across the gold headline word. */
.hero h1 .hl{
  background:linear-gradient(100deg,#a87f2c 0%,#d8be7f 30%,#f6edd6 47%,#d8be7f 64%,#c6a14c 100%);
  background-size:220% auto;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:vcSheen 8s ease-in-out infinite;
}
@keyframes vcSheen{0%{background-position:180% center}100%{background-position:-40% center}}
@media (prefers-reduced-motion:reduce){.hero h1 .hl{animation:none}}

/* ---------- Hero: Google rating badge (real 5.0 · social proof) ---------- */
.hero-rating{
  display:inline-flex;align-items:center;gap:.6rem;margin-top:1.7rem;width:max-content;
  padding:.5rem .95rem;border-radius:999px;
  background:rgba(214,190,127,.08);border:1px solid rgba(214,190,127,.3);
  color:#e7edf7;font-size:.86rem;
  transition:background .3s var(--ease),border-color .3s var(--ease),transform .2s var(--ease);
}
.hero-rating:hover{background:rgba(214,190,127,.15);border-color:rgba(214,190,127,.55);transform:translateY(-2px)}
.hero-rating .stars{color:#e8ce92;letter-spacing:.05em;font-size:.94rem;line-height:1}
.hero-rating .rt b{color:#fff;font-weight:700}
.hero-rating .rt-sub{color:#aebbd4}
@media(max-width:860px){.hero-rating{margin-inline:auto}}

/* ---------- Client reviews (verified Google reviews) ---------- */
.review-card{display:flex;flex-direction:column;gap:.9rem}
.review-card .rc-stars{color:#e0a83a;font-size:1.05rem;letter-spacing:.1em;line-height:1}
.review-card .rc-text{font-family:"Fraunces",Georgia,serif;font-style:italic;font-size:1.08rem;line-height:1.55;color:var(--ink);margin:0;flex:1}
.review-card .rc-author{display:flex;align-items:center;gap:.7rem;margin-top:.3rem}
.review-card .rc-av{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--gold-grad);color:#241a05;font-weight:700;font-size:1.05rem;flex:none}
.review-card .rc-meta{display:flex;flex-direction:column;line-height:1.35}
.review-card .rc-meta b{font-size:.95rem;color:var(--navy-800)}
.review-card .rc-meta span{font-size:.75rem;color:var(--muted)}

.review-cta{
  display:flex;align-items:center;justify-content:space-between;gap:1.4rem;flex-wrap:wrap;
  margin:2.6rem auto 0;max-width:940px;padding:1.5rem 1.9rem;border-radius:18px;
  background:linear-gradient(135deg,rgba(198,161,76,.12),rgba(198,161,76,.04));
  border:1px solid var(--gold-300);
}
.review-cta-txt h3{margin:0 0 .25rem;font-size:1.2rem}
.review-cta-txt p{margin:0;color:var(--ink-soft);font-size:.92rem}
@media(max-width:560px){.review-cta{flex-direction:column;text-align:center;align-items:stretch}}

/* ---------- Footer logo: never stretch ---------- */
/* CSS only pins height, so width must derive from the intrinsic ratio (2.02),
   not from the width attribute. Guarantees correct proportions everywhere. */
.footer-logo img{width:auto}

/* ---------- Accessibility: muted text contrast on paper grounds ---------- */
/* #6a6f78 on the warm-paper backgrounds fell to 4.29 / 3.99 (WCAG AA needs 4.5).
   Darken just in those contexts so small print stays legible. */
.bg-paper .text-muted,
.bg-paper-2 .text-muted,
.bg-paper .footer-mini,
.text-muted{color:#565b64}

/* ---------- Motion stagger: no-JS / pre-reveal safety ---------- */
/* If JS is disabled the [data-motion-stagger] children are never hidden
   (motion-enhance.js only hides them once it runs), so nothing to do here —
   this block documents intent and guards reduced-motion users. */
@media (prefers-reduced-motion: reduce){
  .card::after{display:none}
  .card{will-change:auto}
}
