/* Sri Guru Raghavendra Numerology Solutions — Design System */
:root {
  --green: #1b4d3e;
  --green-deep: #143d32;
  --green-soft: #2a6b56;
  --orange: #e67e22;
  --orange-deep: #d35400;
  --gold: #c9a227;
  --cream: #fdfcf0;
  --cream-warm: #f7f3e3;
  --ivory: #fffef8;
  --ink: #1a2e28;
  --muted: #5a6b64;
  --line: rgba(27, 77, 62, 0.12);
  --shadow: 0 12px 40px rgba(27, 77, 62, 0.08);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent iOS zoom on form focus */
@media (max-width: 900px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: min(300px, 55vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  display: block;
}

.logo-img.logo-footer {
  height: 80px;
  max-width: 280px;
  margin-bottom: 0.25rem;
  /* Keep logo readable on dark green footer */
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
}

.nav > .btn {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 10px;
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  margin: 3px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(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(-5px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 8px 24px rgba(27, 77, 62, 0.25);
}

.btn-accent {
  background: var(--orange);
  color: #fff;
}

.btn-accent:hover {
  background: var(--orange-deep);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--green);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(230, 126, 34, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream-warm), var(--cream));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4d3e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(100%, 460px);
  position: relative;
  animation: float-wheel 8s ease-in-out infinite;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 18px 36px rgba(27, 77, 62, 0.18));
  image-rendering: -webkit-optimize-contrast;
}

@keyframes float-wheel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.55rem);
  line-height: 1.12;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

/* —— Stats —— */
.stats {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
  color: #fff;
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem;
}

.stat-icon {
  width: 36px;
  height: 36px;
  opacity: 0.9;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.stat-item span {
  font-size: 0.88rem;
  opacity: 0.88;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream-warm);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--green);
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--muted);
}

.page-hero {
  padding: 2.75rem 0 2rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(230, 126, 34, 0.1), transparent 50%),
    linear-gradient(180deg, var(--cream-warm), var(--cream));
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--green);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 48ch;
  margin-inline: auto;
}

/* —— Services grid (legacy) —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem 1.4rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(230, 126, 34, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.center-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* —— Premium Numerology Services section —— */
.num-services {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: #faf8f2;
  overflow: hidden;
}

.num-services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 162, 39, 0.09), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(201, 162, 39, 0.08), transparent 26%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23c9a227' stroke-opacity='0.12' stroke-width='1'%3E%3Ccircle cx='140' cy='140' r='40'/%3E%3Ccircle cx='140' cy='140' r='70'/%3E%3Ccircle cx='140' cy='140' r='100'/%3E%3Ccircle cx='140' cy='140' r='130'/%3E%3C/g%3E%3Ctext x='60' y='70' fill='%23c9a227' fill-opacity='0.18' font-size='22' font-family='Georgia,serif'%3E3%3C/text%3E%3Ctext x='200' y='90' fill='%23c9a227' fill-opacity='0.16' font-size='18' font-family='Georgia,serif'%3E7%3C/text%3E%3Ctext x='40' y='200' fill='%23c9a227' fill-opacity='0.14' font-size='20' font-family='Georgia,serif'%3E9%3C/text%3E%3Ctext x='210' y='210' fill='%23c9a227' fill-opacity='0.15' font-size='16' font-family='Georgia,serif'%3E5%3C/text%3E%3C/svg%3E") left -40px top -20px / 320px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23c9a227' stroke-opacity='0.11' stroke-width='1'%3E%3Ccircle cx='140' cy='140' r='45'/%3E%3Ccircle cx='140' cy='140' r='80'/%3E%3Ccircle cx='140' cy='140' r='115'/%3E%3C/g%3E%3Ctext x='50' y='80' fill='%23c9a227' fill-opacity='0.16' font-size='20' font-family='Georgia,serif'%3E1%3C/text%3E%3Ctext x='190' y='70' fill='%23c9a227' fill-opacity='0.14' font-size='18' font-family='Georgia,serif'%3E8%3C/text%3E%3Ctext x='200' y='200' fill='%23c9a227' fill-opacity='0.15' font-size='22' font-family='Georgia,serif'%3E4%3C/text%3E%3C/svg%3E") right -30px top 0 / 300px no-repeat;
}

.num-services-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.num-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: #b8952f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.num-brand-line::before,
.num-brand-line::after {
  content: "";
  width: min(72px, 12vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

.num-services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.55rem;
}

.num-flourish {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.num-services-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 54ch;
}

.num-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1rem;
  background: #f3ebe0;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 8px 24px rgba(40, 30, 15, 0.04);
}

.num-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  text-align: left;
}

.num-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9a227;
  background: rgba(201, 162, 39, 0.12);
  flex-shrink: 0;
}

.num-trust-icon svg {
  width: 18px;
  height: 18px;
}

.num-trust-item p {
  margin: 0;
  font-size: 0.84rem;
  color: #5a5348;
  line-height: 1.35;
}

.num-trust-item strong {
  color: var(--green-deep);
  font-weight: 700;
}

.num-services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.num-card {
  background: #fffef9;
  border: 1px solid rgba(27, 77, 62, 0.06);
  border-radius: 18px;
  padding: 1.45rem 1.05rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(40, 30, 15, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 100%;
}

.num-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(40, 30, 15, 0.1);
}

.num-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  background: var(--ibg, #f5f0e6);
  color: var(--ic, var(--orange));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.65), 0 0 24px var(--ibg, #f5f0e6);
}

.num-card-icon svg {
  width: 28px;
  height: 28px;
}

.num-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.num-card p {
  font-size: 0.88rem;
  color: #6a6258;
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}

.num-card-link {
  color: #b8952f;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.num-card-link:hover {
  color: var(--orange-deep);
}

.num-cta-banner {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(90deg, #f0e2c8 0%, #e8d4b0 50%, #f0e2c8 100%);
  border-radius: 18px;
  padding: 1.15rem 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 10px 30px rgba(40, 30, 15, 0.06);
}

.num-cta-deco {
  position: absolute;
  width: 120px;
  height: 100%;
  top: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.num-cta-deco.left {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'%3E%3Cellipse cx='40' cy='55' rx='28' ry='10' fill='%23c9a227' opacity='.35'/%3E%3Cpath d='M22 50c4-22 12-34 18-34s14 12 18 34' fill='%23e67e22' opacity='.5'/%3E%3Cpath d='M78 58c-2-18 4-28 12-30 6 8 4 22-2 30' fill='%232a6b56' opacity='.45'/%3E%3C/svg%3E");
}

.num-cta-deco.right {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'%3E%3Crect x='55' y='22' width='40' height='36' rx='4' fill='%23c9a227' opacity='.4'/%3E%3Cpath d='M30 55c6-20 14-28 22-26-2 10-6 20-10 28' fill='%232a6b56' opacity='.45'/%3E%3C/svg%3E");
}

.num-cta-content {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
}

.num-cta-phone {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.num-cta-content strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.num-cta-content span {
  color: #5a5348;
  font-size: 0.92rem;
}

.num-cta-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border-radius: 10px;
  white-space: nowrap;
  margin-right: 1rem;
}

@media (max-width: 1100px) {
  .num-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .num-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 720px) {
  .num-services {
    padding: 2.5rem 0 2.25rem;
    background: transparent;
  }

  .num-services-bg {
    opacity: 0.45;
  }

  .num-brand-line {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    gap: 0.5rem;
  }

  .num-trust {
    grid-template-columns: 1fr 1fr;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .num-trust-item {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .num-trust-item p {
    font-size: 0.76rem;
  }

  .num-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .num-card {
    border-radius: 20px;
    padding: 1.15rem 0.75rem 1rem;
  }

  .num-card-icon {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.65), 0 0 18px var(--ibg, #f5f0e6);
  }

  .num-card h3 {
    font-size: 1.02rem;
  }

  .num-card p {
    font-size: 0.8rem;
  }

  .num-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 20px;
    gap: 1rem;
  }

  .num-cta-content {
    flex-direction: column;
    padding-left: 0;
  }

  .num-cta-btn {
    width: 100%;
    margin-right: 0;
    border-radius: 999px;
  }

  .num-cta-deco {
    display: none;
  }
}

@media (max-width: 420px) {
  .num-services-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Why choose —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 0.5rem;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.08);
  color: var(--green);
  display: grid;
  place-items: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* —— Testimonials —— */
.testimonials {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial {
  display: none;
  animation: fade-in 0.45s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.1rem;
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--green);
  display: block;
}

.testimonial cite span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 77, 62, 0.25);
  cursor: pointer;
  transition: 0.2s;
}

.slider-dots button.active {
  background: var(--green);
  transform: scale(1.2);
}

/* —— Calculator —— */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.panel {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.12);
}

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

.results-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--cream-warm);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.result-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.result-row strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green);
  min-width: 2ch;
  text-align: right;
}

.result-summary {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(27, 77, 62, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.results-placeholder {
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 1rem;
}

/* —— About split —— */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0.5rem;
}

.about-visual::after {
  display: none;
}

.about-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(27, 77, 62, 0.14));
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-copy ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.about-copy li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 500;
}

.about-copy li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* —— Blog —— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.blog-thumb.t2 {
  background: linear-gradient(135deg, var(--orange), #c0392b);
}
.blog-thumb.t3 {
  background: linear-gradient(135deg, #2980b9, var(--green));
}
.blog-thumb.t4 {
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.blog-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.blog-body time {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green);
  margin: 0.35rem 0 0.65rem;
  line-height: 1.3;
}

.blog-body a {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-body a:hover {
  color: var(--orange);
}

/* —— Numbers grid —— */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.number-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.number-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(27, 77, 62, 0.25);
}

.number-card .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.number-card h3 {
  font-size: 1.15rem;
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.number-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
}

.contact-info h2,
.contact-form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(27, 77, 62, 0.08);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--green);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--orange);
}

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-warm);
  aspect-ratio: 21 / 9;
  display: grid;
  place-items: center;
  color: var(--muted);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

/* —— CTA banner —— */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--green-soft));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  right: -100px;
  top: -120px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.65rem;
  position: relative;
}

.cta-banner p {
  opacity: 0.88;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-banner .cta-group {
  justify-content: center;
  position: relative;
}

/* —— Footer —— */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  margin: 1rem 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 32ch;
  opacity: 0.8;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.socials a:hover {
  background: var(--orange);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.92rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #f0c27a;
}

.footer-contact li {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-bottom nav {
  display: flex;
  gap: 1.25rem;
}

/* —— Mobile floating CTAs —— */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(253, 252, 240, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.45rem;
  box-shadow: 0 -8px 24px rgba(27, 77, 62, 0.08);
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.75rem 0.35rem;
  font-size: 0.82rem;
  min-height: 44px;
}

/* —— Reveal animation —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* —— Responsive —— */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav {
    gap: 0.9rem;
  }

  .nav a {
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .header-inner {
    gap: 0.75rem;
    min-height: var(--header-h);
    padding-block: 0.35rem;
  }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo-img {
    height: 52px;
    max-width: min(220px, 62vw);
  }

  .hero {
    padding: 1.75rem 0 2.25rem;
    text-align: center;
  }

  .hero-grid,
  .calc-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .hero-lead {
    max-width: 36ch;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero .cta-group {
    justify-content: center;
  }

  .cta-group {
    gap: 0.65rem;
  }

  .cta-group .btn {
    flex: 1 1 auto;
    min-width: min(100%, 140px);
  }

  .stats {
    padding: 1.35rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }

  .stat-item strong {
    font-size: 1.4rem;
  }

  .stat-item span {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .service-card {
    padding: 1.1rem 0.85rem 1.15rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }

  .why-grid .why-item:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin-inline: auto;
  }

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

  .about-copy ul {
    text-align: left;
    max-width: 420px;
    margin-inline: auto;
  }

  .about-copy .cta-group {
    justify-content: center;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .number-card {
    padding: 1.5rem 1rem;
  }

  .number-card .num {
    font-size: 2.75rem;
  }

  .panel {
    padding: 1.35rem 1.15rem;
  }

  .testimonial blockquote {
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(253, 252, 240, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 6.5rem;
    border-bottom: none;
    box-shadow: none;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 95;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 1rem 0.35rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav > .btn {
    display: inline-flex;
    margin-top: 1.15rem;
    width: 100%;
    min-height: 48px;
  }

  .nav-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body.nav-open {
    overflow: hidden;
  }

  .map-embed {
    aspect-ratio: 4 / 3;
    margin-top: 1.25rem;
  }

  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .cta-banner {
    padding: 2.75rem 0;
  }

  .cta-banner .cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .logo-img {
    height: 46px;
    max-width: min(190px, 58vw);
  }

  .logo-img.logo-footer {
    height: 64px;
    max-width: 220px;
  }

  .hero {
    padding: 1.35rem 0 1.85rem;
  }

  .hero-logo {
    width: min(100%, 240px);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .cta-group .btn {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

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

  .why-grid .why-item:last-child {
    max-width: none;
  }

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

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }

  .footer-bottom nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
  }

  .result-row {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .result-row strong {
    width: 100%;
    text-align: left;
  }

  .contact-item {
    align-items: flex-start;
  }

  .stats-grid {
    gap: 1.1rem 0.5rem;
  }

  .mobile-cta .btn {
    font-size: 0.78rem;
    padding: 0.7rem 0.25rem;
  }
}

@media (max-width: 380px) {
  .services-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-img {
    height: 42px;
    max-width: 160px;
  }

  .mobile-cta {
    padding-inline: 0.55rem;
    gap: 0.35rem;
  }
}

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

  .hero-logo,
  .reveal,
  .testimonial,
  .puro-mandala,
  .puro-mandala::before,
  .puro-diya,
  .puro-carousel-track {
    animation: none !important;
    transition: none !important;
  }

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

/* —— Consultation profile (legacy helpers) —— */
.book-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.book-layout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--green);
  margin-bottom: 0.65rem;
}

.muted-lead {
  color: var(--muted);
  max-width: 38ch;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--orange);
}

/* —— Zigzag consultations —— */
.zigzag-section {
  padding-top: 2.5rem;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.zigzag-row.reverse .zigzag-media {
  order: 2;
}

.zigzag-row.reverse .zigzag-copy {
  order: 1;
}

.zigzag-media {
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
  position: relative;
}

.zigzag-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.06), transparent 55%);
  pointer-events: none;
}

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

.zigzag-media img.is-placeholder {
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(160deg, var(--cream-warm), #efe8d4);
}

.zigzag-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.zigzag-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.zigzag-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  max-width: 40ch;
}

.zigzag-copy .check-list {
  margin-bottom: 1.35rem;
}

.zigzag-copy .cta-group .btn {
  min-height: 44px;
}

.profile-feature .zigzag-media {
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.profile-portrait img {
  object-fit: cover;
  object-position: center top;
}

#ad-ramananda .profile-portrait img {
  object-position: center center;
}

/* —— Home consultants highlight —— */
.consultants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.consultant-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: inherit;
  height: 100%;
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(230, 126, 34, 0.4);
}

.consultant-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
}

.consultant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.consultant-card:hover .consultant-photo img {
  transform: scale(1.04);
}

.consultant-card[href*="ad-ramananda"] .consultant-photo img {
  object-position: center center;
}

.consultant-body {
  padding: 1.2rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.consultant-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.consultant-role {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.consultant-body > p:not(.consultant-role) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.consultant-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.consultant-card:hover .consultant-link {
  color: var(--orange);
}

@media (max-width: 900px) {
  .consultants-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .consultant-photo {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .consultants-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .consultants-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .consultant-photo {
    aspect-ratio: 3 / 4;
  }

  .consultant-body h3 {
    font-size: 1.1rem;
  }
}

.profile-role {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}

.profile-chips span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(27, 77, 62, 0.08);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.profile-feature .check-list {
  margin-bottom: 1.1rem;
}

.profile-feature + .profile-feature {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

#dr-bharath,
#yogesh-master,
#ad-ramananda {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* —— Pourohitya creative page —— */
.ritual-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 0;
  background: linear-gradient(180deg, #cfe8f7 0%, #d9eef8 28%, #f5e0c8 72%, #f3c9a0 100%);
  min-height: clamp(480px, 68vh, 620px);
}

.ritual-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: end;
  padding-bottom: 5rem;
}

.ritual-hero-copy {
  padding-bottom: 3.5rem;
}

.ritual-hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  color: #2b2b2b;
  line-height: 1.12;
  margin: 0 0 0.9rem;
  letter-spacing: -0.025em;
  max-width: 12ch;
}

.ritual-hero-sanskrit {
  color: #444;
  font-size: 1.08rem;
  margin: 0 0 0.55rem;
  font-weight: 500;
}

.ritual-hero-lead {
  color: #666;
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 32ch;
}

.ritual-hero-cta {
  border-radius: 10px !important;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(230, 126, 34, 0.38);
}

.ritual-hero-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -0.5rem;
}

.ritual-hero-art img {
  width: min(100%, 440px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 36px rgba(40, 30, 15, 0.18));
  animation: none;
}

.ritual-hero-trees {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
}

.ritual-hero-trees svg {
  width: 100%;
  height: clamp(80px, 11vw, 130px);
  display: block;
}

.ritual-feature {
  padding: 4.25rem 0;
  background: #fff;
}

.ritual-feature-alt {
  background: #fafafa;
}

.ritual-feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.ritual-feature-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.ritual-feature-grid.reverse .ritual-feature-copy {
  order: 2;
}

.ritual-feature-grid.reverse .ritual-collage {
  order: 1;
}

.ritual-feature-copy h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  color: #2b2b2b;
  margin: 0 0 1.1rem;
}

.ritual-feature-copy p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
  max-width: 44ch;
}

.ritual-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.85fr;
  grid-template-rows: 150px 130px 150px;
  gap: 0.75rem;
  min-height: 440px;
}

.ritual-collage .collage-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20, 40, 30, 0.12);
  display: block;
  background: #eee;
}

.ritual-collage .c1 {
  grid-row: 1 / 3;
  grid-column: 1;
}

.ritual-collage .c2 {
  grid-row: 1;
  grid-column: 2 / 4;
}

.ritual-collage .c3 {
  grid-row: 2 / 4;
  grid-column: 2;
}

.ritual-collage .c4 {
  grid-row: 3;
  grid-column: 1;
}

.ritual-collage .c5 {
  grid-row: 2 / 4;
  grid-column: 3;
}

.ritual-collage:not(.ritual-collage-rich) {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 150px 120px 140px;
}

.ritual-collage:not(.ritual-collage-rich) .c1 {
  grid-row: 1 / 3;
  grid-column: 1;
}

.ritual-collage:not(.ritual-collage-rich) .c2 {
  grid-row: 1;
  grid-column: 2;
}

.ritual-collage:not(.ritual-collage-rich) .c3 {
  grid-row: 2 / 4;
  grid-column: 2;
}

.ritual-collage:not(.ritual-collage-rich) .c4 {
  grid-row: 3;
  grid-column: 1;
}

.ritual-collage:not(.ritual-collage-rich) .c5 {
  display: none;
}

.puro-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(230, 126, 34, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(27, 77, 62, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream-warm), var(--cream));
}

.puro-hero-glow {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
  pointer-events: none;
}

.puro-hero-rings {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(27, 77, 62, 0.08);
  border-radius: 50%;
  left: 8%;
  top: 18%;
  pointer-events: none;
}

.puro-hero-rings::before,
.puro-hero-rings::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(230, 126, 34, 0.12);
  border-radius: 50%;
}

.puro-hero-rings::after {
  inset: 36%;
  border-color: rgba(27, 77, 62, 0.1);
}

.puro-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

.puro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--green);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.puro-hero h1 span {
  color: var(--orange);
}

.puro-hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.puro-hero-visual {
  display: grid;
  place-items: center;
}

.puro-mandala {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, rgba(230, 126, 34, 0.35), rgba(27, 77, 62, 0.25), rgba(201, 162, 39, 0.4), rgba(230, 126, 34, 0.35));
  display: grid;
  place-items: center;
  position: relative;
  animation: puro-spin 36s linear infinite;
  box-shadow: 0 20px 50px rgba(27, 77, 62, 0.15);
}

.puro-mandala::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff8e8, #f0e2c0 70%);
  animation: puro-spin 36s linear infinite reverse;
}

.puro-diya {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  animation: puro-float 4s ease-in-out infinite;
}

.puro-diya svg {
  display: block;
  filter: drop-shadow(0 8px 16px rgba(192, 57, 43, 0.25));
}

.puro-orbit {
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(27, 77, 62, 0.15);
  border-radius: 50%;
}

.puro-orbit-1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.puro-orbit-1 i {
  font-style: normal;
  background: var(--ivory);
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

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

@keyframes puro-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.puro-path-strip {
  background: var(--green);
  color: #fff;
  padding: 0.35rem 0;
}

.puro-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.puro-path {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
  position: relative;
}

.puro-path-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c27a;
  margin-bottom: 0.35rem;
}

.puro-path:last-child {
  border-right: none;
}

.puro-path:hover {
  background: rgba(255, 255, 255, 0.06);
}

.puro-path strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #f0c27a;
}

.puro-path span {
  font-weight: 700;
  font-size: 1.05rem;
}

.puro-path small {
  opacity: 0.75;
  font-size: 0.82rem;
}

.ritual-panel-rich {
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.95), #fffef8),
    var(--ivory);
}

.ritual-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.95rem;
}

.ritual-card {
  border-radius: 16px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ritual-card-thumb {
  display: block;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.ritual-card-body {
  display: block;
  padding: 0.95rem 1rem 1.05rem;
}

.ritual-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.ritual-card-icon svg {
  width: 24px;
  height: 24px;
}

.ritual-card.tone-orange .ritual-card-icon {
  background: #fde8d8;
  color: #e67e22;
}

.ritual-card.tone-green .ritual-card-icon {
  background: #e8f5e9;
  color: #1b4d3e;
}

.ritual-card.tone-gold .ritual-card-icon {
  background: #fff3e0;
  color: #c0392b;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ritual-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.ritual-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.55rem;
  line-height: 1.45;
}

.ritual-card-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

.ritual-card.tone-orange {
  background: #fffaf5;
  border-top: 3px solid var(--orange);
}

.ritual-card.tone-green {
  background: #f7fbf7;
  border-top: 3px solid var(--green-soft);
}

.ritual-card.tone-gold {
  background: #fff9f4;
  border-top: 3px solid var(--gold);
}

.ritual-cat-preview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 0 0 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(27, 77, 62, 0.06);
}

.ritual-cat-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ritual-cat-preview-copy {
  padding: 1rem 1.25rem 1rem 0.25rem;
}

.ritual-cat-preview-copy h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green-deep);
  margin: 0.25rem 0 0;
}

.ritual-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ritual-modal[hidden] {
  display: none;
}

.ritual-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 26, 0.55);
  backdrop-filter: blur(4px);
}

.ritual-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fffef9;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ritual-modal-x {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.ritual-modal-media {
  position: relative;
}

.ritual-modal-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ritual-modal-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(27, 77, 62, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.ritual-modal-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.ritual-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--green-deep);
  margin: 0 0 0.45rem;
}

.ritual-modal-short {
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 0.98rem;
  margin: 0 0 0.75rem;
}

.ritual-modal-detail {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.ritual-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ritual-modal-actions .btn {
  flex: 1 1 160px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 720px) {
  .ritual-cat-preview {
    grid-template-columns: 1fr;
  }

  .ritual-cat-preview img {
    height: 150px;
  }

  .ritual-cat-preview-copy {
    padding: 0.85rem 1rem 1.1rem;
  }

  .ritual-modal-media img {
    height: 180px;
  }
}

.ritual-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  padding: 0.75rem 0;
  background: linear-gradient(180deg, var(--cream) 70%, transparent);
}

.ritual-tab {
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  min-height: 44px;
}

.ritual-tab:hover {
  border-color: rgba(27, 77, 62, 0.35);
  color: var(--green);
}

.ritual-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ritual-panels {
  display: grid;
  gap: 1.5rem;
}

.ritual-panel {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.ritual-panel.is-hidden {
  display: none;
}

.ritual-panel-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.ritual-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ritual-panel-head h2 {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}

.ritual-panel-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.puro-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.puro-step {
  text-align: center;
  padding: 1.5rem 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.puro-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.puro-step h3 {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.puro-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.center-cta .btn + .btn {
  margin-left: 0.65rem;
}

/* —— Home pourohitya coverflow showcase —— */
.puro-showcase {
  overflow: hidden;
}

.coverflow {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.coverflow-stage {
  position: relative;
  height: clamp(320px, 42vw, 420px);
  perspective: 1200px;
  overflow: visible;
}

.coverflow-card {
  position: absolute;
  inset: auto 0 0;
  top: 0;
  width: min(72%, 860px);
  height: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 28px;
  overflow: hidden;
  background: #f7f3ea;
  box-shadow: 0 18px 50px rgba(20, 61, 50, 0.18);
  transform-origin: center center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.55s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.coverflow-card.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  filter: none;
}

.coverflow-card.is-prev,
.coverflow-card.is-next {
  opacity: 0.92;
  pointer-events: auto;
  z-index: 3;
  filter: saturate(0.92);
  cursor: pointer;
}

.coverflow-card.is-far {
  opacity: 0;
  z-index: 1;
}

.coverflow-card.tone-cream {
  background: linear-gradient(115deg, #fbf7ef 0%, #f3ebe0 55%, #e8d7c0 100%);
}

.coverflow-card.tone-green {
  background: linear-gradient(115deg, #163f34 0%, #1b4d3e 48%, #245f4c 100%);
  color: #f8f5ee;
}

.coverflow-card.tone-ember {
  background: linear-gradient(115deg, #3a2218 0%, #5a3322 45%, #7a4428 100%);
  color: #faf4ec;
}

.coverflow-card.tone-gold {
  background: linear-gradient(115deg, #2c2418 0%, #4a3a24 50%, #6b522e 100%);
  color: #faf6ee;
}

.coverflow-copy {
  padding: clamp(1.35rem, 3vw, 2.4rem) clamp(1.2rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.coverflow-card.tone-cream .coverflow-copy {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 70%, rgba(251, 247, 239, 0) 100%);
}

.coverflow-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 0.65rem;
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  opacity: 0.85;
}

.coverflow-card.tone-cream .coverflow-kicker {
  color: #c49a4a;
  border-color: #c49a4a;
}

.coverflow-card:not(.tone-cream) .coverflow-kicker {
  color: #e8c989;
  border-color: rgba(232, 201, 137, 0.7);
}

.coverflow-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  font-weight: 700;
  max-width: 14ch;
}

.coverflow-card.tone-cream .coverflow-copy h3 {
  color: var(--green-deep);
}

.coverflow-copy > p:not(.coverflow-kicker) {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 34ch;
  opacity: 0.9;
}

.coverflow-card.tone-cream .coverflow-copy > p:not(.coverflow-kicker) {
  color: var(--muted);
  opacity: 1;
}

.coverflow-copy .btn {
  align-self: flex-start;
  border-radius: 10px;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
}

.coverflow-card:not(.tone-cream) .btn-primary {
  background: #f4eee3;
  color: var(--green-deep);
}

.coverflow-card:not(.tone-cream) .btn-primary:hover {
  background: #fff;
}

.coverflow-media {
  background-size: cover;
  background-position: center;
  min-height: 100%;
  position: relative;
}

.app-promo-art {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 18px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.coverflow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 35%);
  pointer-events: none;
}

.coverflow-card.tone-cream .coverflow-media::after {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.55) 0%, transparent 40%);
}

.coverflow-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
  z-index: 6;
  box-shadow: 0 8px 20px rgba(20, 61, 50, 0.08);
}

.coverflow-nav:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
}

.coverflow-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 77, 62, 0.22);
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}

.coverflow-dots button.active {
  background: var(--green);
  transform: scale(1.3);
}

.puro-discover {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  padding: 1.35rem 1.25rem 1.2rem;
}

.puro-discover-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 1.1rem;
}

.puro-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.puro-discover-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem;
  border-radius: 12px;
  transition: background 0.2s;
}

.puro-discover-item:hover {
  background: rgba(27, 77, 62, 0.06);
}

.puro-discover-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(20, 61, 50, 0.12);
}

.puro-discover-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.puro-discover-text strong {
  font-size: 0.9rem;
  color: var(--green-deep);
  line-height: 1.25;
}

.puro-discover-text small {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 980px) {
  .coverflow-card {
    width: min(78%, 720px);
  }

  .puro-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .coverflow {
    grid-template-columns: 1fr;
  }

  .coverflow-nav {
    display: none;
  }

  .coverflow-stage {
    height: auto;
    min-height: 460px;
  }

  .coverflow-card {
    width: 100%;
    left: 50%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 200px;
    position: absolute;
  }

  .coverflow-card.is-prev,
  .coverflow-card.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .coverflow-copy {
    padding: 1.35rem 1.2rem 1.1rem;
  }

  .coverflow-copy h3 {
    max-width: none;
  }

  .coverflow-media {
    order: -1;
    min-height: 200px;
  }

  .coverflow-media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
  }

  .puro-discover-grid {
    grid-template-columns: 1fr;
  }
}

/* legacy multi-card carousel helpers (kept for other pages if needed) */
.services-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.services-carousel-track {
  gap: 1.15rem;
}

.services-carousel-card {
  flex: 0 0 auto;
  min-width: 0;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: auto;
  min-height: 210px;
  display: block;
  box-sizing: border-box;
}

.services-carousel-card .service-icon {
  margin-inline: auto;
}

.puro-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.puro-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.puro-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.puro-carousel-track.services-carousel-track {
  gap: 1.15rem;
}

.puro-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}

.puro-carousel-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.puro-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.15rem 0 0.5rem;
}

.puro-carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 77, 62, 0.22);
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}

.puro-carousel-dots button.active {
  background: var(--green);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .ritual-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 3.5rem;
  }

  .ritual-hero h1,
  .ritual-hero-lead,
  .ritual-hero-sanskrit {
    margin-inline: auto;
    max-width: 22ch;
  }

  .ritual-hero-lead {
    max-width: 34ch;
  }

  .ritual-hero-copy {
    padding-bottom: 0;
  }

  .ritual-hero-art {
    order: -1;
  }

  .ritual-hero-art img {
    width: min(72%, 300px);
  }

  .ritual-feature-grid,
  .ritual-feature-grid.reverse {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ritual-feature-grid.reverse .ritual-feature-copy,
  .ritual-feature-grid.reverse .ritual-collage {
    order: initial;
  }

  .ritual-feature-copy {
    text-align: center;
  }

  .ritual-feature-copy p {
    margin-inline: auto;
  }

  .ritual-collage {
    min-height: 340px;
    grid-template-rows: 120px 100px 120px;
  }

  .puro-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .puro-hero-lead,
  .puro-hero .cta-group {
    margin-inline: auto;
    justify-content: center;
  }

  .puro-hero-visual {
    order: -1;
  }

  .puro-mandala {
    width: min(100%, 220px);
  }

  .puro-path-grid {
    grid-template-columns: 1fr;
  }

  .puro-path {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .puro-path:last-child {
    border-bottom: none;
  }

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

  .center-cta .btn + .btn {
    margin-left: 0;
    margin-top: 0.65rem;
  }
}

@media (max-width: 640px) {
  .ritual-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .ritual-hero h1 {
    max-width: none;
  }

  .ritual-collage,
  .ritual-collage.ritual-collage-rich,
  .ritual-collage:not(.ritual-collage-rich) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 130px 130px 130px;
    min-height: auto;
    gap: 0.55rem;
  }

  .ritual-collage .c1,
  .ritual-collage .c2,
  .ritual-collage .c3,
  .ritual-collage .c4,
  .ritual-collage .c5,
  .ritual-collage:not(.ritual-collage-rich) .c1,
  .ritual-collage:not(.ritual-collage-rich) .c2,
  .ritual-collage:not(.ritual-collage-rich) .c3,
  .ritual-collage:not(.ritual-collage-rich) .c4 {
    grid-row: auto;
    grid-column: auto;
  }

  .ritual-collage .c5 {
    display: block;
  }

  .ritual-collage .c1 {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  .puro-hero .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .puro-carousel-btn {
    display: none;
  }

  .ritual-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .ritual-tab {
    flex-shrink: 0;
  }

  .ritual-panel-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.profile-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  max-width: 42ch;
  font-style: italic;
}

#yogesh-master .profile-role,
#yogesh-master .zigzag-lead,
#yogesh-master .check-list,
#yogesh-master .profile-note,
#yogesh-master .profile-chips span {
  line-height: 1.65;
}

@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
  }

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

  .zigzag-row,
  .zigzag-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
  }

  .zigzag-row.reverse .zigzag-media,
  .zigzag-row.reverse .zigzag-copy {
    order: initial;
  }

  .zigzag-media {
    aspect-ratio: 16 / 11;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

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

  .zigzag-lead {
    margin-inline: auto;
  }

  .zigzag-copy .check-list {
    text-align: left;
    max-width: 420px;
    margin-inline: auto  auto;
    margin-bottom: 1.35rem;
  }

  .zigzag-copy .cta-group {
    justify-content: center;
  }

  .profile-feature .zigzag-media {
    max-height: none;
    max-width: 320px;
  }

  .profile-chips {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .zigzag-copy .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .zigzag-media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* —— Send via WhatsApp / Email modal —— */
.send-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.send-modal[hidden] {
  display: none !important;
}

.send-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 34, 0.55);
  backdrop-filter: blur(4px);
}

.send-modal-card {
  position: relative;
  width: min(100%, 420px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.send-modal-card h3 {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.send-modal-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.send-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.send-modal-actions .btn {
  width: 100%;
  min-height: 48px;
}

.send-modal-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.send-modal-x {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
}

body.modal-open {
  overflow: hidden;
}

/* =========================================================
   MOBILE APP EXPERIENCE (phones) — impress clients on mobile
   Desktop layouts remain unchanged above 720px.
   ========================================================= */
.app-home,
.app-dock {
  display: none;
}

@media (max-width: 720px) {
  :root {
    --app-radius: 22px;
    --app-peach: #fdf4e8;
    --app-card: #fffdf8;
    --app-shadow: 0 10px 28px rgba(40, 30, 20, 0.08);
  }

  body.has-app-dock {
    background: var(--app-peach);
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  body.has-app-dock .mobile-cta {
    display: none !important;
  }

  /* —— Bottom tab bar —— */
  .app-dock {
    display: flex;
    position: fixed;
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom));
    z-index: 100;
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(27, 77, 62, 0.1);
    border-radius: 22px;
    padding: 0.45rem 0.35rem;
    box-shadow: 0 14px 40px rgba(27, 77, 62, 0.16);
    justify-content: space-around;
    align-items: center;
  }

  .app-dock-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    padding: 0.35rem 0.2rem;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    transition: 0.2s;
  }

  .app-dock-item svg {
    opacity: 0.75;
  }

  .app-dock-item.is-active {
    color: var(--orange-deep);
    background: rgba(230, 126, 34, 0.12);
  }

  .app-dock-item.is-active svg {
    opacity: 1;
    color: var(--orange);
  }

  /* —— App home dashboard —— */
  .app-home {
    display: block;
    padding: 0.85rem 0 1.25rem;
    background:
      radial-gradient(ellipse 80% 50% at 50% -10%, rgba(230, 126, 34, 0.14), transparent 55%),
      linear-gradient(180deg, #fff6ea 0%, var(--app-peach) 100%);
    position: relative;
    overflow: hidden;
  }

  .app-home-diyas {
    position: absolute;
    inset: 0 0 auto;
    height: 48px;
    display: flex;
    justify-content: space-around;
    padding: 0 1rem;
    pointer-events: none;
    opacity: 0.55;
  }

  .app-home-diyas span {
    width: 2px;
    height: 18px;
    background: linear-gradient(#c9a227, transparent);
    position: relative;
  }

  .app-home-diyas span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 16px;
    width: 14px;
    height: 18px;
    margin-left: -7px;
    border-radius: 50% 50% 40% 40%;
    background: radial-gradient(circle at 50% 30%, #ffe9a8, #e67e22 70%);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.45);
  }

  .app-home-inner {
    position: relative;
    z-index: 1;
  }

  .app-greet {
    text-align: center;
    margin: 1.1rem 0 1rem;
  }

  .app-greet p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
  }

  .app-greet h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--green-deep);
    margin: 0.15rem 0;
    line-height: 1.2;
  }

  .app-greet-sub {
    font-size: 0.8rem !important;
    opacity: 0.85;
  }

  .app-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--app-card);
    border: 1px solid rgba(27, 77, 62, 0.1);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    box-shadow: var(--app-shadow);
    margin-bottom: 1rem;
    color: var(--muted);
  }

  .app-search input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--ink);
    font-size: 0.95rem;
  }

  .app-promo {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 55%, #c0392b 100%);
    color: #fff;
    border-radius: var(--app-radius);
    padding: 1.15rem 1rem 1.15rem 1.2rem;
    margin-bottom: 0.9rem;
    box-shadow: 0 14px 32px rgba(211, 84, 0, 0.28);
    overflow: hidden;
    position: relative;
  }

  .app-promo-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 0.25rem;
  }

  .app-promo h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    max-width: 16ch;
  }

  .app-promo-btn {
    display: inline-flex;
    background: #fff;
    color: var(--orange-deep);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
  }

  .app-promo-art {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  }

  .app-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
  }

  .app-bento-card {
    position: relative;
    border-radius: var(--app-radius);
    padding: 1rem 0.9rem 1.1rem;
    min-height: 148px;
    box-shadow: var(--app-shadow);
    overflow: hidden;
    color: var(--ink);
  }

  .app-bento-card.tone-gold {
    background: linear-gradient(160deg, #fff4d6 0%, #ffe7a8 100%);
  }

  .app-bento-card.tone-rose {
    background: linear-gradient(160deg, #ffe4ec 0%, #ffd0dc 100%);
  }

  .app-bento-card p {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 0.25rem;
  }

  .app-bento-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    color: var(--green-deep);
    max-width: 11ch;
  }

  .app-chip {
    display: inline-flex;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
  }

  .app-bento-card.tone-rose .app-chip {
    background: #c0392b;
  }

  .app-bento-icon {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.55);
    color: var(--orange-deep);
  }

  .app-bento-icon.round {
    border-radius: 50%;
    color: #ad1457;
  }

  .app-bento-icon svg {
    width: 22px;
    height: 22px;
  }

  .app-quick {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0.15rem 0.15rem 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .app-quick::-webkit-scrollbar {
    display: none;
  }

  .app-quick-item {
    flex: 0 0 auto;
    width: 72px;
    text-align: center;
    color: var(--ink);
  }

  .app-quick-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 0.4rem;
    box-shadow: var(--app-shadow);
    background: #fff;
  }

  .app-quick-icon svg {
    width: 24px;
    height: 24px;
  }

  .app-quick-icon.iq-orange { background: #fff3e0; color: #e67e22; }
  .app-quick-icon.iq-rose { background: #fce4ec; color: #c2185b; }
  .app-quick-icon.iq-green { background: #e8f5e9; color: #1b4d3e; }
  .app-quick-icon.iq-blue { background: #e3f2fd; color: #1565c0; }

  .app-quick-item small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
  }

  /* Compact classic hero under app dashboard */
  body[data-page="home"] .hero {
    padding: 0.35rem 0 1.25rem;
    background: transparent;
  }

  body[data-page="home"] .hero-logo {
    width: min(58%, 180px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  body[data-page="home"] .hero .cta-group {
    display: none;
  }

  body[data-page="home"] .stats {
    margin: 0 0.85rem 1rem;
    border-radius: var(--app-radius);
    background: var(--app-card);
    box-shadow: var(--app-shadow);
    border: 1px solid rgba(27, 77, 62, 0.08);
  }

  body[data-page="home"] .stats-grid {
    gap: 0.85rem 0.35rem;
  }

  /* App-like cards sitewide on mobile */
  .service-card,
  .ritual-card,
  .why-item,
  .blog-card,
  .consult-card,
  .number-card {
    border-radius: 20px !important;
    box-shadow: var(--app-shadow);
  }

  .btn {
    border-radius: 999px;
    min-height: 46px;
  }

  .btn-sm {
    min-height: 40px;
    border-radius: 999px;
  }

  .section {
    padding: 2.1rem 0;
  }

  .section-alt {
    background: rgba(255, 255, 255, 0.35);
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  .center-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Coverflow → single full-bleed app card */
  .coverflow {
    margin: 0 -0.15rem;
  }

  .coverflow-stage {
    min-height: 420px;
  }

  .coverflow-card {
    border-radius: 24px;
    box-shadow: var(--app-shadow);
  }

  .coverflow-copy .btn {
    border-radius: 999px;
  }

  .puro-discover {
    border-radius: 20px;
    background: var(--app-card);
    box-shadow: var(--app-shadow);
  }

  /* Ritual page app polish */
  .ritual-hero {
    border-radius: 0 0 28px 28px;
    margin-bottom: 0.5rem;
  }

  .ritual-hero-copy .btn-accent {
    border-radius: 999px;
    width: min(100%, 240px);
  }

  .ritual-feature {
    padding: 1.75rem 0;
  }

  .ritual-feature-copy h2 {
    font-size: 1.45rem;
  }

  .ritual-collage {
    border-radius: 20px;
  }

  .collage-item {
    border-radius: 18px;
  }

  .ritual-tabs {
    background: var(--app-card);
    border-radius: 999px;
    padding: 0.35rem;
    box-shadow: var(--app-shadow);
    border: 1px solid rgba(27, 77, 62, 0.08);
    gap: 0.25rem;
  }

  .ritual-tab {
    border-radius: 999px;
    border: none;
    padding: 0.55rem 0.95rem;
  }

  .ritual-tab.active {
    background: var(--orange);
    color: #fff;
  }

  .ritual-panel-rich {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .site-header {
    background: rgba(253, 244, 232, 0.92);
    backdrop-filter: blur(12px);
  }

  .page-hero {
    border-radius: 0 0 24px 24px;
  }

  .cta-banner {
    margin: 0 0.85rem 1rem;
    border-radius: var(--app-radius);
  }

  .site-footer {
    padding-bottom: 1rem;
  }
}

@media (max-width: 380px) {
  .app-bento-card h3 {
    font-size: 0.92rem;
  }

  .app-promo h3 {
    font-size: 1.02rem;
  }

  .app-dock-item {
    font-size: 0.62rem;
  }
}

.app-ritual-strip {
  display: none;
}

@media (max-width: 720px) {
  .app-ritual-strip {
    display: block;
    padding: 0.85rem 0 0.35rem;
  }

  .app-quick-static {
    justify-content: space-between;
    overflow: visible;
  }

  .app-quick-static .app-quick-item {
    width: auto;
    flex: 1;
  }

  .app-quick-static .app-quick-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  /* Between 721–900 keep old mobile-cta; hide dock */
}

@media (min-width: 721px) and (max-width: 900px) {
  body.has-app-dock .mobile-cta {
    display: flex !important;
  }

  body.has-app-dock {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .app-dock {
    display: none !important;
  }
}

/* —— Enhanced mobile app chrome —— */
.app-topbar {
  display: none;
}

@media (max-width: 720px) {
  .app-topbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 80;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.85rem;
    padding-top: calc(0.55rem + env(safe-area-inset-top));
    background: rgba(253, 244, 232, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(27, 77, 62, 0.08);
  }

  body.has-app-topbar .site-header {
    display: none;
  }

  .app-topbar strong {
    font-size: 1rem;
    color: var(--green-deep);
  }

  .app-topbar-back,
  .app-topbar-wa {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--green);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.08);
  }

  .app-topbar-wa {
    background: #25d366;
    color: #fff;
  }

  .app-greet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 0.85rem;
  }

  .app-greet {
    text-align: left;
    margin: 0.35rem 0 0.85rem;
  }

  .app-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--app-shadow);
    flex-shrink: 0;
  }

  .app-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .app-action-chips {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .app-action-chips::-webkit-scrollbar { display: none; }

  .app-chip-btn {
    flex: 0 0 auto;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    background: #fff;
    color: var(--green-deep);
    box-shadow: var(--app-shadow);
  }

  .app-chip-btn.call { background: var(--green); color: #fff; }
  .app-chip-btn.wa { background: #25d366; color: #fff; }

  .app-search {
    position: relative;
    z-index: 5;
  }

  .app-search-results {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(20, 40, 30, 0.14);
    margin: -0.35rem 0 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(27, 77, 62, 0.08);
  }

  .app-search-results a,
  .app-search-empty {
    display: block;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(27, 77, 62, 0.06);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-deep);
  }

  .app-search-results a:last-child { border-bottom: none; }
  .app-search-results a:active { background: rgba(230, 126, 34, 0.08); }
  .app-search-empty { color: var(--muted); font-weight: 500; }

  .app-promo-track {
    position: relative;
    margin-bottom: 0.45rem;
    min-height: 132px;
  }

  .app-promo-track .app-promo {
    display: none;
    margin-bottom: 0;
  }

  .app-promo-track .app-promo.is-active {
    display: grid;
    animation: app-fade-in 0.45s ease;
  }

  .app-promo.tone-green {
    background: linear-gradient(135deg, #1b4d3e 0%, #2a6b56 60%, #143d32 100%);
  }

  .app-promo.tone-deep {
    background: linear-gradient(135deg, #5a3322 0%, #8a4b2a 55%, #3a2218 100%);
  }

  .app-promo-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 0 0.95rem;
  }

  .app-promo-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(27, 77, 62, 0.22);
  }

  .app-promo-dots button.active {
    background: var(--orange);
    transform: scale(1.25);
  }

  .app-section-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0.35rem 0 0.7rem;
  }

  .app-quick-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem 0.35rem;
    overflow: visible;
    margin-bottom: 1.15rem;
    padding: 0;
  }

  .app-quick-full .app-quick-item {
    width: auto;
  }

  .app-quick-full .app-quick-icon {
    width: 54px;
    height: 54px;
  }

  .app-quick-icon.iq-gold { background: #fff8e1; color: #f9a825; }
  .app-quick-icon.iq-teal { background: #e0f2f1; color: #00897b; }

  .app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
  }

  .app-feature-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    background: var(--app-card);
    border-radius: 16px;
    padding: 0.55rem 0.75rem 0.55rem 0.55rem;
    box-shadow: var(--app-shadow);
  }

  .app-feature-row img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
  }

  .app-feature-row strong {
    display: block;
    font-size: 0.92rem;
    color: var(--green-deep);
    line-height: 1.25;
  }

  .app-feature-row small {
    color: var(--muted);
    font-size: 0.75rem;
  }

  .app-feature-row em {
    font-style: normal;
    color: var(--orange);
    font-weight: 700;
  }

  .app-trust-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    background: linear-gradient(135deg, #fff 0%, #fff6ea 100%);
    border-radius: 16px;
    padding: 0.85rem 0.45rem;
    box-shadow: var(--app-shadow);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .app-trust-mini strong {
    display: block;
    color: var(--green-deep);
    font-size: 0.95rem;
  }

  .app-trust-mini span {
    font-size: 0.68rem;
    color: var(--muted);
  }

  .app-dock {
    padding: 0.4rem 0.3rem calc(0.4rem + env(safe-area-inset-bottom) * 0.15);
  }

  .app-dock-item {
    position: relative;
    padding: 0.4rem 0.15rem 0.3rem;
  }

  .app-dock-ico {
    width: 36px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    transition: 0.2s;
  }

  .app-dock-item.is-active .app-dock-ico {
    background: rgba(230, 126, 34, 0.18);
  }

  .app-dock-item.is-active {
    color: var(--orange-deep);
    background: transparent;
  }

  /* Home: hide bulky classic hero; keep richer sections below */
  body[data-page="home"] .hero {
    display: none;
  }

  body[data-page="home"] .stats {
    display: none;
  }

  body[data-page="home"] .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  body[data-page="home"] .logo-img {
    height: 40px;
  }

  /* Press feedback */
  .app-bento-card:active,
  .app-feature-row:active,
  .app-quick-item:active,
  .app-promo:active {
    transform: scale(0.98);
    opacity: 0.92;
  }

  /* Coverflow & numerology as app cards */
  .num-services,
  .puro-showcase {
    padding-top: 1.5rem;
  }

  .coverflow-card {
    border-radius: 22px;
  }

  .page-hero {
    padding: 1.25rem 0 1.5rem;
    text-align: left;
  }

  .page-hero h1 {
    text-align: left;
  }

  .calc-layout,
  .contact-grid {
    gap: 1.25rem;
  }

  .form-card,
  .calc-card,
  .consult-card {
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(40, 30, 20, 0.08);
  }
}

@keyframes app-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 380px) {
  .app-quick-full {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 0.2rem;
  }

  .app-quick-full .app-quick-icon {
    width: 48px;
    height: 48px;
  }

  .app-trust-mini strong {
    font-size: 0.85rem;
  }
}

/* =========================================================
   Native app shell v2 — calm concierge UI (≤720px)
   Inspired by Headspace / Temple Connect / 2026 mobile trends
   ========================================================= */
@media (max-width: 720px) {
  :root {
    --shell-bg: #f3ebe0;
    --shell-sheet: #faf6f0;
    --shell-ink: #1a2e26;
    --shell-muted: #6b7a72;
    --shell-green: #1b4d3e;
    --shell-green-2: #2a6b56;
    --shell-orange: #e07a2f;
    --shell-radius: 24px;
    --shell-shadow: 0 8px 24px rgba(26, 46, 38, 0.08);
  }

  body.has-app-dock {
    background: var(--shell-sheet) !important;
    padding-bottom: calc(88px + env(safe-area-inset-bottom)) !important;
  }

  /* Hide website chrome on home — feel like an app */
  body[data-page="home"].has-app-dock .site-header,
  body[data-page="home"] .hero,
  body[data-page="home"] .stats,
  body[data-page="home"] .num-services,
  body[data-page="home"] .puro-showcase,
  body[data-page="home"] .section:not(.app-home),
  body[data-page="home"] .cta-banner,
  body[data-page="home"] .site-footer,
  body[data-page="home"] .mobile-cta {
    display: none !important;
  }

  body[data-page="home"] main {
    padding: 0;
  }

  .app-home.app-shell {
    display: block !important;
    padding: 0 !important;
    background: var(--shell-sheet) !important;
    overflow: visible !important;
    min-height: 100dvh;
  }

  .app-home-diyas { display: none !important; }

  /* —— Immersive hero —— */
  .app-shell-hero {
    position: relative;
    padding: calc(1.1rem + env(safe-area-inset-top)) 1.15rem 1.35rem;
    color: #fff;
    overflow: visible;
    z-index: 2;
  }

  .app-shell-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 90% 70% at 85% 10%, rgba(224, 122, 47, 0.35), transparent 50%),
      radial-gradient(ellipse 70% 60% at 10% 90%, rgba(201, 162, 39, 0.2), transparent 45%),
      linear-gradient(165deg, #143528 0%, var(--shell-green) 45%, #245a48 100%);
  }

  .app-shell-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
    pointer-events: none;
  }

  .app-shell-hero-inner {
    position: relative;
    z-index: 1;
  }

  .app-shell .app-search-results {
    position: relative;
    z-index: 20;
  }

  .app-shell-status {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
  }

  .app-shell-hello {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.78;
  }

  .app-shell-status h1 {
    margin: 0.2rem 0 0.15rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .app-shell-place {
    margin: 0;
    font-size: 0.84rem;
    opacity: 0.72;
  }

  .app-shell-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .app-shell-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .app-shell-search {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .app-shell-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .app-shell-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
  }

  .app-shell .app-search-results {
    margin: 0.55rem 0 0;
    border-radius: 16px;
    background: #fff;
    border: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
  }

  .app-shell .app-search-results a,
  .app-shell .app-search-empty {
    padding: 0.9rem 1rem;
    color: var(--shell-ink);
    border-bottom: 1px solid rgba(26, 46, 38, 0.06);
  }

  /* —— Sheet body (no overlap with hero) —— */
  .app-shell-sheet {
    position: relative;
    margin-top: 0;
    padding: 1.1rem 1.05rem 1.5rem;
    background: var(--shell-sheet);
    border-radius: 0;
    box-shadow: none;
  }

  .app-today {
    position: relative;
    display: block;
    margin: 0 0 1.35rem;
    height: 200px;
    border-radius: var(--shell-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 46, 38, 0.18);
    transform: none;
    background: #143528;
  }

  .app-today-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.45s ease;
  }

  /* Logo/wheel assets: keep art clear, text on the left */
  .app-today-img[src*="logo-wheel"],
  .app-today-img[src*="logo.png"] {
    object-fit: contain;
    object-position: right center;
    width: 58%;
    left: auto;
    right: -4%;
    top: 50%;
    height: 120%;
    transform: translateY(-50%);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  }

  .app-today-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12, 28, 22, 0.92) 0%, rgba(12, 28, 22, 0.72) 42%, rgba(12, 28, 22, 0.25) 100%);
    pointer-events: none;
  }

  .app-today-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 1.1rem 1.15rem 1.2rem;
    color: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 68%;
  }

  .app-today-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    margin-bottom: 0.45rem;
  }

  .app-today-copy h2 {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }

  .app-today-copy p {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    opacity: 0.85;
  }

  .app-today-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--shell-green);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .app-today:active {
    transform: scale(0.985);
  }

  .app-shell-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0.15rem 0 0.75rem;
  }

  .app-shell-head h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--shell-ink);
  }

  .app-shell-head a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--shell-orange);
  }

  /* Circular photo categories — Temple Connect style */
  .app-cats {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.1rem 0.15rem 1.15rem;
    margin: 0 -0.25rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .app-cats::-webkit-scrollbar { display: none; }

  .app-cat {
    flex: 0 0 auto;
    width: 68px;
    text-align: center;
    scroll-snap-align: start;
    color: var(--shell-ink);
  }

  .app-cat img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 0.4rem;
    border: 2.5px solid #fff;
    box-shadow: 0 6px 16px rgba(26, 46, 38, 0.12);
    background: #fff;
  }

  .app-cat span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--shell-muted);
    line-height: 1.2;
  }

  .app-cat:active img {
    transform: scale(0.94);
  }

  /* Horizontal ritual rail */
  .app-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 0.1rem 1.25rem;
    margin: 0 -0.15rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .app-rail::-webkit-scrollbar { display: none; }

  .app-rail-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shell-shadow);
    color: var(--shell-ink);
  }

  .app-rail-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
  }

  .app-rail-card div {
    padding: 0.65rem 0.7rem 0.75rem;
  }

  .app-rail-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.15rem;
  }

  .app-rail-card small {
    color: var(--shell-muted);
    font-size: 0.7rem;
  }

  .app-rail-card:active {
    transform: scale(0.97);
  }

  /* Numerology tiles */
  .app-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
  }

  .app-tile {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    min-height: 118px;
    box-shadow: var(--shell-shadow);
    color: #fff;
  }

  .app-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .app-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(12, 28, 22, 0.78) 100%);
  }

  .app-tile strong {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 1;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .app-tile-wide {
    grid-column: 1 / -1;
    min-height: 132px;
    display: grid;
    grid-template-columns: 88px 1fr;
    background: linear-gradient(135deg, #1b4d3e, #2a6b56);
    color: #fff;
  }

  .app-tile-wide img {
    position: relative;
    width: 72px;
    height: 72px;
    margin: auto 0 auto 0.85rem;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .app-tile-wide::after { display: none; }

  .app-tile-wide div {
    position: relative;
    z-index: 1;
    padding: 1rem 1rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .app-tile-wide span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .app-tile-wide strong {
    position: static;
    font-size: 1.15rem;
    margin: 0.2rem 0 0.35rem;
    font-family: var(--font-display);
    font-weight: 600;
  }

  .app-tile-wide em {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffd9a8;
  }

  .app-tile:active {
    transform: scale(0.98);
  }

  /* Call / WhatsApp action pair */
  .app-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .app-act {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shell-shadow);
    color: var(--shell-ink);
  }

  .app-act span {
    font-weight: 700;
    font-size: 0.92rem;
  }

  .app-act small {
    font-size: 0.72rem;
    color: var(--shell-muted);
  }

  .app-act.call {
    background: var(--shell-green);
    color: #fff;
  }

  .app-act.call small { color: rgba(255, 255, 255, 0.7); }

  .app-act.wa {
    background: #1f9e55;
    color: #fff;
  }

  .app-act.wa small { color: rgba(255, 255, 255, 0.75); }

  .app-act:active { transform: scale(0.98); }

  .app-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    padding: 0.95rem 0.4rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shell-shadow);
    text-align: center;
  }

  .app-trust-bar strong {
    display: block;
    font-size: 0.95rem;
    color: var(--shell-green);
    font-weight: 700;
  }

  .app-trust-bar span {
    font-size: 0.65rem;
    color: var(--shell-muted);
    font-weight: 600;
  }

  /* —— Floating glass dock —— */
  .app-dock {
    display: flex !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: calc(0.65rem + env(safe-area-inset-bottom)) !important;
    padding: 0.4rem 0.3rem !important;
    border-radius: 26px !important;
    background: rgba(255, 252, 247, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow:
      0 12px 40px rgba(26, 46, 38, 0.16),
      0 2px 8px rgba(26, 46, 38, 0.06) !important;
    backdrop-filter: blur(20px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  }

  .app-dock-item {
    flex: 1;
    gap: 0.15rem !important;
    padding: 0.4rem 0.1rem 0.3rem !important;
    border-radius: 18px !important;
    color: var(--shell-muted) !important;
    background: transparent !important;
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
  }

  .app-dock-ico {
    width: 40px !important;
    height: 30px !important;
    border-radius: 14px !important;
    margin: 0 auto;
    transition: 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  }

  .app-dock-item.is-active {
    color: var(--shell-green) !important;
    background: transparent !important;
  }

  .app-dock-item.is-active .app-dock-ico {
    background: linear-gradient(145deg, rgba(224, 122, 47, 0.22), rgba(27, 77, 62, 0.12)) !important;
    transform: translateY(-2px);
  }

  .app-dock-item.is-active svg {
    color: var(--shell-orange) !important;
    stroke-width: 2.1;
  }

  /* Top bar polish */
  .app-topbar {
    background: rgba(250, 246, 240, 0.92) !important;
    border-bottom: 1px solid rgba(26, 46, 38, 0.06) !important;
  }

  .app-topbar strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem !important;
  }

  /* Inner pages: softer app feel */
  body.has-app-dock:not([data-page="home"]) .page-hero {
    background: linear-gradient(165deg, #143528, #1b4d3e 60%, #245a48);
    color: #fff;
    border-radius: 0 0 28px 28px;
    padding: 1.5rem 0 1.75rem;
  }

  body.has-app-dock:not([data-page="home"]) .page-hero h1,
  body.has-app-dock:not([data-page="home"]) .page-hero p {
    color: #fff;
  }

  body.has-app-dock:not([data-page="home"]) .page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 380px) {
  .app-today { height: 190px; }
  .app-today-copy h2 { font-size: 1.2rem; }
  .app-cat { width: 62px; }
  .app-cat img { width: 56px; height: 56px; }
  .app-rail-card { flex-basis: 136px; }
  .app-dock-item { font-size: 0.58rem !important; }
}
