/* ═══════════════════════════════════════════════════════════════
   PSYCHIC READINGS BY RITA — Shared Stylesheet
   Palette: Deep Dark · Burgundy · Rose Gold · Blush Cream
   Fonts: Cinzel Decorative · Cinzel · DM Sans
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-deep:        #0a0508;
  --bg-mid:         #130a10;
  --bg-card:        #1a0d17;
  --bg-card-hover:  #210f1e;
  --burgundy:       #8b1a3a;
  --burgundy-light: #a83058;
  --burgundy-dim:   #5c1126;
  --rose-gold:      #c9856a;
  --rose-light:     #e0a58e;
  --rose-muted:     #9e6050;
  --cream:          #f2e8e8;
  --cream-dim:      #c9b8b8;
  --text-body:      #9e8888;
  --border:         rgba(201, 133, 106, 0.18);
  --border-strong:  rgba(201, 133, 106, 0.38);
  --glow-burg:      rgba(139, 26, 58, 0.22);
  --glow-rose:      rgba(201, 133, 106, 0.12);
  --transition:     0.3s ease;
  --radius:         2px;
  --max-width:      1100px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.font-display   { font-family: 'Cinzel Decorative', serif; }
.font-heading   { font-family: 'Cinzel', serif; }
.font-body      { font-family: 'DM Sans', sans-serif; }

h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 600; line-height: 1.2; }

/* ── UTILITY ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.section-title em {
  color: var(--rose-light);
  font-style: normal;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--burgundy), var(--rose-gold));
  margin: 1.1rem 0 0;
}

.divider.center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-rose   { color: var(--rose-light); }
.text-muted  { color: var(--text-body); }

/* ── SPECIAL OFFER BANNER ───────────────────────────────────── */
#special-banner {
  display: none;
  background: var(--burgundy);
  text-align: center;
  padding: 0.75rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  border-bottom: 1px solid var(--burgundy-light);
  position: relative;
  z-index: 200;
}

/* ── AVAILABILITY NOTE ──────────────────────────────────────── */
#availability-note {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  font-family: 'Cinzel', serif;
  padding: 0.6rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 5, 8, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.4rem 0.75rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose-light); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.2rem !important;
  background: var(--burgundy);
  color: var(--cream) !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--burgundy-light) !important; color: var(--cream) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream-dim);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 40%, var(--glow-burg) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 85%, var(--glow-rose) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s ease forwards;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s ease forwards;
}

.hero-title .accent { color: var(--rose-light); display: block; }

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin: 1.3rem 0 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-ornament {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-muted), transparent);
  margin: 3rem auto 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s ease forwards;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

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

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-primary:hover { background: var(--burgundy-light); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--rose-gold); color: var(--rose-light); }

/* ── SECTION WRAPPERS ───────────────────────────────────────── */
.section {
  padding: 5.5rem 0;
}

.section-mid {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark { background: var(--bg-deep); }

/* ── CARDS ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.4rem 1.8rem;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--burgundy);
  transition: width var(--transition), background var(--transition);
}

.card:hover {
  border-color: var(--rose-gold);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.card:hover::before { width: 60px; background: var(--rose-gold); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  display: block;
  filter: saturate(0.7);
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.card-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-body);
}

.card-price {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.card-price-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--cream);
  line-height: 1;
}

.card-price-label {
  font-size: 0.72rem;
  color: var(--text-body);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ── PRICING TABLE ──────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.price-card {
  border: 1px solid var(--border);
  padding: 2.2rem 1.4rem;
  background: var(--bg-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover { border-color: var(--rose-gold); transform: translateY(-4px); }

.price-card.featured { border-color: var(--burgundy); }

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0.75rem; right: -2.2rem;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 3rem;
  transform: rotate(45deg);
  font-family: 'DM Sans', sans-serif;
}

.price-type {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price-duration {
  font-size: 0.72rem;
  color: var(--text-body);
  letter-spacing: 0.1em;
}

.price-note {
  font-size: 0.75rem;
  color: var(--rose-gold);
  margin-top: 0.8rem;
  font-style: italic;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: var(--burgundy);
  opacity: 0.35;
  position: absolute;
  top: 1rem; left: 1.4rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-style: italic;
  padding-top: 1.8rem;
}

.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-top: 1.2rem;
}

.testimonial-stars {
  color: var(--rose-gold);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 740px; margin-left: auto; margin-right: auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.faq-question {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  color: var(--rose-gold);
  font-size: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-body);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--glow-burg) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.cta-subtitle {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone-display {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--rose-light);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}

/* ── STEPS ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  color: var(--burgundy);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.step-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--text-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--glow-burg) 0%, transparent 70%);
}

.about-photo-placeholder span { font-size: 2.5rem; }

.about-text .section-eyebrow { margin-bottom: 0.6rem; }
.about-text .section-title   { margin-bottom: 1.2rem; }
.about-text .divider          { margin-bottom: 1.8rem; }

.about-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}

/* ── CONTACT INFO ───────────────────────────────────────────── */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.contact-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: border-color var(--transition);
}

.contact-method:hover { border-color: var(--rose-gold); }

.contact-method-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.contact-method-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.6rem;
}

.contact-method-value {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.contact-method a {
  color: var(--rose-gold);
  transition: color var(--transition);
}

.contact-method a:hover { color: var(--rose-light); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-body);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-body);
  letter-spacing: 0.06em;
}

.footer-schema-note {
  font-size: 0.68rem;
  color: var(--rose-muted);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.15em;
}

/* ── PAGE HERO VARIANTS ─────────────────────────────────────── */
.hero-sm {
  min-height: 42vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-sm .hero-glow {
  background:
    radial-gradient(ellipse 70% 80% at 50% 60%, var(--glow-burg) 0%, transparent 70%);
}

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

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

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ADMIN STYLES ───────────────────────────────────────────── */
.admin-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
  width: 100%;
  max-width: 680px;
}

.admin-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.4rem;
}

.admin-subtitle {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

.admin-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.admin-section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.2rem;
}

.admin-field { margin-bottom: 1.2rem; }

.admin-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.4rem;
  font-family: 'DM Sans', sans-serif;
}

.admin-input {
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}

.admin-input:focus { border-color: var(--rose-gold); }

.admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}

.admin-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--text-body);
  transition: transform var(--transition), background var(--transition);
}

.admin-toggle:checked { background: var(--burgundy); border-color: var(--burgundy); }
.admin-toggle:checked::after { transform: translateX(18px); background: var(--cream); }

.admin-toggle-label {
  font-size: 0.8rem;
  color: var(--cream-dim);
  font-family: 'DM Sans', sans-serif;
}

.admin-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.admin-btn {
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.admin-btn-primary { background: var(--burgundy); color: var(--cream); }
.admin-btn-primary:hover { background: var(--burgundy-light); }

.admin-btn-danger { background: transparent; color: var(--rose-muted); border: 1px solid var(--rose-muted); }
.admin-btn-danger:hover { background: rgba(158,96,80,0.15); }

.admin-btn-logout { background: transparent; color: var(--text-body); border: 1px solid var(--border); }
.admin-btn-logout:hover { border-color: var(--cream-dim); color: var(--cream-dim); }

.admin-toast {
  display: none;
  margin-top: 1.2rem;
  padding: 0.75rem 1rem;
  background: var(--burgundy-dim);
  border: 1px solid var(--burgundy);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-family: 'Cinzel', serif;
  text-align: center;
}

/* ── PIN SCREEN ─────────────────────────────────────────────── */
.pin-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-deep);
  flex-direction: column;
  gap: 0.5rem;
}

.pin-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.pin-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.4rem;
}

.pin-subtitle {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.pin-input {
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  padding: 0.8rem;
  text-align: center;
  outline: none;
  margin-bottom: 1.2rem;
  transition: border-color var(--transition);
}

.pin-input:focus { border-color: var(--rose-gold); }

.pin-error {
  color: var(--rose-gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
  display: none;
}

/* ── LANDING PAGE ───────────────────────────────────────────── */
.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.landing-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 30%, var(--glow-burg) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 90%, var(--glow-rose) 0%, transparent 60%);
  pointer-events: none;
}

.landing-photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid var(--rose-gold);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px var(--glow-burg);
}

.landing-content {
  text-align: center;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.landing-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.8rem;
}

.landing-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.landing-name span { color: var(--rose-light); }

.landing-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-muted), transparent);
  margin: 1.2rem auto;
}

.landing-intro {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

/* Landing Form */
.landing-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.2rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.landing-form-title {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  text-align: center;
  margin-bottom: 1.8rem;
}

.form-field { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.35rem;
  font-family: 'DM Sans', sans-serif;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--rose-gold); }

.form-textarea { min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background var(--transition);
}

.form-submit:hover { background: var(--burgundy-light); }

.form-privacy {
  font-size: 0.7rem;
  color: var(--text-body);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.landing-footer-note {
  font-size: 0.68rem;
  color: var(--text-body);
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
}

/* ── SEO PAGE CONTENT ───────────────────────────────────────── */
.seo-content {
  max-width: 760px;
  margin: 0 auto;
}

.seo-content p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.4rem;
}

.seo-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--rose-light);
  letter-spacing: 0.08em;
  margin: 2rem 0 0.8rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-grid,
  .testimonials-grid,
  .contact-methods { grid-template-columns: 1fr 1fr; }

  .price-grid { grid-template-columns: 1fr 1fr; }

  .about-strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-placeholder { max-width: 320px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 5, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 400;
    backdrop-filter: blur(12px);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .nav-cta { margin-left: 0; }

  .nav-toggle { display: flex; }

  .cards-grid,
  .testimonials-grid,
  .contact-methods,
  .steps-grid,
  .price-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }

  .admin-row { grid-template-columns: 1fr; }
}
