/* ==============================================
   Twinkling Transits — Shared Styles
   Eggplant · Violet · Gold · Celestial
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --eggplant:       #663399;
  --eggplant-deep:  #3D1A6B;
  --eggplant-ink:   #1C0A3C;
  --violet:         #9370DB;
  --violet-light:   #B088E8;
  --violet-pale:    #EDE0FF;
  --gold:           #FFD700;
  --gold-soft:      #F5C842;
  --gold-warm:      #D4A017;
  --gold-pale:      #FFF8CC;
  --cream:          #FAF7FF;
  --cream-dark:     #F0E8FF;
  --mid:            #7A6090;
  --charcoal:       #1A0A2E;
  --shadow:         0 4px 24px rgba(102,51,153,0.14);
  --shadow-lg:      0 8px 48px rgba(102,51,153,0.22);
  --radius:         16px;
  --radius-sm:      8px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
}

/* ── NAV ── */
header {
  background: var(--eggplant-ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(147,112,219,0.25);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 1px;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-tag {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

nav ul a {
  display: block;
  padding: 0.4rem 0.9rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--eggplant-ink) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.2rem !important;
}

.nav-cta:hover { background: var(--gold-soft) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  background: var(--eggplant-ink);
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(102,51,153,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(147,112,219,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255,215,0,0.06) 0%, transparent 60%);
  color: #fff;
  padding: 6rem 1.5rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '✦    ✧    ✦    ✧    ✦';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.8rem;
  opacity: 0.5;
  white-space: nowrap;
}

.hero::after {
  content: '✦    ✧    ✦    ✧    ✦';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.8rem;
  opacity: 0.3;
  white-space: nowrap;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-gold {
  background: var(--gold);
  color: var(--eggplant-ink);
}
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  margin-left: 0.75rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-eggplant {
  background: var(--eggplant);
  color: #fff;
}
.btn-eggplant:hover { background: var(--eggplant-deep); }

.btn-violet {
  background: var(--violet);
  color: #fff;
}
.btn-violet:hover { background: var(--eggplant); }

/* ── LAYOUT ── */
main { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section + section { border-top: 1px solid var(--violet-pale); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--eggplant-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--eggplant-ink);
  background-image:
    radial-gradient(ellipse at 20% 70%, rgba(102,51,153,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(147,112,219,0.2) 0%, transparent 50%);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '✦   ✧   ✦   ✧   ✦';
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5rem;
  opacity: 0.45;
  white-space: nowrap;
}

.page-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ── DIVIDER ── */
.star-divider {
  text-align: center;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1.2rem;
  margin: 3rem 0;
  opacity: 0.6;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--violet);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card.gold-accent { border-color: var(--gold); }

/* ── BAND ── */
.band {
  background: var(--eggplant-ink);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(102,51,153,0.5) 0%, transparent 65%);
  color: #fff;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.band p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* ── CALLOUT ── */
.callout {
  background: var(--gold-pale);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 2rem;
}
.callout p { color: var(--charcoal); font-size: 1rem; line-height: 1.75; margin: 0; }
.callout em { color: var(--eggplant); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.1em; }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-weight: 600; font-size: 0.88rem; color: var(--eggplant-deep); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--violet-pale);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--violet); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  background: rgba(102,51,153,0.08);
  border: 1px solid var(--violet-pale);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--eggplant-ink);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.88rem;
}

footer .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

footer .footer-tag {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

footer .footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

footer .footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--gold); }

footer .disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── FOOTER NEWSLETTER SIGNUP ── */
.footer-signup {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(147,112,219,0.25);
}
.footer-signup h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-signup p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-signup form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-signup input[type="email"] {
  flex: 1 1 240px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(147,112,219,0.4);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.footer-signup input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.footer-signup input[type="email"]:focus { border-color: var(--gold); }
.footer-signup button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--eggplant-ink);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.footer-signup button:hover { background: var(--gold-soft); transform: translateY(-1px); }
.footer-signup button:disabled { opacity: 0.6; cursor: default; transform: none; }
.footer-signup .signup-msg {
  width: 100%;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}
.footer-signup .signup-msg.ok { color: var(--gold); }
.footer-signup .signup-msg.err { color: #FFB4B4; }
.footer-signup .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--eggplant-ink);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(147,112,219,0.2);
    gap: 0.25rem;
  }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: block; text-align: center; }
  section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
}
