/* =========================================================================
   Astrology Lifecycles — hand-written stylesheet
   Palette: deep midnight sky · soft gold · muted violet
   Type: Cormorant Garamond (serif display) · Inter (sans body)
   ========================================================================= */

:root {
  /* Sky - Upgraded to specific color scheme */
  --sky-0:   #0F0F0F;   /* deepest near-black */
  --sky-1:   #14172b;   /* midnight navy */
  --sky-2:   #26316E;   /* raised panel (dark navy) */
  --sky-3:   #28268C;   /* hover panel / deep indigo */
  --sky-line:#4D5CB0;   /* border lines (medium blue) */

  /* Accents */
  --gold:    #FCE935;   /* vibrant yellow */
  --gold-soft:#F2D022;   /* warm gold */
  --gold-deep:#E35A05;   /* accent orange */
  --violet:  #4D5CB0;   /* medium blue */
  --violet-soft:#8a96d6;
  --violet-deep:#28268C;

  /* Text */
  --ink:     #FFFFFF;   /* pure white */
  --ink-soft:#d5d9eb;   /* high contrast readable body */
  --ink-mute:#8c93b5;   /* muted text */

  --radius:  16px;
  --radius-sm: 10px;
  --maxw:    1160px;
  --gutter:  clamp(1.2rem, 4vw, 3rem);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
}

/* ---- Reset-ish -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--sky-1);
  line-height: 1.65;
  overflow-x: clip; /* prevent H-scroll WITHOUT making <body> a scroll container */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-soft); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }

/* ---- Accessibility ---------------------------------------------------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--gold); color: var(--sky-0);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--sky-0); }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 10vw, 9rem); }
.eyebrow {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-bottom: 1rem; display: inline-block;
}
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }

/* ---- Scroll progress + nav ------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  transform-origin: left;
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8, 11, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--sky-line);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); font-family: var(--serif); font-size: 1.35rem; letter-spacing: .02em; }
.brand:hover { color: var(--ink); }
.brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.footer-brand .brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}
.brand-mark { color: var(--gold); font-size: 1.1em; }
.brand-thin { color: var(--violet-soft); font-weight: 400; }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.nav-menu a {
  color: var(--ink-soft); font-size: .95rem; font-weight: 400;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  border: 1px solid var(--gold-deep); color: var(--gold) !important;
  padding: .5rem 1.1rem; border-radius: 999px; font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--sky-0) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  padding: .85rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--sky-0); box-shadow: 0 10px 30px -12px rgba(232,197,131,.5); }
.btn-primary:hover { color: var(--sky-0); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(232,197,131,.6); }
.btn-ghost { border-color: var(--sky-line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { color: var(--ink); border-color: var(--violet); background: rgba(169,155,214,.08); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; background: radial-gradient(120% 90% at 50% -10%, #10143a 0%, #070a1c 55%, #04050f 100%); }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; display: block; }
.hero::before { /* animated nebula clouds */
  content: ""; position: absolute; inset: -25%; z-index: -3;
  background:
    radial-gradient(38% 30% at 24% 30%, rgba(109,95,166,.40), transparent 60%),
    radial-gradient(30% 26% at 80% 22%, rgba(232,197,131,.15), transparent 60%),
    radial-gradient(48% 40% at 62% 70%, rgba(76,63,140,.34), transparent 62%),
    radial-gradient(28% 26% at 12% 76%, rgba(150,92,168,.20), transparent 60%);
  filter: blur(16px);
  animation: nebulaDrift 46s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes nebulaDrift {
  0%   { transform: rotate(0deg)  scale(1);    opacity: .8; }
  50%  { opacity: 1; }
  100% { transform: rotate(8deg)  scale(1.14); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero::after { /* vignette */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(109,95,166,.28), transparent 55%),
    radial-gradient(80% 70% at 50% 120%, rgba(6,8,20,.9), transparent 60%),
    linear-gradient(180deg, rgba(6,8,20,.35), rgba(11,16,38,.65));
}
.hero-inner { padding: 8rem var(--gutter) 6rem; max-width: 60rem; }
.hero-eyebrow { color: var(--violet-soft); letter-spacing: .3em; }
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  font-weight: 500; line-height: 1.03; margin-bottom: .4em;
  text-wrap: balance;
}
.hero h1 .shimmer { background: linear-gradient(100deg, var(--gold-soft), var(--violet-soft), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin-inline: auto; color: var(--ink-soft); }
.hero-cta { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 1.7rem; left: 50%; transform: translateX(-50%); color: var(--ink-mute); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: hintPulse 2.4s var(--ease) infinite; }
@keyframes hintPulse { 0%,100% { opacity: .2; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .scroll-hint::after { animation: none; } }

/* =========================================================================
   Reveal-on-scroll primitive (JS toggles .is-visible)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--sky-2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,8,20,.5)); }
.about-body h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.about-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic; color: var(--gold-soft); border-left: 2px solid var(--gold-deep); padding-left: 1.2rem; margin: 1.8rem 0; }
.pillars { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 560px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; }
.pillar h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: .3rem; }
.pillar p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* Human vs AI differentiator band */
.differentiator { text-align: center; position: relative; }
.differentiator .lead { margin-inline: auto; }
.diff-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--violet-soft); border: 1px solid var(--violet-deep); border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1.4rem; }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services {
  background-image:
    url("../img/bg-stars.svg"),
    radial-gradient(60% 50% at 85% 0%, rgba(109,95,166,.12), transparent 60%);
  background-repeat: repeat, no-repeat;
  background-size: 340px 340px, auto;
  background-color: var(--sky-0);
}
.services-head { max-width: 46rem; margin-bottom: 2.5rem; }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 620px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

/* Bento Grid Layout for Services */
.services-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.service-bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 2.2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.bento-card-inner {
  background: linear-gradient(180deg, var(--sky-2), var(--sky-1));
  border-radius: calc(2.2rem - 0.5rem);
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.service-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 233, 53, 0.25);
  box-shadow: var(--shadow);
}

/* Wide Cards layout (desktop/tablet) */
@media (min-width: 768px) {
  .bento-hero, .bento-consult {
    grid-column: span 2;
  }
  .bento-hero .bento-card-inner, 
  .bento-consult .bento-card-inner {
    flex-direction: row;
    align-items: stretch;
  }
  .bento-hero .bento-text,
  .bento-consult .bento-text {
    width: 55%;
    padding: 2.2rem;
  }
  .bento-hero .bento-image,
  .bento-consult .bento-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }
  .bento-hero .bento-image img,
  .bento-consult .bento-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }
}

/* Vertical / Square Card layout */
.bento-image-top {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.bento-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-bento-card:hover .bento-image-top img,
.service-bento-card:hover .bento-image img {
  transform: scale(1.04);
}

/* Bento Card Text & Elements */
.bento-text {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.bento-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.bento-text .service-cat {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
  display: inline-block;
  font-weight: 600;
}
.bento-text .service-summary {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.bento-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.bento-bullets li {
  font-size: 0.88rem;
  color: var(--violet-soft);
}
.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sky-line);
}
.bento-footer .service-price {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
}
.bento-footer .service-price small {
  font-size: 0.8rem;
  color: var(--ink-mute);
  display: block;
  font-family: var(--sans);
}
.bento-footer .service-actions {
  display: flex;
  gap: 0.6rem;
}
.bento-footer .service-actions .btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
}

.service-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--sky-2), var(--sky-1));
  border: 1px solid var(--sky-line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) { .service-card:hover { transform: none; } }
.service-media { aspect-ratio: 16 / 9; background: var(--sky-3); position: relative; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-cat { position: absolute; top: .8rem; left: .8rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; background: rgba(6,8,20,.7); color: var(--gold); padding: .3rem .7rem; border-radius: 999px; border: 1px solid var(--gold-deep); }
.service-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.service-sub { font-style: italic; color: var(--violet-soft); font-family: var(--serif); font-size: 1.05rem; margin-bottom: .8rem; }
.service-summary { font-size: .96rem; color: var(--ink-soft); flex: 1; }
.service-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 1rem 0 1.2rem; padding-top: 1rem; border-top: 1px solid var(--sky-line); }
.service-price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); }
.service-price small { font-size: .8rem; color: var(--ink-mute); display: block; font-family: var(--sans); }
.service-format { font-size: .82rem; color: var(--ink-mute); text-align: right; }
.service-actions { display: flex; gap: .7rem; }
.service-actions .btn { padding: .7rem 1.3rem; font-size: .92rem; }

/* =========================================================================
   Astrological section decorations (subtle celestial motifs behind content)
   ========================================================================= */
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* About — slow-turning orbit rings in the upper right */
#about { position: relative; overflow: hidden; }
#about > .container { position: relative; z-index: 1; }
#about::before {
  content: ""; position: absolute; top: -70px; right: -90px;
  width: 360px; height: 360px; pointer-events: none; opacity: .5;
  background: url("../img/orbit-rings.svg") no-repeat center / contain;
  animation: spinSlow 90s linear infinite;
}

/* Human-vs-AI band — faint constellation behind the text */
.differentiator::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 88%); aspect-ratio: 400 / 260; pointer-events: none;
  opacity: .3; z-index: 0;
  background: url("../img/bg-constellation.svg") no-repeat center / contain;
}
.differentiator > * { position: relative; z-index: 1; }

/* Contact — large zodiac wheel drifting in the corner */
.contact { position: relative; overflow: hidden; }
.contact > .container { position: relative; z-index: 1; }
.contact::before {
  content: ""; position: absolute; right: -130px; bottom: -130px;
  width: 460px; height: 460px; pointer-events: none; opacity: .22;
  background: url("../img/zodiac-wheel.svg") no-repeat center / contain;
  animation: spinSlow 160s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  #about::before, .contact::before { animation: none; }
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials { background: var(--sky-0); }
.testi-head { text-align: center; max-width: 46rem; margin-inline: auto; }
.testi-head .lead { margin-inline: auto; }
.testi-summary { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem; padding: .5rem 1.1rem; border: 1px solid var(--sky-line); border-radius: 999px; background: color-mix(in srgb, var(--sky-2) 45%, transparent); }
.testi-summary-stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.testi-summary-text { font-size: .9rem; color: var(--ink-soft); }
.testi-summary-text strong { color: var(--ink); }

.testi-carousel { position: relative; margin-top: 3rem; }
.testi-track {
  display: flex; gap: 1.5rem; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .6rem .3rem 1.4rem; margin-inline: -.3rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: var(--radius); }
.testi-track > .testi-card { flex: 0 0 auto; width: min(85vw, 22rem); scroll-snap-align: center; }
/* Fade the edges so cards slide in/out of view gracefully */
@media (min-width: 720px) {
  .testi-carousel::before, .testi-carousel::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2; pointer-events: none;
  }
  .testi-carousel::before { left: 0;  background: linear-gradient(90deg, var(--sky-0), transparent); }
  .testi-carousel::after  { right: 0; background: linear-gradient(270deg, var(--sky-0), transparent); }
}

.testi-nav { display: flex; gap: .7rem; justify-content: center; margin-top: .4rem; }
.testi-arrow {
  width: 2.9rem; height: 2.9rem; border-radius: 50%; border: 1px solid var(--sky-line);
  background: color-mix(in srgb, var(--sky-2) 55%, transparent); color: var(--ink-soft);
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.testi-arrow:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: .3; cursor: default; }

.testi-card { position: relative; overflow: hidden; background: linear-gradient(158deg, var(--sky-2), var(--sky-1)); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 2rem 1.9rem 1.7rem; display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); }
.testi-card::before { /* gradient hairline that lights up on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(158deg, rgba(252,233,53,.55), rgba(138,150,214,.25) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease); pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 26px 52px -26px rgba(0,0,0,.75); }
.testi-card:hover::before { opacity: 1; }

.testi-mark { position: absolute; top: -.4rem; right: 1rem; font-family: var(--serif); font-size: 6rem; line-height: 1; color: var(--gold); opacity: .12; pointer-events: none; user-select: none; }
.testi-stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .9rem; font-size: .9rem; position: relative; }
.testi-quote { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); line-height: 1.5; flex: 1; margin: 0; position: relative; }
.testi-author { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--sky-line); display: flex; align-items: center; gap: .8rem; }
.testi-avatar { flex: none; width: 2.7rem; height: 2.7rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(140deg, var(--violet), var(--violet-deep)); color: var(--ink); font-size: .85rem; font-weight: 600; letter-spacing: .03em; border: 1px solid var(--sky-line); }
.testi-meta { display: flex; flex-direction: column; line-height: 1.35; text-align: left; }
.testi-name { font-size: .95rem; color: var(--gold-soft); font-weight: 500; }
.testi-loc { font-size: .82rem; color: var(--ink-mute); }
@media (prefers-reduced-motion: reduce) { .testi-card, .testi-card:hover { transform: none; } }

/* =========================================================================
   CONTACT + FORMS
   ========================================================================= */
.contact { background: radial-gradient(70% 90% at 15% 10%, rgba(109,95,166,.14), transparent 60%), var(--sky-1); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-aside h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-details { margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-details a { color: var(--ink); }
.contact-details .cd { display: flex; gap: .8rem; align-items: flex-start; }
.contact-details .cd b { color: var(--gold); font-weight: 500; display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

.form-card { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form-tabs { display: flex; gap: .5rem; margin-bottom: 1.6rem; background: var(--sky-0); padding: .35rem; border-radius: 999px; }
.form-tab { flex: 1; text-align: center; padding: .6rem 1rem; border-radius: 999px; border: 0; background: transparent; color: var(--ink-soft); font-family: var(--sans); font-size: .95rem; font-weight: 500; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease); }
.form-tab[aria-selected="true"] { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--sky-0); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; color: var(--ink); margin-bottom: .4rem; font-weight: 500; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--sky-0); border: 1px solid var(--sky-line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,197,131,.15); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field-row.cols-2 { grid-template-columns: 1fr 1fr; } .field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.field-error { color: #ffb4a2; font-size: .82rem; margin-top: .35rem; display: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #e0736a; }
.field.has-error .field-error { display: block; }

.consent { display: grid; gap: .6rem; margin: 1.2rem 0; padding: 1rem 1.1rem; background: var(--sky-0); border: 1px solid var(--sky-line); border-radius: var(--radius-sm); }
.consent-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.consent-item input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--gold); flex: none; }

.fieldset-person { border: 1px solid var(--sky-line); border-radius: var(--radius-sm); padding: 1.2rem; margin-bottom: 1.1rem; }
.fieldset-person legend { font-family: var(--serif); color: var(--gold-soft); padding: 0 .5rem; font-size: 1.1rem; }
.hidden { display: none !important; }

.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: .8rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(120,190,140,.12); border: 1px solid #4f8a63; color: #b9e6c7; }
.form-status.error { background: rgba(224,115,106,.12); border: 1px solid #b25049; color: #ffc4bd; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--sky-0); border-top: 1px solid var(--sky-line); padding: clamp(3rem,6vw,5rem) 0 2rem; }
.footer-grid { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; } }
.footer-brand .brand-mark { font-size: 1.6rem; color: var(--gold); }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink); margin: .6rem 0; max-width: 26ch; }
.footer-calling { color: var(--gold-soft); font-family: var(--serif); font-size: 1.05rem; }
.footer-col h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .95rem; margin-bottom: .55rem; }
.footer-col a:hover { color: var(--gold); }
.footer-note { font-size: .85rem; color: var(--ink-mute); margin-top: .6rem; }
.footer-base { max-width: var(--maxw); margin: 3rem auto 0; padding: 1.8rem var(--gutter) 0; border-top: 1px solid var(--sky-line); display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
.footer-base p { margin: 0; font-size: .82rem; color: var(--ink-mute); }
.footer-fineprint { max-width: 60ch; }

/* =========================================================================
   Interior pages (about / offerings / legal)
   ========================================================================= */
.page-hero { padding: 10rem var(--gutter) 4rem; text-align: center; position: relative; background: radial-gradient(80% 80% at 50% -10%, rgba(109,95,166,.22), transparent 60%); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero p { max-width: 60ch; margin-inline: auto; color: var(--ink-soft); }

.offer-group { margin-top: 3.5rem; }
.offer-group > h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); border-bottom: 1px solid var(--sky-line); padding-bottom: .6rem; }
.offer-list { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 1.8rem; }
@media (min-width: 760px) { .offer-list { grid-template-columns: 1fr 1fr; } }
.offer-item { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 1.5rem 1.6rem; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.offer-item:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce){ .offer-item:hover { transform: none; } }
.offer-item h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.offer-item .service-sub { font-size: 1rem; }
.offer-item ul { margin: .8rem 0 1rem; padding-left: 1.1rem; color: var(--ink-soft); font-size: .93rem; }
.offer-item ul li { margin-bottom: .3rem; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--sky-line); }

.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; color: var(--gold-soft); }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose .muted { color: var(--ink-mute); font-size: .9rem; }
.legal-meta { color: var(--ink-mute); font-size: .88rem; border-left: 2px solid var(--violet-deep); padding-left: 1rem; margin-bottom: 2rem; }

.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-size: .9rem; }

/* schedule table */
.schedule { width: 100%; border-collapse: collapse; margin-top: 2rem; overflow: hidden; border-radius: var(--radius-sm); }
.schedule th, .schedule td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--sky-line); font-size: .95rem; }
.schedule th { color: var(--gold); font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; background: var(--sky-2); }
.schedule tr:hover td { background: var(--sky-2); }

/* ---- Mobile nav ------------------------------------------------------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 130; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    background: rgba(8,11,28,.97); backdrop-filter: blur(16px);
    padding: 6rem 2rem 2rem; transform: translateX(100%);
    transition: transform .4s var(--ease); border-left: 1px solid var(--sky-line);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.15rem; }
  body.nav-open { overflow: hidden; }
}
