:root {
  --bg: #050505;
  --panel: #101214;
  --panel-2: #171a1c;
  --text: #f7f7f2;
  --muted: #b9bdb8;
  --line: rgba(255, 255, 255, 0.12);
  --green: #b6ed38;
  --green-strong: #a8e829;
  --black: #050505;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(247, 247, 242, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(182, 237, 56, 0.12);
  color: var(--text);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section,
.hero {
  scroll-margin-top: 88px;
}

.section-inner {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 130px) 0 clamp(42px, 7vw, 78px);
}

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

.hero-media {
  background-image: url("assets/studio-hero.png");
  background-position: 62% center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 40%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.1) 44%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(3.5rem, 10vw, 7.2rem);
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(247, 247, 242, 0.84);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary {
  background: var(--green);
  color: #081006;
}

.primary:hover,
.primary:focus-visible {
  background: var(--green-strong);
}

.secondary {
  border-color: rgba(182, 237, 56, 0.55);
  background: rgba(182, 237, 56, 0.11);
  color: var(--text);
}

.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.full {
  width: 100%;
}

.hero-proof {
  margin-top: 26px;
}

.hero-proof span {
  border-left: 3px solid var(--green);
  padding: 3px 0 3px 12px;
  color: rgba(247, 247, 242, 0.78);
  font-weight: 800;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.copy-block {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.copy-block p:last-child,
.contact-copy:last-child {
  margin-bottom: 0;
}

.services-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.service-card h2 {
  font-size: clamp(2rem, 4.7vw, 4rem);
}

.service-card p {
  color: var(--muted);
}

.card-topline {
  width: max-content;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(247, 247, 242, 0.9);
  font-weight: 700;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.hours,
.class-time,
.mini-stats span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.35);
}

.hours {
  padding: 18px;
}

.hours p,
.note {
  margin-bottom: 8px;
}

.note {
  font-size: 0.92rem;
}

.mini-stats {
  display: grid;
  gap: 10px;
  margin: 16px 0 auto;
}

.mini-stats span {
  padding: 12px 14px;
  color: rgba(247, 247, 242, 0.86);
  font-weight: 800;
}

.class-time {
  margin: 16px 0 auto;
  padding: 18px;
}

.class-time span,
.class-time strong {
  display: block;
}

.class-time span {
  color: var(--muted);
  font-weight: 700;
}

.class-time strong {
  color: var(--green);
  font-family: Anton, Inter, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.service-card .button {
  margin-top: 24px;
}

.trust-section {
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(182, 237, 56, 0.12), transparent 42%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.trust-inner {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

.trust-inner img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.45));
}

.trust-inner p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.instagram-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.results-section {
  background: #070808;
  border-top: 1px solid var(--line);
}

.results-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: end;
  margin-bottom: 28px;
}

.results-header h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 4.6rem);
}

.results-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.results-copy p:last-child {
  margin-bottom: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.result-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  aspect-ratio: 1 / 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.result-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.result-card.tall {
  aspect-ratio: 4 / 5;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.result-card:hover img {
  filter: contrast(1.05) saturate(1.03);
  transform: scale(1.02);
}

.results-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, rgba(182, 237, 56, 0.15), rgba(255, 255, 255, 0.04));
}

.results-cta p {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.contact-section {
  background: var(--panel-2);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 80px);
}

.contact-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: rgba(247, 247, 242, 0.88);
  font-weight: 800;
}

.contact-details a {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  background: rgba(5, 5, 5, 0.45);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: rgba(247, 247, 242, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 13px 14px;
}

.contact-form select option {
  background: #121416;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(182, 237, 56, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

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

.form-status.error {
  color: #ff786f;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: rgba(8, 8, 8, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-media {
    background-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.7));
  }

  .split,
  .service-grid,
  .trust-inner,
  .results-header,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .results-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-inner img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 92px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .service-card {
    padding: 20px;
  }

  .contact-grid {
    gap: 26px;
  }

  .results-section {
    padding-top: 42px;
  }

  .results-header {
    margin-bottom: 18px;
  }

  .results-header h2 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .results-copy p:last-child {
    display: none;
  }

  .results-grid {
    gap: 10px;
  }

  .result-card.featured {
    grid-column: span 2;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }
}
