/* ================================================
   Nina Chausow — Site Styles
   ================================================ */

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

/* ── Tokens ────────────────────────────────────── */
:root {
  --bg:            #FDFBF7;
  --bg-white:      #FFFFFF;
  --text:          #1C1C1A;
  --text-muted:    #6B6560;
  --accent:        #A6705E;
  --accent-soft:   #EAD9D2;
  --border:        #E8E2D8;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:         72px;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);

  --max-w:         1080px;
  --prose-w:       620px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Layout ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section         { padding-block: 6rem; }
.section--sm     { padding-block: 4rem; }
.section--lg     { padding-block: 9rem; }
.section--white  { background: var(--bg-white); }

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.nav.scrolled { border-bottom-color: var(--border); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active { color: var(--text); }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.55em 1.4em;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1px solid var(--text);
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-white);
}

.btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
}

.btn--large {
  padding: 0.8em 2.2em;
  font-size: 0.9375rem;
}

.btn--outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline-accent:hover {
  background: var(--accent);
  color: var(--bg-white);
}

/* ── Mobile hamburger ──────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.25s var(--ease);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Typography ────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  max-width: var(--prose-w);
}

p + p { margin-top: 1.5rem; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* ── Divider ───────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-block: 2rem;
}

/* ── Hero (home) ───────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 5rem 2rem 6rem;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.75rem, 9vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 13ch;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Page hero (inner pages) ───────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin-bottom: 1.5rem;
}

.page-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--text-muted);
  max-width: 40ch;
  line-height: 1.4;
}

/* ── Page hero with full-bleed background ──────── */
.page-hero--bg {
  position: relative;
  padding-top: calc(var(--nav-h) + 7rem);
  padding-bottom: 7rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 251, 247, 0.62);
  pointer-events: none;
}

.page-hero--bg > .container {
  position: relative;
  z-index: 1;
}

.page-hero--bg-peonies {
  background-image: url('images/hero-peonies.jpg');
}

.page-hero--bg-peonies::before {
  background: rgba(253, 251, 247, 0.72);
}

.page-hero--bg-babys-breath {
  background-image: url('images/hero-babys-breath.jpg');
}

.page-hero--bg-peony {
  background-image: url('images/hero-peony.jpg');
}

/* ── Visual banner (atmospheric section break) ── */
.banner-section {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-section--babys-breath {
  background-image: url('images/hero-babys-breath.jpg');
}

/* ── Two-column ────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col--wide-left  { grid-template-columns: 1.2fr 0.8fr; }
.two-col--wide-right { grid-template-columns: 0.8fr 1.2fr; }

/* ── Photo placeholder ─────────────────────────── */
.photo {
  aspect-ratio: 3 / 4;
  background: var(--accent-soft);
  border-radius: 3px;
  overflow: hidden;
}

.photo--square { aspect-ratio: 1 / 1; }
.photo--wide   { aspect-ratio: 4 / 3; }

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Invitation / Questions ────────────────────── */
.questions {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.question-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2rem;
  display: block;
}

.question-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.question-item {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 100%;
}

/* ── Path cards (home) ─────────────────────────── */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.path-card {
  display: block;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-white);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.path-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.path-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.path-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.path-card__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 100%;
  line-height: 1.7;
}

.path-card__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap 0.2s var(--ease);
}

.path-card:hover .path-card__cta { gap: 0.7em; }

/* ── Offerings ─────────────────────────────────── */
.offerings {
  display: flex;
  flex-direction: column;
}

.offering {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.offering:first-child { padding-top: 0; }
.offering:last-child  { border-bottom: none; }

.offering__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.offering__body {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: var(--prose-w);
  line-height: 1.75;
}

.offering__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offering__list li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.offering__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── For list ──────────────────────────────────── */
.for-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.for-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.for-item__arrow {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.875rem;
  margin-top: 3px;
  font-style: normal;
}

.for-item__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 100%;
}

/* ── Discovery call box ────────────────────────── */
.discovery-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4rem;
  max-width: 660px;
}

.discovery-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.discovery-box p {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.discovery-box p + p { margin-top: 0; }

.discovery-box__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem !important;
}

.discovery-box .btn { margin-top: 0.75rem; }

/* ── Inline text link ──────────────────────────── */
.text-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: gap 0.2s var(--ease);
}

.text-link:hover { gap: 0.6em; }

/* ── CTA section ───────────────────────────────── */
.cta-section {
  text-align: center;
  padding-block: 7rem;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--text);
  max-width: none;
}

.cta-section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ── Training list ─────────────────────────────── */
.training-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.training-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 300;
}

.training-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────── */
.footer {
  padding-block: 3rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--text); }

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Section intro (heading + lead above content) ── */
.section-intro {
  max-width: 720px;
  margin-bottom: 4.5rem;
}

.section-intro .lead em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

/* ── Frameworks ────────────────────────────────── */
.frameworks {
  display: flex;
  flex-direction: column;
}

.framework {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  padding-block: 3rem;
  border-top: 1px solid var(--border);
  align-items: start;
}

.framework:first-child {
  border-top: none;
  padding-top: 1rem;
}

.framework:last-child {
  padding-bottom: 0;
}

.framework__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.25rem;
}

.framework__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.framework__body {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62ch;
}

.framework__body em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  font-size: 1.0625rem;
}

/* ── Testimonial ───────────────────────────────── */
.testimonial {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.testimonial .eyebrow {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 100%;
  margin-inline: auto;
}

.testimonial__quote::before { content: '\201C'; }
.testimonial__quote--cont::before { content: ''; }
.testimonial__quote--cont {
  margin-top: 1.5rem !important;
}
.testimonial__quote:last-of-type::after { content: '\201D'; }

.testimonial__attribution {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
  max-width: 100%;
}

/* ── Animations ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

.fade-up--d1 { transition-delay: 0.08s; }
.fade-up--d2 { transition-delay: 0.16s; }
.fade-up--d3 { transition-delay: 0.24s; }
.fade-up--d4 { transition-delay: 0.32s; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .container     { padding-inline: 1.25rem; }
  .nav__inner    { padding-inline: 1.25rem; }
  .hero__inner   { padding-inline: 1.25rem; padding-block: 3.5rem 4rem; }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    padding: 1.5rem 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }

  .nav__links.is-open { display: flex; }
  .nav__hamburger     { display: flex; }

  .section    { padding-block: 4rem; }
  .section--lg{ padding-block: 5rem; }

  .page-hero  { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; }

  .page-hero--bg {
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 4rem;
  }

  .banner-section { height: 200px; }

  .two-col,
  .path-cards { grid-template-columns: 1fr; gap: 3rem; }

  .two-col--wide-left,
  .two-col--wide-right { grid-template-columns: 1fr; }

  .discovery-box { padding: 2rem; }
  .cta-section   { padding-block: 4.5rem; }

  .section-intro { margin-bottom: 3rem; }

  .framework {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2.25rem;
  }

  .framework__num {
    font-size: 1.25rem;
    padding-top: 0;
  }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
