@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* :root {
  --ink: #5A4E44;
  --muted: #887B6E;
  --cream: #FAF5E9;
  --paper: #FFFDF8;
  --sage: #F1E6CE;
  --sage-deep: #B39770;
  --terracotta: #E3C38F;
  --terracotta-dark: #A88A68;
  --line: #E4D8C7;
  --white: #FFFFFF;
  --shadow: 0 22px 60px rgba(90, 78, 68, .09);
  --radius: 24px;
  --max: 1180px;
} */

:root {
  --ink: #4B4038;
  --muted: #81766D;

  --cream: #FAF6EE;
  --paper: #FFFDF8;

  --sage: #EFE5D2;
  --sage-deep: #A28B70;

  --terracotta: #D9B47C;
  --terracotta-dark: #9A7650;

  --line: #E4D8C7;
  --white: #FFFFFF;

  --shadow: 0 22px 60px rgba(75, 64, 56, .09);

  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip
}

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

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.serif {
  font-family: "Cormorant Garamond", serif
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--terracotta-dark)
}

.eyebrow:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor
}

.display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .93;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 0
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-bottom: 18px
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px
}

.section {
  padding: 105px 0
}

.section.compact {
  padding: 82px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer
}

.btn-primary {
  background: var(--ink);
  color: white
}

.btn-primary:hover {
  background: #8A7459;
  transform: translateY(-2px)
}

.btn-outline {
  border-color: rgba(90, 78, 68, .22);
  background: transparent
}

.btn-outline:hover {
  background: var(--white);
  transform: translateY(-2px)
}

.btn-terra {
  background: var(--terracotta);
  color: #fff
}

.btn-terra:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px)
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: .3s
}

.site-header.scrolled {
  background: rgba(247, 243, 236, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 216, 205, .8)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.02em
}

.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #756A5D
}

.navlinks a {
  position: relative;
  padding: 8px 0
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--terracotta);
  transition: .25s
}

.navlinks a:hover:after,
.navlinks a.active:after {
  right: 0
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 27px;
  color: var(--ink);
  cursor: pointer
}

.mobile-menu {
  display: none
}

.hero {
  padding: 155px 0 90px;
  position: relative;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -240px;
  top: 60px;
  background: var(--sage);
  border-radius: 50%;
  opacity: .7
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: auto
}

.hero-copy {
  padding: 25px 12px 0;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word
}

.hero-copy .eyebrow {
  margin-bottom: 22px
}

.hero-copy .display {
  max-width: 730px;
  width: 100%;
  overflow-wrap: break-word
}

.hero-copy .display em {
  color: var(--terracotta-dark);
  font-style: normal
}

.hero-copy .lead {
  margin: 28px 0 30px;
  max-width: 100%;
  overflow-wrap: break-word
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  font-size: 12px;
  color: var(--muted)
}

.hero-note span {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%
}

.hero-visual {
  position: relative;
  min-height: 525px;
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start
}

.hero-photo-main {
  position: absolute;
  width: 72%;
  height: 500px;
  right: 0;
  top: 20px;
  object-fit: cover;
  border-radius: 160px 160px 26px 26px;
  box-shadow: var(--shadow)
}

.hero-photo-small {
  position: absolute;
  width: 190px;
  height: 245px;
  left: 0;
  bottom: 10px;
  object-fit: cover;
  border-radius: 100px 100px 24px 24px;
  border: 10px solid var(--cream);
  box-shadow: var(--shadow)
}

/* Logo circle */
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;

  left: 58px;
  bottom: -45px;

  width: 145px;
  height: 145px;

  background: rgba(255, 253, 249, 0.95);
  border-radius: 50%;

  box-shadow: 0 6px 18px rgba(90, 78, 68, 0.10);

  border: 1px solid rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(6px);
}


/* Actual logo */
.hero-logo-replacement {
  position: absolute;
  z-index: 3;

  left: 58px;
  bottom: -45px;

  width: 145px;
  height: 145px;

  object-fit: contain;

  padding: 0;

  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

  /*
   * Zoom the logo artwork without
   * making the white circle bigger.
   */
  transform: scale(1.32);
}



.hero-badge {
  position: absolute;
  left: 35%;
  bottom: 34px;
  background: rgba(255, 253, 249, .93);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 230px
}

.hero-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.05
}

.hero-badge small {
  color: var(--muted);
  font-size: 11px
}

.mandala {
  position: absolute;
  opacity: .13;
  pointer-events: none
}

.mandala.one {
  width: 430px;
  left: -250px;
  top: 170px
}

.mandala.two {
  width: 480px;
  right: -260px;
  bottom: -120px;
  transform: rotate(25deg)
}

.intro {
  background: var(--paper)
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: start
}

.intro h2 {
  max-width: 430px
}

.intro-copy {
  font-size: 18px;
  color: var(--muted)
}

.quote {
  margin-top: 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.2;
  color: var(--ink)
}

.pillars {
  background: var(--sage)
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 45px
}

.section-head .lead {
  max-width: 480px
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.pillar {
  background: rgba(255, 253, 249, .65);
  border: 1px solid rgba(179, 151, 112, .20);
  border-radius: 20px;
  padding: 24px 20px;
  min-height: 225px;
  transition: .25s
}

.pillar:hover {
  transform: translateY(-5px);
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(90, 78, 68, .07)
}

.pillar-num {
  font-size: 11px;
  color: var(--terracotta-dark);
  font-weight: 700;
  letter-spacing: .1em
}

.pillar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  line-height: 1;
  margin: 40px 0 12px
}

.pillar p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.services {
  background: var(--paper)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.service {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  min-height: 200px;
  transition: .25s
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c9c0b2
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 26px
}

.service h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 9px
}

.service p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.aba {
  background: #F1E6CE;
  color: #fff;
  position: relative;
  overflow: hidden
}

.aba .eyebrow {
  color: #d9a273
}

.aba .lead {
  color: #756A5D
}

.aba-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center
}

.aba h2 {
  max-width: 560px
}

.aba-card {
  background: #F5EBDC;
  border: 1px solid rgba(90, 78, 68, .12);
  border-radius: 26px;
  padding: 32px
}

.aba-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(90, 78, 68, .12)
}

.aba-item:last-child {
  border-bottom: 0
}

.aba-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E9D9BA;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700
}

.aba-item h3 {
  font-size: 16px;
  margin-bottom: 5px
}

.aba-item p {
  font-size: 13px;
  color: #817466;
  margin: 0
}

.founder {
  background: var(--cream)
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 85px;
  align-items: center
}

.founder-photo-wrap {
  position: relative;
  padding: 0 30px 30px 0
}

.founder-photo-wrap:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 88%;
  background: var(--sage);
  border-radius: 30px;
  z-index: 0
}

.founder-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 24px
}

.founder-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 25px;
  background: var(--paper);
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: var(--shadow)
}

.founder-caption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px
}

.founder-caption span {
  font-size: 11px;
  color: var(--muted)
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 28px 0
}

.check {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted)
}

.check b {
  color: var(--terracotta)
}

.stories {
  background: var(--paper)
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.story {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease
}

.story-image {
  height: 210px;
  overflow: hidden;
  background: #EEE6D8
}

.story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: none;
  transform: scale(1.10)
}

.story:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(90, 78, 68, .08)
}

.story-body {
  padding: 23px
}

.story-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.05;
  margin-bottom: 11px
}

.story-body p {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0
}

.testimonials {
  background: var(--sage)
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.testimonial {
  background: rgba(255, 253, 249, .8);
  border: 1px solid rgba(179, 151, 112, .18);
  border-radius: 20px;
  padding: 28px
}

.stars {
  color: var(--terracotta);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 18px
}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 25px
}

.testimonial small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em
}

.cta {
  background: #EAD5B5;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta h2 {
  max-width: 760px;
  margin: 0 auto 18px
}

.cta p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: #7B6B5B
}

.cta .btn {
  background: #fff;
  color: var(--ink)
}

.cta .mandala {
  opacity: .10;
  right: -130px;
  top: -180px;
  width: 500px
}

.page-hero {
  padding: 155px 0 75px;
  background: var(--sage);
  position: relative;
  overflow: hidden
}

.page-hero .display {
  max-width: 850px
}

.page-hero p {
  max-width: 680px;
  color: #817466;
  font-size: 18px;
  margin-top: 22px
}

.page-content {
  background: var(--paper)
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 85px
}

.about-story .sticky {
  position: sticky;
  top: 120px;
  height: max-content
}

.approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px
}

.tag {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  color: var(--muted)
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.practice {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600
}

.quote-block {
  padding: 45px;
  border-radius: 24px;
  background: #F1E6CE;
  color: white;
  margin-top: 45px
}

.quote-block p {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 15px
}

.quote-block small {
  color: #817466
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: start
}

.contact-info {
  padding-top: 15px
}

.contact-info h1 {
  margin-bottom: 22px
}

.contact-details {
  margin-top: 40px
}

/* .contact-row {
  display: flex;
   grid-template-columns: 24px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
} */

.contact-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 15px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row > div:first-child {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
  font-size: 20px;
}

.contact-row > div:first-child svg {
  width: 24px;
  height: 24px;
  display: block;
  transform: translateX(-2px);
}

.contact-row strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 3px
}

.contact-row span {
  font-size: 14px
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 35px;
  box-shadow: var(--shadow)
}

.form-card h2 {
  font-size: 45px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--muted)
}

.field input,
.field textarea {
  border: 1px solid #DCCFBE;
  background: var(--cream);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  transition: .2s
}

.field textarea {
  min-height: 125px;
  resize: vertical
}

.field input:focus,
.field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 111, 77, .10)
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin: 13px 0 0
}

.status {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600
}

.site-footer {
  background: #EEE4D2;
  color: #5A4E44;
  padding: 65px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 50px;
  padding-bottom: 50px
}

.footer-brand .brand span {
  color: white
}

.footer-brand p {
  max-width: 380px;
  color: #8B7D70;
  font-size: 13px
}

.footer-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8B7D70;
  margin-bottom: 16px;
  font-weight: 700
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 13px
}

.footer-links a:hover {
  color: white
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(90, 78, 68, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8B7D70;
  font-size: 11px
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s cubic-bezier(.16, 1, .3, 1)
}

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

.delay-1 {
  transition-delay: .08s
}

.delay-2 {
  transition-delay: .16s
}

.delay-3 {
  transition-delay: .24s
}

@media(max-width:1050px) {
  .navlinks {
    gap: 18px
  }

  .hero-grid,
  .founder-grid,
  .aba-grid {
    gap: 45px
  }

  .pillar-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .pillar:nth-child(4),
  .pillar:nth-child(5) {
    grid-column: span 1
  }
}

@media(max-width:900px) {
  .container {
    width: min(var(--max), calc(100% - 28px))
  }

  .navlinks,
  .nav-cta .btn-outline {
    display: none
  }

  .menu-btn {
    display: block
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 14px auto;
    background: rgba(255, 253, 249, .98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow)
  }

  .mobile-menu.open {
    display: grid;
    gap: 4px
  }

  .mobile-menu a {
    padding: 13px;
    border-radius: 10px;
    font-weight: 600
  }

  .mobile-menu a:hover {
    background: var(--sage)
  }

  .mobile-menu .btn {
    margin-top: 8px
  }

  .hero {
    padding-top: 120px
  }

  .hero-grid,
  .intro-grid,
  .aba-grid,
  .founder-grid,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 15px
  }

  .hero-photo-main {
    width: 76%;
    height: 430px
  }

  .hero-photo-small {
    width: 160px;
    height: 205px
  }

  .section-head {
    display: block
  }

  .section-head .lead {
    margin-top: 14px
  }

  .service-grid,
  .story-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr
  }

  .practice-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-story .sticky {
    position: static
  }
}
/* ================================
   Antar Yatra Book
   ================================ */

.book-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;

  padding: 55px;
  background: #F3E8D7;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.book-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-image {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  border-radius: 6px;

  box-shadow:
    0 18px 45px rgba(70, 55, 40, 0.16);
}

.book-content {
  max-width: 650px;
}

.book-content h2 {
  margin: 12px 0 20px;
}

.book-intro {
  font-size: 19px;
  line-height: 1.7;
}

.book-content p {
  line-height: 1.75;
}

.book-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid var(--line);
}

.book-label {
  display: block;
  margin-bottom: 4px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: var(--muted);
}

.book-price {
  display: block;
  font-size: 30px;
  line-height: 1.2;
}

.book-note {
  margin-top: 18px;
  margin-bottom: 0;

  font-size: 13px;
  color: var(--muted);
}


/* Mobile */
@media (max-width: 800px) {

  .book-section {
    padding-top: 20px;
    padding-bottom: 70px;
  }

  .book-card {
    grid-template-columns: 1fr;
    gap: 40px;

    padding: 30px 24px;
  }

  .book-image {
    max-width: 320px;
  }

  .book-content {
    max-width: none;
  }

  .book-intro {
    font-size: 17px;
  }

  .book-purchase {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-purchase .btn {
    width: 100%;
    text-align: center;
  }
}

@media(max-width:560px) {
  .container {
    width: calc(100% - 24px)
  }

  .section {
    padding: 75px 0
  }

  .hero {
    padding-bottom: 65px
  }

  .display {
    font-size: 54px
  }

  h2 {
    font-size: 43px
  }

  .hero-visual {
    min-height: 400px
  }

  .hero-photo-main {
    height: 360px;
    width: 78%;
    border-radius: 100px 100px 18px 18px
  }

  .hero-logo-replacement {
    left: 12px;
    bottom: 10px;
    width: 105px;
    height: 105px
  }

  .story-image {
    height: 225px
  }

  .hero-badge {
    left: 25%;
    bottom: 15px;
    padding: 13px 15px
  }

  .hero-badge strong {
    font-size: 21px
  }

  .pillar-grid,
  .service-grid,
  .story-grid,
  .testimonial-grid,
  .practice-grid {
    grid-template-columns: 1fr
  }

  .pillar {
    min-height: 190px
  }

  .pillar h3 {
    margin-top: 25px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .form-card {
    padding: 24px
  }

  .form-card h2 {
    font-size: 39px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 7px
  }

  .checklist {
    grid-template-columns: 1fr
  }
}

.contact-icon,
.social-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.contact-icon svg,
.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Final overflow guard for decorative/positioned elements on all viewport sizes. */
html,
body {
  max-width: 100%;
  overflow-x: clip
}

.mandala {
  max-width: none
}

.hero:before {
  pointer-events: none
}

/* =========================================================
   Sattva Samruddhi — Warm Neutral Theme
   Beige · Butter Yellow · Soft Tan · Pale Apricot
   ========================================================= */

body {
  background: var(--cream);
  color: var(--ink);
}

.site-header.scrolled {
  background: rgba(250, 245, 233, .92);
  border-bottom-color: rgba(228, 216, 199, .85);
}

.navlinks { color: #756A5D; }
.navlinks a:after { background: var(--terracotta); }

.btn-primary {
  background: #B39770;
  color: #FFFDF8;
}
.btn-primary:hover { background: #A88A68; }

.btn-outline {
  border-color: #CDBEA9;
  color: var(--ink);
}
.btn-outline:hover { background: var(--paper); }

.btn-terra {
  background: #E3C38F;
  color: var(--ink);
}
.btn-terra:hover { background: #D5B57F; }

.hero:before { background: #F1E6CE; }

.pillars,
.testimonials,
.page-hero { background: #F1E6CE; }

.pillar {
  border-color: #E2D4BF;
  background: rgba(255, 253, 248, .72);
}
.pillar:hover {
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(90, 78, 68, .07);
}

.service-icon {
  background: #EADBBE;
  color: #A88A68;
}
.service:hover { border-color: #D3C4AE; }

.aba {
  background: #F1E6CE;
  color: var(--ink);
}
.aba .eyebrow { color: #A88A68; }
.aba .lead,
.aba-item p { color: #756A5D; }

.aba-card {
  background: #F7EDDF;
  border-color: #DDCFBA;
}
.aba-item { border-bottom-color: #E0D3C0; }
.aba-num {
  background: #E9D9BA;
  color: var(--ink);
}

.quote-block {
  background: #F1E6CE;
  color: var(--ink);
}
.quote-block small { color: #817466; }

.cta {
  background: #EAD5B5;
  color: var(--ink);
}
.cta h2,
.cta p { color: var(--ink); }
.cta .btn {
  background: #FFFDF8;
  color: var(--ink);
  border: 1px solid #D2C0A5;
}

.site-footer {
  background: #EEE4D2;
  color: var(--ink);
}
.footer-brand .brand span,
.footer-title,
.footer-links,
.footer-links a { color: var(--ink); }
.footer-brand p,
.footer-bottom { color: #817466; }
.footer-bottom { border-top-color: #D8CBB9; }

.story,
.service,
.testimonial { background: #FFFDF8; }

.testimonial-grid .testimonial { border-color: #E2D4BF; }
.stars { color: #B39770; }

.tag {
  background: #FFFDF8;
  border-color: #E2D4BF;
}
.practice {
  background: #F6ECDD;
  border-color: #E2D4BF;
}
/* =========================================
   TESTIMONIAL CAROUSEL
   MANUAL ARROW NAVIGATION ONLY
   ========================================= */

.testimonial-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.testimonial-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;

  /* IMPORTANT:
     Do not allow the browser to scroll this automatically */
  overflow: hidden;

  /* No scroll snap */
  scroll-snap-type: none;

  /* No CSS scrolling animation */
  scroll-behavior: auto;
}

.testimonial-track .testimonial {
  flex: 0 0 calc((100% - 44px) / 3);

  min-width: 0;
  box-sizing: border-box;
}


/* =========================================
   ARROWS
   ========================================= */

.testimonial-arrow {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: var(--surface);
  color: var(--text);

  font-size: 19px;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.testimonial-arrow:hover {
  background: var(--surface-2);
  border-color: var(--brown);
}

.testimonial-arrow:active {
  transform: scale(0.96);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

  .testimonial-track .testimonial {
    flex: 0 0 calc((100% - 22px) / 2);
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

  .testimonial-slider {
    gap: 10px;
  }

  .testimonial-track {
    gap: 16px;
  }

  .testimonial-track .testimonial {
    flex: 0 0 100%;
  }

  .testimonial-arrow {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    font-size: 16px;
  }

}
/* =========================================
   LEAVE A REVIEW
   ========================================= */

.leave-review {
  width: 100%;
  max-width: 620px;
  margin: 32px auto 0;
  padding: 10px 20px;

  box-sizing: border-box;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.leave-review p {
  margin: 0;
  max-width: 500px;

  font-size: 16px;
  line-height: 1.5;
}

.leave-review .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

  .leave-review {
    margin-top: 26px;
    padding: 5px 16px;
    gap: 12px;
  }

  .leave-review p {
    font-size: 15px;
  }

}