/* ============================================
   ASTRO C S PANERI — Design System
   Palette: Deep Cosmic + Warm Gold
   Fonts: Cormorant Garamond + Outfit
   ============================================ */

:root {
  --midnight:    #0D0B1E;
  --deep-space:  #1A1540;
  --nebula:      #251E5C;
  --gold:        #C9A84C;
  --gold-light:  #E6C07B;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-glow:   rgba(201,168,76,0.35);
  --parchment:   #F2EDE4;
  --parchment-dim: rgba(242,237,228,0.7);
  --white:       #FFFFFF;
  --text-muted:  rgba(242,237,228,0.55);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--midnight);
  color: var(--parchment);
  overflow-x: hidden;
  cursor: default;
}

/* Star field canvas */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

em { font-style: italic; color: var(--gold-light); }

p { line-height: 1.75; }

a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--parchment);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--midnight);
  font-weight: 600;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(242,237,228,0.25);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

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

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(13,11,30,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--gold-dim);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.02em;
}

.nav__logo-symbol {
  color: var(--gold);
  font-size: 1rem;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold-dim) !important;
  border: 1px solid var(--gold-glow) !important;
  color: var(--gold-light) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: all 0.3s ease !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--midnight) !important;
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--parchment);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13,11,30,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--parchment);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold-light); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(37,30,92,0.6) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 6rem;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line:nth-child(1) { transition-delay: 0.15s; }
.hero__title-line:nth-child(2) {
  font-style: italic;
  color: var(--gold-light);
  transition-delay: 0.25s;
  padding-left: 2rem;
}
.hero__title-line:nth-child(3) { transition-delay: 0.35s; }

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  transition-delay: 0.45s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition-delay: 0.55s;
}

/* Zodiac Wheel */
.hero__zodiac-wheel {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 600px);
  opacity: 0.5;
  animation: rotate-wheel 120s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.zodiac-svg { width: 100%; height: 100%; }

@keyframes rotate-wheel {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(1.2); }
}

/* ── About ── */
.about {
  position: relative;
  padding: 8rem 4rem;
  z-index: 1;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,21,64,0.4) 50%, transparent 100%);
  pointer-events: none;
}

.about__deco-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 16rem);
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 380px;
}

.about__image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep-space), var(--nebula));
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.about__portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

.about__portrait-symbol {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.about__portrait-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.about__image-border {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
  z-index: -1;
}

.about__credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__credential {
  flex: 1;
  text-align: center;
  padding: 1.2rem 0.5rem;
  border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.04);
}

.about__credential-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about__credential-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── Services ── */
.services {
  position: relative;
  padding: 8rem 4rem;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.services__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
}

.service-card {
  background: var(--midnight);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover { background: rgba(26,21,64,0.8); }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(10deg);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.service-card__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.5s var(--ease-out-expo);
}

.service-card:hover .service-card__line { width: 100%; }

/* ── Wisdom ── */
.wisdom {
  position: relative;
  padding: 8rem 4rem;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26,21,64,0.6) 0%, rgba(37,30,92,0.4) 50%, rgba(26,21,64,0.6) 100%);
}

.wisdom__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wisdom__ornament {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin: 1.5rem 0;
  opacity: 0.6;
}

.wisdom__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--parchment);
  margin: 2rem 0 1.5rem;
  transition-delay: 0.1s;
}

.wisdom__attribution {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition-delay: 0.2s;
}

.wisdom__planet {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--size);
  color: var(--gold);
  opacity: 0.4;
  animation: twinkle var(--delay, 1s) 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.2; transform: scale(0.8); }
  to   { opacity: 0.8; transform: scale(1.4); }
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  padding: 8rem 4rem;
  z-index: 1;
  overflow: hidden;
}

.testimonials__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.testimonials__track {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  background: rgba(26,21,64,0.5);
  border: 1px solid var(--gold-dim);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-glow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold-dim);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--parchment);
}

.testimonial-card__location {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__controls {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Contact ── */
.contact {
  position: relative;
  padding: 8rem 4rem;
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact__detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact__detail-value {
  display: block;
  font-size: 0.9rem;
  color: var(--parchment);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(26,21,64,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(242,237,228,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(37,30,92,0.4);
}

.form-group select option {
  background: var(--deep-space);
  color: var(--parchment);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 4rem;
  border-top: 1px solid var(--gold-dim);
  background: rgba(13,11,30,0.8);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.footer__symbol {
  color: var(--gold);
  animation: spin-slow 20s linear infinite;
}

.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 1.5rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(242,237,228,0.3);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav { padding: 1.5rem 2.5rem; }
  .nav.scrolled { padding: 1rem 2.5rem; }
  .hero { padding: 0 2.5rem; }
  .about { padding: 6rem 2.5rem; }
  .about__container { gap: 3rem; }
  .services { padding: 6rem 2.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .wisdom { padding: 6rem 2.5rem; }
  .testimonials { padding: 6rem 2.5rem; }
  .contact { padding: 6rem 2.5rem; }
  .footer { padding: 3rem 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }

  .hero { padding: 0 1.5rem; min-height: 100svh; }
  .hero__zodiac-wheel { opacity: 0.15; right: -20%; width: 80vw; }
  .hero__scroll-hint { left: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .about { padding: 5rem 1.5rem; }
  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-frame { max-width: 100%; aspect-ratio: 4/3; }

  .services { padding: 5rem 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }

  .wisdom { padding: 5rem 1.5rem; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonial-card { flex: 0 0 85vw; }

  .contact { padding: 5rem 1.5rem; }
  .contact__container { grid-template-columns: 1fr; gap: 3rem; }

  .footer { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .about__credentials { flex-direction: column; gap: 0.8rem; }
  .services__grid { gap: 0; }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ── */
::selection { background: var(--gold-dim); color: var(--gold-light); }