:root {
  --bg: #f2ede3;
  --surface: #fbf8f2;
  --paper: #fffdf9;
  --ink: #1f2834;
  --ink-soft: #495565;
  --line: #d7ccbc;
  --accent: #8b6b3d;
  --accent-deep: #6e542f;
  --shadow: 0 18px 45px rgba(31, 40, 52, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% 4%, #f8f3ea 0, transparent 34%),
    radial-gradient(circle at 92% 16%, #ece3d3 0, transparent 28%),
    linear-gradient(135deg, #f1ebdf 0%, #f8f5ee 48%, #efe7d9 100%);
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(860px, 92vw);
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background: rgba(251, 248, 242, 0.82);
  border-bottom: 1px solid rgba(139, 107, 61, 0.15);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-mark {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.35rem;
  display: inline-block;
  object-fit: cover;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  font-size: clamp(1.06rem, 1.9vw, 1.22rem);
  color: var(--ink-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 4.8vw, 4rem);
  align-items: center;
}

.hero-cta-row {
  margin: 1.8rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.topbar-cta {
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
}

.hero-points {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
}

.hero-points li::before {
  content: "•";
  margin-right: 0.6rem;
  color: var(--accent);
}

.statement {
  background: rgba(255, 253, 249, 0.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-header {
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card .image-placeholder {
  margin-bottom: 1rem;
}

.card .image-frame {
  margin-bottom: 1rem;
}

.process {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.6) 0%, rgba(241, 235, 223, 0.6) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.2rem;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

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

.process-icon-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.7);
  padding: 0.7rem 0.6rem 0.6rem;
  text-align: center;
}

.process-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  color: #6e542f;
}

.process-icon svg {
  width: 100%;
  height: 100%;
}

.process-icon-item p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--paper);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.steps span {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--line);
}

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

.coach {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
}

.coach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.6rem;
  align-items: center;
}

.coach-photo {
  min-height: 430px;
}

.booking {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.75);
}

.booking-header {
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.calendly-inline-widget {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  padding: 0.86rem 1.26rem;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 10px 28px rgba(110, 84, 47, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(140deg, #9b7846 0%, #775b33 100%);
}

.btn-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(139, 107, 61, 0.55);
}

.btn-secondary:hover {
  background: rgba(139, 107, 61, 0.09);
}

.text-link {
  color: var(--accent-deep);
  text-underline-offset: 0.18rem;
}

.text-link:hover {
  color: #584423;
}

.image-placeholder {
  min-height: 220px;
  border: 1.5px dashed rgba(139, 107, 61, 0.45);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 241, 230, 0.8)),
    repeating-linear-gradient(
      45deg,
      rgba(139, 107, 61, 0.04),
      rgba(139, 107, 61, 0.04) 10px,
      rgba(139, 107, 61, 0.02) 10px,
      rgba(139, 107, 61, 0.02) 20px
    );
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.2rem;
}

.image-placeholder p {
  margin: 0;
  font-weight: 700;
  color: #6d5230;
}

.image-placeholder span {
  color: #7b6a52;
  font-size: 0.92rem;
}

.image-placeholder.tall {
  min-height: 520px;
}

.image-frame {
  min-height: 220px;
  border: 1px solid rgba(139, 107, 61, 0.25);
  border-radius: 14px;
  background: #e9e3d7;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-frame.tall {
  min-height: 520px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.82);
  padding: 2rem 0;
}

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

.muted {
  color: var(--ink-soft);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 550ms ease, transform 550ms ease;
}

@media (max-width: 980px) {
  .hero-grid,
  .process-grid,
  .privacy-grid,
  .coach-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .image-placeholder.tall,
  .image-frame.tall {
    min-height: 380px;
  }

  .process-icons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 64px;
    gap: 0.6rem;
  }

  .brand {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  .brand-mark {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .topbar-cta {
    width: auto;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.5rem 0.78rem;
    box-shadow: none;
  }
}
