/* ============================================================
   HEALING YOU LIFE — Components
   ============================================================ */

img,
picture {
  border-radius: var(--radius-lg);
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-12));
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

[lang='hi'],
[lang='mr'] {
  font-family: var(--font-devanagari);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-primary);
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: var(--space-2);
  z-index: 200;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
}
.skip-link:focus {
  left: var(--space-2);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-border) l c h / 0.5);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: var(--space-3);
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.brand-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.brand svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 479px) {
  .brand {
    font-size: var(--text-sm);
  }
  .brand svg {
    width: 26px;
    height: 26px;
  }
  .brand-sub {
    display: none;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav-desktop a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--color-text);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  flex-shrink: 0;
}
.lang-switch button {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  white-space: nowrap;
}
@media (max-width: 479px) {
  .header-actions {
    gap: 2px;
  }
  .lang-switch {
    gap: 0;
    padding: 2px;
  }
  .lang-switch button {
    padding: 5px 7px;
    font-size: 10px;
  }
  .icon-btn,
  .nav-toggle {
    width: 32px;
    height: 32px;
  }
  .icon-btn svg,
  .nav-toggle svg {
    width: 16px;
    height: 16px;
  }
  .brand {
    font-size: 13px;
  }
}
.lang-switch button.is-active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.lang-switch button:hover:not(.is-active) {
  color: var(--color-text);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.icon-btn:hover {
  background: var(--color-surface-offset);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-primary);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  justify-content: flex-end;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-indigo-deep);
  color: var(--color-text-inverse);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    oklch(0.12 0.05 300 / 0.92) 0%,
    oklch(0.14 0.05 300 / 0.72) 42%,
    oklch(0.16 0.05 300 / 0.28) 75%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-active, #f0dcb2);
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.18);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  max-width: 16ch;
  color: #fbf5ea;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: #f0bd52;
}
.hero-sub {
  font-size: var(--text-lg);
  max-width: 42ch;
  color: oklch(0.95 0.02 90 / 0.82);
  margin-bottom: var(--space-8);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero-actions .btn-ghost {
  border-color: oklch(1 0 0 / 0.3);
  color: #fbf5ea;
}
.hero-actions .btn-ghost:hover {
  background: oklch(1 0 0 / 0.1);
}

.chakra-strip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.chakra-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 10px 1px currentColor;
}
.chakra-strip span:last-child {
  font-size: var(--text-xs);
  color: oklch(0.95 0.02 90 / 0.65);
  margin-left: var(--space-2);
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: oklch(0.95 0.02 90 / 0.6);
}
.scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  display: block;
}
.trust-item .label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Intro / About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
.split-reverse .split-media {
  order: -1;
}
.split-media {
  position: relative;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media-badge {
  position: absolute;
  bottom: -24px;
  right: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.split-media-badge .num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.split-media-badge .label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.split-body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.pillar {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}
.pillar svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- Chakras section ---------- */
.chakras-section {
  background: var(--color-indigo-deep);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
.chakras-section .eyebrow {
  color: #f0bd52;
}
.chakras-section .section-title {
  color: #fbf5ea;
}
.chakras-section .section-lede {
  color: oklch(0.95 0.02 90 / 0.72);
}
.chakra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.chakra-card {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: oklch(1 0 0 / 0.04);
  border: 1px solid oklch(1 0 0 / 0.09);
  transition:
    background var(--transition-interactive),
    border-color var(--transition-interactive);
}
.chakra-card:hover {
  background: oklch(1 0 0 / 0.07);
  border-color: oklch(1 0 0 / 0.18);
}
.chakra-orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: #1a1225;
  font-weight: 700;
  box-shadow: 0 0 24px 2px currentColor;
}
.chakra-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: #fbf5ea;
}
.chakra-card .chakra-sanskrit {
  font-size: var(--text-xs);
  color: #f0bd52;
  font-style: italic;
  margin-bottom: var(--space-2);
  display: block;
}
.chakra-card p {
  font-size: var(--text-sm);
  color: oklch(0.95 0.02 90 / 0.68);
  margin: 0;
}

/* ---------- Rituals ---------- */
.ritual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.ritual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.ritual-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.ritual-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ritual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.ritual-body {
  padding: var(--space-6) var(--space-6) var(--space-8);
}
.ritual-body .tag {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.ritual-body h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.ritual-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.ritual-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.ritual-benefits li {
  font-size: var(--text-xs);
  color: var(--color-text);
  background: var(--color-surface-offset);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--color-divider);
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}
.process-item .step-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.process-item h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.process-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-scroller {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.testimonial-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
}
.testimonial-card .stars {
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  letter-spacing: 0.1em;
}
.testimonial-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.testimonial-who {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  color: var(--color-primary-active);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
}
.testimonial-loc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-indigo-deep);
  color: var(--color-text-inverse);
  padding: clamp(var(--space-12), 8vw, var(--space-20));
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    oklch(0.7 0.15 75 / 0.28),
    transparent 60%
  );
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}
.cta-band h2 {
  font-size: var(--text-2xl);
  color: #fbf5ea;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.cta-band p {
  color: oklch(0.95 0.02 90 / 0.75);
  margin: 0 auto var(--space-8);
  max-width: 48ch;
}
.cta-band .btn-primary {
  box-shadow: 0 0 0 0 transparent, var(--shadow-lg);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
.contact-info-card {
  background: var(--color-surface-offset);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.contact-info-item p,
.contact-info-item a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field textarea,
.field select {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}
.form-status {
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.form-status.is-visible {
  display: flex;
}
.form-status.success {
  background: var(--color-success-highlight);
  color: var(--color-success-hover);
}
.form-status.error {
  background: var(--color-error-highlight);
  color: var(--color-error-hover);
}
.form-status.loading {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-indigo-deep);
  color: oklch(0.95 0.02 90 / 0.7);
  padding-block: var(--space-16) var(--space-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.footer-brand .brand {
  color: #fbf5ea;
  margin-bottom: var(--space-3);
}
.footer-brand p {
  font-size: var(--text-sm);
  max-width: 32ch;
  color: oklch(0.95 0.02 90 / 0.6);
}
.footer-col h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f0bd52;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: oklch(0.95 0.02 90 / 0.68);
  text-decoration: none;
}
.footer-col a:hover {
  color: #fbf5ea;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
  padding-top: var(--space-8);
  font-size: var(--text-xs);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.07);
  color: oklch(0.95 0.02 90 / 0.75);
}
.footer-socials a:hover {
  background: var(--color-primary);
  color: var(--color-indigo-deep);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ---------- Theme toggle ---------- */
[data-theme-toggle] svg {
  width: 18px;
  height: 18px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chakra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-scroller {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split-body {
    padding-inline: var(--space-8);
  }
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .process-item {
    grid-template-columns: 80px 1fr;
  }
}

@media (min-width: 1200px) {
  .chakra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
