/* ============================================
   JENNA SAMPSON — Brand Stylesheet
   ============================================ */

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

/* --- Variables --- */
:root {
  --ivory:    #F7F3EE;
  --ivory-2:  #EDE8E1;
  --white:    #FFFFFF;
  --charcoal: #2C2C2C;
  --charcoal-light: #5A5A5A;
  --gold:     #B8975A;
  --gold-light: #D4B483;
  --sage:     #A8B5A2;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --max-width: 1100px;
  --section-padding: 100px 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.9;
  max-width: 620px;
}

/* --- Gold Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.divider.left { margin: 24px 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--charcoal);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-filled {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.btn-filled:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(8px);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta .btn { padding: 12px 28px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-content {
  padding: 80px 64px 80px 80px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-content h1 {
  color: var(--charcoal);
  margin-bottom: 32px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 20%);
}

/* ============================================
   HOME — SECTIONS
   ============================================ */
.section { padding: var(--section-padding); }
.container { max-width: var(--max-width); margin: 0 auto; }

/* Intro / What I Offer */
.section-intro {
  background: var(--white);
  text-align: center;
}
.section-intro .container { max-width: 800px; }
.section-intro h2 { margin-bottom: 24px; }
.section-intro p { margin: 0 auto 40px; }

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.two-col-image:hover img { transform: scale(1.03); }

.two-col-content h2 { margin-bottom: 20px; }
.two-col-content p { margin-bottom: 20px; }
.two-col-content .btn { margin-top: 16px; }

/* Gold accent quote */
.section-quote {
  background: var(--charcoal);
  text-align: center;
  padding: 80px 24px;
}
.section-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.section-quote blockquote span { color: var(--gold-light); }

/* Sessions preview */
.section-sessions {
  background: var(--ivory-2);
  text-align: center;
}
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 60px 0 48px;
}
.session-card {
  background: var(--white);
  padding: 60px 48px;
  text-align: left;
}
.session-card .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.session-card h3 { margin-bottom: 20px; }
.session-card p { margin-bottom: 0; }

/* Testimonials */
.section-testimonials {
  background: var(--white);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.testimonial {
  text-align: left;
  padding: 40px;
  border-top: 1px solid var(--gold);
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: none;
}
.testimonial-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Final CTA */
.section-cta {
  text-align: center;
  background: var(--ivory);
}
.section-cta h2 { margin-bottom: 20px; }
.section-cta p { margin: 0 auto 40px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: var(--white);
}
.page-hero .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { margin: 0 auto; max-width: 580px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { background: var(--ivory); }
.about-story .two-col { gap: 100px; }
.story-block { margin-bottom: 48px; }
.story-block p { margin-bottom: 16px; }
.credentials {
  background: var(--charcoal);
  padding: 80px 24px;
}
.credentials .container { text-align: center; }
.credentials h2 { color: var(--white); margin-bottom: 12px; }
.credentials .divider { background: var(--gold); }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.cred-item {
  border-top: 1px solid rgba(184, 151, 90, 0.4);
  padding-top: 32px;
}
.cred-item .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cred-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  max-width: none;
}
.about-who {
  background: var(--ivory-2);
  text-align: center;
}
.about-who .container { max-width: 720px; }
.about-who h2 { margin-bottom: 20px; }
.about-who p { margin: 0 auto 20px; }

/* ============================================
   SESSIONS PAGE
   ============================================ */
.sessions-intro {
  background: var(--white);
  text-align: center;
}
.sessions-intro .container { max-width: 780px; }
.sessions-detail { background: var(--ivory); }
.sessions-detail .two-col { align-items: start; }
.expect-list {
  list-style: none;
  margin: 24px 0;
}
.expect-list li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory-2);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.expect-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-block {
  background: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.price-display {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin: 24px 0 8px;
}
.price-note {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  margin-bottom: 40px !important;
}

/* FAQ */
.faq-section { background: var(--ivory-2); }
.faq-section h2 { text-align: center; margin-bottom: 60px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.faq-item {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}
.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.faq-item p { font-size: 0.88rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-2);
}
.contact-detail .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-detail p { font-size: 0.88rem; max-width: none; margin-bottom: 8px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--ivory);
  border: 1px solid var(--ivory-2);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit .btn { width: 100%; text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  padding: 60px 48px 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin-bottom: 40px;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  :root { --section-padding: 70px 24px; }

  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ivory); justify-content: center; align-items: center; gap: 32px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-image { height: 60vw; }
  .hero-image-overlay { background: linear-gradient(to bottom, var(--ivory) 0%, transparent 30%); }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .two-col-image { aspect-ratio: 16/9; }

  .sessions-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonial { border-top: 1px solid var(--ivory-2); border-bottom: none; padding: 32px 0; }
  .testimonial:first-child { border-top: 1px solid var(--gold); }

  .cred-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  footer { padding: 48px 24px 32px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
  .session-card { padding: 40px 24px; }
}
