﻿:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #19221e;
  --muted: #65716a;
  --line: #dfe5df;
  --green: #2f6b4f;
  --green-dark: #173b2b;
  --mint: #dceee4;
  --coral: #d9806c;
  --gold: #c9a65c;
  --lavender: #e9e4f3;
  --shadow: 0 18px 55px rgba(25, 34, 30, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(25, 34, 30, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a,
.header-cta {
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-nav a:hover,
.header-cta:hover {
  opacity: 0.78;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 72px) 76px;
  color: #ffffff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 28, 22, 0.84) 0%, rgba(12, 28, 22, 0.54) 42%, rgba(12, 28, 22, 0.12) 75%),
    linear-gradient(0deg, rgba(12, 28, 22, 0.54), rgba(12, 28, 22, 0.08) 45%);
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6c9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(217, 128, 108, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.access-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(820px, 100%);
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-head h2 + p,
.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.benefits {
  background: linear-gradient(180deg, var(--bg), #eef5ee);
}

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

.benefits-grid article,
.case-grid article,
.testimonial-grid figure,
.outcome-block,
.signup-form,
.program-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(25, 34, 30, 0.06);
}

.benefits-grid article {
  padding: 28px;
  min-height: 240px;
}

.icon,
.case-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
}

.benefits-grid p,
.case-grid p,
.testimonial-grid p,
.outcome-block p,
.program-panel p,
.signup-form p {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
}

.program-panel {
  padding: clamp(24px, 4vw, 36px);
}

.video-preview {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), #315f49);
  color: #ffffff;
}

.video-preview p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.play-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--coral);
  transform: translate(-50%, -50%);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 6vw, 76px);
}

.outcome-block {
  padding: 30px;
}

.outcome-block ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.accent-block {
  background: var(--lavender);
}

.process {
  background: var(--green-dark);
  color: #ffffff;
}

.process .eyebrow {
  color: #ffd6c9;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline article {
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 800;
}

.timeline p,
.process .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.control-strip {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr 1.28fr;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.control-strip div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.control-strip strong,
.control-strip span {
  display: block;
}

.control-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.case-grid article {
  padding: 30px;
}

.case-grid article:nth-child(2) .case-label {
  background: var(--lavender);
}

.case-grid article:nth-child(3) .case-label {
  background: #f3dfd8;
}

.testimonials {
  background: #f5f0e8;
}

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
}

blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

figcaption {
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
}

.legal-summary {
  background: #f6f4ee;
}

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

.terms-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(25, 34, 30, 0.06);
}

.terms-grid p,
.terms-grid li {
  color: var(--muted);
}

.terms-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.terms-grid a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(25, 34, 30, 0.05);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  color: var(--green);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.payment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(220, 238, 228, 0.72), rgba(233, 228, 243, 0.78)),
    var(--bg);
}

.final-copy h2 {
  max-width: 760px;
}

.final-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.price-box {
  width: min(460px, 100%);
  margin: 30px 0 0;
  padding: 26px;
  border: 1px solid rgba(47, 107, 79, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.price-box span,
.price-box small {
  display: block;
  color: var(--muted);
}

.price-box strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 42px;
  line-height: 1;
}

.compact {
  margin-top: 24px;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #ffffff;
  font-weight: 800;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.signup-form h3 {
  margin-bottom: 6px;
  font-size: 26px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.signup-form input[type="text"],
.signup-form input[type="tel"],
.signup-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.signup-form input:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 128, 108, 0.42);
  outline-offset: 3px;
}

.pay-options {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pay-options legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.pay-options label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent {
  line-height: 1.35;
}

.consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
  color: var(--green);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #ffffff;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  padding: 90px clamp(18px, 5vw, 72px);
  background: var(--bg);
}

.legal-content {
  width: min(920px, 100%);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 60px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .benefits-grid,
  .case-grid,
  .testimonial-grid,
  .outcome-grid,
  .terms-grid,
  .timeline,
  .payment,
  .split-layout,
  .control-strip {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout,
  .payment {
    gap: 34px;
  }

  .control-strip div {
    min-height: 126px;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 96px 18px 50px;
  }

  .hero-content {
    max-width: 354px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 28, 22, 0.88) 0%, rgba(12, 28, 22, 0.58) 62%, rgba(12, 28, 22, 0.22) 100%),
      linear-gradient(0deg, rgba(12, 28, 22, 0.62), rgba(12, 28, 22, 0.18));
  }

  h1 {
    font-size: clamp(32px, 10.4vw, 43px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-points span {
    width: 100%;
    border-radius: 8px;
  }

  .button {
    width: 100%;
  }

  .benefits-grid,
  .case-grid,
  .testimonial-grid,
  .outcome-grid,
  .terms-grid,
  .timeline,
  .payment,
  .split-layout,
  .control-strip {
    grid-template-columns: 1fr;
  }

  .benefits-grid article {
    min-height: 0;
  }

  .timeline article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .video-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
/* Enhanced Pilates refresh */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 24px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.refreshed-grid article {
  position: relative;
  overflow: hidden;
}

.refreshed-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--coral), var(--gold));
  opacity: 0.68;
}

.emoji-icon,
.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 15px;
}

.emoji-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 24px;
  background: linear-gradient(135deg, var(--mint), #dcebf0);
}

.studio-focus {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: url("img/2fon.jfif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.studio-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 22, 0.9), rgba(23, 59, 43, 0.7) 48%, rgba(12, 28, 22, 0.42)),
    linear-gradient(180deg, rgba(12, 28, 22, 0.38), rgba(12, 28, 22, 0.86));
}

.studio-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.studio-focus .eyebrow {
  color: #ffd7ca;
}

.lead.light {
  color: rgba(255, 255, 255, 0.78);
}

.program-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.compact-preview {
  padding: 18px;
}

.glass-list li {
  color: #ffffff;
}

.glass-list li::before {
  background: var(--coral);
}

.chart-card {
  padding: 22px;
  border: 1px solid rgba(47, 107, 79, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.chart-head span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.chart-head strong {
  color: var(--green);
}

.bar-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
}

.bar-row span {
  color: var(--muted);
}

.bar-row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2ed;
}

.bar-row i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.bar-row b {
  color: var(--green-dark);
  text-align: right;
}

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

.ring-card {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, #fff 0 46%, transparent 47%),
    conic-gradient(var(--coral) 0 var(--score), #e7eee8 var(--score) 100%);
  color: var(--ink);
  text-align: center;
}

.ring-card span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.ring-card p {
  max-width: 92px;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.results {
  background: linear-gradient(180deg, #f6f4ee, var(--bg));
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 10px 30px rgba(25, 34, 30, 0.06);
}

.metric-strip div {
  padding: 24px;
  background: #ffffff;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.metric-strip span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.messengers a:nth-child(2) {
  background: var(--green);
}

.messengers a:nth-child(3) {
  background: var(--coral);
}

.messengers a:nth-child(4) {
  background: var(--gold);
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .studio-inner,
  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .studio-focus {
    background-attachment: scroll;
  }
}

@media (max-width: 680px) {
  .studio-inner,
  .metric-strip,
  .hero-stats,
  .ring-grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 76px minmax(0, 1fr) 48px;
    gap: 8px;
  }
}

