:root {
  color-scheme: light;
  --ink: #191918;
  --ink-soft: #2d302b;
  --muted: #696d68;
  --paper: #f7f3ee;
  --paper-warm: #efe5df;
  --panel: #fffdf9;
  --sage: #7f9277;
  --sage-dark: #40503a;
  --rose: #c98f82;
  --red: #8f1e24;
  --blush: #f3c7cf;
  --line: rgba(25, 25, 24, 0.14);
  --line-soft: rgba(25, 25, 24, 0.08);
  --shadow: 0 26px 70px rgba(45, 48, 43, 0.18);
  --soft-shadow: 0 16px 44px rgba(45, 48, 43, 0.1);
  --bg-movement: url("assets/sunday-bg-movement.jpg");
  --bg-flatlay: url("assets/sunday-bg-flatlay.jpg");
  --bg-equipment: url("assets/sunday-bg-equipment.jpg");
  --bg-detail: url("assets/sunday-bg-detail.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.is-scrolled .site-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(247, 243, 238, 0.9);
  box-shadow: 0 14px 40px rgba(25, 25, 24, 0.08);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(201, 143, 130, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(25, 25, 24, 0.1);
  background: rgba(247, 243, 238, 0.78);
  backdrop-filter: blur(22px);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  width: min(228px, 48vw);
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav,
.header-actions,
.hero-actions,
.booking-actions,
.social-links,
.schedule-tools {
  display: flex;
  align-items: center;
}

.site-header nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a,
.header-cta,
.button,
.social-link,
.icon-link {
  text-decoration: none;
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  gap: 8px;
}

.header-cta,
.button,
.filter-button,
.refresh-button {
  touch-action: manipulation;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
}

.icon-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 180ms ease, border-color 180ms ease;
}

.icon-link:hover {
  border-color: rgba(25, 25, 24, 0.34);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 16, 14, 0.88), rgba(14, 16, 14, 0.48) 47%, rgba(14, 16, 14, 0.14)),
    linear-gradient(180deg, rgba(14, 16, 14, 0.05), rgba(14, 16, 14, 0.66)),
    var(--bg-equipment) center 48% / cover;
  transform: scale(1.015);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgba(14, 16, 14, 0.7), rgba(14, 16, 14, 0));
  content: "";
}

.hero-layout {
  display: grid;
  max-width: 1320px;
  min-height: calc(100svh - 126px);
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 128px) clamp(20px, 5vw, 72px) 42px;
}

.hero-content {
  max-width: 880px;
  color: white;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.editorial-break .section-kicker,
.social-band .section-kicker {
  color: #f0b5a9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.schedule-status {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: 5.35rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.16;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.booking-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(143, 30, 36, 0.25);
}

.button.primary:hover {
  background: #72171d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.button.secondary.dark {
  border-color: rgba(25, 25, 24, 0.24);
  background: transparent;
  color: var(--ink);
}

.hero-live-card {
  display: grid;
  gap: 16px;
  max-width: 420px;
  justify-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px);
}

.hero-live-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-live-card strong {
  display: block;
  color: white;
  font-size: 1.78rem;
  line-height: 1.05;
}

.hero-live-card .button {
  width: 100%;
}

.live-label,
.hero-class-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.live-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.live-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e7a9b7;
  box-shadow: 0 0 0 8px rgba(231, 169, 183, 0.16);
}

.hero-class-meta {
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-class-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(14, 16, 14, 0.58);
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

.hero-bottom span {
  padding: 15px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.market-strip,
.studio-section,
.effects-section,
.audience-section,
.method-section,
.start-section,
.programs-section,
.conversion-section,
.booking,
.team-section,
.faq-section,
.social-wall,
.social-band,
.contact {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  color: white;
}

.market-strip article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.market-strip span,
.benefit-grid span,
.start-list span,
.program-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.market-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.market-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading,
.section-copy {
  max-width: 960px;
}

.section-copy p,
.section-heading p,
.start-copy p,
.team-copy p,
.booking-copy p,
.contact-details p,
.faq-list p {
  color: var(--muted);
  font-size: 1.08rem;
}

.studio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.96), rgba(247, 243, 238, 0.88)),
    var(--bg-equipment) right center / min(42vw, 560px) auto no-repeat,
    var(--paper);
}

.studio-visual {
  display: grid;
  min-height: 560px;
  align-items: end;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(25, 25, 24, 0.02), rgba(25, 25, 24, 0.2)),
    var(--bg-flatlay) center / cover;
  box-shadow: var(--soft-shadow);
}

.studio-note {
  max-width: 360px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.studio-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-note strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.05;
}

.editorial-break {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: end;
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(22, 23, 21, 0.74), rgba(22, 23, 21, 0.34) 52%, rgba(22, 23, 21, 0.1)),
    var(--bg-movement) center 48% / cover;
  color: white;
}

.editorial-break::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(22, 23, 21, 0.62), rgba(22, 23, 21, 0));
  content: "";
  pointer-events: none;
}

.editorial-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.editorial-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 4.15rem;
  font-weight: 850;
  line-height: 1.02;
}

.effects-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 243, 238, 0.96)),
    var(--bg-detail) left bottom / min(42vw, 520px) auto no-repeat,
    var(--panel);
}

.benefit-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benefit-grid article,
.program-grid article,
.start-list div {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-grid article:hover,
.program-grid article:hover,
.start-list div:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.benefit-grid p,
.program-grid p,
.start-list p {
  color: var(--muted);
}



.audience-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 243, 238, 0.94)),
    var(--bg-flatlay) right top / min(36vw, 520px) auto no-repeat,
    var(--panel);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.audience-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--soft-shadow);
}

.audience-grid span,
.method-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.audience-grid p,
.method-grid p,
.conversion-copy p,
.conversion-points p {
  color: var(--muted);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.97), rgba(239, 229, 223, 0.9)),
    var(--bg-equipment) right center / min(36vw, 520px) auto no-repeat,
    var(--paper-warm);
}

.method-copy {
  position: sticky;
  top: 110px;
  max-width: 620px;
}

.method-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.method-grid {
  display: grid;
  gap: 14px;
}

.method-grid article {
  display: grid;
  min-height: 170px;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--soft-shadow);
}

.method-grid span {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.method-grid strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.08;
}

.method-grid p {
  margin-bottom: 0;
}

.start-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper-warm);
}

.start-visual {
  min-height: 620px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(25, 25, 24, 0), rgba(25, 25, 24, 0.12)),
    var(--bg-detail) center / cover;
  box-shadow: var(--soft-shadow);
}

.start-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.start-list div {
  display: grid;
  min-height: 154px;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.start-list span {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.start-list p {
  margin-bottom: 0;
}

.programs-section {
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.94), rgba(255, 253, 249, 0.96)),
    var(--bg-equipment) right bottom / min(38vw, 520px) auto no-repeat,
    var(--paper);
}

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

.program-grid article {
  min-height: 290px;
}



.conversion-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(25, 25, 24, 0.92), rgba(25, 25, 24, 0.72)),
    var(--bg-detail) center / cover,
    var(--ink);
  color: white;
}

.conversion-copy {
  max-width: 850px;
}

.conversion-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.conversion-section .button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
}

.conversion-points {
  display: grid;
  gap: 12px;
}

.conversion-points p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.conversion-points strong {
  color: white;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--panel);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.schedule-panel {
  min-width: 0;
}

.schedule-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.schedule-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.schedule-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.schedule-tools {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-button,
.refresh-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.refresh-button:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.refresh-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(150px, auto);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(45, 48, 43, 0.08);
}

.schedule-date {
  display: grid;
  gap: 2px;
  min-height: 70px;
  align-content: center;
  padding: 10px;
  border-radius: 8px;
  background: #f1e6e6;
  text-align: center;
}

.schedule-date span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.schedule-date strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.schedule-details h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.schedule-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.schedule-action {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.schedule-action .button {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.94rem;
}

.schedule-status {
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.schedule-status.is-waiting {
  color: var(--red);
}

.schedule-state {
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--panel);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.95), rgba(247, 243, 238, 0.88)),
    var(--bg-flatlay) right center / min(42vw, 620px) auto no-repeat,
    var(--paper);
}

.team-image {
  min-height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(25, 25, 24, 0), rgba(25, 25, 24, 0.16)),
    var(--bg-detail) center / cover;
  box-shadow: var(--soft-shadow);
}

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

.quality-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.faq-section {
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 10px 26px rgba(45, 48, 43, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}



.social-wall {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.96), rgba(255, 253, 249, 0.96)),
    var(--bg-detail) right center / min(38vw, 520px) auto no-repeat,
    var(--paper);
}

.social-wall .section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
  margin-top: 34px;
}

.social-widget {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--soft-shadow);
}

.social-widget-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.social-widget-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-widget-head strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.social-widget-head a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.instagram-widget {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 12px;
  background: #fff;
}

.instagram-widget .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 500px !important;
  margin: 0 auto !important;
  border-radius: 8px !important;
}


.instagram-promo {
  display: grid;
  align-content: center;
  min-height: 620px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(247, 243, 238, 0.9)),
    var(--bg-flatlay) right bottom / min(34vw, 430px) auto no-repeat,
    var(--panel);
  box-shadow: var(--soft-shadow);
}

.instagram-promo h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.instagram-promo > p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.instagram-promo-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.instagram-promo-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px 16px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
}

.instagram-promo-list span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.instagram-promo-list strong {
  display: block;
  line-height: 1.12;
}

.instagram-promo-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.social-band {
  color: white;
  background:
    linear-gradient(90deg, rgba(25, 25, 24, 0.95), rgba(25, 25, 24, 0.78)),
    var(--bg-detail) center / cover,
    var(--ink);
}

.social-copy {
  display: grid;
  max-width: 1060px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.social-copy p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.12;
}

.social-copy .section-kicker,
.social-copy p {
  grid-column: 1;
}

.social-copy .social-links {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-content: flex-end;
}

.social-links {
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.social-link:hover {
  background: white;
  color: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 28px;
  align-items: stretch;
  background: var(--paper);
}

.contact iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.82);
}

footer {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

footer img {
  width: min(200px, 52vw);
  height: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-layout,
  .studio-section,
  .start-section,
  .booking,
  .conversion-section,
  .team-section,
  .method-section {
    grid-template-columns: 1fr;
  }

  .hero-live-card {
    max-width: 560px;
    justify-self: start;
  }

  .booking-copy,
  .method-copy {
    position: static;
  }

  .benefit-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .market-strip,
  .audience-grid,
  .program-grid,
  .social-feature-grid,
  .contact,
  .social-copy {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: calc(100svh - 64px);
    align-content: end;
  }

  .hero-bottom {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-bottom::-webkit-scrollbar {
    display: none;
  }

  .studio-section,
  .programs-section,
  .team-section,
  .effects-section {
    background:
      linear-gradient(180deg, rgba(247, 243, 238, 0.96), rgba(247, 243, 238, 0.9)),
      var(--bg-equipment) center bottom / min(82vw, 520px) auto no-repeat,
      var(--paper);
  }

  .editorial-break {
    min-height: 540px;
    background-position: 56% center;
  }

  .editorial-copy p {
    font-size: 3rem;
  }

  .schedule-panel-head {
    grid-template-columns: 1fr;
  }

  .schedule-tools {
    justify-content: flex-start;
  }

  .instagram-widget,
  .instagram-promo {
    min-height: 540px;
  }

  .social-copy .section-kicker,
  .social-copy p,
  .social-copy .social-links {
    grid-column: 1;
    grid-row: auto;
  }

  .social-copy .social-links {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  body {
    line-height: 1.5;
  }

  .site-header {
    gap: 12px;
    min-height: 62px;
    padding: 10px 14px;
  }

  .brand {
    width: 154px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-cta {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .icon-link {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(14, 16, 14, 0.88), rgba(14, 16, 14, 0.5) 58%, rgba(14, 16, 14, 0.2)),
      linear-gradient(180deg, rgba(14, 16, 14, 0.08), rgba(14, 16, 14, 0.72)),
      var(--bg-equipment) 58% center / cover;
  }

  .hero-layout {
    min-height: calc(100svh - 62px);
    padding: 72px 18px 22px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero-copy,
  .section-copy p,
  .start-copy p,
  .team-copy p,
  .booking-copy p,
  .contact-details p,
  .faq-list p {
    font-size: 1rem;
  }

  .hero-actions,
  .booking-actions,
  .social-links {
    align-items: stretch;
  }

  .hero-actions .button,
  .booking-actions .button,
  .conversion-actions .button,
  .social-link {
    width: 100%;
  }

  .hero-live-card {
    width: min(100%, 560px);
    padding: 18px;
  }

  .hero-live-card strong {
    font-size: 1.42rem;
  }

  .market-strip,
  .studio-section,
  .effects-section,
  .audience-section,
  .method-section,
  .start-section,
  .programs-section,
  .conversion-section,
  .booking,
  .team-section,
  .faq-section,
  .social-wall,
  .social-band,
  .contact {
    padding: 48px 18px;
  }

  .market-strip {
    gap: 10px;
    background: var(--paper);
    color: var(--ink);
  }

  .market-strip article {
    min-height: auto;
    color: var(--ink);
    background: var(--panel);
    box-shadow: var(--soft-shadow);
  }

  .market-strip p {
    color: var(--muted);
  }

  .studio-visual,
  .start-visual,
  .team-image {
    min-height: 420px;
  }

  .editorial-break {
    min-height: 500px;
    padding: 44px 18px;
    background-position: 58% center;
  }

  .editorial-copy p {
    font-size: 2rem;
  }

  .benefit-grid,
  .audience-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .audience-grid article,
  .program-grid article,
  .instagram-promo,
  .start-list div,
  .market-strip article,
  .studio-note,
  .schedule-card {
    padding: 20px;
  }

  .start-list div,
  .method-grid article {
    grid-template-columns: 1fr;
  }

  .start-list span,
  .method-grid span {
    grid-row: auto;
    margin-bottom: 6px;
  }

  .schedule-tools {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .filter-button,
  .refresh-button {
    width: 100%;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-date {
    grid-template-columns: 1fr auto;
    min-height: 0;
    align-items: center;
    text-align: left;
  }

  .schedule-action {
    justify-items: stretch;
  }

  .schedule-action .button {
    width: 100%;
  }

  .social-copy p {
    font-size: 1.55rem;
  }

  .instagram-widget,
  .instagram-promo {
    min-height: 480px;
    padding: 20px;
  }

  .instagram-widget {
    padding: 8px;
  }

  .instagram-promo-list div {
    grid-template-columns: 1fr;
  }

  .instagram-promo-list span {
    grid-row: auto;
  }

  .contact iframe {
    min-height: 320px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .brand {
    width: 118px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .icon-link {
    display: none;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.86rem;
  }
}

@media (max-width: 360px) {
  .header-cta {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.02rem;
  }
}
