/* ===========================
   THIRD EYE WORKSHOP — styles
   =========================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

/* ── Design Tokens ── */
:root {
  --midnight:    #040c1e;
  --navy:        #071428;
  --navy-mid:    #0a1830;
  --gold:        #8a6200;
  --gold-light:  #a67c00;
  --gold-pale:   #c49010;
  --gold-dark:   #5a4000;
  --cream:       #f0ebe0;
  --cream-alt:   #faf7f2;
  --on-dark:     #d8d0c0;
  --on-dark-dim: #9a9080;
  --on-light:    #1a1a2e;
  --on-light-dim:#4a4a5e;
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--midnight);
  color: var(--on-dark);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }

a { color: inherit; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section chrome ── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.eyebrow--dark { color: var(--gold-dark); }

section { padding: 7rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--midnight); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.7rem;
  padding: 0.6rem 1.5rem;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }

.link-subtle {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.link-subtle:hover { border-color: var(--gold); }

/* =========================================
   NAVIGATION
   ========================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.4rem 2rem;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8, 13, 30, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.9rem 2rem;
  border-color: rgba(201,168,76,0.12);
}

body.nav-open #nav { background: var(--midnight); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }

.nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--on-dark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.6);
  padding: 0.45rem 1.2rem;
  opacity: 1;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--midnight); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--on-dark);
  transition: transform 0.28s, opacity 0.28s;
  transform-origin: center;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--midnight);
  background-image: radial-gradient(ellipse 70% 70% at 50% 55%, #071428 0%, #040c1e 100%);
  padding: 9rem 2rem 7rem;
  position: relative;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--midnight));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 680px;
}

.hero-logo svg {
  width: min(190px, 48vw);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.25));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--on-dark-dim);
  letter-spacing: 0.06em;
  max-width: 440px;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
  background: var(--cream);
  color: var(--on-light);
}

#about h2 { margin-bottom: 2.5rem; }

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--on-light-dim);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-pull {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

.about-pull blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--on-light);
}

.about-pull cite {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-style: normal;
}

/* =========================================
   THE EXPERIENCE
   ========================================= */
#experience { background: var(--navy); }

#experience h2 {
  color: var(--cream);
  margin-bottom: 4rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
}

.pillar-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar h3 {
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0.85rem;
}

.pillar p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--on-dark);
  opacity: 0.8;
}

/* =========================================
   UPCOMING WORKSHOP
   ========================================= */
#workshop { background: var(--cream); color: var(--on-light); }

#workshop h2 { margin-bottom: 2.5rem; }

.workshop-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.22);
  background: var(--cream-alt);
}

.workshop-details {
  padding: 3.5rem;
  border-right: 1px solid rgba(201,168,76,0.18);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.detail-item { display: flex; flex-direction: column; gap: 0.2rem; }

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--on-light);
}

.workshop-cta {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.workshop-cta p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--on-light-dim);
}

/* =========================================
   ABOUT VANESSA
   ========================================= */
#vanessa { background: var(--midnight); }

#vanessa h2 {
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

#vanessa p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--on-dark);
  opacity: 0.88;
  margin-bottom: 1.25rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
#testimonials { background: var(--navy-mid); }

#testimonials h2 { color: var(--cream); margin-bottom: 4rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial {
  border-top: 1px solid rgba(201,168,76,0.28);
  padding-top: 2rem;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* =========================================
   FREE RESOURCES
   ========================================= */
#resources { background: var(--cream); color: var(--on-light); }

#resources h2 { margin-bottom: 0.75rem; }

.resources-intro {
  font-size: 1.05rem;
  color: var(--on-light-dim);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-card {
  background: var(--cream-alt);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.resource-type {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.resource-card h3 {
  font-size: 1.12rem;
  color: var(--on-light);
  line-height: 1.35;
}

.resource-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--on-light-dim);
  flex: 1;
  margin-bottom: 0.5rem;
}

/* =========================================
   CONTACT / BEGIN HERE
   ========================================= */
#contact { background: var(--midnight); }

#contact h2 { color: var(--cream); margin-bottom: 1rem; }

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--on-dark);
  opacity: 0.85;
  margin-bottom: 3rem;
}

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

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

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

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

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(216,208,192,0.3); }

.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.7); }

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.75rem;
  color: var(--on-dark-dim);
  opacity: 0.65;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo svg { height: 64px; width: auto; opacity: 0.75; }

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--gold-light); }

.footer-credit {
  font-size: 0.85rem;
  color: var(--on-dark-dim);
}
.footer-credit a { color: var(--gold); text-decoration: none; }

.footer-legal {
  font-size: 0.72rem;
  color: var(--on-dark-dim);
  opacity: 0.45;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--midnight);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  body.nav-open .nav-links { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 0.95rem; }

  .workshop-card { grid-template-columns: 1fr; }
  .workshop-details {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.18);
    padding: 2.5rem;
  }
  .workshop-cta { padding: 2.5rem; }

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

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

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

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .hero-tagline { font-size: 1.9rem; }
  .footer-links { gap: 1.5rem; }
}
