/* Sky Therapy — Direction 1B "First Light"
   Warm, human, editorial. */

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

:root {
  --plum-ink: #4A3B4E;
  --mauve: #B0788F;
  --peach: #E9A886;
  --shell: #F3D8C8;
  --cream: #FBF4EC;

  --font-serif: 'Iowan Old Style', 'Lora', Georgia, serif;
  --font-sans: 'Avenir Next', 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--plum-ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--plum-ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.9em;
  display: block;
}

.lede {
  font-size: 1.2rem;
  color: #6b5a6f;
  max-width: 46ch;
}

/* ---------- Logo mark ---------- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-ink);
}

.logo .mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* "center" is part of the legal name but stays visually quiet */
.logo-center {
  font-family: var(--font-sans);
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  opacity: 0.75;
  align-self: flex-end;
  margin-bottom: 0.3em;
  margin-left: -2px;
}

footer .logo .logo-center { color: var(--peach); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 236, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 59, 78, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-ink);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--mauve); }

.nav-right { display: flex; align-items: center; gap: 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum-ink);
  margin: 4px 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--plum-ink);
  color: var(--cream);
}
.btn-primary:hover { background: #3a2e3d; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border-color: var(--plum-ink);
  color: var(--plum-ink);
}
.btn-secondary:hover { background: var(--plum-ink); color: var(--cream); }

.btn-small {
  padding: 10px 20px;
  font-size: 0.72rem;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--shell) 0%, var(--cream) 70%);
  padding: 90px 0 100px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 168, 134, 0.55) 0%, rgba(176, 120, 143, 0.18) 45%, rgba(176, 120, 143, 0) 70%);
  filter: blur(24px);
  z-index: 0;
  will-change: transform, opacity;
}

.hero-sun {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  will-change: transform;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.85rem;
  color: #7d6b81;
}

.hero-glance {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
}

.hero-glance li {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #7d6b81;
  padding-left: 20px;
}

.hero-glance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--mauve));
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--shell) 0%, var(--cream) 100%);
  padding: 70px 0 60px;
}

/* ---------- Sections ---------- */

section { padding: 104px 0; }

.section-tight { padding: 60px 0; }

.section-alt {
  background: var(--shell);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(74, 59, 78, 0.1);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  background: var(--shell);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -24px rgba(74, 59, 78, 0.5);
  border-color: rgba(176, 120, 143, 0.45);
}

.section-alt .card:hover {
  background: #f0d3c0;
}


.section-alt .card {
  background: #fff9f4;
}

.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--mauve), var(--peach));
  opacity: 0.4;
  width: 64px;
  margin: 20px 0 28px;
}

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--plum-ink);
  max-width: 30ch;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

blockquote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
}

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Steps / list ---------- */

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--mauve);
  width: 40px;
  height: 40px;
  border: 1px solid var(--mauve);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- About / bio ---------- */

.bio-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.bio-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--peach), var(--mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.credentials li {
  padding: 10px 0;
  border-top: 1px solid rgba(74, 59, 78, 0.12);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.credentials li:last-child { border-bottom: 1px solid rgba(74, 59, 78, 0.12); }
.credentials li span:first-child { color: #7d6b81; }

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-ink);
  margin-bottom: 6px;
  display: block;
}

input, textarea, select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1px solid rgba(74, 59, 78, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--plum-ink);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px rgba(176, 120, 143, 0.15);
}

textarea { resize: vertical; min-height: 130px; }

.form-status {
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 10px;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: #e8f0e6; color: #3c5a37; }

.contact-info-item {
  margin-bottom: 28px;
}
.contact-info-item h3 { margin-bottom: 4px; }
.contact-info-item p { color: #6b5a6f; margin-bottom: 0; }

/* ---------- Booking (Cal.com embed) ---------- */

.booking-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.cal-embed {
  width: 100%;
  min-height: 640px;
  background: #fff;
  border: 1px solid rgba(74, 59, 78, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.booking-fallback {
  text-align: center;
  font-size: 0.92rem;
  color: #6b5a6f;
  margin-top: 24px;
}
.booking-fallback a {
  color: var(--mauve);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Mini steps (home) ---------- */

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.mini-step {
  position: relative;
  padding: 24px 20px 16px;
  border-radius: 18px;
  transition: background 0.3s ease;
}
.mini-step:hover { background: var(--shell); }

.mini-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-ink);
  background: var(--shell);
  border: 1px solid rgba(176, 120, 143, 0.4);
  margin-bottom: 20px;
}

.mini-step h3 { margin-bottom: 8px; }
.mini-step p { color: #6b5a6f; margin-bottom: 0; }

/* ---------- CTA band (home) ---------- */

.cta-section { padding: 40px 0 100px; }

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--shell) 0%, var(--peach) 100%);
  border-radius: 28px;
  padding: 72px 32px;
}

.cta-band .eyebrow { color: var(--plum-ink); opacity: 0.7; }
.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p {
  color: #6b4f52;
  max-width: 44ch;
  margin: 0 auto 28px;
}
.cta-band .btn { position: relative; z-index: 1; }

.cta-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 244, 236, 0.7) 0%, rgba(251, 244, 236, 0) 70%);
  z-index: 0;
}

/* ---------- Footer ---------- */

footer {
  background: var(--plum-ink);
  color: var(--shell);
  padding: 56px 0 32px;
}

footer .logo, footer .logo * { color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 244, 236, 0.15);
}

footer h4 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin: 0 0 16px;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { opacity: 0.85; }
footer a:hover { opacity: 1; color: var(--peach); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .site-header .container { padding-top: 14px; padding-bottom: 14px; }
  .logo { font-size: 1.1rem; white-space: nowrap; }
  .logo .mark { width: 22px; height: 22px; }
  .nav-right { gap: 12px; }
  .btn-small { padding: 9px 16px; font-size: 0.68rem; white-space: nowrap; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(74, 59, 78, 0.08);
  }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; max-width: 240px; }
  .hero-glow { width: 220px; height: 220px; }
  .hero-actions { justify-content: center; }
  .hero-glance { justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .mini-steps { grid-template-columns: 1fr; gap: 28px; }
  .mini-step { text-align: center; }
  .mini-step .step-num { margin-left: auto; margin-right: auto; }
  .cta-band { padding: 56px 24px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
