:root {
  --black: #070706;
  --charcoal: #11100e;
  --panel: #181612;
  --line: rgba(239, 200, 119, 0.2);
  --gold: #e8b34a;
  --gold-strong: #ffca5c;
  --gold-soft: #9b7233;
  --text: #fff8e9;
  --muted: rgba(255, 248, 233, 0.72);
  --soft: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 16%, rgba(232, 179, 74, 0.18), transparent 32rem),
    linear-gradient(180deg, #070706 0%, #11100e 52%, #070706 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(7, 7, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 202, 92, 0.55);
  border-radius: 8px;
  color: var(--gold-strong);
  background: linear-gradient(145deg, #19150d, #060605);
  box-shadow: 0 0 22px rgba(232, 179, 74, 0.18);
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.1rem;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--gold-strong);
}

.site-nav a.active {
  color: var(--gold-strong);
  font-size: 1.04em;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-strong);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  padding: 120px clamp(18px, 6vw, 86px) 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.72) 42%, rgba(7, 7, 6, 0.28) 100%),
    radial-gradient(circle at 66% 40%, rgba(255, 202, 92, 0.14), transparent 28rem);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  right: max(-30px, -2vw);
  bottom: 1vh;
  width: min(880px, 68vw);
  opacity: 0.82;
  filter: drop-shadow(0 0 46px rgba(232, 179, 74, 0.2));
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--black), transparent);
  z-index: 1;
}

.hero-content,
.hero-stat {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  color: #120d04;
  background: linear-gradient(135deg, var(--gold-strong), #b9842f);
  box-shadow: 0 18px 40px rgba(232, 179, 74, 0.16);
}

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

.hero-stat {
  justify-self: end;
  align-self: end;
  width: min(330px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 9, 0.72);
  backdrop-filter: blur(12px);
}

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

.hero-stat span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stat strong {
  margin-top: 6px;
  color: var(--gold-strong);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.intro-band div {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  color: var(--gold-strong);
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
}

.intro-band strong {
  display: block;
  max-width: 320px;
  margin-top: 10px;
  line-height: 1.45;
}

.section {
  padding: 82px clamp(18px, 6vw, 86px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.membership-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.membership-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.service-feature,
.price-panel,
.coaching-card,
.transformation-card,
.hours-block,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.service-feature {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 30px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-style: preserve-3d;
}

.service-feature::after,
.price-panel::after,
.coaching-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 26%, rgba(255, 202, 92, 0.08) 72%, transparent);
  opacity: 0.55;
}

.service-feature:hover,
.price-panel:hover,
.coaching-card:hover {
  border-color: rgba(255, 202, 92, 0.52);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.4), 0 0 34px rgba(255, 202, 92, 0.1);
  transform: translateY(-6px) rotateX(2deg);
}

.service-feature:first-child {
  background:
    linear-gradient(135deg, rgba(255, 202, 92, 0.16), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.service-number {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 202, 92, 0.42);
  border-radius: 8px;
  color: var(--gold-strong);
  font-family: Cinzel, Georgia, serif;
  font-weight: 900;
}

.service-feature h3,
.hours-block h3 {
  margin: 28px 0 12px;
  font-size: 1.45rem;
}

.service-price {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 2rem;
  line-height: 1;
}

.service-feature p {
  color: var(--muted);
  line-height: 1.7;
}

.first-visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 72px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 202, 92, 0.12), transparent 26rem),
    #0b0a08;
}

.first-visit-copy {
  display: grid;
  align-content: center;
}

.first-visit-copy h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.first-visit-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

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

.trust-grid div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--gold-strong);
  font-size: 1.08rem;
}

.trust-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.membership-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 82px clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(232, 179, 74, 0.08), rgba(255, 255, 255, 0.02)),
    #0c0b09;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 202, 92, 0.38);
  border-radius: 8px;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold-strong), #a8742c);
}

.offer-banner strong,
.offer-banner span {
  display: block;
}

.offer-banner strong {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-banner span {
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.price-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 318px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-style: preserve-3d;
}

.price-panel::before,
.coaching-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 202, 92, 0.16), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(255, 202, 92, 0.12), transparent 11rem);
  opacity: 0.72;
}

.featured-plan {
  border-color: rgba(255, 202, 92, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 202, 92, 0.15), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.featured-plan::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
}

.price-label {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.plan-badge {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #120d04;
  background: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.old-price {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: rgba(255, 248, 233, 0.46);
  font-size: 1.16rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--gold-strong);
  font-size: clamp(2.25rem, 3.4vw, 3.8rem);
  line-height: 1;
}

.price-panel p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.65;
}

.price-panel .button {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 20px;
}

.policy-note {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgba(255, 248, 233, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.coaching-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 202, 92, 0.1), transparent 30rem),
    var(--black);
}

.coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.coaching-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-style: preserve-3d;
}

.coaching-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.6;
}

.coaching-card li {
  position: relative;
  padding-left: 22px;
}

.coaching-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-strong);
}

.coaching-card .button {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 24px;
}

.transformations-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 202, 92, 0.1), transparent 28rem),
    #0b0a09;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transformations-shell {
  position: relative;
}

.transformations-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(100%, 1120px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.transformations-track::-webkit-scrollbar {
  display: none;
}

.transformation-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 1120px;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 202, 92, 0.1), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 202, 92, 0.38);
  border-radius: 50%;
  color: #120d04;
  background: var(--gold-strong);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button.prev {
  left: -16px;
}

.slider-button.next {
  right: -16px;
}

.transformation-copy {
  display: grid;
  align-content: center;
  padding: clamp(8px, 2vw, 18px);
}

.result-type {
  display: inline-flex;
  justify-self: start;
  padding: 8px 11px;
  border: 1px solid rgba(255, 202, 92, 0.42);
  border-radius: 8px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transformation-copy h3 {
  margin: 22px 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.transformation-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.transformation-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.result-phone {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #050504;
  box-shadow:
    inset 0 0 0 1px rgba(255, 202, 92, 0.06),
    0 24px 54px rgba(0, 0, 0, 0.38);
}

.result-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-phone figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 8px;
  color: #120d04;
  background: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transformation-feedback {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 202, 92, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.transformation-feedback span {
  color: var(--gold-strong);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transformation-feedback blockquote {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.55;
}

.results-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hours-block {
  padding: 32px;
}

.hours-block h3 {
  margin-top: 0;
  color: var(--gold-strong);
}

.hours-block dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hours-block dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-block dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-block dt {
  color: var(--muted);
  font-weight: 800;
}

.hours-block dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.location-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 6vw, 86px);
  color: #120d04;
  background: linear-gradient(135deg, var(--gold-strong), #a8742c);
}

.location-strip span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.location-strip strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}

.local-section {
  background:
    linear-gradient(135deg, rgba(255, 202, 92, 0.06), rgba(255, 255, 255, 0.02)),
    #090806;
  border-bottom: 1px solid var(--line);
}

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

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px;
  color: var(--text);
  font-weight: 900;
}

.faq-grid summary::marker {
  color: var(--gold-strong);
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(18, 13, 4, 0.22);
  border-radius: 8px;
  color: #120d04;
  background: rgba(255, 248, 233, 0.38);
  font-weight: 900;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

address {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  font-style: normal;
}

address span {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: #0d0c0a;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #050504;
}

.site-footer strong {
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
}

@media (max-width: 1100px) {
  .site-header {
    gap: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .brand {
    min-width: 190px;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 112px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    display: flex;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 94vh;
    padding-top: 154px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-logo {
    width: min(760px, 120vw);
    right: -34vw;
    bottom: 12vh;
    opacity: 0.55;
  }

  .hero-stat {
    justify-self: start;
    align-self: auto;
  }

  .intro-band,
  .service-grid,
  .first-visit-section,
  .trust-grid,
  .membership-section,
  .pricing-grid,
  .coaching-grid,
  .transformation-card,
  .hours-layout,
  .faq-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .offer-banner {
    display: grid;
  }

  .result-phone {
    min-height: 390px;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-strip,
  .site-footer {
    display: grid;
  }

  .map-link {
    justify-self: start;
    white-space: normal;
  }

  .slider-button {
    position: static;
    display: inline-grid;
    margin: 16px 8px 0 0;
    transform: none;
  }

  .service-feature:hover,
  .price-panel:hover,
  .coaching-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero {
    min-height: 86vh;
  }

  .service-feature,
  .price-panel,
  .hours-block,
  .transformation-copy,
  .contact-form {
    padding: 22px;
  }

  .transformation-media {
    grid-template-columns: 1fr;
  }

  .result-phone {
    min-height: 430px;
  }

  .hours-block dl div {
    display: grid;
  }

  .hours-block dd {
    text-align: left;
  }
}
