/* ==========================================================================
   Mind Your Mind Space
   All styling lives in this one file.
   Colours are defined once, at the top. Change them there and the whole
   site updates.
   ========================================================================== */

:root {
  --cream:      #F2EFE7;   /* main page background */
  --cream-deep: #EAE6DA;   /* slightly darker cream panel */
  --mint:       #E6F0EB;   /* pale green panel */
  --teal:       #1F6E5B;   /* the brand green */
  --teal-hover: #175547;
  --clay:       #BE7A52;   /* light, warmth, the person - used in 4 icons only */
  --teal-lift:  #4E9E88;   /* teal that still reads on a dark background */
  --mint-italic:#B9D9CE;   /* italic highlight on dark backgrounds */
  --dark:       #1B1B19;   /* near-black sections */
  --ink:        #1A1A18;   /* body text on light */
  --ink-soft:   #56564F;
  --ink-faint:  #86867E;
  --on-dark:    #F2EFE7;
  --on-dark-soft:#C2C2B9;
  --rule:       #D9D4C6;
  --maxw:       1300px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.005em;
  margin: 0 0 26px;
}

/* Cormorant Garamond has a small x-height and fine strokes, so everything
   is set a little larger and a touch heavier than a normal serif would be. */
h1 { font-size: clamp(3rem, 5.9vw, 5.1rem); line-height: 1.06; }
h2 { font-size: clamp(2.3rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.85rem, 2.8vw, 2.5rem); margin-bottom: 10px; }
h4 { font-size: 1.5rem; margin-bottom: 14px; font-weight: 500; }

p { margin: 0 0 22px; }
p:last-child { margin-bottom: 0; }

.lead  { font-size: 1.05rem; color: var(--ink-soft); max-width: 46ch; }
.big   { font-size: 1.25rem; line-height: 1.6; max-width: 40ch; }
.soft  { color: var(--ink-soft); }
.serif { font-family: "Cormorant Garamond", Garamond, Georgia, serif; }

em, .em { font-style: italic; color: var(--teal); }

.eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin: 0 0 22px;
  line-height: 1.6;
}

/* Anything sitting on a dark panel */
.on-dark            { color: var(--on-dark); }
.on-dark h1,
.on-dark h2,
.on-dark h3         { color: var(--on-dark); }
.on-dark p          { color: var(--on-dark-soft); }
.on-dark .eyebrow   { color: var(--teal-lift); }
.on-dark em,
.on-dark .em        { color: var(--mint-italic); }

/* --------------------------------------------------------------------------
   Buttons — square corners, not pills
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 17px 30px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-solid   { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-solid:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-light   { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-light:hover { background: #fff; color: var(--teal); border-color: #fff; }

.btn-caps { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

/* --------------------------------------------------------------------------
   Shell
   -------------------------------------------------------------------------- */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 56px); }
.wrap.narrow { max-width: 860px; }

.pad-y      { padding: clamp(72px, 9vw, 130px) 0; }
.pad-y-sm   { padding: clamp(52px, 6vw, 88px) 0; }

.bg-cream { background: var(--cream); }
.bg-deep  { background: var(--cream-deep); }
.bg-mint  { background: var(--mint); }
.bg-dark  { background: var(--dark); }

.rule-top { border-top: 1px solid var(--teal); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header { background: var(--cream); }

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px clamp(24px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.brand {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color .18s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-links .btn {
  color: var(--teal);
  border-color: var(--teal);
  padding: 14px 26px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links .btn:hover { background: var(--teal); color: #fff; }

/* Hamburger + the secondary links inside the mobile menu.
   Both are invisible on desktop. */
.nav-toggle { display: none; }
.menu-extra { display: none; }


/* --------------------------------------------------------------------------
   Mobile menu

   Below 760px the nav becomes a full-screen sheet. The point is that when
   it's open there is nothing else on screen - no background showing through,
   no page scrolling behind it, and targets big enough not to aim for.
   -------------------------------------------------------------------------- */

@media (max-width: 760px) {

  .nav { padding: 16px 20px; gap: 0; justify-content: space-between; }
  .brand { font-size: 1.3rem; }

  .nav-toggle {
    display: grid; gap: 5px;
    background: none; border: 0; padding: 8px; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--ink);
    transition: transform .22s ease, opacity .18s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Header pins itself only while the menu is open, so the close button
     stays reachable no matter how far down the page you were. */
  body.menu-open .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  }

  .nav-links {
    position: fixed; inset: 0; z-index: 60;
    background: var(--cream);
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 84px 26px 30px;
    gap: 0;
    overflow-y: auto;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .28s ease, visibility 0s linear .28s;
  }
  .nav-links.is-open {
    transform: none;
    visibility: visible;
    transition: transform .28s ease, visibility 0s;
  }

  .nav-links a {
    font-family: "Cormorant Garamond", Garamond, Georgia, serif;
    font-size: 1.95rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    padding: 11px 0;
    width: 100%;
  }
  .nav-links a[aria-current="page"] { color: var(--teal); }

  .nav-links .btn,
  .nav-links .btn:hover {
    font-family: "DM Sans", sans-serif;
    background: var(--teal); color: #fff; border: 1px solid var(--teal);
    font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
    padding: 17px 24px; margin-top: 28px;
    width: 100%; text-align: center;
  }

  .menu-extra {
    display: flex; flex-wrap: wrap; gap: 6px 22px;
    margin-top: auto; padding-top: 26px;
    border-top: 1px solid var(--rule); width: 100%;
  }
  .menu-extra a {
    font-family: "DM Sans", sans-serif;
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-faint); padding: 5px 0; width: auto;
  }

  body.menu-open { overflow: hidden; }
}

/* Footer: two columns on a phone, roughly halving its height. */
@media (max-width: 620px) {
  .foot-nav   { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; }
  .foot-legal { gap: 6px 14px; margin-top: 18px; }
  .site-footer { padding: 40px 0 36px; }
  .site-footer .right { margin-top: 22px; }
}

/* --------------------------------------------------------------------------
   Split hero — text one side, full-bleed image the other
   -------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }

.split .content {
  padding: clamp(64px, 7vw, 112px) clamp(28px, 5vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.split .content > * { max-width: 660px; }

.split .media { position: relative; min-height: 340px; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }

/* Version where the image is inset rather than bleeding to the edge */
.split-inset { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 56px); gap: clamp(36px, 5vw, 80px); }
.split-inset .content { padding: clamp(56px, 6vw, 96px) 0; }

/* --------------------------------------------------------------------------
   Duo — two full-bleed panels side by side, each with its own background
   -------------------------------------------------------------------------- */

.duo { display: grid; grid-template-columns: 1fr 1fr; }

.duo .panel { padding: clamp(52px, 6vw, 96px) clamp(28px, 5vw, 88px); }
.duo .panel > * { max-width: 620px; }

.duo .panel.on-teal { background: var(--teal); }
.duo .panel.on-teal h2,
.duo .panel.on-teal h3 { color: #fff; }
.duo .panel.on-teal p  { color: rgba(255,255,255,.86); }

/* --------------------------------------------------------------------------
   Arrow lists (services overview)
   -------------------------------------------------------------------------- */

ul.arrows { list-style: none; margin: 34px 0 34px; padding: 0; }
ul.arrows li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1rem;
}
ul.arrows li:first-child { border-top: 1px solid var(--rule); }
ul.arrows li::before {
  content: "→"; position: absolute; left: 0; top: 14px; color: var(--teal);
}

.price-line { font-size: 0.98rem; color: var(--ink-soft); margin-bottom: 30px; }
.price-line strong { color: var(--ink); font-weight: 500; }

/* --------------------------------------------------------------------------
   Service rows (individual / business pages)
   -------------------------------------------------------------------------- */

.service {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
  padding: clamp(56px, 6vw, 100px) 0;
  border-top: 1px solid var(--teal);
}

.duration { color: var(--ink-faint); font-size: 1rem; margin: 0 0 26px; }

.goodfor { margin-top: 34px; }
.goodfor .eyebrow { margin-bottom: 12px; }
.goodfor p { color: var(--ink-faint); max-width: 46ch; }

.pricecard {
  background: var(--mint);
  border: 1px solid rgba(31,110,91,.28);
  padding: clamp(34px, 3.5vw, 52px);
}
.pricecard .price {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  color: var(--teal);
  margin: 0 0 30px;
  line-height: 1.1;
}
.pricecard .price small {
  display: block; font-family: "DM Sans", sans-serif;
  font-size: 0.95rem; color: var(--ink-soft); margin-top: 6px;
}

ul.checklist { list-style: none; margin: 0 0 34px; padding: 0; }
ul.checklist li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid rgba(31,110,91,.2);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.5;
}
ul.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 15px; color: var(--teal);
}

/* --------------------------------------------------------------------------
   Currency switcher
   -------------------------------------------------------------------------- */

.cur-switch {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 0 0 8px;
}
.cur-label {
  font-size: 0.73rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); margin-right: 6px;
}
.cur-btn {
  font-family: inherit;
  font-size: 0.82rem;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.cur-btn:hover { border-color: var(--teal); color: var(--teal); }
.cur-btn.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* Razorpay pay button + the note under it */
.pay-slot { margin-top: 14px; }
.pay-btn  { display: inline-block; }
.inr-note {
  font-size: 0.82rem; color: var(--ink-faint); margin: 14px 0 0; line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Insights / essay list
   -------------------------------------------------------------------------- */

.essay-list { display: grid; gap: 0; }

.essay {
  display: block;
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: opacity .18s ease;
}
.essay:last-child { border-bottom: 1px solid var(--rule); }
.essay:hover { opacity: .72; }
.essay:hover h3 { color: var(--teal); }

.essay-date {
  display: block;
  font-size: 0.73rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 14px;
}
.essay h3 { margin-bottom: 12px; max-width: 22ch; transition: color .18s ease; }
.essay p  { color: var(--ink-soft); max-width: 62ch; margin-bottom: 16px; }
.essay-more {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); font-weight: 500;
}


/* --------------------------------------------------------------------------
   Icons
   -------------------------------------------------------------------------- */

.ico {
  width: 76px; height: 76px; display: block; margin: 0 0 22px;
}
.ico-sm { width: 60px; height: 60px; margin-bottom: 16px; }
.swell  { width: 100%; max-width: 320px; height: 34px; display: block; margin: 0 0 30px; opacity: .9; }
.swell-centre { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Before / after image pair - now inset with breathing room
   -------------------------------------------------------------------------- */

.img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.img-pair img { width: 100%; height: clamp(240px, 30vw, 420px); object-fit: cover; }
.img-cap { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
           color: var(--ink-faint); margin: 14px 0 0; }

/* --------------------------------------------------------------------------
   Sticky control bar - who it's for, and what currency
   -------------------------------------------------------------------------- */

.ctrl-bar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242,239,231,.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--rule);
}
.ctrl-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 12px clamp(24px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px 24px; flex-wrap: wrap;
}

.seg { display: inline-flex; border: 1px solid var(--teal); border-radius: 2px; overflow: hidden; }
.seg a {
  padding: 11px 20px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); text-decoration: none; white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.seg a + a { border-left: 1px solid var(--teal); }
.seg a:hover { background: rgba(31,110,91,.1); }
.seg a.is-on { background: var(--teal); color: #fff; }

.ctrl-bar .cur-switch { padding: 0; }

@media (max-width: 620px) {
  .ctrl-inner { justify-content: flex-start; padding: 10px 20px; }
  .seg a { padding: 10px 14px; font-size: .7rem; }
  .cur-btn { padding: 7px 10px; font-size: .76rem; }
  .cur-label { display: none; }
}

/* --------------------------------------------------------------------------
   Quote band
   -------------------------------------------------------------------------- */

.quote-band { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.quote-band .attrib { margin-top: .55em; }
.quote-band .q {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  line-height: 1.32;
  margin: 0;
  color: var(--ink);
}
.quote-band .attrib {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--teal); line-height: 1.9; margin: 0;
}

/* Centred quote on a dark band */
.quote-centre { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-centre .q { color: var(--on-dark); }
.quote-centre .attrib { color: var(--teal-lift); margin-top: 28px; }
.quote-centre .q { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.testimonial { background: var(--cream); padding: clamp(30px, 3vw, 46px); margin: 0; }
.testimonial p { font-size: 1rem; color: var(--ink); margin-bottom: 22px; }
.testimonial .who { font-size: 0.85rem; color: var(--ink-faint); letter-spacing: 0.02em; }

/* --------------------------------------------------------------------------
   Numbered cards (home)
   -------------------------------------------------------------------------- */

.numbered { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.numbered .item { background: var(--cream); padding: clamp(34px, 3.4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; }
.numbered .num {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 1.8rem; color: var(--teal); margin-bottom: 22px;
}
.numbered .item p { color: var(--ink-soft); flex: 1; font-size: 0.99rem; }
.numbered .item a {
  margin-top: 26px; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); text-decoration: none; font-weight: 500;
}
.numbered .item a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Credentials (about)
   -------------------------------------------------------------------------- */

.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px); margin-top: 44px; }
.cred { border-top: 1px solid var(--rule); padding: 20px 0; }
.cred strong { display: block; font-weight: 500; margin-bottom: 2px; }
.cred span { font-size: 0.92rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   Full-width image band
   -------------------------------------------------------------------------- */

.band { width: 100%; height: clamp(260px, 32vw, 460px); object-fit: cover; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.updated { font-size: .8rem; color: var(--ink-faint); margin-top: 26px; }

.legal { font-size: 1rem; }
.legal h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  margin: 52px 0 14px; padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.legal h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal p  { color: var(--ink-soft); max-width: 68ch; }
.legal ul { margin: 0 0 22px; padding-left: 22px; color: var(--ink-soft); max-width: 68ch; }
.legal li { margin-bottom: 9px; }
.legal strong { color: var(--ink); font-weight: 500; }

.notice {
  margin-top: 52px; padding: 22px 26px;
  background: var(--mint); border-left: 3px solid var(--clay);
}
.notice p { margin: 0; font-size: .93rem; color: var(--ink); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--dark); color: var(--on-dark-soft); padding: clamp(48px, 6vw, 80px) 0; }
.site-footer .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 56px);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap;
}
.site-footer .brand-lg { font-family: "Cormorant Garamond", Garamond, Georgia, serif; font-size: 1.45rem; color: var(--on-dark-soft); display: block; margin-bottom: 18px; }
.site-footer .left { display: flex; flex-direction: column; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot-nav a {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #7E7E76; text-decoration: none;
}
.foot-nav a:hover { color: var(--on-dark-soft); text-decoration: none; }

.foot-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 14px; }
.foot-legal a { font-size: .74rem; color: #66665F; text-decoration: none; }
.foot-legal a:hover { color: var(--on-dark-soft); }
.site-footer .right { text-align: right; font-size: 0.93rem; line-height: 1.9; }
.site-footer a { color: var(--teal-lift); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .fine { color: #6E6E67; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .split, .split-inset, .duo, .service, .quote-band { grid-template-columns: 1fr; }
  .numbered, .testimonials { grid-template-columns: 1fr; }
  .split .media { min-height: 320px; max-height: 460px; }
  .split-inset { gap: 32px; }
  .service { gap: 36px; }
  .quote-band .attrib { margin-top: 20px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }

  .nav { padding: 16px 20px; }
  .creds { grid-template-columns: 1fr; }
  .site-footer .inner { flex-direction: column; align-items: flex-start; }
  .site-footer .right { text-align: left; }
  .btn { padding: 15px 24px; }
}

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