:root {
  --bg: #f8f2ea;
  --surface: #fffdf9;
  --surface-2: #f4e8db;
  --text: #3b2e2a;
  --muted: #6e5950;
  --accent: #c5744e;
  --accent-dark: #9f5939;
  --line: #dfc8b6;
  --shadow: 0 18px 42px rgba(94, 61, 43, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: min(1120px, calc(100% - 3rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 0.7rem;
}

p {
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 242, 234, 0.85);
  border-bottom: 1px solid rgba(195, 164, 141, 0.3);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fffaf4;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  filter: blur(2px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero {
  position: relative;
  padding: 6.4rem 0 4.4rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 16%, rgba(217, 122, 69, 0.5), transparent 37%),
    radial-gradient(circle at 89% 12%, rgba(247, 217, 182, 0.56), transparent 36%),
    radial-gradient(circle at 76% 72%, rgba(210, 125, 83, 0.42), transparent 40%),
    radial-gradient(circle at 28% 84%, rgba(244, 202, 158, 0.34), transparent 43%),
    linear-gradient(138deg, rgba(188, 108, 72, 0.2), rgba(188, 108, 72, 0.05)),
    linear-gradient(124deg, #fdebd6 0%, #f6d4b2 30%, #eba97c 64%, #d4885f 100%);
}

.hero-inner {
  max-width: 1040px;
  margin-left: clamp(2.2rem, 9vw, 8.6rem);
  text-align: left;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.79rem;
  color: var(--accent-dark);
}

.lead {
  color: var(--muted);
  max-width: 74ch;
  font-size: clamp(1.16rem, 1.7vw, 1.32rem);
}

.lead-mobile {
  display: none;
}

.hero-emphasis {
  color: #ad5f3e;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
  justify-content: flex-start;
}

.section {
  padding: 4.8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6.4rem;
  align-items: center;
}

.about-content {
  padding-left: 2.8rem;
}

.about-content p:not(.eyebrow) {
  font-size: 1.16rem;
}

.about-photo {
  min-height: 500px;
  margin-left: -1.8rem;
  margin-right: 2.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(74, 54, 44, 0.08), rgba(74, 54, 44, 0.22)),
    url("christeena.jpg");
  background-size: cover;
  background-position: center 18%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.step {
  background: var(--surface);
  border: 1px solid #e6d1bf;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.15rem 1.1rem;
  box-shadow: 0 8px 24px rgba(99, 65, 45, 0.07);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  font-weight: 700;
  background: #f1ddca;
  color: #794932;
}

.step p {
  color: var(--muted);
}

.whole-person {
  position: relative;
  background:
    linear-gradient(120deg, rgba(53, 38, 30, 0.74), rgba(53, 38, 30, 0.52)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(201, 174, 154, 0.37);
  border-bottom: 1px solid rgba(201, 174, 154, 0.37);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.whole-person-panel {
  color: #fffaf3;
}

.whole-person-panel .eyebrow {
  color: #ffd7bb;
}

.whole-person-panel p {
  color: rgba(255, 247, 236, 0.9);
  font-size: 1.2rem;
  line-height: 1.72;
}

.info-card {
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(255, 235, 217, 0.9);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(29, 18, 12, 0.2);
}

.info-card li {
  padding: 0.62rem 0;
  border-bottom: 1px dashed #ddc2ab;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
}

.expect-list {
  margin-top: 2rem;
  border-top: 1px solid #d8bfab;
}

.expect-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid #d8bfab;
  align-items: start;
}

.expect-section .eyebrow {
  font-size: 0.88rem;
}

.expect-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.92rem;
  color: #7f5038;
  padding-top: 0.3rem;
}

.expect-item p {
  color: var(--muted);
}

.expect-item h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.expect-item > div p {
  font-size: 1.14rem;
  line-height: 1.7;
}

.section-cta {
  background: var(--surface-2);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.cta-copy {
  font-size: 1.18rem;
  line-height: 1.7;
}

.small-contact {
  font-size: 1.02rem;
  margin-top: 0.35rem;
}

.small-contact a {
  color: #8b5136;
  font-weight: 600;
}

.scheduler-shell {
  min-height: 380px;
  background: repeating-linear-gradient(
      -45deg,
      rgba(197, 116, 78, 0.06),
      rgba(197, 116, 78, 0.06) 12px,
      rgba(255, 255, 255, 0.84) 12px,
      rgba(255, 255, 255, 0.84) 24px
    ),
    var(--surface);
  border: 1px solid rgba(203, 151, 121, 0.45);
  border-radius: var(--radius-md);
  display: block;
  text-align: left;
  padding: 0.55rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.small {
  font-size: 0.93rem;
  color: var(--muted);
}

.scheduler-shell .calendly-inline-widget {
  width: 100%;
  min-width: 320px !important;
  height: clamp(460px, 62vh, 620px) !important;
  border-radius: 12px;
  overflow: hidden;
  background: #fffefc;
}

.scheduler-shell .calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0 !important;
  border-radius: 12px;
}

.site-footer {
  padding: 2rem 0 2.2rem;
  border-top: 1px solid rgba(181, 148, 124, 0.35);
  background: #f6eee5;
}

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

.footer-logo {
  min-width: 90px;
  padding: 0;
  color: #8a5f48;
  font-weight: 600;
}

.footer-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: #7a4f38;
  font-weight: 600;
  text-decoration-color: rgba(122, 79, 56, 0.45);
}

.site-footer a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 980px) {
  .about-grid,
  .split,
  .cta-wrap,
  .steps,
  .expect-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4.1rem 0 3rem;
  }

  .hero-inner {
    margin-left: 0;
  }

  .about-photo {
    min-height: 400px;
    margin-left: 0;
    margin-right: 0;
  }

  .about-content {
    padding-left: 0;
  }

  .expect-item {
    gap: 0.4rem;
  }

  .scheduler-shell {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1120px, calc(100% - 2rem));
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 0.75rem;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .button {
    padding: 0.62rem 1rem;
    font-size: 0.91rem;
  }

  h1 {
    font-size: clamp(2rem, 9.2vw, 2.7rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.5rem, 7.2vw, 2.15rem);
  }

  p {
    font-size: 1rem;
  }

  .hero {
    padding: 3.6rem 0 2.9rem;
    min-height: 78vh;
    display: flex;
    align-items: center;
  }

  .hero::before {
    inset: 0;
    border-radius: 0;
  }

  .hero-inner {
    max-width: 32rem;
    margin: 0 auto;
    padding: 0 0.55rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .lead {
    font-size: 1.08rem;
    max-width: 32ch;
    margin: 0 auto 1rem;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: block;
  }

  .hero-actions {
    margin-top: 1.55rem;
    justify-content: center;
  }

  .hero-actions .button {
    min-width: 240px;
    padding: 0.9rem 1.35rem;
    font-size: 1.02rem;
    font-weight: 700;
  }

  .section {
    padding: 3rem 0;
  }

  .about-photo {
    min-height: 390px;
    background-position: center 24%;
  }

  .about-grid {
    gap: 1.2rem;
  }

  .about-content p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .steps {
    margin-top: 1.3rem;
    gap: 0.9rem;
  }

  .step {
    padding: 1.05rem 0.95rem;
  }

  .split {
    gap: 1rem;
  }

  .info-card {
    padding: 1.05rem 0.95rem;
  }

  .whole-person-panel p {
    font-size: 1.08rem;
    line-height: 1.68;
  }

  .info-card h3 {
    font-size: 1.24rem;
  }

  .info-card li {
    font-size: 1.04rem;
  }

  .expect-item {
    border-bottom: 1px solid #d8bfab;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.95rem 0;
    gap: 0.35rem;
  }

  .expect-section .eyebrow {
    font-size: 0.82rem;
  }

  .expect-kicker {
    font-size: 0.86rem;
  }

  .expect-item h3 {
    font-size: 1.26rem;
  }

  .expect-item > div p {
    font-size: 1.05rem;
    line-height: 1.66;
  }

  .expect-list {
    margin-top: 1.3rem;
    border-top: 1px solid #d8bfab;
  }

  .section-cta {
    padding-top: 3rem;
  }

  .cta-copy {
    font-size: 1.08rem;
  }

  .scheduler-shell {
    min-height: 260px;
    padding: 0.4rem;
  }

  .scheduler-shell .calendly-inline-widget {
    height: min(58vh, 520px) !important;
  }

  .site-footer {
    padding: 1.7rem 0 1.8rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
