/* =============================================================
   Love Kinesiologist - global styles
   Modern, clean, professional, warm medical aesthetic.
   ============================================================= */

:root {
  /* Palette */
  --sage-50:  #f4f8f5;
  --sage-100: #e6efe8;
  --sage-200: #c9dccd;
  --sage-400: #7ea88a;
  --sage-600: #4a7c6a;
  --sage-700: #3a6354;
  --sage-900: #1e3a31;

  --cream:    #fbf7f1;
  --cream-2:  #f3ece0;

  --coral:    #d97a6c;
  --coral-600:#c0604f;

  --ink:      #1c2824;
  --ink-2:    #445049;
  --ink-3:    #6b7670;
  --line:     #e7ded1;

  --white:    #ffffff;

  /* Type */
  --f-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --f-sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 20px rgba(28, 40, 36, 0.06);
  --shadow:    0 18px 50px rgba(28, 40, 36, 0.10);

  --section-py: clamp(64px, 9vw, 120px);
}

/* Reset-ish */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; }
a:hover { color: var(--coral-600); }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--f-serif); color: var(--ink); margin: 0 0 .4em; line-height: 1.15; letter-spacing: -0.01em; font-weight: 500; }
h1 { font-size: clamp(2.25rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-2); }
em { font-style: italic; color: var(--coral); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.skip-link { position:absolute; left:-9999px; top:0; background:var(--ink); color:#fff; padding:10px 14px; z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: .9rem;
  font-weight: 600;
}
.eyebrow--light { color: var(--sage-200); }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn--sm { padding: .7em 1.1em; font-size: .9rem; }
.btn--primary { background: var(--sage-700); color: #fff; box-shadow: 0 8px 22px rgba(58,99,84,.25); }
.btn--primary:hover { background: var(--sage-900); color:#fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color:#fff; }

/* ============================== TOPBAR ============================== */
.topbar {
  background: var(--sage-900);
  color: var(--cream);
  font-size: .85rem;
}
.topbar__inner {
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 0; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--coral); }
.topbar__links { display:flex; gap: 10px; align-items:center; }
.topbar__item { display:inline-flex; align-items:center; gap:8px; }
.dot { width:8px; height:8px; border-radius:50%; background:#8fd4a3; box-shadow: 0 0 0 3px rgba(143,212,163,.2); }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,241,.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(251,247,241,.96); }
.site-header__inner {
  display:flex; align-items:center; justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand { display:inline-flex; align-items:center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--sage-700); }
.brand__mark {
  display:inline-flex; align-items:center; justify-content:center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sage-100), var(--cream-2));
  color: var(--sage-700);
  border: 1px solid var(--sage-200);
}
.brand__text { display:flex; flex-direction: column; line-height:1; }
.brand__name { font-family: var(--f-serif); font-size: 1.15rem; font-weight: 600; }
.brand__tag  { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.brand--light { color: var(--cream); }
.brand--light .brand__mark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.brand--light .brand__tag { color: rgba(255,255,255,.6); }

/* Nav */
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display:flex; align-items:center; gap: 6px;
}
.primary-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.primary-nav a:hover { background: var(--sage-100); color: var(--sage-700); }
.primary-nav a.is-active { color: var(--sage-700); }
.primary-nav a.nav-cta {
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; margin-left: 8px;
}
.primary-nav a.nav-cta:hover { background: var(--sage-700); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 21px; }
.nav-toggle span:nth-child(3){ top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(72px, 10vw, 140px);
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--sage-100), transparent 60%),
    radial-gradient(600px 400px at 5% 100%, #f6e7e2, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__copy h1 em { font-weight: 500; }
.lede { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--ink-2); max-width: 56ch; }
.hero__cta { display:flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__trust {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.hero__trust li { font-size: .9rem; color: var(--ink-3); }
.hero__trust strong { display:block; color: var(--ink); font-family: var(--f-serif); font-size: 1.5rem; font-weight: 600; }

.hero__media { position: relative; margin: 0; }
.hero__media img {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute; left: 18px; bottom: 18px;
  display:inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 12px 18px; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage-600); box-shadow: 0 0 0 4px rgba(74,124,106,.18); }

.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background:
    radial-gradient(50% 100% at 50% 0, transparent 59%, var(--cream) 60%) repeat-x;
  background-size: 90px 60px;
  opacity: .0; /* decorative hook for future */
}

/* ============================== STRIP ============================== */
.strip {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 22px 0;
  color: var(--ink-3);
  font-size: .9rem;
}
.strip__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: clamp(16px, 3vw, 36px); flex-wrap: wrap;
  font-family: var(--f-serif); font-size: 1.05rem; color: var(--ink);
}
.strip__list li { position: relative; padding-left: 20px; }
.strip__list li::before {
  content:"+"; position:absolute; left: 0; top: 0; color: var(--sage-600); font-family: var(--f-sans); font-weight: 700;
}

/* ============================== SECTION ============================== */
.section {
  padding: var(--section-py) 0;
}
.section--alt { background: var(--sage-50); }
.section--dark {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(143,212,163,.08), transparent 60%),
    var(--sage-900);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(251,247,241,.8); }

.section__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section__head--light h2 { color: #fff; }
.section__lead { font-size: 1.05rem; color: var(--ink-2); }

/* ============================== CARDS ============================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display:inline-flex; align-items:center; justify-content: center;
  background: var(--sage-100); color: var(--sage-700);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* ============================== BENEFITS ============================== */
.benefits__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.benefits__media img {
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.benefits__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 18px;
}
.benefits__list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
}
.benefits__check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sage-700); color: #fff;
  display:inline-flex; align-items:center; justify-content: center;
  font-weight: 700; font-size: .8rem;
  margin-top: 4px;
}
.benefits__list h4 { font-family: var(--f-sans); font-size: 1.02rem; font-weight: 600; margin: 0 0 4px; }
.benefits__list p { margin: 0; font-size: .93rem; color: var(--ink-3); }

/* ============================== ABOUT ============================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: 28px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about__stat {
  position: absolute; left: -18px; bottom: 24px;
  background: #fff; color: var(--ink);
  padding: 18px 22px; border-radius: 16px;
  box-shadow: var(--shadow);
  display:flex; align-items:center; gap: 14px;
  max-width: 80%;
}
.about__stat strong { font-family: var(--f-serif); font-size: 2.4rem; line-height:1; color: var(--sage-700); }
.about__stat span { font-size: .88rem; color: var(--ink-3); }

/* ============================== QUOTES ============================== */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  backdrop-filter: blur(4px);
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--f-serif);
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--cream);
}
.quote blockquote p::before { content: "“"; font-size: 2.4rem; line-height: 0; color: var(--sage-200); margin-right: 6px; vertical-align: -0.3em; }
.quote figcaption { display: flex; flex-direction: column; margin-top: 14px; font-size: .9rem; }
.quote figcaption strong { color: #fff; }
.quote figcaption span { color: rgba(251,247,241,.55); font-size: .82rem; margin-top: 2px; }

/* ============================== CTA ============================== */
.cta {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--line);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta p { max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 24px;
}
.site-footer a { color: rgba(251,247,241,.8); }
.site-footer a:hover { color: var(--coral); }
.site-footer h4 {
  color: #fff; font-family: var(--f-sans); font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.4fr;
  gap: 40px;
}
.footer__blurb { color: rgba(251,247,241,.6); max-width: 38ch; margin-top: 14px; font-size: .92rem; }
.newsletter { display:flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 12px 14px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); color: #fff;
  font: inherit;
}
.newsletter input::placeholder { color: rgba(251,247,241,.5); }
.newsletter input:focus { outline: none; border-color: var(--sage-200); }
.site-footer__bottom {
  display:flex; justify-content: space-between; align-items:center;
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(251,247,241,.55);
}

/* ============================== STUB PAGE ============================== */
.page-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(900px 400px at 80% -10%, var(--sage-100), transparent 60%),
    var(--cream);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: .8rem; }
.page-hero p { max-width: 58ch; margin: 0 auto; font-size: 1.05rem; }
.coming-soon {
  padding: clamp(48px, 7vw, 96px) 0;
}
.coming-soon__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); max-width: 760px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* ============================== INNER PAGE - generic ============================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--media-right { grid-template-columns: 1.05fr .95fr; }
.split__media img {
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split__copy h2 { margin-bottom: .3em; }
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 0; }

/* Steps / process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; left: 24px;
  background: var(--sage-700); color: #fff;
  font-family: var(--f-serif);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
}
.step h3 { margin: 6px 0 8px; font-size: 1.15rem; }
.step p { margin: 0; font-size: .95rem; color: var(--ink-2); }

/* Timeline (session flow) */
.timeline {
  position: relative;
  padding: 8px 0;
  display: grid;
  gap: 22px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px; left: 18px;
  width: 2px;
  background: var(--sage-200);
}
.timeline__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline__dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--sage-600);
  display:inline-flex; align-items:center; justify-content:center;
  color: var(--sage-700);
  font-family: var(--f-serif); font-weight: 600;
  z-index: 1;
}
.timeline__body h4 { font-family: var(--f-sans); font-size: 1.02rem; font-weight: 600; margin: 6px 0 4px; }
.timeline__body p { margin: 0; font-size: .95rem; color: var(--ink-2); }

/* Chips / tags */
.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid var(--line);
}
.chip--accent { background: var(--sage-100); border-color: var(--sage-200); color: var(--sage-700); }

/* Myths / facts */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.dual__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.dual__card--myth { background: var(--cream-2); }
.dual__card h3 {
  display:flex; align-items:center; gap: 10px;
  font-size: 1rem;
  font-family: var(--f-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.dual__card--fact h3 { color: var(--sage-700); }
.dual__card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.dual__card li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
  font-size: .96rem;
}
.dual__card--myth li::before {
  content: "×"; position: absolute; left: 0; top: -2px;
  color: var(--coral); font-weight: 700; font-size: 1.2rem;
}
.dual__card--fact li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--sage-700); font-weight: 700;
}

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 4px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--sage-200); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--f-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-sans);
  font-size: 1.4rem;
  color: var(--sage-700);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body {
  padding: 0 22px 18px;
  color: var(--ink-2);
}
.faq .faq__body p { margin: 0 0 .7em; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* USP row (icon + text), used on Online Bookings */
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 36px auto 0;
}
.usp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm);
}
.usp__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.usp h3 {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.usp p { margin: 0; font-size: .85rem; color: var(--ink-3); }

/* Booking widget */
.booking-wrap {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px -24px rgba(30, 58, 49, .22), 0 2px 6px rgba(30, 58, 49, .04);
  overflow: hidden;
}
.booking-fallback {
  text-align: center;
  font-size: .9rem;
  color: var(--ink-3);
  margin-top: 18px;
}
.booking-fallback a { color: var(--sage-700); font-weight: 600; }

@keyframes bkc-fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bkc {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 600px;
}

/* Side panel */
.bkc__side {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(165deg, var(--sage-50) 0%, #fff 100%);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.bkc__side::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(closest-side, rgba(126, 168, 138, .18), transparent 70%);
  pointer-events: none;
}
.bkc__author {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 500;
}
.bkc__avatar {
  width: 46px; height: 46px; border-radius: 999px;
  background: linear-gradient(135deg, var(--sage-400), var(--sage-700));
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-serif); font-weight: 600; font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 14px -4px rgba(58, 99, 84, .4);
}
.bkc__heading {
  position: relative;
  font-family: var(--f-serif); font-size: 1.55rem; font-weight: 600;
  margin: 0 0 6px; line-height: 1.2;
}
.bkc__price {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 10px;
  background: rgba(217, 122, 108, .12);
  color: var(--coral-600);
  border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.bkc__meta {
  position: relative;
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 12px;
  font-size: .92rem; color: var(--ink-2);
}
.bkc__meta li { display: flex; gap: 12px; align-items: center; }
.bkc__meta svg {
  flex: 0 0 auto;
  padding: 7px; width: 32px; height: 32px;
  background: #fff;
  border: 1px solid var(--sage-200);
  border-radius: 10px;
  color: var(--sage-700);
}
.bkc__desc {
  position: relative;
  font-size: .92rem; line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed var(--sage-200);
}

/* Main panel */
.bkc__main { padding: 32px 36px 36px; }

.bkc__step-hint {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-600); font-weight: 600;
  margin-bottom: 6px;
}
.bkc__calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.bkc__calendar-head h3 {
  font-family: var(--f-serif); font-size: 1.3rem; font-weight: 600; margin: 0;
  color: var(--ink);
}
.bkc__nav { display: flex; gap: 6px; }
.bkc__nav button {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  color: var(--ink-2); cursor: pointer;
  display: grid; place-items: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.bkc__nav button:hover:not(:disabled) {
  background: var(--sage-700); color: #fff; border-color: var(--sage-700);
  transform: translateY(-1px);
}
.bkc__nav button:disabled { opacity: .35; cursor: not-allowed; }

.bkc__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bkc__dayname {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); text-align: center; padding: 8px 0 10px;
  font-weight: 600;
}
.bkc__day {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  border-radius: 12px;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.bkc__day:not(:disabled):not(.bkc__day--empty) {
  background: var(--sage-50);
}
.bkc__day:hover:not(:disabled):not(.bkc__day--empty) {
  background: #fff;
  border-color: var(--sage-400);
  color: var(--sage-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -4px rgba(58, 99, 84, .25);
}
.bkc__day--today {
  color: var(--sage-700);
  font-weight: 600;
}
.bkc__day--today::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 50%;
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--coral);
  transform: translateX(-50%);
}
.bkc__day--selected,
.bkc__day--selected:hover {
  background: var(--sage-700) !important;
  color: #fff !important;
  border-color: var(--sage-700) !important;
  box-shadow: 0 10px 22px -6px rgba(58, 99, 84, .45);
  transform: translateY(-1px);
}
.bkc__day--selected.bkc__day--today::after { background: #fff; }
.bkc__day--disabled {
  background: transparent !important;
  color: var(--ink-3);
  opacity: .3;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.bkc__day--empty { background: transparent; cursor: default; pointer-events: none; }

/* Slots */
.bkc__slots {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  animation: bkc-fade-up .35s ease both;
}
.bkc__slots-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.bkc__slots h4 {
  font-family: var(--f-serif); font-size: 1.1rem; font-weight: 600;
  margin: 0;
}
.bkc__slots-date { color: var(--sage-700); font-weight: 600; }
.bkc__slots-sub { font-size: .82rem; color: var(--ink-3); margin: 0; }
.bkc__slots-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 10px;
}
.bkc__slot {
  position: relative;
  padding: 13px 10px;
  border: 1px solid var(--sage-200);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  font: inherit;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.bkc__slot:hover {
  background: var(--sage-50);
  border-color: var(--sage-400);
  color: var(--sage-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -4px rgba(58, 99, 84, .2);
}
.bkc__slot--selected,
.bkc__slot--selected:hover {
  background: var(--sage-700);
  color: #fff;
  border-color: var(--sage-700);
  box-shadow: 0 8px 18px -6px rgba(58, 99, 84, .4);
}

/* Form */
.bkc__form {
  margin-top: 24px;
  padding: 26px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 6px var(--sage-50);
  animation: bkc-fade-up .35s ease both;
}
.bkc__form-summary {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  margin: 0 0 18px;
  background: var(--sage-50);
  border-radius: 10px;
  font-size: .88rem; color: var(--ink-2);
}
.bkc__form-summary::before {
  content: "";
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--coral);
  flex: 0 0 auto;
}
.bkc__form-summary strong { color: var(--ink); font-weight: 600; }
.bkc__field { display: grid; gap: 6px; margin-bottom: 12px; }
.bkc__field label {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-2); text-transform: uppercase;
}
.bkc__form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bkc__form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.bkc__form input::placeholder { color: var(--ink-3); }
.bkc__form input:hover { border-color: var(--sage-200); }
.bkc__form input:focus {
  outline: 0;
  border-color: var(--sage-400);
  box-shadow: 0 0 0 3px rgba(126, 168, 138, .22);
}
.bkc__form-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

/* Success */
.bkc__success {
  margin-top: 24px;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--sage-100), #fff);
  border: 1px solid var(--sage-200);
  border-radius: 18px;
  text-align: center;
  animation: bkc-fade-up .45s ease both;
}
.bkc__success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  background: var(--sage-700);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(58, 99, 84, .45);
}
.bkc__success h4 {
  font-family: var(--f-serif); font-size: 1.45rem; font-weight: 600;
  margin: 0 0 8px;
}
.bkc__success p { margin: 0 0 16px; color: var(--ink-2); }
.bkc__success-note {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  background: rgba(217, 122, 108, .12);
  color: var(--coral-600);
  border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}

@media (max-width: 860px) {
  .usp-row { grid-template-columns: repeat(2, 1fr); }
  .bkc { grid-template-columns: 1fr; min-height: 0; }
  .bkc__side { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 24px; }
  .bkc__main { padding: 26px 20px 28px; }
  .bkc__form { padding: 22px; }
  .bkc__form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .usp-row { grid-template-columns: 1fr; }
}

/* Pricing cards */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.price-card--featured {
  background: var(--sage-700);
  color: var(--cream);
  border-color: var(--sage-700);
  box-shadow: 0 18px 40px rgba(58,99,84,.18);
}
.price-card--featured h3 { color: #fff; }
.price-card--featured p,
.price-card--featured .price-card__meta { color: rgba(251,247,241,.82); }
.price-card__badge {
  position: absolute; top: -12px; right: 22px;
  background: var(--coral); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.price-card__meta {
  font-size: .76rem;
  color: var(--ink-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.price-card > p { font-size: .94rem; color: var(--ink-2); margin: 0 0 22px; }
.price-card--featured > p { color: rgba(251,247,241,.82); }

.price-card__rates {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price-card--featured .price-card__rates { border-color: rgba(255,255,255,.15); }
.price-card__rates li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.price-card__rates .label { font-size: .92rem; color: var(--ink-2); }
.price-card--featured .price-card__rates .label { color: rgba(251,247,241,.78); }
.price-card__rates .price {
  font-family: var(--f-serif);
  color: var(--sage-700);
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
}
.price-card--featured .price-card__rates .price { color: #fff; }
.price-card__rates .price--free { color: var(--coral-600); font-weight: 600; }
.price-card__rates small { display: block; font-size: .78rem; color: var(--ink-3); margin-top: 2px; font-family: var(--f-sans); }
.price-card--featured .price-card__rates small { color: rgba(251,247,241,.6); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card--featured .btn--primary { background: #fff; color: var(--sage-900); }
.price-card--featured .btn--primary:hover { background: var(--cream); color: var(--sage-900); }

.pricing-note {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-3);
}

@media (max-width: 1000px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pricing { grid-template-columns: 1fr; } }

/* Credentials list (CV-style) */
.creds {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.creds__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.creds__row:first-child { border-top: 1px solid var(--line); }
.creds__year {
  font-family: var(--f-serif);
  color: var(--sage-700);
  font-weight: 500;
  letter-spacing: .01em;
}
.creds__what { color: var(--ink); font-weight: 500; }
.creds__what small { display: block; color: var(--ink-3); font-size: .88rem; margin-top: 4px; font-weight: 400; }
.creds__what .tag-inprog {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-3);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: 2px;
}

/* Featured narrative block (e.g. "Knead Time") */
.feature-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.feature-quote .feature-quote__lede {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}
.feature-quote p {
  text-align: left;
  max-width: 62ch;
  margin: 0 auto 1em;
}
.feature-quote h2 em { color: var(--coral); }

/* Callout / pull quote */
.callout {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage-600);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.callout p {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
}
.callout p strong { color: var(--sage-700); }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero__grid, .benefits__grid, .about__grid, .split, .split--media-right, .dual { grid-template-columns: 1fr; }
  .split__media img { aspect-ratio: 4/3; }
  .creds__row { grid-template-columns: 1fr; gap: 4px; }
  .creds__year { font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
  .hero__media img, .benefits__media img, .about__media img { aspect-ratio: 4/3; }
  .about__stat { position: static; margin-top: 16px; max-width: none; }
  .quotes { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }

  .nav-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .primary-nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 14px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .primary-nav a { padding: 14px 14px; }
  .primary-nav a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 6px; }
  .topbar__inner { justify-content: center; text-align: center; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Cookie consent */
.consent {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 140%);
  width: min(720px, calc(100vw - 24px));
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -18px rgba(30, 58, 49, .35), 0 2px 8px rgba(30, 58, 49, .05);
  opacity: 0;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1);
}
.consent--in { opacity: 1; transform: translate(-50%, 0); }
.consent--leaving { opacity: 0; transform: translate(-50%, 140%); }
.consent__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}
.consent__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--sage-50);
  color: var(--sage-700);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.consent__text strong {
  display: block;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.consent__text p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.consent__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 0 0 auto;
}
.consent__optout {
  background: none;
  border: 0;
  padding: 4px 2px;
  font: inherit;
  font-size: .82rem;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 118, 112, .4);
  cursor: pointer;
  transition: color .18s ease, text-decoration-color .18s ease;
}
.consent__optout:hover {
  color: var(--ink-2);
  text-decoration-color: var(--ink-2);
}

@media (max-width: 640px) {
  .consent { bottom: 12px; }
  .consent__inner {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }
  .consent__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
