/* ============================================================
   THINKING SPACE COUNSELLING — styles.css
   ============================================================ */

:root {
  --burnt:    #C85A0A;
  --peach:    #F0A882;
  --cream:    #FDF8F5;
  --sand:     #F5EDE6;
  --charcoal: #2C2420;
  --mid:      #7A5C52;
  --white:    #FFFFFF;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253,248,245,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,90,10,0.12);
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--burnt); }
.nav-cta {
  background: var(--burnt);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}
.nav-cta:hover { background: #a34808; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.hero-headline em { font-style: italic; color: var(--burnt); }
.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }

/* Buttons */
.btn-primary {
  background: var(--burnt);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #a34808; transform: translateY(-1px); }
.btn-secondary {
  color: var(--burnt);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--peach);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--burnt); }

.hero-right {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(240,168,130,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,90,10,0.1) 0%, transparent 50%);
}
.hero-logo-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: rgba(253,248,245,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morph 8s ease-in-out infinite;
  overflow: hidden;
  padding: 2.5rem;
}
.hero-logo-display img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-quote {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  opacity: 0.7;
}
@keyframes morph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%      { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}

/* ── TICKER ── */
.ticker {
  background: var(--burnt);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.ticker-track span::before {
  content: '◆';
  margin-right: 2.5rem;
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SHARED SECTION UTILITIES ── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1.2rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--burnt); }

/* ── LUCY INTRO ── */
.lucy-intro {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 5rem;
  padding: 6rem 6rem;
  background: var(--white);
}
.lucy-image-wrap {
  position: relative;
}
.lucy-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--peach);
  border-radius: 4px;
  z-index: 0;
}
.lucy-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}
.lucy-intro-text {
  max-width: 500px;
}
.lucy-intro-text p:last-child {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-top: 0.5rem;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 7rem 6rem;
  background: var(--white);
  gap: 0;
}
.about-left { padding-right: 4rem; }
.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}
.about-body p + p { margin-top: 1.2rem; }
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
  border-left: 1px solid var(--sand);
}
.about-card {
  background: var(--cream);
  padding: 1.8rem;
  border-radius: 4px;
  border-left: 3px solid var(--peach);
  transition: border-color 0.2s;
}
.about-card:hover { border-left-color: var(--burnt); }
.about-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

/* ── WHAT TO EXPECT (SESSIONS) ── */
.sessions {
  padding: 7rem 6rem;
  background: var(--sand);
}
.sessions-header {
  max-width: 680px;
  margin-bottom: 4rem;
}
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.session-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.session-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,90,10,0.1);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.session-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.session-step p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}

/* ── APPROACH ── */
.approach {
  padding: 7rem 6rem;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.approach .section-label { color: var(--peach); }
.approach .section-heading { color: var(--white); }
.approach-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}
.approach-body p + p { margin-top: 1.2rem; }
.approach-right { display: flex; flex-direction: column; gap: 2rem; }
.approach-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.approach-item:last-child { border-bottom: none; padding-bottom: 0; }
.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--peach);
  opacity: 0.6;
  line-height: 1;
  min-width: 2rem;
}
.approach-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.approach-item p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ── ENDING SECTION ── */
.ending {
  padding: 7rem 6rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ending-right {
  background: var(--sand);
  border-radius: 4px;
  padding: 3rem;
  border-left: 4px solid var(--peach);
}
.ending-right blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.ending-right p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}
.ending-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}
.ending-body p + p { margin-top: 1.2rem; }

/* ── LATEST POSTS ── */
.latest-posts {
  padding: 7rem 6rem;
  background: var(--white);
}
.latest-posts-header { margin-bottom: 3rem; }
.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.latest-post-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--peach);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.2s;
}
.latest-post-card:hover { border-left-color: var(--burnt); }
.latest-post-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}
.latest-post-card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  flex: 1;
}
.latest-posts-footer { text-align: center; }

/* ── CONTACT ── */
.contact {
  padding: 7rem 6rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1px solid rgba(200,90,10,0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--burnt); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-detail h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.contact-detail p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}
.contact-detail a { color: var(--burnt); text-decoration: none; }
.contact-cta { display: flex; flex-direction: column; gap: 2rem; justify-content: center; height: 100%; }
.contact-cta-text { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--mid); }
.contact-cta .btn-primary { align-self: flex-start; font-size: 1rem; padding: 1.1rem 2.8rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.4);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
footer img { height: 36px; opacity: 0.65; }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 4rem; }
  .lucy-intro { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2.5rem; }
  .lucy-image-wrap::before { display: none; }
  .lucy-image-wrap img { height: 320px; }
  .about,
  .sessions,
  .approach,
  .ending,
  .contact { padding: 4rem 2rem; }
  .about,
  .approach,
  .ending,
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .sessions-grid { grid-template-columns: 1fr; }
  .latest-posts { padding: 4rem 2rem; }
  .latest-posts-grid { grid-template-columns: 1fr; }
  .about-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--sand);
    padding-top: 2rem;
  }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
}

/* ── FEES ── */
.fees {
  padding: 7rem 6rem;
  background: var(--sand);
}
.fees-header { margin-bottom: 3.5rem; }
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.fee-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,90,10,0.1);
}
.fee-card--highlight {
  border-top: 3px solid var(--burnt);
}
.fee-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt);
}
.fee-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
.fee-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}
.fees-footer {
  margin-top: 1rem;
}
.fee-note {
  background: var(--white);
  border-left: 3px solid var(--peach);
  padding: 1.8rem 2rem;
  border-radius: 0 4px 4px 0;
  max-width: 600px;
}
.fee-note h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.fee-note p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}
@media (max-width: 900px) {
  .fees { padding: 4rem 2rem; }
  .fees-grid { grid-template-columns: 1fr; }
}
