/* ============================================================
   Manifesting with Ved Khatri — Global Stylesheet
   ============================================================ */

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

:root {
  --bg:          #141010;
  --surface:     #1E1818;
  --border:      #2A2222;
  --text:        #F5F0EB;
  --text-sec:    #B8AFA8;
  --text-muted:  #8A8A8A;
  --burgundy:    #D4294B;
  --gold:        #F5C542;
  --burgundy-h:  #E83D5E;
  --gold-h:      #FFD666;
  --radius-card: 14px;
  --radius-btn:  9px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans",
          "Helvetica Neue", Arial, sans-serif;
  --transition:  0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { color: var(--text-sec); }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section--bg {
  background: var(--bg);
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 4px 20px rgba(155, 45, 74, 0.3);
}
.btn--primary:hover {
  background: var(--burgundy-h);
  box-shadow: 0 6px 28px rgba(155, 45, 74, 0.45);
}

.btn--secondary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}
.btn--secondary:hover {
  background: var(--gold-h);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn--nav {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 16, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    transition: right var(--transition);
    z-index: 1050;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link {
    font-size: 1.1rem;
  }
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
}

.nav__overlay.show {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 45, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

.hero__headline {
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 36px;
  color: var(--text-sec);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero__micro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-placeholder {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--burgundy), var(--gold), var(--burgundy));
  z-index: -1;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero__photo-img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--burgundy);
  box-shadow: 0 0 40px rgba(155, 45, 74, 0.3), 0 0 80px rgba(212, 168, 67, 0.15);
}

/* Hero for inner pages (no grid) */
.hero--inner {
  text-align: center;
  padding: 100px 0 80px;
}

.hero--inner .hero__sub {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About page hero with photo grid */
.hero--about {
  text-align: left;
}

.hero__about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__about-text {
  text-align: left;
}

.hero__about-text .hero__headline {
  text-align: left;
}

.hero__about-text .hero__sub {
  margin-left: 0;
  text-align: left;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-photo {
  border-radius: var(--radius-card);
  object-fit: cover;
  width: 100%;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.about-photo:hover {
  border-color: var(--burgundy);
  transform: scale(1.02);
}

.about-photo-single {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-card);
  object-fit: cover;
  border: 2px solid var(--burgundy);
  box-shadow: 0 8px 40px rgba(155, 45, 74, 0.25);
}

.about-photo--main {
  grid-column: 1 / -1;
  height: 280px;
}

.about-photo--secondary {
  height: 200px;
}

.about-photo--tertiary {
  height: 200px;
}

@media (max-width: 900px) {
  .hero__about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__about-text .hero__headline,
  .hero__about-text .hero__sub {
    text-align: center;
  }

  .about-photo--main {
    height: 220px;
  }

  .about-photo--secondary,
  .about-photo--tertiary {
    height: 160px;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__cta-group {
    align-items: center;
  }

  .hero__photo-placeholder {
    width: 260px;
    height: 260px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero--inner {
    padding: 80px 0 60px;
  }
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(155, 45, 74, 0.3);
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ---------- Section Headers ---------- */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- Steps / How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step {
  position: relative;
  padding-left: 0;
}

.step__number {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--burgundy);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.step__text {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ---------- Meet Ved / About Section ---------- */
.meet {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.meet__photo {
  display: flex;
  justify-content: center;
}

.meet__photo-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.meet__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.meet__photo-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 2px solid var(--burgundy);
  box-shadow: 0 8px 40px rgba(155, 45, 74, 0.25);
}

.meet__content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.meet__content .btn {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .meet {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .meet__photo {
    order: -1;
  }

  .meet__photo-placeholder {
    max-width: 280px;
    margin: 0 auto;
  }

  .meet__content .btn {
    margin: 12px auto 0;
  }
}

/* ---------- Bottom CTA ---------- */
.bottom-cta {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(155, 45, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bottom-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.bottom-cta h2 {
  margin-bottom: 20px;
}

.bottom-cta p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.bottom-cta .btn {
  margin-top: 24px;
}

.bottom-cta__fine {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.footer__logo span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-sec);
  padding: 5px 0;
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer__social a {
  color: var(--text-sec);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Story / Long Content ---------- */
.story {
  max-width: 750px;
  margin: 0 auto;
}

.story p {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.story p:first-child::first-letter {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 4px;
}

/* ---------- Approach Cards ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.approach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  transition: border-color var(--transition), transform var(--transition);
}

.approach-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.approach-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.approach-card__text {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ---------- Why Me ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 28px 24px 28px 44px;
  border-left: 3px solid var(--burgundy);
  background: var(--surface);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ---------- Services: What You Get ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color var(--transition), transform var(--transition);
}

.feature:hover {
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-3px);
}

.feature__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.feature__text {
  font-size: 0.9rem;
  color: var(--text-sec);
}

/* ---------- Investment / Pricing ---------- */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.pricing-card__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pricing-card__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__desc {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), border-color var(--transition);
  color: var(--text-sec);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ---------- Booking Page ---------- */
.booking-expect {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.booking-expect__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
}

.booking-expect__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--gold);
  line-height: 1.3;
}

.booking-expect__text {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.booking-embed {
  max-width: 720px;
  margin: 0 auto 60px;
}

.booking-embed__placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
}

.booking-embed__placeholder p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.booking-embed__placeholder small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-direct {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.booking-direct p {
  margin-bottom: 10px;
}

.booking-direct a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.booking-direct a:hover {
  color: var(--gold-h);
}

.booking-note {
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Section Closer (text + CTA combo) ---------- */
.section-closer {
  text-align: center;
  margin-top: 50px;
}

.section-closer p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}

/* ---------- Services: Coaching Offer Text ---------- */
.offer-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.offer-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---------- Conversation Section ---------- */
.conversation-section {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.conversation-section p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ---------- Misc Utility ---------- */
.mb-0  { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ---------- Responsive Fine Tuning ---------- */
@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 18px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 40px 24px;
  }

  .btn {
    padding: 13px 26px;
    font-size: 0.95rem;
  }

  .booking-embed__placeholder {
    padding: 50px 24px;
  }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .bottom-cta { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}
