/* layout.css — nav, sparkle divider, shared section head, footer */
/* ---------- NAV ---------- */
header.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(31,18,53,0.0);
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding:22px 0;
}
header.nav.scrolled{
  background:rgba(31,18,53,0.92);
  backdrop-filter:blur(8px);
  box-shadow:0 4px 24px rgba(0,0,0,.18);
  padding:14px 0;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  font-family:'Fraunces',serif;
  font-size:1.25rem;
  font-weight:600;
}
.brand .wand-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--fairy-gold);
  box-shadow:0 0 10px 2px rgba(232,185,74,.8);
}
.brand small{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:.62rem;
  font-weight:400;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fairy-gold-soft);
  margin-top:1px;
}
nav.links{
  display:flex;
  gap:34px;
  align-items:center;
}
nav.links a{
  color:rgba(255,255,255,.85);
  font-size:.86rem;
  font-weight:500;
  letter-spacing:.02em;
  position:relative;
  padding:4px 0;
}
nav.links a:hover{color:var(--white);}
nav.links a::after{
  content:'';
  position:absolute;
  left:0; bottom:-3px;
  width:0; height:1.5px;
  background:var(--fairy-gold);
  transition:width .25s ease;
}
nav.links a:hover::after{width:100%;}
.nav-cta{
  background:var(--fairy-gold);
  color:var(--deep-magic) !important;
  padding:10px 20px;
  border-radius:999px;
  font-weight:600;
  font-size:.82rem !important;
}
.nav-cta::after{display:none;}
.nav-cta:hover{background:var(--fairy-gold-soft);}
.burger{display:none;background:none;border:0;color:var(--white);font-size:1.6rem;cursor:pointer;}


/* ---------- SPARKLE DIVIDER (signature motif) ---------- */
.sparkle-divider{
  display:flex; align-items:center; justify-content:center;
  gap:14px;
  padding:56px 0 8px;
}
.sparkle-divider svg{width:26px; height:26px; color:var(--fairy-gold);}
.sparkle-divider .line{
  width:64px; height:1px;
  background:linear-gradient(90deg, transparent, var(--fairy-gold), transparent);
}
/* Lines draw outward FROM the sparkle on reveal (see dividers.js), not from their own
   centre — each needs its transform-origin at the edge nearest the sparkle. */
.sparkle-divider .line:first-child{transform-origin:right center;}
.sparkle-divider .line:last-child{transform-origin:left center;}

/* ---------- SECTION SHARED ---------- */
section{padding:90px 0;}
.section-head{text-align:center; max-width:640px; margin:0 auto 56px;}
.section-head .tag{
  font-family:'Parisienne',cursive;
  font-size:1.5rem;
  color:var(--amethyst);
  display:block;
  margin-bottom:2px;
}
.section-head h2{
  font-size:clamp(1.8rem,3.4vw,2.5rem);
  color:var(--deep-magic);
}
.section-head p{
  color:var(--ink-plum-soft);
  margin-top:14px;
  line-height:1.7;
  font-size:.98rem;
}


/* ---------- FOOTER ---------- */
footer{
  background:#140A26;
  color:rgba(255,255,255,.55);
  padding:50px 0 30px;
  font-size:.82rem;
}
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px;
  padding-bottom:30px; margin-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{color:var(--white); font-family:'Fraunces',serif; font-size:1.1rem;}
.footer-social{display:flex; gap:14px;}
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, background .2s ease;
}
.footer-social a:hover{border-color:var(--fairy-gold); background:rgba(232,185,74,.1);}
.footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}
.footer-bottom a{text-decoration:underline; text-underline-offset:2px;}

