:root {
  --ink: #201d18;
  --muted: #6d665d;
  --paper: #fffdf8;
  --soft: #f6f0e8;
  --sage: #70836c;
  --sage-dark: #2f4539;
  --clay: #b97860;
  --gold: #c79a55;
  --rose: #f1d8cf;
  --white: #ffffff;
  --border: rgba(32, 29, 24, 0.13);
  --shadow: 0 26px 80px rgba(37, 29, 20, 0.13);
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  animation: pageFade 620ms var(--ease-premium) both;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(22, 22, 18, 0.7), rgba(22, 22, 18, 0));
  transition:
    background-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease,
    transform 320ms var(--ease-premium);
}

.service-header {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand,
.header-action,
.primary-button,
.secondary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 800;
  transition:
    transform 220ms var(--ease-premium),
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.brand {
  gap: 11px;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  transition: transform 320ms var(--ease-premium), background-color 220ms ease;
}

.brand:hover span {
  transform: rotate(-8deg) scale(1.04);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  transition: transform 220ms var(--ease-premium), background-color 220ms ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-dropdown > button svg {
  transition: transform 220ms var(--ease-premium);
}

.nav-dropdown-open > button svg,
.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg {
  transform: rotate(180deg);
}

.solutions-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 220ms var(--ease-premium);
}

.solutions-menu a {
  padding: 11px 12px;
  border-radius: 5px;
  color: var(--ink);
  transition: background-color 180ms ease, transform 180ms var(--ease-premium);
}

.solutions-menu a:hover {
  background: var(--soft);
  transform: translateX(3px);
}

.nav-dropdown:hover .solutions-menu,
.nav-dropdown:focus-within .solutions-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-action {
  padding: 0 16px;
  border: 1px solid currentColor;
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 29, 20, 0.14);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 6vw, 96px) 72px;
  color: var(--paper);
  overflow: hidden;
  background: #211f19;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 27, 22, 0.82), rgba(29, 27, 22, 0.44) 48%, rgba(29, 27, 22, 0.08)),
    url("/hero-manthan.webp") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.site-ready .hero-content > *,
.site-ready .hero-words span {
  animation: heroReveal 720ms var(--ease-premium) both;
}

.site-ready .hero-content > :nth-child(1) {
  animation-delay: 80ms;
}

.site-ready .hero-content > :nth-child(2) {
  animation-delay: 160ms;
}

.site-ready .hero-content > :nth-child(3) {
  animation-delay: 230ms;
}

.site-ready .hero-content > :nth-child(4) {
  animation-delay: 300ms;
}

.site-ready .hero-content > :nth-child(5) {
  animation-delay: 370ms;
}

.site-ready .hero-content > :nth-child(6) {
  animation-delay: 440ms;
}

.site-ready .hero-content > :nth-child(7) {
  animation-delay: 510ms;
}

.site-ready .hero-words span:nth-child(1) {
  animation-delay: 520ms;
}

.site-ready .hero-words span:nth-child(2) {
  animation-delay: 590ms;
}

.site-ready .hero-words span:nth-child(3) {
  animation-delay: 660ms;
}

.site-ready .hero-words span:nth-child(4) {
  animation-delay: 730ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow,
.journey .eyebrow {
  color: #f1c98e;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(3.4rem, 7.5vw, 7.2rem);
  line-height: 0.92;
}

.hero h2,
.service-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.hero p,
.service-hero p {
  max-width: 670px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.outline-button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.primary-button {
  color: var(--paper);
  background: var(--sage-dark);
}

.secondary-button {
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.outline-button {
  color: var(--sage-dark);
  border-color: rgba(47, 69, 57, 0.32);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 900;
}

.back-link {
  margin-bottom: 30px;
}

.hero-words {
  position: absolute;
  left: clamp(20px, 6vw, 96px);
  right: clamp(20px, 6vw, 96px);
  bottom: 26px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  color: rgba(255, 253, 248, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.hero-words span {
  border-top: 1px solid rgba(255, 253, 248, 0.28);
  padding-top: 14px;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.reveal-prep {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}

.reveal-prep.is-visible {
  animation: revealUp 700ms var(--ease-premium) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.compact-heading {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.founder-section {
  background: var(--paper);
}

.founder-grid,
.story-grid,
.sound-grid,
.events-grid,
.contact-grid,
.contact-booking-grid,
.service-hero-grid,
.service-detail-grid,
.next-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.founder-copy p,
.story-card p,
.events-section p,
.contact-section p,
.service-card p,
.service-detail-grid p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.image-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: rgba(32, 29, 24, 0.48);
  background:
    linear-gradient(135deg, rgba(112, 131, 108, 0.18), rgba(241, 216, 207, 0.36)),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.5) 0 12px, rgba(255, 253, 248, 0.18) 12px 24px);
  box-shadow: var(--shadow);
  transition:
    transform 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium),
    filter 520ms ease;
}

.image-placeholder:hover,
.gallery-card:hover {
  transform: translateY(-5px) scale(1.01);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 30px 82px rgba(37, 29, 20, 0.16);
}

.image-placeholder span,
.video-placeholder span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder span:empty,
.service-card-media span:empty,
.service-photo span:empty {
  display: none;
}

.founder-photo {
  min-height: 500px;
}

.real-photo {
  background:
    linear-gradient(180deg, rgba(32, 29, 24, 0), rgba(32, 29, 24, 0.34)),
    url("/gitaanjali.webp") center / cover;
}

.real-photo span {
  align-self: end;
  margin: 0 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(32, 29, 24, 0.5);
}

.real-photo span:empty {
  display: none;
}

.story-band,
.sound-section,
.events-section,
.why-section,
.faq-section,
.cta-band,
.blog-strip {
  background: var(--soft);
}

.story-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  transition:
    transform 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    border-color 260ms ease,
    background-color 260ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 69, 57, 0.22);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(37, 29, 20, 0.08);
}

.story-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.services-section {
  padding-bottom: 116px;
}

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

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(37, 29, 20, 0.06);
  transition:
    transform 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 69, 57, 0.24);
  box-shadow: var(--shadow);
}

.service-card-media {
  position: relative;
  min-height: 230px;
  margin: 0;
  display: grid;
  place-items: center;
  color: rgba(32, 29, 24, 0.46);
  background:
    linear-gradient(135deg, rgba(112, 131, 108, 0.18), rgba(241, 216, 207, 0.34)),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.5) 0 12px, rgba(255, 253, 248, 0.18) 12px 24px);
  background-size: cover, auto;
  background-position: center;
  overflow: hidden;
  transition: transform 560ms var(--ease-premium), filter 360ms ease;
}

.service-card-media::after,
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.16));
  pointer-events: none;
  transition: opacity 300ms ease;
}

.service-card:hover .service-card-media {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.service-card:hover .service-card-media::after {
  opacity: 0.55;
}

.service-card-media span {
  position: relative;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon,
.service-large-icon {
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  background: #e8eee4;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 24px 28px 22px;
  border-radius: 50%;
}

.service-card h3,
.service-card p,
.service-card > span {
  margin-left: 28px;
  margin-right: 28px;
}

.service-card > span {
  margin-bottom: 28px;
}

.service-large-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border-radius: 50%;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--clay) !important;
  font-size: 0.8rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 900;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  transition:
    transform 260ms var(--ease-premium),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 260ms ease;
}

.benefit-row:hover {
  transform: translateX(4px);
  border-color: rgba(47, 69, 57, 0.22);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 32px rgba(37, 29, 20, 0.07);
}

.benefit-row span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.benefit-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.journey {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(32, 29, 24, 0.9), rgba(47, 69, 57, 0.84)),
    url("/hero-manthan.webp") center / cover fixed;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journey-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  transition:
    transform 320ms var(--ease-premium),
    border-color 220ms ease,
    background-color 220ms ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 201, 142, 0.58);
  background: rgba(255, 253, 248, 0.06);
}

.journey-step span {
  color: #f1c98e;
  font-weight: 900;
}

.journey-step h3 {
  margin-top: 84px;
}

.home-journey-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-journey-steps .journey-step h3 {
  margin-top: 54px;
}

.journey-step p,
.journey-note {
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.65;
}

.journey-note {
  max-width: 760px;
  margin-top: 28px;
  font-size: 1.08rem;
}

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

blockquote,
.video-placeholder,
.review-placeholder {
  min-height: 270px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    border-color 220ms ease;
}

blockquote:hover,
.video-placeholder:hover,
.review-placeholder:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 69, 57, 0.22);
  box-shadow: 0 18px 46px rgba(37, 29, 20, 0.08);
}

blockquote svg {
  color: var(--gold);
}

blockquote p {
  color: var(--muted);
  line-height: 1.7;
}

blockquote div {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.video-placeholder,
.review-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
}

.video-placeholder {
  color: var(--paper);
  background: var(--sage-dark);
}

.review-placeholder {
  color: var(--sage-dark);
  background: var(--rose);
}

.event-list {
  display: grid;
  gap: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(112, 131, 108, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  font-weight: 900;
  transition:
    transform 260ms var(--ease-premium),
    border-color 220ms ease,
    background-color 220ms ease;
}

.event-item:hover {
  transform: translateX(4px);
  border-color: rgba(47, 69, 57, 0.28);
  background: rgba(255, 253, 248, 0.92);
}

.event-item svg {
  color: var(--sage-dark);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-section {
  padding: 16px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid .image-placeholder {
  min-height: 320px;
  box-shadow: none;
}

.gallery-card {
  min-height: 340px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 42px rgba(37, 29, 20, 0.08);
  transition:
    transform 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium),
    filter 520ms ease;
}

.feature-visual {
  min-height: 460px;
}

.gallery-sound-bath {
  background-image: url("/gallery/sound-bath-event.webp");
}

.gallery-retreat {
  background-image: url("/gallery/wellness-retreat.webp");
}

.gallery-healing-session {
  background-image: url("/gallery/healing-session.webp");
}

.gallery-consultation,
.map-visual {
  background-image: url("/gallery/consultation-room.webp");
}

.map-support-image {
  min-height: 430px;
  background-image:
    linear-gradient(180deg, rgba(32, 29, 24, 0.02), rgba(32, 29, 24, 0.18)),
    url("/gallery/consultation-room.webp");
}

.contact-section {
  background: var(--paper);
}

.contact-booking-grid {
  align-items: stretch;
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 54px rgba(37, 29, 20, 0.07);
  transition:
    transform 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
}

.contact-details-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(37, 29, 20, 0.1);
}

.contact-details-panel h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.contact-details-panel p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.contact-details-panel address {
  margin-top: 22px;
}

.map-image-section {
  background: var(--soft);
}

.map-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(37, 29, 20, 0.08);
  transition:
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium);
}

.map-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(37, 29, 20, 0.12);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-tools {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  padding: 0 16px 16px;
  background: var(--paper);
}

.tool-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: rgba(32, 29, 24, 0.5);
  background: var(--soft);
  text-align: center;
}

.tool-placeholder span,
.review-placeholder span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

address {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--sage-dark);
  font-style: normal;
}

address a,
address span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

address svg {
  flex: 0 0 auto;
  color: #f1c98e;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 90px);
  color: var(--paper);
  background: var(--ink);
}

footer p,
footer span {
  margin: 0;
}

.footer-tagline {
  padding: 34px clamp(20px, 6vw, 90px);
  color: var(--paper);
  background: var(--sage-dark);
  text-align: center;
}

.footer-tagline p {
  max-width: 940px;
  margin: 0 auto;
  line-height: 1.75;
}

.service-hero {
  padding-top: 78px;
  color: var(--paper);
  background: var(--sage-dark);
}

.service-hero .section-shell {
  padding-top: 70px;
}

.service-photo {
  position: relative;
  min-height: 520px;
  color: rgba(255, 253, 248, 0.7);
  border-color: rgba(255, 253, 248, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.14), rgba(185, 120, 96, 0.22)),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.06) 0 12px, rgba(255, 253, 248, 0.14) 12px 24px);
  background-size: cover, auto;
  background-position: center;
  overflow: hidden;
}

.service-photo span {
  position: relative;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(47, 69, 57, 0.54);
}

.service-detail-grid {
  align-items: start;
}

.benefits-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft);
}

.benefit-row.compact {
  min-height: 54px;
  grid-template-columns: 24px 1fr;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.service-next {
  background: var(--soft);
}

.next-grid {
  grid-template-columns: 1fr auto;
}

.inner-hero {
  padding-top: 70px;
  background: var(--soft);
}

.inner-hero .section-shell {
  padding-top: 56px;
}

.inner-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 1;
}

.inner-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.76;
}

.page-icon {
  margin-bottom: 22px;
  color: var(--sage-dark);
}

.story-page,
.legal-copy {
  max-width: 880px;
}

.story-page p,
.legal-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.9;
}

.about-longform {
  max-width: 980px;
}

.about-story-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-story-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.about-story-section h2 {
  max-width: 780px;
}

.about-story-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.88;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.form-panel {
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(37, 29, 20, 0.06);
}

.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 900;
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status,
.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.draft-card {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(32, 29, 24, 0.52);
}

.welcome-popup {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.welcome-popup h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.welcome-popup p {
  color: var(--muted);
  line-height: 1.75;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-media {
  min-height: 250px;
}

.blog-cover {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.legal-hero {
  background: var(--paper);
}

.seo-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    background: rgba(32, 29, 24, 0.88);
    backdrop-filter: blur(14px);
  }

  .service-header {
    background: rgba(255, 253, 248, 0.96);
  }

  .mobile-menu-button {
    display: grid;
    justify-self: end;
  }

  nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  nav a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    border-radius: 6px;
    color: var(--ink);
    text-align: left;
    font-weight: 800;
  }

  nav a:hover,
  .nav-dropdown > button:hover {
    background: var(--soft);
  }

  .nav-dropdown {
    display: grid;
  }

  .solutions-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    background: transparent;
    transition: none;
  }

  .nav-dropdown-open .solutions-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .solutions-menu a {
    padding: 11px 12px;
  }

  .founder-grid,
  .story-grid,
  .sound-grid,
  .events-grid,
  .contact-grid,
  .contact-booking-grid,
  .service-hero-grid,
  .service-detail-grid,
  .next-grid,
  .map-image-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .journey-steps,
  .testimonial-grid,
  .gallery-grid,
  .contact-tools,
  .values-grid,
  .content-grid,
  .benefit-grid,
  .contact-page-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand span {
    width: 34px;
    height: 34px;
  }

  .header-action {
    min-width: 44px;
    padding: 0 12px;
    font-size: 0;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 108px 18px 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(29, 27, 22, 0.76), rgba(29, 27, 22, 0.72)),
      url("/hero-manthan.webp") center / cover;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 6.1rem);
  }

  .hero h2,
  .service-hero h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .outline-button {
    width: 100%;
  }

  .services-grid,
  .journey-steps,
  .testimonial-grid,
  .gallery-grid,
  .contact-tools,
  .values-grid,
  .content-grid,
  .benefit-grid,
  .contact-page-grid,
  .admin-grid,
  .home-testimonials {
    grid-template-columns: 1fr;
  }

  .hero-words {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 1.05rem;
  }

  .hero-words span {
    padding: 12px 8px 10px;
  }

  .contact-details-panel,
  address {
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe,
  .map-support-image {
    min-height: 340px;
  }

  .inner-hero h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .blog-cover {
    min-height: 320px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
    padding: 58px 0;
  }

  .service-card-media {
    min-height: 210px;
  }

  .service-card h3,
  .service-card p,
  .service-card > span {
    margin-left: 22px;
    margin-right: 22px;
  }

  .service-icon {
    margin-left: 22px;
    margin-right: 22px;
  }

  .founder-photo,
  .service-photo {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body,
  .site-ready .hero-content > *,
  .site-ready .hero-words span,
  .reveal-prep,
  .reveal-prep.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
