/* Vidhan Yoga (vy) — BEM: block__element--modifier */
:root {
  --primary: #5c4070;
  --primary-deep: #3d2852;
  --primary-light: #8f6fa8;
  --rose: #d4867a;
  --rose-soft: #f9ebe8;
  --gold: #c9a06a;
  --gold-soft: #f5ecdf;
  --paper: #faf8f5;
  --paper-dark: #ebe4dc;
  --ink: #2a1f30;
  --ink-soft: #5c5168;
  --sage: var(--primary-light);
  --sage-deep: var(--primary-deep);
  --sage-light: #a89bc4;
  --img-sky: #ede4f4;
  --cream: var(--paper);
  --cream-dark: var(--paper-dark);
  --sand: var(--gold-soft);
  --accent: var(--rose);
  --accent-soft: var(--rose-soft);
  --white: #ffffff;
  --border: rgba(61, 40, 82, 0.1);
  --border-strong: rgba(61, 40, 82, 0.2);
  --font-display: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(42, 31, 48, 0.1);
  --shadow-sm: 0 8px 24px rgba(42, 31, 48, 0.06);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(143, 111, 168, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(212, 134, 122, 0.08), transparent 50%),
    var(--paper);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vy-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vy-main {
  flex: 1;
}

/* Header */
.vy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(61, 40, 82, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(42, 31, 48, 0.15);
}

.vy-header__container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vy-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.vy-brand__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212, 134, 122, 0.35);
}

.vy-brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vy-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vy-nav__link {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.vy-nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */
.vy-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 5.5rem;
  background:
    linear-gradient(160deg, var(--paper) 0%, var(--rose-soft) 40%, var(--gold-soft) 100%);
}

.vy-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: min(560px, 85vw);
  height: min(560px, 85vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(92, 64, 112, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.vy-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--paper);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.vy-hero__container {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vy-hero__container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.vy-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vy-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.vy-hero__text {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  max-width: 34ch;
  color: var(--ink-soft);
}

.vy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vy-button--primary {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(61, 40, 82, 0.35);
}

.vy-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(61, 40, 82, 0.4);
  color: var(--white);
}

.vy-button--ghost {
  background: var(--white);
  color: var(--primary-deep);
  border: 2px solid var(--border-strong);
}

.vy-button--ghost:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  box-shadow: var(--shadow-sm);
}

.vy-hero__media {
  display: grid;
  place-items: center;
}

.vy-hero__figure {
  margin: 0;
  width: 100%;
  max-width: 420px;
}

.vy-hero__image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
  outline: 1px solid var(--border);
}

.vy-stat-card {
  width: 100%;
  max-width: 380px;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.vy-stat-card__icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.vy-stat-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-deep);
}

/* Sections */
.vy-section {
  padding: 4.5rem 1.5rem;
}

.vy-section--surface {
  background: var(--white);
  box-shadow: inset 0 1px 0 var(--border);
}

.vy-section--warm {
  background: linear-gradient(
    180deg,
    var(--rose-soft) 0%,
    var(--paper) 100%
  );
}

.vy-intro__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vy-intro__layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.vy-intro__text {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.vy-list--compact li {
  padding: 0.65rem 0 0.65rem 2rem;
}

.vy-callout {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.vy-section__container {
  max-width: var(--max);
  margin: 0 auto;
}

.vy-section__header {
  max-width: 44rem;
  margin-bottom: 2.75rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--primary);
}

.vy-section__header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.vy-section__header p {
  margin: 0;
  font-size: 1.1rem;
}

/* Benefit cards */
.vy-card-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 900px) {
  .vy-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vy-card-grid .vy-card:first-child {
    grid-column: span 2;
  }
}

.vy-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vy-card-grid .vy-card:nth-child(2) {
  border-top-color: var(--rose);
}

.vy-card-grid .vy-card:nth-child(3) {
  border-top-color: var(--gold);
}

.vy-section--surface .vy-card {
  background: var(--cream);
}

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

.vy-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  background: var(--rose-soft);
  border-radius: 14px;
  color: var(--primary-deep);
}

.vy-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.vy-card p {
  margin: 0;
  font-size: 0.98rem;
}

/* Two-column detail */
.vy-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .vy-split {
    grid-template-columns: 1fr 1fr;
  }
}

.vy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vy-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--border);
}

.vy-list li:last-child {
  border-bottom: none;
}

.vy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-weight: 700;
  color: var(--sage);
}

.vy-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.vy-quote {
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: normal;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.vy-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.85;
}

/* Styles pills */
.vy-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vy-tag {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-deep);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

/* Steps */
.vy-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .vy-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-step {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vy-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  line-height: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--primary));
  border-radius: 50%;
}

.vy-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.vy-step p {
  margin: 0;
  font-size: 0.95rem;
}

/* Footer */
.vy-footer {
  padding: 3rem 1.5rem;
  background: linear-gradient(165deg, var(--primary-deep) 0%, var(--ink) 100%);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.9rem;
}

.vy-footer a {
  color: var(--gold-soft);
}

.vy-footer p {
  margin: 0.35rem 0;
}

/* Subpages: contact, legal */
.vy-page-hero {
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(165deg, var(--paper) 0%, var(--rose-soft) 55%, var(--gold-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.vy-page-hero__container {
  max-width: var(--max);
  margin: 0 auto;
}

.vy-page-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
}

.vy-page-hero p {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
}

.vy-page-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.vy-back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--sage-deep);
}

.vy-back-link:hover {
  color: var(--accent);
}

.vy-prose {
  max-width: 42rem;
}

.vy-prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}

.vy-prose h2:first-of-type {
  margin-top: 0;
}

.vy-prose p,
.vy-prose li {
  font-size: 1rem;
  line-height: 1.75;
}

.vy-prose ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.vy-prose__meta,
.vy-prose .mfr-legal-meta {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.vy-contact__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .vy-contact__layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.vy-contact__aside {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vy-contact__aside p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.vy-contact__aside p:last-child {
  margin-bottom: 0;
}

.vy-form {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vy-form__field {
  margin-bottom: 1.25rem;
}

.vy-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.vy-form__field input,
.vy-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}

.vy-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.vy-form__field input:focus,
.vy-form__field textarea:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

.vy-form__checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.vy-form__checkbox input {
  margin-top: 0.2rem;
}

.vy-form__message {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.vy-form__message--error {
  color: #a64d3a;
}

.vy-form__message--success {
  color: var(--sage-deep);
}

.vy-form__submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.vy-form__submit:hover:not(:disabled) {
  background: var(--primary);
}

.vy-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Asana library & articles */
.vy-breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.vy-breadcrumb a {
  text-decoration: none;
  font-weight: 500;
}

.vy-pose-hero {
  padding: 2rem 1.5rem 2.5rem;
  background: linear-gradient(165deg, var(--rose-soft), var(--paper));
  border-bottom: 1px solid var(--border);
}

.vy-pose-hero__container {
  max-width: var(--max);
  margin: 0 auto;
}

.vy-pose-hero h1 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--ink);
}

.vy-pose-hero__text {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: 1.1rem;
}

.vy-pose-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vy-pose-meta span {
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}

.vy-article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.vy-article__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .vy-article__layout {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.vy-article__body h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
}

.vy-article__body h2:first-child {
  margin-top: 0;
}

.vy-article__body p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.vy-article__body ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.vy-steps__list {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.vy-steps__list li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.vy-aside {
  padding: 1.35rem;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vy-aside h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--ink);
}

.vy-aside ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.vy-aside li {
  margin-bottom: 0.4rem;
}

.vy-button--block {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.vy-pose-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.vy-image,
.vy-pose-card__image,
.vy-pose-hero__image,
.vy-figure__image,
.vy-page-hero__image,
.vy-featured-card__image,
.vy-guide-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--white);
}

.vy-pose-card__media {
  display: block;
  margin: -0.35rem -0.35rem 0.5rem;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.vy-pose-card__media .vy-pose-card__image {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, var(--img-sky) 0%, var(--paper) 100%);
}

.vy-pose-hero__grid,
.vy-page-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .vy-pose-hero__grid,
  .vy-page-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vy-pose-hero__figure,
.vy-page-hero__figure {
  margin: 0;
}

.vy-pose-hero__figure figcaption,
.vy-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

.vy-figure {
  margin: 0 0 2rem;
}

.vy-figure__image {
  box-shadow: var(--shadow);
}

.vy-pose-card--compact {
  padding: 0.75rem;
}

.vy-pose-card--compact .vy-pose-card__media {
  margin: 0 0 0.5rem;
  border-radius: 10px;
}

.vy-featured-row h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.vy-featured-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .vy-featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vy-featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.vy-featured-card__image {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, var(--img-sky) 0%, var(--paper) 100%);
}

.vy-featured-card__label {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.vy-guide-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .vy-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vy-guide-card strong {
  color: var(--ink);
}

.vy-guide-card span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.vy-guide-card__image {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: linear-gradient(180deg, var(--img-sky) 0%, var(--paper) 100%);
}

.vy-pose-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem;
  padding-top: 0;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.vy-pose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.vy-pose-card__icon {
  font-size: 1.75rem;
}

.vy-pose-card strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.vy-pose-card em {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--sage);
}

.vy-pose-card span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.vy-pose-card__meta {
  font-size: 0.78rem !important;
  font-weight: 600;
  color: var(--sage-deep) !important;
  margin-top: 0.25rem;
}

.vy-related {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vy-related .vy-pose-card {
  padding: 0.85rem;
}

.vy-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.vy-section--compact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-strong);
}

.vy-section--compact h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

.vy-guide-links {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .vy-guide-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-guide-links a {
  display: block;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--sage-deep);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
}

.vy-guide-links a:hover {
  border-color: var(--sage);
  color: var(--ink);
}

.vy-prose--wide {
  max-width: 48rem;
}

.vy-cta {
  margin-top: 2.5rem;
}

.vy-faq details {
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vy-faq summary {
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.vy-faq p {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
}

.vy-pose-grid--home {
  margin-top: 1rem;
}

.vy-pose-grid--home .vy-pose-card {
  background: var(--cream);
}

.vy-section__cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Home page layout ── */

.vy-hero--home {
  padding: 0;
  background: var(--primary-deep);
}

.vy-hero--home::before,
.vy-hero--home::after {
  display: none;
}

.vy-hero__wrapper {
  padding: 3.5rem 1.5rem 4.5rem;
  background:
    linear-gradient(145deg, var(--primary-deep) 0%, var(--primary) 42%, #6b4d82 100%);
}

.vy-hero__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .vy-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.vy-hero--home .vy-eyebrow {
  color: var(--rose-soft);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.vy-hero--home h1 {
  color: var(--white);
}

.vy-hero--home .vy-hero__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
}

.vy-hero--home .vy-button--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.vy-hero--home .vy-button--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.vy-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.vy-hero__metric {
  padding: 0.85rem 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.vy-hero__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.vy-hero__metric span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}

.vy-hero__media {
  margin: 0;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vy-hero__media .vy-hero__image {
  border: none;
  outline: none;
  box-shadow: none;
}

.vy-section--home {
  padding: 4rem 1.5rem;
}

.vy-section__header--center {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  padding-left: 0;
  border-left: none;
  text-align: center;
}

.vy-section__header--center::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 1.25rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-light), var(--rose));
}

.vy-feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vy-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-feature-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vy-feature-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--primary-deep);
}

.vy-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.vy-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.vy-card-grid--bento {
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vy-card-grid--bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, auto);
  }

  .vy-card-grid--bento .vy-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2.25rem;
  }

  .vy-card-grid--bento .vy-card--featured h3 {
    font-size: 1.35rem;
  }

  .vy-card-grid--bento .vy-card--featured p {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .vy-card-grid--bento .vy-card--featured .vy-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

.vy-pose-grid--horizontal {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .vy-pose-grid--horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vy-pose-grid--horizontal .vy-pose-card {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 1rem;
  row-gap: 0.2rem;
  padding: 1rem;
  padding-top: 1rem;
  align-items: start;
  background: var(--white);
}

.vy-pose-grid--horizontal .vy-pose-card__media {
  grid-row: 1 / span 3;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.vy-pose-grid--horizontal .vy-pose-card__media .vy-pose-card__image {
  aspect-ratio: 1;
  object-fit: contain;
}

.vy-pose-grid--horizontal .vy-pose-card strong {
  font-size: 1.1rem;
  padding-top: 0.15rem;
}

.vy-guide-grid--featured {
  gap: 1rem;
}

@media (min-width: 900px) {
  .vy-guide-grid--featured {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 340px;
  }

  .vy-guide-grid--featured .vy-guide-card--featured {
    grid-row: 1 / -1;
    padding: 1.25rem;
  }

  .vy-guide-grid--featured .vy-guide-card--featured .vy-guide-card__image {
    aspect-ratio: 16 / 11;
    flex: 1;
  }
}

.vy-guide-grid--featured .vy-guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vy-guide-grid--featured .vy-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

@media (min-width: 600px) {
  .vy-tag-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-tag-grid .vy-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  text-align: center;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
}

.vy-faq--grid {
  display: grid;
  gap: 1rem;
}

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

.vy-faq--grid details {
  margin-bottom: 0;
  height: 100%;
}

.vy-steps--row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vy-steps--row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vy-steps--row .vy-step {
  position: relative;
  padding-top: 2rem;
}

.vy-steps--row .vy-step::before {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  margin-bottom: 0;
}
