/* ============================================================
   Shani Wood Career Coach — Main Stylesheet
   ============================================================ */

/* ── Tokens ── */
:root {
  --gold:    #33BC82;
  --gold-lt: #7AD3AE;
  --ink:     #1A1612;
  --slate:   #3D3530;
  --warm:    #F7F3EE;
  --sand:    #EDE5D8;
  --white:   #FFFFFF;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--warm); color: var(--ink); line-height: 1.6; }
a    { color: inherit; text-decoration: none; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(247,243,238,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51,188,130,0.18);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,22,18,0.09); }

.nav-logo { font-family: var(--display); font-size: 1.3rem; font-weight: 600; letter-spacing: .03em; }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate); transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: .5rem 1.3rem !important;
  border-radius: 2px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--ink); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-size: 2.2rem;
  color: var(--white); transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none;
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 7vh 5vw 7vh 6vw;
}
.hero-eyebrow {
  font-size: .73rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.08; color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--slate);
  max-width: 40ch; margin-bottom: 1.4rem; line-height: 1.75;
}
.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.2rem; }
.hero-stat strong {
  display: block; font-family: var(--display);
  font-size: 2rem; font-weight: 600; color: var(--ink); line-height: 1;
}
.hero-stat span { font-size: .78rem; color: var(--slate); font-weight: 300; letter-spacing: .04em; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--white);
  padding: .9rem 2rem; font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: .9rem 2rem; font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; transition: all .2s;
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }

.hero-panel {
  background: #9bc9a2; position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;

}
.hero-panel-art { width: 70%; max-width: 360px; }
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--white); padding: 1rem 1.3rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(26,22,18,0.1);
}
.hero-badge strong { display: block; font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.hero-badge small  { font-size: .75rem; color: var(--slate); font-weight: 300; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--ink); overflow: hidden; padding: .7rem 0; }
.ticker-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: ticker 24s linear infinite;
  font-size: .75rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-lt);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t::before { content: '✦'; margin-right: 1.2rem; color: var(--gold); opacity: .7; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: 6.5rem 6vw; }
.inner  { max-width: 1100px; margin: 0 auto; }

.label {
  font-size: .7rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
  margin-bottom: 1.4rem;
}
.title em { font-style: italic; color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-body {
  font-size: .97rem; font-weight: 300; color: var(--slate);
  line-height: 1.8; margin-bottom: 1.2rem;
}
.about-subhead {
  font-family: var(--display); font-size: 1.25rem; font-weight: 600;
  color: var(--ink); margin: 1.4rem 0 .8rem;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.about-list li {
  font-size: .95rem; font-weight: 300; color: var(--slate);
  line-height: 1.7; padding-left: 1.3rem; position: relative;
}
.about-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .8rem; }
.creds { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.8rem; }
.cred  { display: flex; gap: 1rem; align-items: flex-start; }
.cred-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0; font-size: .95rem;
}
.cred strong { display: block; font-size: .88rem; color: var(--ink); font-weight: 500; }
.cred span   { font-size: .82rem; color: var(--slate); font-weight: 300; }

.about-right { position: relative; }
.about-frame {
  aspect-ratio: 3/4; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 2px;
}
/* Replace the SVG placeholder with a real photo:
   <img src="images/shani.jpg" alt="Shani Wood" style="width:100%;height:100%;object-fit:cover;"> */

.pull-quote {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--ink); color: var(--white);
  padding: 1.6rem 1.8rem; max-width: 270px;
  border-top: 3px solid var(--gold);
}
.pull-quote blockquote {
  font-family: var(--display); font-style: italic;
  font-size: 1rem; line-height: 1.55; margin-bottom: .6rem;
}
.pull-quote cite { font-size: .72rem; letter-spacing: .1em; color: var(--gold-lt); }

/* ============================================================
   ASSESSMENTS
   ============================================================ */
#assessments { background: var(--warm); }

.assess-intro { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.assess-intro p { font-size: .95rem; font-weight: 300; color: var(--slate); line-height: 1.7; }

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

.assess-card {
  background: var(--white); padding: 2.2rem 1.8rem;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.assess-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26,22,18,0.08);
}
.assess-card.dark { background: var(--ink); border-bottom-color: var(--gold); }

.assess-icon  { font-size: 1.8rem; margin-bottom: 1.2rem; }
.assess-title { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: .6rem; }
.assess-card.dark .assess-title { color: var(--white); }
.assess-desc  { font-size: .87rem; color: var(--slate); font-weight: 300; line-height: 1.7; margin-bottom: 1.3rem; }
.assess-card.dark .assess-desc { color: rgba(255,255,255,.6); }

.assess-link {
  display: inline-block; font-size: .77rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold-lt); padding-bottom: 2px; transition: color .2s;
}
.assess-link:hover { color: var(--ink); }
.assess-card.dark .assess-link { color: var(--gold-lt); border-bottom-color: rgba(122,211,174,.4); }

/* ============================================================
   WHO I HELP
   ============================================================ */
#clients { background: var(--sand); }

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

.client-card {
  background: var(--white); padding: 2rem 2rem 2rem 2.2rem;
  border-left: 4px solid var(--gold);
  display: flex; gap: 1.3rem; align-items: flex-start;
}
.client-emoji { font-size: 1.7rem; flex-shrink: 0; }
.client-title { font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.client-desc  { font-size: .88rem; color: var(--slate); font-weight: 300; line-height: 1.65; }

/* ============================================================
   APPROACH
   ============================================================ */
#approach { background: var(--ink); color: var(--white); }
#approach .label { color: var(--gold-lt); }
#approach .title { color: var(--white); }

.approach-body {
  font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.65);
  max-width: 52ch; margin-bottom: 3.5rem; line-height: 1.75;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.step {
  padding: 2.2rem 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.step:last-child { border-right: none; }
.step-n { font-family: var(--display); font-size: 3.2rem; font-weight: 600; color: rgba(51,188,130,.22); line-height: 1; margin-bottom: .7rem; }
.step-t { font-family: var(--display); font-size: 1.25rem; color: var(--white); margin-bottom: .6rem; }
.step-d { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-text strong { display: block; font-size: .84rem; font-weight: 500; color: var(--ink); margin-bottom: .1rem; }
.contact-text span   { font-size: .88rem; color: var(--slate); font-weight: 300; }
.contact-text a      { color: var(--gold); }
.contact-text a:hover { color: var(--ink); }

.book-bar { margin-top: 2.5rem; padding: 1.8rem 2rem; background: var(--sand); border-left: 3px solid var(--gold); }
.book-bar p { font-size: .88rem; color: var(--slate); margin-bottom: .8rem; font-weight: 300; }
.book-bar a {
  display: inline-block; background: var(--ink); color: var(--white);
  padding: .7rem 1.6rem; font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px;
  transition: background .2s;
}
.book-bar a:hover { background: var(--gold); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form input,
.form select,
.form textarea {
  width: 100%; padding: .85rem 1rem;
  font-family: var(--body); font-size: .88rem;
  border: 1.5px solid rgba(61,53,48,.16);
  background: var(--warm); color: var(--ink);
  border-radius: 2px; outline: none; transition: border-color .2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--gold); background: var(--white); }
.form textarea { height: 130px; resize: vertical; }
.form-btn {
  background: var(--gold); color: var(--white); border: none;
  padding: .95rem 2.2rem; font-family: var(--body); font-size: .82rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: background .2s;
  align-self: flex-start;
}
.form-btn:hover { background: var(--ink); }
.form-success {
  display: none; background: #eaf5ec;
  border-left: 3px solid #4caf50;
  padding: .9rem 1.1rem; color: #2e7d32;
  font-size: .88rem; border-radius: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink); color: rgba(255,255,255,.5);
  padding: 3rem 6vw; display: flex; flex-wrap: wrap;
  gap: 1.5rem; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--display); font-size: 1.2rem; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: .78rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-social { display: flex; gap: .8rem; }
.soc {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: rgba(255,255,255,.5); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: .75rem; width: 100%; text-align: center;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  #home                 { grid-template-columns: 1fr; }
  .hero-panel           { display: none; }
  .hero-text            { padding: 10vh 6vw 6vh; }
  .about-grid           { grid-template-columns: 1fr; gap: 3rem; }
  .about-right          { display: none; }
  .assess-grid          { grid-template-columns: 1fr 1fr; }
  .steps                { grid-template-columns: 1fr 1fr; }
  .step                 { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .clients-grid         { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links            { display: none; }
  .hamburger            { display: flex; }
}

@media (max-width: 580px) {
  .assess-grid  { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.5rem; }
}
