/* ============================================
   Genie Hands LLC — design tokens (edit here)
   ============================================ */
:root {
  /* Purple — deeper contrast (lamp shadow / luxury depth) */
  --purple-deep: #241538;
  --purple-royal: #3a2454;
  --purple-mid: #5b3d78;
  --purple-soft: #8e72b0;
  --lavender-mist: #c9b8e0;
  --lavender-pale: #f0eaf8;
  /* Logo revamp — lilac vapor & plum lamp */
  --lilac-whisper: #ede4f7;
  --violet-mist: #b59ad8;
  --plum-soft: #6b4d82;

  /* Pearl & silver (reference: lamp + clouds) */
  --pearl: #ffffff;
  --silver-mist: #e4e7ef;
  --moonline: #c5cad8;

  /* Gold — warm metallic accent */
  --gold-dark: #7a6238;
  --gold: #c4a050;
  --gold-light: #e8d5a3;
  --gold-shimmer: #faf3dd;

  /* Wellness green — softer presence */
  --sage: #6b8f71;
  --sage-soft: #b5d1ba;
  --emerald-muted: #4a6b52;

  /* Neutrals — calm white space */
  --ivory: #fbf9fc;
  --white: #ffffff;
  --ink: #1a1222;
  --ink-soft: #4d435c;

  /* Effects */
  --shadow-sm: 0 6px 28px rgba(36, 21, 56, 0.06);
  --shadow-md: 0 16px 48px rgba(36, 21, 56, 0.1);
  --shadow-lg: 0 28px 72px rgba(36, 21, 56, 0.12);
  --glow-gold: 0 0 48px rgba(196, 160, 80, 0.28), 0 0 1px rgba(232, 213, 163, 0.6);
  --glow-purple: 0 0 64px rgba(142, 114, 176, 0.22);
  --glow-pearl: 0 0 80px rgba(255, 255, 255, 0.45);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-organic: 52% 48% 62% 38% / 42% 38% 62% 58%;
  --radius-full: 999px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .shimmer-text {
    animation: none;
    color: var(--purple-mid);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  body {
    background-attachment: scroll, scroll, scroll;
  }
}

body {
  margin: 0;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink-soft);
  background-color: var(--ivory);
  /* Full-page lavender swirls (same family as logo vapor) + soft light wells */
  background-image:
    url("assets/swirls-pattern.svg"),
    radial-gradient(ellipse 130% 95% at 50% -15%, rgba(237, 228, 250, 0.98) 0%, transparent 58%),
    linear-gradient(185deg, #fefcfe 0%, var(--ivory) 42%, #faf7fc 100%);
  background-size: min(1450px, 145vw) auto, auto, auto;
  background-position: center -8%, center top, center;
  background-repeat: no-repeat;
  background-attachment: fixed, scroll, scroll;
  overflow-x: hidden;
}

#main {
  position: relative;
  z-index: 0;
  overflow-x: clip;
}

/* Tablets & phones: fixed backgrounds can jank on iOS — use scroll attachment */
@media (max-width: 1023px) {
  body {
    background-attachment: scroll, scroll, scroll;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--purple-royal);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--purple-royal);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

/* Layout */
.container {
  width: min(1120px, 100% - 2rem);
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 0;
}

.container.narrow {
  width: min(720px, 100% - 2rem);
  max-width: 720px;
}

@media (max-width: 380px) {
  .container,
  .container.narrow {
    width: calc(100% - 1.25rem);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 249, 252, 0.86) 100%);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  transition: box-shadow var(--transition-fast);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), rgba(160, 130, 200, 0.4), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--ivory), var(--ivory)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--purple-soft)) border-box;
  box-shadow: 0 4px 20px rgba(36, 21, 56, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.brand-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.06) contrast(1.03);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(115deg, var(--purple-deep) 0%, var(--purple-mid) 38%, var(--moonline) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-llc {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.92;
}

@media (max-width: 400px) {
  .brand-name {
    font-size: 1.12rem;
  }

  .brand-llc {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--lavender-mist));
  transition: width var(--transition-fast);
}

.nav-list a:hover {
  color: var(--purple-royal);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header {
  display: none;
}

@media (min-width: 1024px) {
  .btn-header {
    display: inline-flex;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--purple-soft);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-royal);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid rgba(139, 106, 173, 0.15);
  background: var(--ivory);
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  min-height: 2.75rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 106, 173, 0.1);
}

.mobile-nav-list a:hover {
  color: var(--purple-mid);
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  min-height: 2.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(91, 61, 120, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(36, 21, 56, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--purple-mid) 100%);
  color: var(--white);
  box-shadow: var(--glow-purple), 0 8px 28px rgba(36, 21, 56, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(139, 106, 173, 0.35);
  color: var(--purple-royal);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--purple-deep);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(139, 106, 173, 0.25);
  color: var(--purple-royal);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: var(--purple-deep);
  box-shadow: var(--glow-gold);
  border-color: rgba(201, 169, 98, 0.5);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.45);
  transform: translateY(-2px);
  color: var(--purple-deep);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  min-height: 2.75rem;
  font-size: 0.85rem;
}

/* Hero — boutique spa atmosphere: mist, pearl light, gold whisper */
.hero {
  position: relative;
  padding: clamp(2.25rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  min-height: min(92vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 639px) {
  .hero {
    min-height: 0;
    padding-top: max(1.5rem, env(safe-area-inset-top));
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  filter: blur(72px);
  opacity: 0.62;
  border-radius: 50%;
}

.hero-orb-1 {
  width: min(58vw, 440px);
  height: min(52vw, 400px);
  background: radial-gradient(ellipse at 40% 40%, var(--lavender-mist) 0%, rgba(201, 184, 224, 0.4) 45%, transparent 72%);
  top: -12%;
  right: -8%;
  border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
}

.hero-orb-2 {
  width: min(50vw, 380px);
  height: min(44vw, 340px);
  background: radial-gradient(ellipse at 60% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(228, 231, 239, 0.5) 40%, transparent 70%);
  bottom: 5%;
  left: -12%;
  border-radius: 45% 55% 52% 48% / 55% 45% 55% 45%;
}

.hero-orb-3 {
  width: min(42vw, 320px);
  height: min(38vw, 300px);
  background: radial-gradient(circle, rgba(232, 213, 163, 0.45) 0%, rgba(196, 160, 80, 0.15) 50%, transparent 68%);
  top: 38%;
  left: 28%;
}

.hero-orb-4 {
  width: min(36vw, 280px);
  height: min(48vw, 360px);
  background: linear-gradient(165deg, rgba(90, 61, 120, 0.2) 0%, rgba(142, 114, 176, 0.12) 50%, transparent 100%);
  top: 8%;
  left: 8%;
  border-radius: 45% 55% 40% 60% / 50% 45% 55% 45%;
  filter: blur(56px);
  opacity: 0.5;
}

/* Organic smoke wisps (abstracted from reference mist) */
.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.35;
  animation: wisp-float 14s ease-in-out infinite;
}

.smoke-wisp-1 {
  --wisp-rot: -12deg;
  width: min(32vw, 260px);
  height: min(18vw, 140px);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.9), rgba(201, 184, 224, 0.35));
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.smoke-wisp-2 {
  --wisp-rot: 18deg;
  width: min(28vw, 220px);
  height: min(22vw, 160px);
  background: linear-gradient(210deg, rgba(240, 234, 248, 0.85), transparent);
  top: 28%;
  right: 6%;
  animation-delay: -4s;
}

.smoke-wisp-3 {
  --wisp-rot: 0deg;
  width: min(24vw, 200px);
  height: min(14vw, 110px);
  background: radial-gradient(ellipse, rgba(232, 213, 163, 0.25), transparent 70%);
  bottom: 22%;
  left: 40%;
  animation-delay: -7s;
}

@keyframes wisp-float {
  0%, 100% { transform: translate(0, 0) rotate(var(--wisp-rot, 0deg)); opacity: 0.32; }
  50% { transform: translate(12px, -18px) rotate(var(--wisp-rot, 0deg)); opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
  .smoke-wisp {
    animation: none;
    transform: rotate(var(--wisp-rot, 0deg));
  }
}

.hero-shimmer {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(232, 213, 163, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: hero-shimmer 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shimmer {
    animation: none;
  }
}

/* Logo-style lavender swirls in hero (lighter layer over orbs) */
.hero-bg-swirl {
  position: absolute;
  inset: 0;
  background:
    url("assets/swirls-soft.svg") 102% 12% / min(360px, 78vw) no-repeat,
    url("assets/swirls-soft.svg") -8% 58% / min(300px, 65vw) no-repeat;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 900px) {
  .hero-bg-swirl {
    opacity: 0.48;
  }
}

/* Curve into next section */
.curve-divider {
  line-height: 0;
  margin-top: -1px;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: clamp(56px, 10vw, 100px);
}

.curve-divider--hero {
  position: relative;
  z-index: 2;
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid-layout--editorial {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 1.1rem;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--purple-mid), var(--lavender-mist), var(--gold), var(--purple-royal));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-title {
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(125deg, var(--purple-deep) 0%, var(--purple-soft) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  max-width: 32rem;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.85rem);
  }

  .hero-lead {
    font-size: 1rem;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 639px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* Character-led hero: float, ground glow, pointer tilt (JS) */
.hero-showcase {
  text-align: center;
  max-width: min(380px, 88vw);
  margin-inline: auto;
}

.hero-character-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  --tilt-x: 0.5;
  --tilt-y: 0.5;
}

.character-aurora {
  display: none;
}

.character-glow-pond {
  position: absolute;
  bottom: 6%;
  left: 50%;
  width: 72%;
  height: 22%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(142, 114, 176, 0.45) 0%, rgba(196, 160, 80, 0.12) 45%, transparent 70%);
  filter: blur(16px);
  z-index: 1;
  pointer-events: none;
  animation: pond-pulse 5s ease-in-out infinite;
}

@keyframes pond-pulse {
  0%, 100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.character-frame {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transform: perspective(880px)
    rotateY(calc((var(--tilt-x) - 0.5) * 14deg))
    rotateX(calc((var(--tilt-y) - 0.5) * -11deg));
  transition: transform 0.2s ease-out;
}

.character-frame-inner {
  position: relative;
  overflow: visible;
  border-radius: 0;
  max-height: min(420px, 68vh);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  background: transparent;
}

.character-frame-inner::after {
  display: none;
}

.hero-character {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(420px, 68vh);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transform: translateY(0) scale(1.02);
  animation: character-float 7s ease-in-out infinite;
  filter: drop-shadow(0 16px 36px rgba(36, 21, 56, 0.12));
}

@keyframes character-float {
  0%, 100% {
    transform: translateY(0) scale(1.02);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
}

.hero-wordmark {
  margin: 1.35rem 0 0.25rem;
}

.hero-wordmark-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, var(--purple-deep) 0%, var(--purple-mid) 40%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-wordmark-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.35rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--purple-mid);
  margin: 0.65rem 0 0;
  letter-spacing: 0.03em;
}

@media (prefers-reduced-motion: reduce) {
  .character-glow-pond,
  .character-frame,
  .hero-character {
    animation: none;
  }

  .hero-character {
    transform: scale(1.02);
  }

  .character-frame {
    transform: none;
  }
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem 2.75rem;
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 249, 252, 0.72));
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: var(--shadow-sm), 0 0 40px rgba(142, 114, 176, 0.06);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-royal);
}

.trust-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(196, 160, 80, 0.45);
  margin-right: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 520px) {
  .trust-list {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .trust-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
}

/* Sections — generous breathing room, boutique pacing */
.section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%) left bottom / 100% 1px no-repeat;
}

.section-head .section-label {
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent) center bottom / min(200px, 60%) 1px no-repeat;
  padding-bottom: 0.65rem;
  display: block;
}

.section-title {
  font-size: clamp(2.05rem, 4.2vw, 2.85rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head .section-title {
  margin-bottom: 0.75rem;
}

/* Editorial split header (e.g. services) */
.section-head--split {
  display: grid;
  gap: 1.25rem 2.5rem;
  max-width: none;
  text-align: left;
  align-items: end;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-head--split {
    grid-template-columns: 1fr minmax(240px, 34%);
  }
}

.section-head--split .section-head-copy {
  max-width: 520px;
}

.section-head--split .section-label {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%) left bottom / 4.5rem 1px no-repeat;
}

.section-sub--aside {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(142, 114, 176, 0.15);
  overflow-wrap: break-word;
}

.section-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.prose p {
  margin: 0 0 1.15rem;
  font-size: 1.08rem;
  overflow-wrap: break-word;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* About */
.about {
  background: linear-gradient(180deg, var(--lavender-pale) 0%, rgba(255, 255, 255, 0.92) 35%, var(--ivory) 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(160px, 24vw);
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(232, 213, 163, 0.12), transparent 65%);
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about::after {
  content: "";
  position: absolute;
  width: min(440px, 90vw);
  height: min(290px, 44vw);
  top: 18%;
  right: max(-6rem, -12%);
  background: url("assets/swirls-soft.svg") no-repeat center / contain;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Services */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
}

.services::before {
  content: "";
  position: absolute;
  width: min(500px, 95vw);
  height: min(360px, 50vw);
  top: -1.5rem;
  left: max(-14%, -5rem);
  background: url("assets/swirls-soft.svg") no-repeat center / contain;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}

.services .container {
  position: relative;
  z-index: 1;
}

/* Services — menu cards grid (3 × 2 on large screens) */
.services-menu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .services-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .services-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.services-menu-item {
  margin: 0;
  min-width: 0;
  display: flex;
}

/* Callout card: cropped flyer photo + editable text + CTA at bottom */
.service-callout {
  --crop-y: 50%;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(165deg, var(--pearl) 0%, var(--ivory) 55%, rgba(240, 234, 248, 0.5) 100%);
  border: 1px solid rgba(142, 114, 176, 0.14);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(142, 114, 176, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-callout:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(142, 114, 176, 0.1);
  border-color: rgba(201, 169, 98, 0.35);
}

/* Service photos (~4:3); tweak per card: style="--crop-y: 45%" on .service-callout */
.service-callout-media {
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(235, 228, 245, 0.35);
}

.service-callout-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--crop-y);
}

.service-callout-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.25rem;
  min-height: 0;
}

.service-callout-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  font-weight: 600;
  color: var(--purple-royal);
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.service-callout-desc {
  margin: 0 0 0.85rem;
  font-size: 0.91rem;
  line-height: 1.58;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.service-callout-prices {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.service-callout-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(142, 114, 176, 0.12);
  color: var(--ink);
}

.service-callout-prices li:last-child {
  border-bottom: none;
}

.service-callout-price-label {
  font-weight: 500;
  color: var(--ink-soft);
  padding-right: 0.5rem;
}

.service-callout-price-value {
  font-weight: 700;
  color: var(--purple-mid);
  white-space: nowrap;
}

.service-callout-foot {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  flex-shrink: 0;
}

.service-callout-cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.service-callout-cta-stack {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-callout-cta-stack .service-callout-cta {
  margin-top: 0;
}

/* Why */
.why {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-royal) 50%, #32204d 100%);
  color: var(--lavender-pale);
}

.why .section-label {
  color: var(--gold-light);
}

.why .section-title {
  color: var(--white);
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.feature-desc {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(235, 228, 245, 0.88);
  line-height: 1.55;
}

/* Booking */
.booking {
  position: relative;
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--ivory) 40%);
}

.booking::before {
  content: "";
  position: absolute;
  width: min(480px, 100vw);
  height: min(320px, 45vw);
  top: 8%;
  right: max(-12%, -4rem);
  background: url("assets/swirls-pattern.svg") no-repeat 80% 30% / 140% auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.booking .container {
  position: relative;
  z-index: 1;
}

.booking-alt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}

.booking-alt-actions .btn {
  flex: 1 1 auto;
  min-width: min(100%, 9.5rem);
}

@media (max-width: 480px) {
  .booking-alt-actions {
    flex-direction: column;
  }

  .booking-alt-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.booking-travel-callout {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(251, 248, 252, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(142, 114, 176, 0.08);
}

.booking-travel-callout-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--purple-royal);
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  line-height: 1.25;
}

.booking-travel-callout-body {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.booking-travel-callout-body p {
  margin: 0 0 0.85rem;
}

.booking-travel-callout-body p:last-of-type {
  margin-bottom: 0.5rem;
}

.booking-travel-callout-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.booking-travel-callout-list li {
  margin-bottom: 0.4rem;
}

.booking-travel-callout-list li:last-child {
  margin-bottom: 0;
}

.booking-travel-callout-list strong {
  color: var(--purple-mid);
  font-weight: 600;
}

.booking-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--white) 0%, rgba(248, 244, 252, 0.95) 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: var(--shadow-md), 0 0 60px rgba(142, 114, 176, 0.06);
}

.booking-frame {
  border-radius: var(--radius-md);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(61, 37, 96, 0.08);
  min-height: min(400px, 55vh);
  background: var(--ivory);
}

.booking-frame iframe {
  display: block;
  border: 0;
  width: 100%;
  max-width: 100%;
  min-height: 2012px;
}

@media (max-width: 639px) {
  .booking-frame iframe {
    min-height: min(2012px, 120vh);
  }
}

.booking-fallback-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 1rem 0 0.75rem;
  text-align: center;
}

.booking-fallback {
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
  position: relative;
  background: var(--white);
}

.testimonials::before {
  content: "";
  position: absolute;
  width: min(420px, 88vw);
  height: min(280px, 40vw);
  bottom: 5%;
  right: max(-5rem, -10%);
  background: url("assets/swirls-soft.svg") no-repeat center / contain;
  opacity: 0.36;
  pointer-events: none;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-dark);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.65rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--ivory), var(--white));
  border: 1px solid rgba(139, 106, 173, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(139, 106, 173, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  padding-top: 0.5rem;
}

.testimonial-card blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-card figcaption {
  margin-top: 1.15rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--purple-mid);
}

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  opacity: 0.85;
}

/* FAQ accordion */
.faq {
  position: relative;
  background: var(--ivory);
}

.faq::before {
  content: "";
  position: absolute;
  width: min(400px, 85vw);
  height: min(260px, 38vw);
  top: 25%;
  left: max(-8%, -3.5rem);
  background: url("assets/swirls-soft.svg") no-repeat center / contain;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}

.faq .container {
  position: relative;
  z-index: 1;
}

.accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(139, 106, 173, 0.15);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  border-bottom: 1px solid rgba(139, 106, 173, 0.1);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item h3 {
  margin: 0;
  font-size: 1rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  font-weight: 500;
  text-align: left;
  color: var(--purple-royal);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: rgba(139, 106, 173, 0.15);
}

.accordion-trigger:hover {
  background: rgba(235, 228, 245, 0.4);
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: -2px;
}

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(139, 106, 173, 0.35);
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--purple-mid);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.accordion-panel {
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: clamp(3.5rem, 10vw, 5.5rem) 0 max(3.5rem, env(safe-area-inset-bottom, 0));
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 26, 69, 0.95) 0%, rgba(61, 37, 96, 0.92) 40%, rgba(74, 124, 89, 0.35) 100%),
    linear-gradient(180deg, var(--purple-deep), var(--purple-royal));
}

.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.2), transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  color: var(--white);
  margin: 0 0 0.75rem;
}

.final-cta-line {
  font-size: 1.1rem;
  color: rgba(235, 228, 245, 0.92);
  margin: 0 0 1.75rem;
}

/* Contact */
.contact {
  position: relative;
  background: var(--white);
  padding-bottom: 3rem;
}

.contact::before {
  content: "";
  position: absolute;
  width: min(460px, 92vw);
  height: min(300px, 42vw);
  bottom: 10%;
  right: max(-6rem, -11%);
  background: url("assets/swirls-soft.svg") no-repeat center / contain;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.65rem;
}

.contact-list a {
  font-weight: 500;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .contact-quick-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.edit-hint {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 400;
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--lavender-pale), var(--ivory));
  border: 1px solid rgba(139, 106, 173, 0.12);
}

.contact-card-title {
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

.contact-card p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.text-link {
  font-weight: 600;
  color: var(--purple-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 106, 173, 0.35);
}

.text-link:hover {
  color: var(--purple-royal);
  border-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--purple-deep);
  color: rgba(235, 228, 245, 0.85);
  padding: 2.5rem 0 max(2rem, env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-mark-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232, 213, 163, 0.4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.footer-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.98;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.footer-tag {
  margin: 0;
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1.25rem;
  margin: 0.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(235, 228, 245, 0.65);
}

.footer-credit {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(235, 228, 245, 0.65);
  text-align: right;
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 540px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-credit {
    text-align: right;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children inside grids (optional enhancement via JS classes) */
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
