.vs-hero {
  padding: clamp(34px, 5vw, 64px) 0 40px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .78), rgba(244, 241, 234, 0));
}

.vs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.vs-kicker {
  color: var(--vs-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vs-hero h1,
.vs-section h2,
.vs-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--vs-brown);
  letter-spacing: 0;
}

.vs-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .98;
  margin: 12px 0 18px;
}

.vs-lead {
  color: var(--vs-muted);
  font-size: 21px;
  line-height: 1.48;
  max-width: 720px;
}

.vs-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vs-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.vs-audio-player {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(100%, 620px);
  margin: 20px 0 0;
  padding: 12px;
  background: linear-gradient(135deg, #eef7f2, #fffaf2);
  border: 1px solid rgba(82, 125, 112, .28);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(47, 39, 35, .08);
}

.vs-audio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vs-tea);
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  overflow: hidden;
}

.vs-audio-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vs-audio-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.vs-audio-main strong {
  display: block;
  color: var(--vs-brown);
  font-size: 16px;
}

.vs-audio-main span {
  display: block;
  color: var(--vs-muted);
  font-size: 14px;
  line-height: 1.35;
}

.vs-audio-main audio {
  width: 100%;
  min-height: 38px;
}

.vs-pill {
  border: 1px solid var(--vs-line);
  background: rgba(255, 250, 242, .75);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--vs-muted);
  font-size: 14px;
  font-weight: 700;
}

.vs-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(82, 125, 112, .35);
  border-radius: 999px;
  background: #f6fbf7;
  color: var(--vs-tea);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 850;
}

.vs-status-pill.light {
  border-color: rgba(255, 250, 242, .45);
  background: rgba(255, 250, 242, .12);
  color: #fffaf2;
}

.vs-portrait {
  position: relative;
  min-height: 520px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(91, 53, 43, .02), rgba(36, 24, 18, .5)),
    url("../sayuri-home-hero.webp"),
    radial-gradient(circle at 50% 25%, #fff6e8, #e7c8a8 42%, #8b5c47 100%);
  background-size: cover;
  background-position: center;
  box-shadow: var(--vs-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
}

.vs-portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vs-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 19, 15, .16), transparent 58%),
    linear-gradient(180deg, rgba(30, 19, 15, .02), rgba(30, 19, 15, .7));
}

.vs-portrait-card {
  position: relative;
  z-index: 1;
  max-width: 430px;
  background: rgba(255, 250, 242, .92);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  padding: 20px;
}

.vs-section {
  padding: 46px 0;
}

.vs-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.vs-card {
  background: var(--vs-paper);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  padding: 22px;
}

.vs-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.vs-card p,
.vs-card li {
  color: var(--vs-muted);
  line-height: 1.55;
}

.vs-home-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.vs-home-products-head h2 {
  margin-bottom: 0;
}

.vs-home-products-head p {
  color: var(--vs-muted);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.vs-home-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.vs-home-product-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px minmax(0, 1fr);
  background: linear-gradient(180deg, #fffdf7, #fbf4e9);
  box-shadow: 0 16px 42px rgba(47, 39, 35, .08);
}

.vs-home-product-media {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  color: #fffaf2;
  text-decoration: none;
}

.vs-home-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 20, .02), rgba(17, 24, 20, .72)),
    linear-gradient(90deg, rgba(17, 24, 20, .18), transparent 58%);
}

.vs-home-product-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.vs-home-product-card:hover img {
  transform: scale(1.035);
}

.vs-home-product-body {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.vs-home-product-body h3 {
  font-size: 26px;
  line-height: 1.05;
}

.vs-home-product-body p {
  margin: 0;
}

.vs-home-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.vs-home-product-meta span {
  border: 1px solid rgba(82, 125, 112, .22);
  border-radius: 999px;
  background: #f2faf5;
  color: var(--vs-tea);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 850;
}

.vs-home-product-buy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.vs-home-product-buy strong {
  color: var(--vs-brown);
  font-size: 23px;
}

.vs-home-product-buy .vs-button,
.vs-home-product-buy .vs-status-pill {
  justify-self: end;
  text-align: center;
}

.vs-home-product-card.is-featured {
  border-color: rgba(139, 63, 52, .34);
  box-shadow: 0 24px 70px rgba(139, 63, 52, .14);
}

.vs-home-product-card.is-featured .vs-home-product-meta span {
  background: #fff1dc;
  border-color: rgba(201, 150, 79, .35);
  color: var(--vs-red);
}

.vs-product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 250, 242, .94);
  color: var(--vs-red);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(17, 24, 20, .16);
}

.vs-home-product-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, .3);
  border-radius: 50%;
  background: rgba(255, 250, 242, .18);
  color: #fffaf2;
  backdrop-filter: blur(14px);
}

.vs-home-product-icon .vs-icon {
  width: 26px;
  height: 26px;
}

.vs-offer {
  background: var(--vs-brown);
  color: #fffaf2;
  padding: 42px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.vs-offer h2,
.vs-offer h3 {
  color: #fffaf2;
}

.vs-price {
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.vs-faq details {
  background: var(--vs-paper);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.vs-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--vs-brown);
}

.vs-footer {
  border-top: 1px solid var(--vs-line);
  padding: 28px 0;
  color: var(--vs-muted);
}

.vs-bio-wrap {
  min-height: calc(100vh - 72px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.vs-bio-photo {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  background: #233027;
}

.vs-bio-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.vs-bio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 20, .04), rgba(17, 24, 20, .72)),
    linear-gradient(90deg, rgba(17, 24, 20, .16), transparent 56%);
}

.vs-bio-photo-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 8px;
  background: rgba(17, 24, 20, .78);
  color: #fffaf2;
  padding: 18px;
  backdrop-filter: blur(16px);
}

.vs-bio-photo-card span {
  color: #e3c99d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vs-bio-photo-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.06;
}

.vs-quiz {
  background: var(--vs-paper);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  box-shadow: var(--vs-shadow);
  padding: clamp(22px, 4vw, 34px);
  align-self: center;
}

.vs-quiz h1 {
  font-family: Georgia, serif;
  color: var(--vs-brown);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  margin: 12px 0 14px;
}

.vs-bio-lead {
  max-width: 680px;
  color: var(--vs-muted);
  font-size: 18px;
  line-height: 1.55;
}

.vs-bio-buttons {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.vs-bio-buttons a {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(139, 63, 52, .18);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--vs-brown);
  padding: 16px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.vs-bio-buttons a:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 63, 52, .42);
  background: #fff8ea;
}

.vs-bio-buttons span {
  color: var(--vs-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vs-bio-buttons strong {
  font-size: 20px;
  line-height: 1.15;
}

.vs-bio-buttons small {
  color: var(--vs-muted);
  font-size: 15px;
  line-height: 1.4;
}

.vs-bio-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vs-bio-trust span {
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: rgba(244, 241, 234, .8);
  color: var(--vs-muted);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 850;
}

.vs-bio-disclaimer {
  color: var(--vs-muted);
  font-size: 14px;
  margin: 14px 0 0;
}
