/* ==============================================
   SOLO PAUSA — Editorial Magazine Redesign
   Palette: Cream #FFFAF3 | Gold #CD9E58 | Navy #00374F
   ============================================== */

:root {
  --cream: #FFFAF3;
  --cream-soft: #f5efe2;
  --cream-muted: rgba(255,250,243,0.6);
  --gold: #CD9E58;
  --gold-light: #e3b87a;
  --gold-dark: #8a6a35;
  --gold-glow: rgba(205, 158, 88, 0.4);
  --navy: #00374F;
  --navy-deep: #001a26;
  --navy-mid: #002d42;
  --navy-light: #0a4a66;
  --ink: #07080a;
  --font-display: 'Bodoni Moda', 'Cormorant Garamond', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Cosmic background ---- */
.cosmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 6%,  rgba(110,45,220,0.30) 0%, transparent 38%),
    radial-gradient(ellipse at 88% 14%, rgba(205,158,88,0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 52% 52%, rgba(0,80,130,0.42)   0%, transparent 52%),
    radial-gradient(ellipse at 8%  78%, rgba(80,18,155,0.24)  0%, transparent 40%),
    radial-gradient(ellipse at 92% 90%, rgba(0,110,155,0.24)  0%, transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(110,45,220,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 28% 55%, rgba(0,55,105,0.20)   0%, transparent 34%),
    radial-gradient(ellipse at 72% 38%, rgba(130,48,215,0.16) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 20%, rgba(205,158,88,0.06) 0%, transparent 45%),
    linear-gradient(170deg, #060118 0%, #010d1e 38%, #000a14 72%, #040118 100%);
}

/* Animated nebula clouds */
.nebula {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 38% at 22% 28%, rgba(130,55,230,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 32% at 78% 68%, rgba(0,130,195,0.11)  0%, transparent 60%),
    radial-gradient(ellipse 45% 22% at 58% 8%,  rgba(205,158,88,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 28% at 15% 95%, rgba(80,18,155,0.10)  0%, transparent 55%);
  animation: nebulaShift 28s ease-in-out infinite alternate;
}
@keyframes nebulaShift {
  0%   { opacity: 0.55; transform: scale(1)    translate(0px,   0px); }
  40%  { opacity: 0.85; transform: scale(1.03) translate(-8px,  10px); }
  100% { opacity: 0.65; transform: scale(1.07) translate(12px, -14px); }
}

/* Subtle star-chart dot grid */
.sky-grid {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(circle, rgba(205,158,88,0.9) 1px, transparent 1px);
  background-size: 64px 64px;
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.18; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
/* Second grain layer — coarser film grain */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: screen;
}
.stars { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.star {
  position: absolute; background: var(--cream); border-radius: 50%;
  animation: twinkle 4s infinite ease-in-out;
}
.star.gold {
  background: var(--gold);
  box-shadow: 0 0 4px var(--gold-glow);
  animation: twinkle 4s infinite ease-in-out, goldStarGlow 3s ease-in-out infinite;
}
@keyframes goldStarGlow {
  0%, 100% { box-shadow: 0 0 4px var(--gold-glow); }
  50%       { box-shadow: 0 0 10px var(--gold-glow), 0 0 20px rgba(205,158,88,0.25); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.3); }
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: rotate(-38deg);
  transform-origin: left center;
  animation: shootingstar 1.3s ease-out forwards;
  opacity: 0; pointer-events: none;
}
@keyframes shootingstar {
  0%   { opacity: 0; transform: rotate(-38deg) translateX(0); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(-38deg) translateX(260px); }
}

/* Constellation & Moon */
.constellation {
  position: fixed; pointer-events: none; z-index: 1; opacity: 0.18;
  animation: constellationPulse 5s ease-in-out infinite;
}
@keyframes constellationPulse {
  0%, 100% { opacity: 0.18; }
  50%       { opacity: 0.38; filter: drop-shadow(0 0 4px rgba(205,158,88,0.3)); }
}
.constellation.c1 { top: 8%; right: 5%; width: 180px; }
.constellation.c2 { bottom: 12%; left: 4%; width: 160px; }
.moon {
  position: fixed; top: 6%; left: 6%;
  width: 75px; height: 75px; z-index: 1; pointer-events: none;
  opacity: 0.5;
  filter: drop-shadow(0 0 28px rgba(255,250,243,0.3)) drop-shadow(0 0 60px rgba(205,158,88,0.12));
  animation: moonBob 5s ease-in-out infinite;
}
@keyframes moonBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ---- Header (magazine masthead) ---- */
header {
  background: rgba(0, 20, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(205,158,88,0.25);
  box-shadow: 0 4px 40px rgba(0,0,0,0.45), 0 1px 0 rgba(205,158,88,0.1);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.logo-wrap {
  width: 56px; height: 56px;
  background: var(--cream); border-radius: 50%;
  padding: 4px; flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--gold), 0 0 24px rgba(205,158,88,0.35), 0 0 60px rgba(205,158,88,0.1);
  transition: box-shadow 0.4s ease;
}
.logo-wrap:hover {
  box-shadow: 0 0 0 2px var(--gold), 0 0 40px rgba(205,158,88,0.5), 0 0 80px rgba(205,158,88,0.15);
}
.logo-wrap svg { width: 100%; height: 100%; display: block; }
.brand-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream); letter-spacing: 4px; line-height: 1;
}
.brand-text p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.82rem;
  color: var(--gold); letter-spacing: 2px; margin-top: 3px;
}

/* Navigation — editorial underline style */
nav.tabs {
  display: flex; gap: 0;
  background: transparent; border: none; padding: 0;
}
.tab-btn {
  background: transparent; border: none; color: var(--cream-muted);
  padding: 0.6rem 1.8rem;
  border-bottom: 2px solid transparent;
  cursor: pointer; font-family: 'Cinzel', serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.35s ease; white-space: nowrap;
}
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 18px rgba(205,158,88,0.5);
}
.tab-btn:not(.active):hover {
  color: var(--cream);
  border-bottom-color: rgba(205,158,88,0.3);
}

/* ---- Main layout ---- */
main {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 0 2.5rem 6rem;
}
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Hero — luxury editorial full-bleed ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 7rem 2.5rem 6rem;
  min-height: 100vh;
  margin: 0 -2.5rem;
  position: relative;
  overflow: hidden;
}

/* Real photography background */
.hero-cover-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(105deg, rgba(1,5,16,0.72) 0%, rgba(0,10,25,0.55) 45%, rgba(0,5,15,0.80) 100%),
    url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}
.hero-cover-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--navy-deep) 0%, transparent 30%);
}

.hero-text { text-align: left; position: relative; z-index: 1; }
.hero-text::before {
  content: '';
  position: absolute;
  width: 550px; height: 550px;
  background: radial-gradient(ellipse, rgba(205,158,88,0.04) 0%, transparent 68%);
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: -1;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(205,158,88,0.1) 0%, rgba(100,30,200,0.07) 42%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: visualGlow 7s ease-in-out infinite alternate;
}
@keyframes visualGlow {
  0%   { opacity: 0.5; transform: scale(0.92); }
  100% { opacity: 1;   transform: scale(1.08); }
}

.ornament {
  display: flex; align-items: center;
  gap: 1rem; color: var(--gold); margin-bottom: 1.8rem;
}
.ornament::after {
  content: ''; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: 1; max-width: 180px;
}
.ornament svg { width: 18px; height: 18px; }

.hero-tagline {
  font-family: 'Cinzel', serif; color: var(--gold);
  letter-spacing: 7px; font-size: 0.65rem;
  text-transform: uppercase; margin-bottom: 2rem;
  display: block;
}
.hero h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.2rem, 8.5vw, 11rem);
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 2.5rem;
  letter-spacing: -2px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.5);
}
.hero h2 em {
  font-style: italic;
  font-weight: 300;
  display: block;
  background: linear-gradient(100deg, var(--gold-dark) 0%, var(--gold-light) 35%, var(--gold) 55%, var(--gold-light) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
  filter: drop-shadow(0 0 40px rgba(205,158,88,0.35));
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  max-width: 480px;
  color: rgba(255,250,243,0.82);
  line-height: 1.8;
  margin-bottom: 3rem;
  letter-spacing: 0.2px;
}

/* Zodiac wheel illustration */
.zodiac-wheel {
  width: 100%;
  max-width: 400px;
  opacity: 0.93;
  filter: drop-shadow(0 0 28px rgba(205,158,88,0.22)) drop-shadow(0 0 80px rgba(205,158,88,0.09));
  position: relative; z-index: 1;
}
.zodiac-outer-ring { animation: slowRotate 90s linear infinite; transform-origin: 200px 200px; }
.zodiac-signs      { animation: slowRotate 90s linear infinite; transform-origin: 200px 200px; }
.zodiac-inner      { animation: slowRotate 200s linear infinite reverse; transform-origin: 200px 200px; }
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Horizontal rule divider ---- */
.rule {
  display: flex; align-items: center; gap: 1.2rem;
  color: var(--gold); margin: 0 0 3rem;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,158,88,0.5), transparent);
}
.rule span {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 4px; text-transform: uppercase; white-space: nowrap;
  color: var(--gold); opacity: 0.8;
}

/* ---- Form card (luxury concierge) ---- */
.card {
  border-top: 1px solid rgba(205,158,88,0.5);
  border-bottom: 1px solid rgba(205,158,88,0.15);
  padding: 5rem 4rem;
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(205,158,88,0.04) 0%, rgba(0,8,20,0.65) 40%, rgba(0,5,15,0.7) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(205,158,88,0.6), var(--gold), transparent);
}
.card-label {
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 7px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.card h3 {
  font-family: var(--font-display); color: var(--cream);
  font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300;
  letter-spacing: -1px; margin-bottom: 0.5rem; line-height: 1.05;
}
.card .subtitle {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream-muted); font-style: italic;
  font-size: 1.1rem; margin-bottom: 2.5rem;
}

/* Service selector — icon grid */
.service-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.service-option {
  background: rgba(205,158,88,0.025);
  border: 1px solid rgba(205,158,88,0.18);
  padding: 1.3rem 0.6rem;
  cursor: pointer; text-align: center;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cream-muted); line-height: 1.5;
}
.service-option:hover {
  color: var(--gold);
  border-color: rgba(205,158,88,0.55);
  background: rgba(205,158,88,0.07);
  transform: translateY(-3px);
}
.service-option.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(205,158,88,0.11);
  box-shadow: 0 0 28px rgba(205,158,88,0.18), inset 0 0 18px rgba(205,158,88,0.04);
}
.service-option .icon {
  display: block; font-size: 1.8rem;
  margin-bottom: 0.5rem; font-style: normal;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
}
.service-option:hover .icon,
.service-option.active .icon {
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px rgba(205,158,88,0.55));
}

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-field { display: flex; flex-direction: column; position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; color: var(--gold);
  margin-bottom: 0.5rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.form-field label .opt {
  color: rgba(255,250,243,0.35); font-style: italic;
  text-transform: none; letter-spacing: 1px;
}
.form-field input {
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid rgba(205,158,88,0.3);
  font-family: 'Lora', serif;
  font-size: 1rem;
  background: transparent;
  color: var(--cream);
  transition: all 0.3s ease;
  color-scheme: dark;
  -webkit-text-fill-color: var(--cream);
}
.form-field input:hover:not(:focus) {
  border-bottom-color: rgba(205,158,88,0.6);
  background: rgba(205,158,88,0.03);
}
.form-field input:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 0 0 var(--gold), 0 6px 24px rgba(205,158,88,0.07);
  background: rgba(205,158,88,0.03);
}
.form-field input::placeholder { color: rgba(255,250,243,0.3); font-style: italic; }
/* Ensure native date/time pickers render in dark mode on mobile */
.form-field input[type="date"],
.form-field input[type="time"] {
  color-scheme: dark;
  min-height: 2.8rem;
}
::-webkit-date-and-time-value { color: var(--cream); }

/* Autocomplete */
.autocomplete-list {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(205,158,88,0.35); border-top: none;
  max-height: 220px; overflow-y: auto;
  z-index: 50; display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(205,158,88,0.1);
}
.autocomplete-list.show { display: block; }
.autocomplete-item {
  padding: 0.65rem 1rem; cursor: pointer;
  color: var(--cream); font-family: 'Lora', serif;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(205,158,88,0.08);
  transition: background 0.15s;
}
.autocomplete-item:hover { background: rgba(205,158,88,0.12); color: var(--gold-light); }

/* Buttons */
.btn {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
  padding: 1rem 2.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; font-weight: 500;
  cursor: pointer; letter-spacing: 3.5px; text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex; align-items: center; gap: 0.6rem; justify-content: center;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%); transition: transform 0.4s ease;
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover {
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(205,158,88,0.4), 0 0 60px rgba(205,158,88,0.1);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(205,158,88,0.3);
}
.btn span, .btn > * { position: relative; z-index: 1; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(205,158,88,0.35);
}
.btn-primary::before { background: var(--gold-light); }
.btn-primary:hover {
  color: var(--navy-deep);
  box-shadow: 0 10px 40px rgba(205,158,88,0.55), 0 0 80px rgba(205,158,88,0.15);
}
.btn-block { width: 100%; margin-top: 2.5rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:disabled::before { transform: translateX(-101%); }
.btn:disabled:hover { color: var(--gold); transform: none; box-shadow: none; }

/* Result box */
.result {
  margin-top: 3rem; padding: 3rem 2.5rem;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(205,158,88,0.18);
  border-left: 3px solid var(--gold-light);
  border-right: 1px solid rgba(205,158,88,0.08);
  display: none;
  line-height: 1.85; color: var(--cream-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  position: relative;
  background: linear-gradient(135deg, rgba(205,158,88,0.07) 0%, rgba(0,8,18,0.45) 35%, transparent 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.result::before {
  content: '✦';
  position: absolute;
  top: -1.1rem; left: 1.5rem;
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(205,158,88,0.6));
}
.result.show {
  display: block;
  animation: fadeIn 0.8s ease, resultPulse 1.5s ease 0.8s, resultGlow 4s ease-in-out 2.3s infinite;
}
@keyframes resultPulse {
  0%   { border-top-color: var(--gold-light); }
  50%  { border-top-color: #fff; }
  100% { border-top-color: var(--gold); }
}
@keyframes resultGlow {
  0%, 100% { box-shadow: -3px 0 20px rgba(205,158,88,0.08); }
  50%       { box-shadow: -3px 0 40px rgba(205,158,88,0.22); }
}
.result h4 {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: 0.72rem; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 2.5rem;
  text-align: left;
}
.result-section {
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(205,158,88,0.12);
}
.result-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.result-section h5 {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.result-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream); font-style: italic;
  margin-bottom: 0.7rem; line-height: 1.15;
  font-weight: 300;
}

/* Upsell */
.upsell {
  margin-top: 2.5rem; padding: 2.5rem 0;
  border-top: 1px solid rgba(205,158,88,0.2);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.upsell p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--cream); flex: 1; min-width: 260px;
  margin: 0;
}

/* ---- Section titles — editorial ---- */
.section-title {
  display: flex; align-items: baseline; gap: 2rem;
  margin: 5rem 0 0; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(205,158,88,0.2);
}
.section-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream); font-weight: 300;
  white-space: nowrap;
}
.section-title h3 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(205,158,88,0.3));
}
.section-title p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--cream-muted);
  font-size: 1rem;
}

/* ---- Services — editorial list ---- */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
.service-card {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  grid-template-rows: auto;
  gap: 0.2rem 2rem;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid rgba(205,158,88,0.12);
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.service-card:hover {
  background: rgba(205,158,88,0.05);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--gold), -12px 0 30px rgba(205,158,88,0.12);
  border-color: rgba(205,158,88,0.3);
}
.service-card::before { display: none; }
.service-card .glyph {
  grid-column: 1; grid-row: 1 / 4;
  align-self: center;
  font-size: 2.8rem; color: var(--gold);
  line-height: 1; font-style: normal;
  text-align: center; margin-bottom: 0;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(205,158,88,0.45));
  transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .glyph {
  filter: drop-shadow(0 0 18px rgba(205,158,88,0.75));
  transform: scale(1.15);
}
.service-card .card-body {
  grid-column: 2; grid-row: 1;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream); font-size: 1.45rem;
  font-weight: 400; margin-bottom: 0;
}
.service-card p {
  color: var(--cream-muted); opacity: 1;
  font-size: 0.92rem; margin-bottom: 0;
  font-family: 'Lora', serif;
  line-height: 1.6;
}
.service-card .photo-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; border: none;
  color: var(--gold);
  padding: 0; border-radius: 0;
  font-size: 0.7rem; font-family: 'Cinzel', serif;
  letter-spacing: 1px; margin-top: 0.2rem;
  align-self: start;
}
.service-card .btn {
  grid-column: 3; grid-row: 1 / 4;
  align-self: center;
  width: auto; padding: 0.75rem 1.6rem; font-size: 0.65rem;
  letter-spacing: 2.5px; white-space: nowrap;
}

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--cream); color: var(--navy-deep);
  padding: 1rem 2.4rem;
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 2px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(205,158,88,0.15);
  z-index: 1000; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 90%; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- Footer ---- */
footer {
  background: rgba(0, 10, 16, 0.95);
  border-top: 1px solid rgba(205,158,88,0.2);
  padding: 5rem 2.5rem 2.5rem;
  position: relative; z-index: 2;
  margin-top: 6rem;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
footer h4 {
  font-family: 'Cinzel', serif; color: var(--gold);
  margin-bottom: 1.5rem; letter-spacing: 3px;
  font-size: 0.65rem; text-transform: uppercase;
}
footer p, footer a {
  color: rgba(255,250,243,0.55); font-size: 0.92rem;
  text-decoration: none; line-height: 2.2;
  font-family: 'Lora', serif;
}
footer a:hover { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--cream-soft) !important;
  margin-bottom: 1rem; opacity: 0.85;
}
.social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social a {
  width: 40px; height: 40px;
  background: transparent; border: 1px solid rgba(205,158,88,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease; color: var(--gold);
}
.social a:hover {
  background: var(--gold); color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--gold-glow);
  border-color: var(--gold);
}
.social svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1320px; margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(205,158,88,0.12);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: rgba(255,250,243,0.3);
  font-size: 0.9rem;
}

/* ---- Loading dots ---- */
.loading-dots::after {
  content: '';
  animation: ldots 1.4s steps(4, end) infinite;
}
@keyframes ldots {
  0%        { content: ''; }
  25%       { content: '.'; }
  50%       { content: '..'; }
  75%, 100% { content: '...'; }
}

/* ---- Hero entrance stagger ---- */
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tab-content.active .hero-text > *:nth-child(1) { animation: heroSlide 0.75s ease both 0.1s; }
.tab-content.active .hero-text > *:nth-child(2) { animation: heroSlide 0.75s ease both 0.25s; }
.tab-content.active .hero-text > *:nth-child(3) { animation: heroSlide 0.75s ease both 0.42s; }
.tab-content.active .hero-text > *:nth-child(4) { animation: heroSlide 0.75s ease both 0.58s; }
.tab-content.active .hero-visual               { animation: heroSlide 1s ease both 0.05s; }

/* ---- Scroll fade-in ---- */
.fade-up {
  opacity: 0; transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }
.fade-up:nth-child(2) { transition-delay: 0.06s; }
.fade-up:nth-child(3) { transition-delay: 0.12s; }
.fade-up:nth-child(4) { transition-delay: 0.18s; }
.fade-up:nth-child(5) { transition-delay: 0.24s; }
.fade-up:nth-child(6) { transition-delay: 0.30s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 1.5rem 4rem;
    margin: 0 -1.5rem;
    text-align: center;
  }
  .hero-text { text-align: center; }
  .hero-visual { order: -1; }
  .zodiac-wheel { max-width: 260px; }
  .ornament::after { max-width: 80px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
}
@media (max-width: 820px) {
  .header-inner { padding: 0.8rem 1.5rem; }
  main { padding: 0 1.5rem 4rem; }
  .tab-btn { padding: 0.6rem 1rem; letter-spacing: 1.5px; font-size: 0.65rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .social { justify-content: center; }
  .moon { width: 55px; height: 55px; }
  .constellation { display: none; }
  .section-title { flex-direction: column; gap: 0.3rem; }
  .service-selector { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .service-option { padding: 1.1rem 0.6rem; }
  .card { padding: 3rem 1.8rem; }
  .hero { margin: 0 -1.5rem; padding: 4rem 1.5rem 3rem; }
  .service-card {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1.2rem;
  }
  .service-card .glyph {
    grid-column: 1; grid-row: 1;
    font-size: 2rem; align-self: start;
    padding-top: 0.15rem;
  }
  .service-card .card-body {
    grid-column: 2; grid-row: 1;
  }
  .service-card .btn {
    grid-column: 1 / -1; grid-row: 2;
    margin-top: 0.4rem; width: 100%;
  }
  .upsell { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .brand-text h1 { font-size: 1.1rem; letter-spacing: 2px; }
  .hero h2 { font-size: clamp(2.6rem, 10vw, 3.2rem); }
  .service-selector { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .service-option { padding: 0.85rem 0.3rem; font-size: 0.55rem; letter-spacing: 1px; }
  .service-option .icon { font-size: 1.4rem; margin-bottom: 0.35rem; }
  .result-big { font-size: 1.7rem; }
  .hero-visual::before { width: 280px; height: 280px; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}
