﻿/*
Theme Name: HMG Studios
Theme URI: https://hmugr.com/
Author: HMG Studios
Author URI: https://hmugr.com/
Description: Premium one-page WordPress theme for HMG Studios with VIP memberships, booking CTAs, policy pages, 3D animations, and local media assets.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hmg-studios
*/
:root {
  --black: #070707;
  --ink: #15110f;
  --cream: #f7efe3;
  --paper: #fffaf1;
  --gold: #d7a642;
  --red: #971f25;
  --red-dark: #641318;
  --green: #2fc27a;
  --muted: #7b7164;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  --header-height: 76px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-heading: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link:focus {
  z-index: 50;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--black);
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 4vw;
  color: var(--white);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 70px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.header-social {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 166, 66, 0.2), rgba(151, 31, 37, 0.26)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-social:hover,
.header-social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 166, 66, 0.72);
  box-shadow: 0 0 32px rgba(215, 166, 66, 0.16);
}

.header-social svg {
  width: 20px;
  height: 20px;
}

.imdb-social {
  color: #101010;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    #f5c518;
  border-color: rgba(245, 197, 24, 0.65);
}

.imdb-glyph {
  width: 24px;
  height: 16px;
}

.imdb-glyph rect {
  fill: #f5c518;
  stroke: currentColor;
  stroke-width: 2;
}

.imdb-glyph text {
  fill: currentColor;
  font-size: 12px;
  font-weight: 900;
  font-family: var(--font-heading);
}

.instagram-glyph {
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(215, 166, 66, 0.32));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.section,
.hero {
  position: relative;
  overflow: hidden;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-black {
  color: var(--white);
  background: var(--black);
}

.section-cream {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(247, 239, 227, 1)),
    var(--cream);
}

#about {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 166, 66, 0.18), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(151, 31, 37, 0.2), transparent 36%),
    linear-gradient(135deg, #070707 0%, #14100d 58%, #070707 100%);
}

.section-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.section-gold {
  color: var(--black);
  background: var(--gold);
}

.hero {
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  color: var(--white);
}

.hero-video,
.hero-overlay,
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 42%, rgba(215, 166, 66, 0.22), transparent 32%),
    radial-gradient(circle at 16% 28%, rgba(151, 31, 37, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82));
}

.hero-scene {
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
  justify-items: start;
  max-width: 1180px;
  text-align: left;
}

.hero-copy {
  display: grid;
  gap: 1.55rem;
  justify-items: start;
}

.hero-brand-logo {
  width: clamp(92px, 12vw, 150px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4.4rem, 10vw, 9rem);
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button-primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 18px 50px rgba(215, 166, 66, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #efc35e;
}

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

.button-call {
  color: var(--white);
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(151, 31, 37, 0.26);
}

.button-call:hover,
.button-call:focus-visible {
  background: #b52a31;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(21, 17, 15, 0.24);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.hero-stats span {
  padding: 0.6rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.hero-stats strong {
  color: var(--gold);
}

.hero-instagram {
  position: relative;
  width: min(100%, 460px);
  justify-self: end;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-instagram::before {
  position: absolute;
  inset: -10% -8% auto auto;
  width: 74%;
  height: 74%;
  content: "";
  background:
    radial-gradient(circle, rgba(215, 166, 66, 0.38), transparent 62%),
    radial-gradient(circle at 80% 20%, rgba(151, 31, 37, 0.32), transparent 54%);
  filter: blur(12px);
  opacity: 0.9;
  transform: translateZ(-80px);
}

.instagram-device {
  position: relative;
  overflow: hidden;
  padding: 0.48rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(7, 7, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotateY(-9deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.instagram-device::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 45%, transparent 58%),
    radial-gradient(circle at 18% 8%, rgba(215, 166, 66, 0.24), transparent 28%);
  mix-blend-mode: screen;
}

.instagram-device img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.04);
}

.instagram-float-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.25rem;
  width: min(210px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(151, 31, 37, 0.88), rgba(7, 7, 7, 0.88)),
    rgba(7, 7, 7, 0.82);
  border: 1px solid rgba(215, 166, 66, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  animation: instagram-float 5.5s ease-in-out infinite;
}

.instagram-float-card span,
.instagram-float-card a {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-float-card strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
}

.trust-strip {
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.trust-strip-inner > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.65rem;
  overflow-x: auto;
  white-space: nowrap;
}

.trust-logos strong {
  padding: 0.62rem 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  filter: grayscale(1);
  white-space: nowrap;
}

.ticker-band {
  overflow: hidden;
  padding: 1rem clamp(1rem, 18vw, 14rem) 1rem 0;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

.split-layout,
.mix-grid,
.contact-layout,
.membership-layout,
.social-layout {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.split-layout,
.mix-grid,
.contact-layout,
.social-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.membership-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.15fr);
}

.copy-block p:not(.eyebrow),
.section-heading p {
  max-width: 700px;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 1.05rem;
}

#about .copy-block p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.media-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
}

.media-note span {
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(7, 7, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(14px);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.about-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.about-mini-list span {
  padding: 0.5rem 0.65rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
}

.about-visual::before {
  position: absolute;
  inset: 8% 4% 2%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle, rgba(215, 166, 66, 0.18), transparent 52%),
    radial-gradient(circle at 74% 40%, rgba(47, 194, 122, 0.16), transparent 42%);
  filter: blur(6px);
}

.about-visual canvas {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.about-visual-copy {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  display: grid;
  gap: 0.4rem;
  width: min(360px, calc(100% - 2rem));
  padding: 0.85rem;
  margin: auto;
  color: var(--white);
  background: rgba(7, 7, 7, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.about-visual-copy span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-visual-copy strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.12;
}

.about-facilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.about-facilities article {
  min-height: 126px;
  display: grid;
  align-content: end;
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.about-facilities svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.artist-swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.client-slide {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.1), rgba(7, 7, 7, 0.92)),
    url("assets/studios/reginald-thomas-room.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.client-slide span,
.tag,
.popular-badge {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
}

.client-slide span,
.tag {
  color: var(--black);
  background: var(--gold);
}

.client-slide strong {
  max-width: 520px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
}

.swiper-pagination-bullet {
  background: var(--gold);
}

.client-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.client-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.client-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 7, 7, 0) 32%, rgba(7, 7, 7, 0.92) 100%);
}

.client-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.client-feature-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 0.92;
  text-shadow:
    0 10px 34px rgba(0, 0, 0, 0.78),
    0 0 26px rgba(215, 166, 66, 0.2);
}

.client-feature-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.client-roster-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.roster-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 7, 7, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.roster-intro span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roster-intro strong {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.15;
  text-align: right;
}

.roster-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.roster-group {
  min-height: 260px;
  padding: 1rem;
  background: rgba(7, 7, 7, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.roster-group h3 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.name-cloud span {
  padding: 0.4rem 0.55rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.credit-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.studio-grid,
.pricing-grid,
.usp-grid,
.testimonial-grid,
.service-list {
  display: grid;
  gap: 1rem;
}

.studio-grid,
.pricing-grid,
.testimonial-grid,
.service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-card,
.pricing-card,
.usp-card,
.testimonial-card,
.service-item,
.booking-form {
  border-radius: 8px;
}

.studio-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(7, 7, 7, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.studio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-card div {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.65rem;
  padding: 1.1rem;
}

.studio-card p {
  margin-bottom: 0;
}

.studio-card p,
.service-item p,
.usp-card p,
.pricing-card li,
.testimonial-card figcaption {
  color: color-mix(in srgb, currentColor 72%, transparent);
}

.studio-card a {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.location-badge {
  width: fit-content;
  padding: 0.45rem 0.65rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(151, 31, 37, 0.72);
  border: 1px solid rgba(215, 166, 66, 0.34);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(151, 31, 37, 0.18);
}

.service-item {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid rgba(21, 17, 15, 0.1);
}

.service-item svg,
.usp-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.waveform-panel {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 166, 66, 0.12), rgba(151, 31, 37, 0.22)),
    rgba(255, 255, 255, 0.05);
}

.waveform-panel svg {
  width: 100%;
  min-height: 240px;
}

.wave {
  fill: none;
  stroke-linecap: round;
  stroke-width: 7;
  stroke-dasharray: 28 18;
  animation: wave-dash 2.5s linear infinite;
}

.wave-one {
  stroke: var(--gold);
}

.wave-two {
  stroke: var(--green);
  animation-duration: 3.2s;
}

.wave-three {
  stroke: var(--white);
  opacity: 0.7;
  animation-duration: 2.1s;
}

.mix-stat {
  display: grid;
  gap: 0.35rem;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.mix-stat strong {
  color: var(--gold);
  font-size: 1.45rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.process-timeline article {
  min-height: 190px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.process-timeline span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.process-timeline p {
  color: rgba(255, 255, 255, 0.7);
}

.gear-stage {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 26%, rgba(215, 166, 66, 0.24), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(151, 31, 37, 0.32), transparent 34%),
    linear-gradient(145deg, #070707, #17100d 58%, #070707);
  border: 1px solid rgba(215, 166, 66, 0.22);
  border-radius: 8px;
  box-shadow:
    0 36px 90px rgba(7, 7, 7, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.gear-orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(215, 166, 66, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 46px rgba(215, 166, 66, 0.12),
    inset 0 0 46px rgba(215, 166, 66, 0.1);
  transform: rotateX(64deg) rotateZ(-16deg);
  animation: gear-orbit-spin 24s linear infinite;
}

.gear-orbit::before,
.gear-orbit::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.gear-orbit::after {
  inset: 27%;
  border-color: rgba(151, 31, 37, 0.34);
}

.gear-model {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  min-height: 142px;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 7, 0.58);
  border: 1px solid rgba(215, 166, 66, 0.26);
  border-radius: 8px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(215, 166, 66, 0.12);
  transform-style: preserve-3d;
  animation: gear-float 6s ease-in-out infinite;
}

.gear-model strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1;
  text-transform: uppercase;
}

.gear-led {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(47, 194, 122, 0.88);
}

.console-model {
  top: 12%;
  left: 7%;
  width: 47%;
  transform: rotateX(56deg) rotateZ(-12deg) translateZ(34px);
}

.outboard-model {
  top: 11%;
  right: 8%;
  width: 32%;
  animation-delay: -1.6s;
  transform: rotateY(-18deg) translateZ(42px);
}

.mic-model {
  top: 38%;
  left: 39%;
  width: 23%;
  min-height: 190px;
  animation-delay: -2.2s;
  transform: translateZ(76px);
}

.backline-model {
  right: 9%;
  bottom: 19%;
  width: 34%;
  animation-delay: -3s;
  transform: rotateY(-12deg) translateZ(34px);
}

.suite-model {
  left: 9%;
  bottom: 17%;
  width: 36%;
  animation-delay: -4s;
  transform: rotateY(14deg) translateZ(44px);
}

.console-sliders,
.rack-lights,
.amp-lines,
.screen-wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 0.45rem;
  min-height: 56px;
}

.console-sliders span {
  width: 8px;
  height: 44px;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.12));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(215, 166, 66, 0.32);
}

.console-sliders span:nth-child(even) {
  height: 30px;
}

.rack-lights span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(215, 166, 66, 0.72);
}

.mic-body {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 112px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 2px, transparent 2px 7px),
    linear-gradient(180deg, rgba(215, 166, 66, 0.9), rgba(151, 31, 37, 0.74));
  border-radius: 999px 999px 16px 16px;
  box-shadow: 0 0 30px rgba(215, 166, 66, 0.22);
}

.amp-lines,
.screen-wave {
  flex-direction: column;
  align-items: stretch;
}

.amp-lines span,
.screen-wave span {
  height: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.1));
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(215, 166, 66, 0.24);
}

.screen-wave span:nth-child(even) {
  width: 62%;
}

.gear-stage-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(7, 7, 7, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.gear-stage-label span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gear-stage-label strong {
  font-size: 0.9rem;
  text-align: right;
}

.section-offers {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.98), rgba(77, 14, 18, 0.94)),
    #070707;
}

.offers-scene,
.offers-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offers-scene {
  z-index: 0;
  opacity: 0.76;
  mix-blend-mode: screen;
}

.offers-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.62), rgba(7, 7, 7, 0.88)),
    radial-gradient(circle at 72% 18%, rgba(215, 166, 66, 0.2), transparent 38%);
}

.offers-shell {
  position: relative;
  z-index: 2;
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.offer-column {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.offer-column::before {
  position: absolute;
  inset: -35% auto auto -24%;
  width: 320px;
  height: 320px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(215, 166, 66, 0.22), transparent 66%);
  filter: blur(4px);
}

.offer-column-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.offer-column-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-column-heading h3 {
  max-width: 560px;
  margin-bottom: 0;
}

.vip-intro {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.vip-intro::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  background:
    radial-gradient(circle, rgba(7, 7, 7, 0) 0 18%, rgba(215, 166, 66, 0.62) 19% 21%, transparent 22% 100%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, rgba(255, 255, 255, 0) 2px 9px),
    radial-gradient(circle at center, rgba(151, 31, 37, 0.72), rgba(7, 7, 7, 0.4) 62%);
  border: 1px solid rgba(215, 166, 66, 0.28);
  border-radius: 50%;
  opacity: 0.7;
  animation: slow-spin 22s linear infinite;
}

.membership-spotlight {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(215, 166, 66, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(7, 7, 7, 0.42);
  border: 1px solid rgba(215, 166, 66, 0.24);
  border-radius: 8px;
}

.membership-spotlight span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-spotlight strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.membership-spotlight p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid.compact-pricing {
  grid-template-columns: 1fr;
}

.section-offers .pricing-card {
  color: var(--ink);
  min-height: 250px;
}

.section-offers .pricing-card.featured {
  color: var(--white);
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.98)),
    var(--paper);
  border: 1px solid rgba(21, 17, 15, 0.12);
  box-shadow: 0 18px 55px rgba(21, 17, 15, 0.08);
}

.pricing-card.featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--gold);
  transform: translateY(-1rem);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  background: var(--red);
}

.price {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.featured .price {
  color: var(--gold);
}

.price span {
  color: currentColor;
  font-size: 1rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.5rem;
  min-height: 138px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 0.5rem;
}

.pricing-card li::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.58rem;
  content: "";
  background: var(--gold);
  border-radius: 99px;
  flex: 0 0 auto;
}

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

.usp-card {
  min-height: 230px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.usp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 166, 66, 0.72);
  box-shadow: 0 0 36px rgba(215, 166, 66, 0.12);
}

.equipment-tags,
.membership-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.equipment-tags span,
.membership-steps span {
  padding: 0.65rem 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  background: color-mix(in srgb, currentColor 8%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 6px;
}

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

.membership-steps span {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: rgba(7, 7, 7, 0.24);
  border-color: rgba(255, 255, 255, 0.18);
}

.membership-art {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 60px rgba(215, 166, 66, 0.1);
}

.membership-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.membership-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 1.1rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(7, 7, 7, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.membership-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(125deg, transparent 0 34%, rgba(255, 255, 255, 0.11) 45%, transparent 58%),
    radial-gradient(circle at 14% 16%, rgba(215, 166, 66, 0.28), transparent 28%);
  opacity: 0.82;
}

.membership-card::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 62px;
  height: 62px;
  content: "";
  background:
    linear-gradient(var(--gold), var(--gold)) center / 2px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center / 100% 2px no-repeat;
  opacity: 0.24;
  transform: rotate(45deg);
}

.membership-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 166, 66, 0.72);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32), 0 0 48px rgba(215, 166, 66, 0.14);
}

.membership-card.featured,
.membership-card.diamond {
  background:
    linear-gradient(145deg, rgba(215, 166, 66, 0.2), rgba(151, 31, 37, 0.16)),
    rgba(7, 7, 7, 0.72);
  border-color: rgba(215, 166, 66, 0.64);
  box-shadow: 0 0 42px rgba(215, 166, 66, 0.12);
}

.membership-card span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
}

.membership-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.membership-card small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.membership-note,
.offer-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.membership-note span,
.offer-terms span {
  padding: 0.55rem 0.75rem;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: 999px;
}

.testimonials-section {
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(215, 166, 66, 0.18), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(151, 31, 37, 0.26), transparent 36%),
    linear-gradient(135deg, #070707 0%, #16100d 58%, #070707 100%);
}

.spotlight-testimonials {
  perspective: 1100px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 7, 7, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
}

.testimonial-card::before {
  position: absolute;
  inset: -40% -30% auto auto;
  width: 220px;
  height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(215, 166, 66, 0.24), transparent 62%);
  filter: blur(4px);
}

.featured-review {
  border-color: rgba(215, 166, 66, 0.72);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.36),
    0 0 52px rgba(215, 166, 66, 0.16);
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.review-stars,
.review-type,
.testimonial-card figcaption {
  position: relative;
  z-index: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.16rem;
  text-shadow: 0 0 18px rgba(215, 166, 66, 0.3);
}

.review-type {
  width: fit-content;
  padding: 0.45rem 0.65rem;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: 999px;
}

.testimonial-card figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.review-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.review-ribbon span {
  padding: 0.65rem 0.8rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

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

.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.blog-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 166, 66, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.95), rgba(247, 239, 227, 1)),
    var(--cream);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.blog-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  min-height: 360px;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 7, 7, 0.88), rgba(91, 19, 23, 0.86)),
    #070707;
  border: 1px solid rgba(215, 166, 66, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(21, 17, 15, 0.22);
  transform-style: preserve-3d;
}

.blog-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  content: "";
  background:
    repeating-radial-gradient(circle, rgba(215, 166, 66, 0.24) 0 1px, transparent 2px 12px),
    radial-gradient(circle, rgba(215, 166, 66, 0.28), transparent 66%);
  border-radius: 50%;
  opacity: 0.85;
}

.blog-card h3,
.blog-card p,
.blog-card a,
.blog-card .tag {
  position: relative;
  z-index: 1;
}

.blog-card h3 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.blog-card p {
  color: rgba(255, 255, 255, 0.74);
}

.blog-card a {
  width: fit-content;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-layout {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.98)),
    var(--paper);
  border: 1px solid rgba(21, 17, 15, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 17, 15, 0.06);
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 900;
}

details p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: clamp(6.5rem, 10vw, 8.2rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(215, 166, 66, 0.14), transparent 34%),
    linear-gradient(135deg, #080808, #16100c 58%, #080808);
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form ::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.booking-form option {
  color: var(--ink);
}

.site-footer {
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(215, 166, 66, 0.16), transparent 34%),
    linear-gradient(180deg, #080808, #030303);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.55fr) minmax(220px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  width: 118px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-contact span,
.footer-links::before {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links::before {
  content: "Policies";
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-main {
  color: var(--ink);
  background: var(--cream);
}

.policy-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(215, 166, 66, 0.18), transparent 36%),
    linear-gradient(135deg, #070707, #17100d);
}

.policy-hero img {
  width: 108px;
  margin-bottom: 1.3rem;
}

.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.policy-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.policy-content {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.policy-card {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: var(--paper);
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 17, 15, 0.08);
}

.policy-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.2rem;
  margin: 0;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-contact {
  color: var(--white);
  background: var(--black);
}

.policy-contact p,
.policy-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.policy-contact a:hover,
.policy-contact a:focus-visible {
  color: var(--gold);
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.72rem;
  justify-items: end;
  perspective: 900px;
}

.whatsapp-float,
.call-float {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 54px;
  padding: 0.78rem 1rem 0.78rem 0.78rem;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transform: rotateY(-10deg) translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.whatsapp-float {
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    var(--green);
  box-shadow:
    0 18px 55px rgba(47, 194, 122, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.call-float {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    var(--red);
  box-shadow:
    0 18px 55px rgba(151, 31, 37, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible,
.call-float:hover,
.call-float:focus-visible {
  transform: rotateY(0deg) translateY(-3px) translateZ(18px);
  filter: saturate(1.08);
}

.float-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: rgba(7, 7, 7, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp-float svg,
.call-float svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes instagram-float {
  0%,
  100% {
    transform: translate3d(0, 0, 36px);
  }

  50% {
    transform: translate3d(-8px, -12px, 36px);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-orbit-spin {
  from {
    transform: rotateX(64deg) rotateZ(-16deg);
  }

  to {
    transform: rotateX(64deg) rotateZ(344deg);
  }
}

@keyframes gear-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes wave-dash {
  to {
    stroke-dashoffset: -92;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 4vw 1.5rem;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .nav-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-instagram {
    justify-self: center;
    width: min(100%, 560px);
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-logos {
    justify-content: center;
  }

  .instagram-device {
    transform: rotateY(0deg) rotateX(3deg);
  }

  .split-layout,
  .reverse,
  .mix-grid,
  .blog-layout,
  .contact-layout,
  .offers-grid,
  .membership-layout,
  .social-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .studio-grid,
  .pricing-grid,
  .testimonial-grid,
  .service-list,
  .about-facilities,
  .membership-pricing,
  .usp-grid,
  .process-timeline,
  .client-feature-grid,
  .roster-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-feature-card {
    min-height: 460px;
  }

  .about-visual,
  .about-visual canvas {
    min-height: 430px;
  }

  .roster-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .roster-intro strong {
    text-align: left;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand-mark {
    width: 58px;
    height: 46px;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header-height) + 3.5rem) 0 3.5rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-actions,
  .about-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .policy-hero {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .policy-hero img {
    width: 88px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .studio-grid,
  .pricing-grid,
  .testimonial-grid,
  .service-list,
  .about-facilities,
  .membership-pricing,
  .usp-grid,
  .process-timeline,
  .client-feature-grid,
  .roster-groups,
  .membership-steps,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: auto;
  }

  .pricing-grid.compact-pricing {
    grid-template-columns: 1fr;
  }

  .offer-column {
    padding: 1rem;
  }

  .gear-stage {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
  }

  .gear-orbit {
    display: none;
  }

  .gear-model,
  .console-model,
  .outboard-model,
  .mic-model,
  .backline-model,
  .suite-model {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 150px;
    transform: none;
  }

  .gear-stage-label {
    position: relative;
    inset: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .gear-stage-label strong {
    text-align: left;
  }

  .hero-instagram {
    width: min(100%, 420px);
  }

  .instagram-device img {
    min-height: 300px;
  }

  .instagram-float-card {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 190px;
  }

  .client-feature-card {
    min-height: 440px;
  }

  .about-visual,
  .about-visual canvas {
    min-height: 340px;
  }

  .media-panel,
  .media-panel img {
    min-height: 310px;
  }

  .process-timeline article,
  .about-facilities article,
  .usp-card,
  .service-item,
  .testimonial-card {
    min-height: auto;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float,
  .call-float {
    min-height: 46px;
    padding: 0.72rem 0.82rem;
  }

  .contact-section {
    padding-bottom: 9rem;
  }
}

