/* ═══════════════════════════════════════════════════════════
   HOME PAGE — TAROTOPIA
   home.css  (base + home-specific styles)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS & RESET ──────────────────────────────────────── */

:root {
  --bg-dark:    #030214;
  --bg-purple:  #1D093A;
  --main-purple:#3C0753;
  --gold:       #C9A84C;
  --gold-hover: #dbbe6a;
  --pink:       #C37F9F;
  --soft:       #B8AFD4;
  --deep-blue:  #030637;
  --rose-line:  rgba(195,127,159,0.78);
  --gold-glow:  rgba(219,190,106,0.42);
  --shadow-violet: rgba(60,7,83,0.42);
  --transition: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select,
a {
  font-family: "Prata", serif;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(60,7,83,0.52), transparent 70%),
    radial-gradient(circle at bottom, rgba(201,168,76,0.08), transparent 30%),
    linear-gradient(180deg, #030214 0%, #07041A 40%, #030214 100%);
  background-attachment: fixed;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  filter: blur(120px);
  background: radial-gradient(
    circle at center,
    rgba(110,40,160,0.22),
    transparent 50%
  );
}

#starCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ── NAVBAR ──────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: -4px;
  left: 0;
  width: 100%;
  z-index: 50;
  transition:
    transform 0.55s var(--transition),
    padding 0.55s var(--transition),
    opacity 0.35s ease;
}

.navbar.scrolled {
  padding-top: 14px;
}

.navbar.scrolled .nav-inner {
  width: min(1220px, calc(100% - 40px));
  border-radius: 25px;
  background: rgba(8,8,18,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(80,20,120,0.2);
  backdrop-filter: blur(20px);
}

.nav-inner {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    width 0.55s var(--transition),
    background 0.55s ease,
    border-color 0.55s ease,
    backdrop-filter 0.55s ease,
    box-shadow 0.55s ease,
    transform 0.45s var(--transition);
}

.logo-wrap {
  flex: 0 0 auto;
}

.logo-wrap img {
  display: block;
  width: auto;
  height: 76px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(201,168,76,0.25))
    drop-shadow(0 0 20px rgba(195,127,159,0.18));
  transition:
    filter 0.35s ease,
    transform 0.35s var(--transition);
}

.navbar.scrolled .logo-wrap img {
  transform: scale(0.96);
}

.logo-wrap:hover img,
.logo-wrap:focus-visible img {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 10px rgba(219,190,106,0.72))
    drop-shadow(0 0 28px rgba(219,190,106,0.38))
    drop-shadow(0 0 42px rgba(195,127,159,0.18));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-left: auto;
}

.desktop-nav a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  padding: 10px 2px;
  border: 0;
  background: none;
  color: var(--soft);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Prata", serif;
  text-shadow: 0 0 14px rgba(184,175,212,0.08);
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s var(--transition);
}

.desktop-nav a:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--gold-hover);
  text-shadow:
    0 0 10px rgba(219,190,106,0.62),
    0 0 24px rgba(219,190,106,0.3);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 170px;
  padding: 12px;
  border: 1px solid rgba(219,190,106,0.24);
  background:
    linear-gradient(135deg, rgba(3,6,55,0.9), rgba(60,7,83,0.72)),
    radial-gradient(circle at top, rgba(219,190,106,0.1), transparent 58%);
  box-shadow:
    0 0 24px rgba(219,190,106,0.12),
    0 20px 52px rgba(3,6,55,0.5);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s var(--transition);
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  width: 100%;
  justify-content: center;
  padding: 11px 14px;
  font-size: 14px;
  letter-spacing: 0.8px;
}

/* ── SECTION DIVIDER ─────────────────────────────────────── */

.section-divider {
  width: min(320px, 70vw);
  margin: 0 auto 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(219,190,106,0.58));
}

.section-divider-line-right {
  background: linear-gradient(to left, transparent, rgba(219,190,106,0.58));
}

.section-divider-star {
  color: var(--gold-hover);
  font-size: 15px;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(219,190,106,0.56),
    0 0 28px rgba(219,190,106,0.24);
}

/* ── MOBILE MENU ─────────────────────────────────────────── */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--gold-hover);
  text-shadow: 0 0 18px rgba(219,190,106,0.58);
  transform: translateY(-1px);
  outline: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  background: rgba(5,5,15,0.92);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--soft);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.mobile-close:hover {
  color: var(--gold-hover);
  text-shadow: 0 0 16px rgba(219,190,106,0.55);
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.mobile-menu-content a,
.mobile-contact-group span {
  text-decoration: none;
  color: var(--soft);
  font-size: 20px;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease,
    transform 0.2s var(--transition);
}

.mobile-menu-content a:hover {
  color: var(--gold-hover);
  text-shadow:
    0 0 12px rgba(219,190,106,0.58),
    0 0 28px rgba(219,190,106,0.24);
  transform: translateY(-1px);
}

.mobile-contact-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mobile-contact-group span {
  color: var(--gold-hover);
  font-family: "Grenze", serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(219,190,106,0.34);
}

.mobile-contact-group a {
  font-size: 18px;
}

/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(219,190,106,0.16);
  background:
    linear-gradient(180deg, transparent, rgba(3,6,55,0.58)),
    radial-gradient(circle at top, rgba(60,7,83,0.2), transparent 58%);
}

.footer-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 42px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(201,168,76,0.22))
    drop-shadow(0 0 18px rgba(195,127,159,0.14));
  transition:
    filter 0.3s ease,
    transform 0.3s var(--transition);
}

.footer-logo:hover img,
.footer-logo:focus-visible img {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 10px rgba(219,190,106,0.6))
    drop-shadow(0 0 24px rgba(219,190,106,0.26));
}

.footer-tagline {
  color: var(--soft);
  font-size: 14px;
  opacity: 0.78;
}

.footer-links {
  margin: 28px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-hover);
  text-shadow:
    0 0 10px rgba(219,190,106,0.5),
    0 0 24px rgba(219,190,106,0.2);
  transform: translateY(-1px);
}

.footer-copy {
  color: rgba(184,175,212,0.58);
  font-size: 12px;
  line-height: 1.6;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(.22,1,.36,1),
    transform 0.9s cubic-bezier(.22,1,.36,1),
    filter 0.9s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 220ms; }
.reveal-delay-3 { transition-delay: 340ms; }
.reveal-delay-4 { transition-delay: 460ms; }

/* ═══════════════════════════════════════════════════════════
   HOME-SPECIFIC STYLES
═══════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(96px, 10vh, 118px) 24px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 760px;
}

.hero-ornament {
  width: clamp(126px, 12vw, 168px);
  height: clamp(126px, 12vw, 168px);
  margin: 0 auto 22px;
  position: relative;
  animation: floatOrb 6s ease-in-out infinite;
}

.orb-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(201,168,76,0.14))
    drop-shadow(0 0 44px rgba(110,40,160,0.18));
}

.hero-mini {
  font-family: "Grenze", serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--pink);
  margin-bottom: 12px;
}

.hero-title {
  margin: 0 auto 16px;
}

.hero-title img {
  display: block;
  width: min(620px, 82vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(201,168,76,0.2))
    drop-shadow(0 0 46px rgba(219,190,106,0.12));
}

.hero-script {
  font-family: "Birthstone", cursive;
  font-size: clamp(22px, 2.2vw, 34px);
  color: var(--soft);
  margin-bottom: 16px;
}

.hero-description {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--soft);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.hero-cta {
  position: relative;
  min-width: min(260px, 82vw);
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-family: "Prata", serif;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--transition);
}

.hero-cta-primary {
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  border-color: rgba(219,190,106,0.9);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow:
    0 0 24px rgba(219,190,106,0.08),
    0 16px 48px rgba(3,6,55,0.24);
}

.hero-cta-secondary {
  color: var(--pink);
  border-color: var(--rose-line);
  border-left-color: transparent;
  border-right-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(195,127,159,0.08), transparent);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow:
    0 0 18px var(--gold-glow),
    0 0 42px rgba(219,190,106,0.22),
    0 18px 52px var(--shadow-violet);
  transform: translateY(-2px);
  outline: none;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  color: var(--deep-blue);
  background: linear-gradient(135deg, #e3c875, var(--gold-hover));
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  background:
    linear-gradient(90deg, transparent, rgba(219,190,106,0.12), transparent);
}

.discover-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--soft);
}

.discover-arrow {
  font-size: 20px;
}

/* ── FEATURES ────────────────────────────────────────────── */

.features-section {
  position: relative;
  z-index: 10;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.features-heading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.features-kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Grenze", serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.features-heading h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow:
    0 0 16px rgba(201,168,76,0.18),
    0 0 46px rgba(219,190,106,0.12);
}

.features-heading p:not(.features-kicker) {
  color: var(--soft);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
  opacity: 0.82;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 34px 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.16);
  background:
    linear-gradient(135deg, rgba(3,6,55,0.72), rgba(60,7,83,0.32)),
    radial-gradient(circle at top right, rgba(195,127,159,0.12), transparent 46%);
  box-shadow:
    0 20px 60px rgba(3,6,55,0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transform: translateY(0);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--transition);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(219,190,106,0.14), transparent 44%),
    radial-gradient(circle at 50% 0%, rgba(219,190,106,0.16), transparent 50%);
  transition: opacity 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(219,190,106,0.48), transparent);
  opacity: 0.55;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(219,190,106,0.62);
  box-shadow:
    0 0 18px rgba(219,190,106,0.2),
    0 0 46px rgba(219,190,106,0.1),
    0 24px 72px rgba(60,7,83,0.42);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-mark,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-mark {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-hover);
  font-family: "Grenze", serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-shadow: 0 0 18px rgba(219,190,106,0.34);
}

.feature-card h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.feature-card p {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.82;
}

/* ── SERVICES ────────────────────────────────────────────── */

.services-section {
  position: relative;
  z-index: 10;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.services-heading {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.services-kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Grenze", serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.services-heading h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow:
    0 0 16px rgba(201,168,76,0.18),
    0 0 46px rgba(219,190,106,0.12);
}

.services-heading p {
  color: var(--soft);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
  opacity: 0.82;
}

/* Tab strip */

.services-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.stab {
  position: relative;
  padding: 8px 22px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--soft);
  cursor: pointer;
  font-family: "Grenze", serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.stab:hover {
  color: var(--gold-hover);
  border-color: rgba(219,190,106,0.6);
  background: rgba(219,190,106,0.06);
}

.stab.active {
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  border-color: var(--gold-hover);
  box-shadow:
    0 0 18px rgba(219,190,106,0.28),
    0 8px 24px rgba(3,6,55,0.24);
}

/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* Card */

.svc-card {
  position: relative;
  padding: 30px 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  background:
    linear-gradient(150deg, rgba(3,6,55,0.74) 0%, rgba(60,7,83,0.30) 100%),
    radial-gradient(circle at top right, rgba(195,127,159,0.10), transparent 50%);
  box-shadow:
    0 18px 54px rgba(3,6,55,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transform: translateY(0);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--transition),
    opacity 0.3s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(145deg, rgba(219,190,106,0.12), transparent 48%),
    radial-gradient(circle at 50% 0%, rgba(219,190,106,0.14), transparent 54%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.svc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(219,190,106,0.44), transparent);
  opacity: 0.5;
}

.svc-card:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(219,190,106,0.56);
  box-shadow:
    0 0 16px rgba(219,190,106,0.18),
    0 0 42px rgba(219,190,106,0.09),
    0 24px 72px rgba(60,7,83,0.40);
}

.svc-card:hover::before {
  opacity: 1;
}

/* Featured card */

.svc-card--featured {
  padding-top: 48px;
  border-color: rgba(219,190,106,0.38);
  background:
    linear-gradient(150deg, rgba(3,6,55,0.80) 0%, rgba(60,7,83,0.46) 100%),
    radial-gradient(circle at top right, rgba(219,190,106,0.12), transparent 50%);
  box-shadow:
    0 0 22px rgba(219,190,106,0.14),
    0 0 54px rgba(219,190,106,0.07),
    0 22px 64px rgba(60,7,83,0.38),
    inset 0 1px 0 rgba(219,190,106,0.12);
}

.svc-card--featured::after {
  opacity: 0.9;
}

.svc-featured-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 2;
  width: min(188px, calc(100% - 46px));
  padding: 7px 26px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: var(--deep-blue);
  font-family: "Prata", serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
  transform: translateX(-50%);
  box-shadow: 0 4px 14px rgba(219,190,106,0.34);
}

/* Card internals */

.svc-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 12px;
  border: 1px solid rgba(195,127,159,0.44);
  color: var(--pink);
  font-family: "Grenze", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.svc-roman {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(219,190,106,0.12);
  font-family: "Grenze", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  pointer-events: none;
  user-select: none;
}

.svc-name {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.svc-duration {
  display: block;
  color: var(--gold-hover);
  font-size: 0.88em;
  opacity: 0.85;
}

.svc-desc {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: 13.5px;
  line-height: 1.65;
  opacity: 0.78;
  min-height: 52px;
}

.svc-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.28), transparent);
}

/* Pricing rows */

.svc-pricing {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.svc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.svc-label {
  color: var(--soft);
  font-family: "Grenze", serif;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.72;
}

.svc-price {
  color: var(--gold);
  font-family: "Prata", serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 14px rgba(219,190,106,0.22);
}

.svc-member .svc-label {
  color: var(--pink);
  opacity: 1;
}

.svc-member .svc-price {
  color: var(--gold-hover);
  text-shadow: 0 0 14px rgba(219,190,106,0.34);
}

/* Perks list */

.svc-perks {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-perks li {
  padding-left: 16px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.78;
  position: relative;
}

.svc-perks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-hover);
  font-size: 8px;
  top: 4px;
  opacity: 0.7;
}

/* Hidden card (filtered out) */

.svc-card.svc-hidden {
  display: none;
}

.svc-card.svc-entering {
  animation: serviceCardIn 0.58s var(--transition) both;
  animation-delay: calc(var(--svc-order, 0) * 80ms);
}

.svc-card.svc-entering > :is(
  .svc-badge,
  .svc-roman,
  .svc-name,
  .svc-desc,
  .svc-divider,
  .svc-pricing,
  .svc-perks
) {
  animation: serviceItemIn 0.52s var(--transition) both;
  animation-delay: calc(
    (var(--svc-order, 0) * 80ms) +
    (var(--svc-item-order, 0) * 54ms) +
    90ms
  );
}

.svc-card.svc-entering > .svc-featured-ribbon {
  animation: serviceRibbonIn 0.52s var(--transition) both;
  animation-delay: calc((var(--svc-order, 0) * 80ms) + 90ms);
}

.svc-featured-ribbon { --svc-item-order: 0; }
.svc-badge { --svc-item-order: 1; }
.svc-roman { --svc-item-order: 1; }
.svc-name { --svc-item-order: 2; }
.svc-desc { --svc-item-order: 3; }
.svc-divider { --svc-item-order: 4; }
.svc-pricing { --svc-item-order: 5; }
.svc-perks { --svc-item-order: 6; }

/* Note at bottom */

.services-note {
  margin-top: 38px;
  text-align: center;
  color: var(--soft);
  font-family: "Grenze", serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  opacity: 0.68;
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-section {
  position: relative;
  z-index: 10;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 120px;
}

.faq-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.faq-kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Grenze", serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.faq-heading h2 {
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow:
    0 0 16px rgba(201,168,76,0.18),
    0 0 46px rgba(219,190,106,0.12);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.16);
  background:
    linear-gradient(135deg, rgba(3,6,55,0.72), rgba(60,7,83,0.28)),
    radial-gradient(circle at top right, rgba(195,127,159,0.1), transparent 46%);
  box-shadow:
    0 18px 54px rgba(3,6,55,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--transition);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(219,190,106,0.1), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(219,190,106,0.12), transparent 54%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(219,190,106,0.54);
  box-shadow:
    0 0 18px rgba(219,190,106,0.16),
    0 0 46px rgba(219,190,106,0.08),
    0 24px 72px rgba(60,7,83,0.34);
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item:hover::before,
.faq-item[open]::before {
  opacity: 1;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  min-height: 72px;
  padding: 24px 70px 24px 28px;
  display: flex;
  align-items: center;
  color: var(--gold);
  cursor: pointer;
  font-family: "Grenze", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.5px;
  list-style: none;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold-hover);
  font-family: "Prata", serif;
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(219,190,106,0.36);
  transform: translateY(-50%) rotate(0deg);
  transition:
    transform 0.28s var(--transition),
    text-shadow 0.28s ease;
}

.faq-item[open] summary {
  color: var(--gold-hover);
  text-shadow:
    0 0 10px rgba(219,190,106,0.4),
    0 0 24px rgba(219,190,106,0.14);
}

.faq-item[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    height 0.34s var(--transition),
    opacity 0.28s ease,
    transform 0.34s var(--transition);
}

.faq-item[open] .faq-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-closing .faq-content {
  opacity: 0;
  transform: translateY(-8px);
}

.faq-content ul {
  padding: 0 30px 28px 48px;
  color: var(--soft);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
}

.faq-content li {
  padding: 7px 0;
}

.faq-content li::marker {
  color: var(--gold-hover);
}

/* ── HERO ANIMATION ──────────────────────────────────────── */

.hero-ornament,
.hero-mini,
.hero-title,
.hero-script,
.hero-description,
.hero-actions,
.discover-wrap {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
}

.hero-loaded .hero-ornament    { animation: heroReveal 1s 0.00s forwards; }
.hero-loaded .hero-mini        { animation: heroReveal 1s 0.15s forwards; }
.hero-loaded .hero-title       { animation: heroReveal 1s 0.30s forwards; }
.hero-loaded .hero-script      { animation: heroReveal 1s 0.45s forwards; }
.hero-loaded .hero-description { animation: heroReveal 1s 0.60s forwards; }
.hero-loaded .hero-actions     { animation: heroReveal 1s 0.75s forwards; }

.hero-loaded .discover-wrap {
  animation:
    heroReveal 1s 0.95s forwards,
    floatArrow 2.8s ease-in-out 2s infinite;
}

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes serviceItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes serviceRibbonIn {
  from { opacity: 0; transform: translateX(-50%) translate3d(0, 12px, 0); filter: blur(5px); }
  to   { opacity: 1; transform: translateX(-50%) translate3d(0, 0, 0);    filter: blur(0);   }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);    }
}

@keyframes floatArrow {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(8px); }
}

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

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 768px) {

  .background-glow {
    filter: blur(60px);
    background: radial-gradient(circle at center, rgba(110,40,160,0.16), transparent 54%);
  }

  .desktop-nav  { display: none; }
  .menu-toggle  { display: block; }

  .nav-inner {
    width: 100%;
    justify-content: center;
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    right: 18px;
  }

  .logo-wrap img {
    width: auto;
    height: 62px;
    filter: none;
  }

  .logo-wrap:hover img,
  .logo-wrap:focus-visible img { filter: none; }

  .navbar.scrolled .nav-inner,
  .mobile-menu { backdrop-filter: blur(12px); }

  .section-divider  { margin-bottom: 34px; }

  .footer-inner {
    width: min(100% - 36px, 620px);
    padding: 38px 0 34px;
  }

  .footer-logo img {
    height: 48px;
    filter: none;
  }

  .footer-links { gap: 16px 20px; }

  /* hero */
  .orb-svg,
  .hero-title img { filter: none; }

  .hero-title       { margin-bottom: 14px; }
  .hero-title img   { width: min(420px, 88vw); }
  .hero-script      { font-size: 28px; }
  .hero-description { font-size: 15px; line-height: 1.8; }

  .hero-actions     { gap: 14px; margin-bottom: 38px; }

  .hero-cta {
    width: min(300px, 86vw);
    min-width: 0;
    min-height: 56px;
    padding: 0 28px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-mini    { letter-spacing: 4px; }
  .hero-ornament { width: 138px; height: 138px; margin-bottom: 24px; }

  /* features */
  .features-section {
    width: min(100% - 36px, 560px);
    padding: 56px 0 78px;
  }

  .features-heading { margin-bottom: 34px; }

  .features-kicker { font-size: 12px; letter-spacing: 3px; }

  .features-grid { grid-template-columns: 1fr; gap: 18px; }

  .feature-card { min-height: 0; padding: 28px 24px 26px; }

  .feature-card h3 { font-size: 24px; }

  /* services */
  .services-section {
    width: min(100% - 36px, 560px);
    padding: 56px 0 78px;
  }

  .services-heading { margin-bottom: 30px; }

  .services-kicker { font-size: 12px; letter-spacing: 3px; }

  .services-tabs { gap: 8px; margin-bottom: 32px; }

  .stab {
    font-size: 13px;
    padding: 7px 16px;
    letter-spacing: 1px;
  }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .svc-name { font-size: 20px; }

  .svc-roman { font-size: 38px; }

  .svc-desc { min-height: 0; }

  .svc-card--featured { padding-top: 46px; }

  .svc-featured-ribbon {
    width: min(178px, calc(100% - 38px));
    letter-spacing: 2px;
  }

  /* faq */
  .faq-section {
    width: min(100% - 36px, 560px);
    padding-bottom: 86px;
  }

  .faq-heading  { margin-bottom: 32px; }
  .faq-kicker   { font-size: 12px; letter-spacing: 3px; }

  .faq-item summary {
    min-height: 64px;
    padding: 20px 58px 20px 22px;
    font-size: 22px;
  }

  .faq-item summary::after { right: 22px; }

  .faq-content ul {
    padding: 0 24px 24px 38px;
    font-size: 14px;
    line-height: 1.7;
  }
}

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

@media (min-width: 769px) and (max-width: 980px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .feature-card { min-height: 0; }
}

@media (min-width: 769px) and (max-height: 900px) {
  .hero { padding-top: 92px; padding-bottom: 28px; }

  .hero-ornament { width: 132px; height: 132px; margin-bottom: 16px; }

  .hero-mini    { margin-bottom: 8px; }
  .hero-title   { margin-bottom: 12px; }
  .hero-title img { width: min(520px, 72vw); }

  .hero-script  { font-size: clamp(22px, 2vw, 30px); margin-bottom: 12px; }

  .hero-description { font-size: 16px; line-height: 1.55; margin-bottom: 24px; }

  .hero-actions { margin-bottom: 22px; }
  .hero-cta     { min-height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ── ABOUT TEASER ────────────────────────────────────────── */

.about-teaser-section {
  position: relative;
  z-index: 10;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 120px;
}

.about-teaser-inner {
  text-align: center;
  padding: 56px 48px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.16);
  background:
    linear-gradient(135deg, rgba(3,6,55,0.88), rgba(60,7,83,0.44)),
    radial-gradient(circle at 60% 40%, rgba(195,127,159,0.09), transparent 55%);
  box-shadow:
    0 24px 72px rgba(3,6,55,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.about-teaser-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Grenze", serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-teaser-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Grenze", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow:
    0 0 16px rgba(201,168,76,0.18),
    0 0 48px rgba(219,190,106,0.1);
}

.about-teaser-desc {
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--soft);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.85;
  opacity: 0.86;
}

.about-teaser-link {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(201,168,76,0.52);
  color: var(--gold);
  text-decoration: none;
  font-family: "Grenze", serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(219,190,106,0.04));
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--transition);
}

.about-teaser-link:hover {
  color: var(--deep-blue);
  border-color: var(--gold-hover);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  box-shadow:
    0 0 18px rgba(219,190,106,0.28),
    0 8px 28px rgba(3,6,55,0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-teaser-section {
    width: min(100% - 36px, 560px);
    padding-bottom: 80px;
  }

  .about-teaser-inner {
    padding: 38px 24px;
  }

  .about-teaser-title { font-size: 32px; }
  .about-teaser-desc  { font-size: 15px; }
  .about-teaser-link  { font-size: 15px; padding: 12px 28px; }
}