@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/barlow-condensed-800.ttf") format("truetype"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/barlow-condensed-900.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/urbanist-400.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/urbanist-500.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/urbanist-600.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/urbanist-700.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/urbanist-800.ttf") format("truetype"); }
@font-face { font-family: "Urbanist"; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/urbanist-900.ttf") format("truetype"); }

:root {
  --black: #050505;
  --graphite: #0b0c0c;
  --graphite-2: #111313;
  --graphite-3: #1a1d1c;
  --white: #f7f7f2;
  --muted: #a7aaa3;
  --paper: #efefe8;
  --paper-2: #deded4;
  --accent: #A3D320;
  --accent-2: #A3D320;
  --danger: #ff3d2e;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.14);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.16);
  --radius: 8px;
  --radius-sm: 5px;
  --max: 1220px;
  --gutter: clamp(18px, 3vw, 32px);
  --surface-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.46'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
p { color: inherit; }
ul { margin: 0; padding-left: 18px; }
li + li { margin-top: 10px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--black);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 28px), 1260px);
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 7px 10px 7px 14px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.46);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  transition: background 220ms ease, top 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(5, 5, 5, 0.66);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.42);
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  background: transparent;
}
.brand img { display: block; width: clamp(220px, 23vw, 300px); max-width: 100%; height: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 4px;
}
.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
}
.nav a:hover, .nav a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  outline: 0;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  align-items: end;
  padding: 128px var(--gutter) 42px;
  isolation: isolate;
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: var(--surface-noise);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: 0.17;
}
.hero-bg, .hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.1) brightness(0.78);
  transform: scale(1.015);
}
.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.1) brightness(0.78);
  transform: scale(1.015);
}
.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 20%, rgba(163, 211, 32, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.77) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0) 42%);
}
.hero-shell {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 195px;
  grid-template-areas: "copy panel";
  gap: 28px;
  align-items: end;
}
.hero-copy {
  grid-area: copy;
  max-width: 920px;
  min-width: 0;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(45px, 5.76vw, 83px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.hero h1 { font-weight: 800; }
.hero-title-line {
  display: block;
  width: fit-content;
}
.hero-title-primary .hero-title-second { margin-left: 0.16em; }
.hero-title-amp { display: inline; }
.hero-title-line + .hero-title-line {
  margin-top: 0.08em;
}
.hero-title-highlight {
  display: inline-block;
  margin-right: 0.02em;
  padding: 0.01em 0.09em 0.04em;
  background: var(--accent);
  color: var(--black);
  transform: rotate(-0.7deg);
  transform-origin: 50% 50%;
}
.hero-enter {
  display: inline-block;
  margin-right: 0.04em;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 0.72em;
  font-weight: 900;
  transform: translateY(-0.04em);
}
h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.8vw, 78px);
  line-height: 1.04;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.1;
}
.hero-lead {
  max-width: 690px;
  color: rgba(247, 247, 242, 0.9);
  font-size: 19px;
  font-weight: 400;
  overflow-wrap: break-word;
}
.hero-actions .button {
  min-height: 42px;
  font-size: 16px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
  width: max-content;
  max-width: 100%;
  padding: 3px 22px 3px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: none;
  -webkit-backdrop-filter: blur(5px) saturate(112%);
  backdrop-filter: blur(5px) saturate(112%);
  box-shadow:
    0 9px 28px rgba(0, 0, 0, 0.16),
    0 0 22px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button::after {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 50%;
  content: "↗";
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 180ms ease;
}
.button:hover {
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    0 0 26px rgba(163, 211, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.button:hover::after { transform: translate(4px, -4px); }
.button:focus-visible, .round-button:focus-visible, .trainer-card:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(163, 211, 32, 0.72);
  outline-offset: 3px;
}
.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(163, 211, 32, 0.9);
  color: var(--black);
}
.button-primary::after {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(247, 247, 242, 0.92);
  color: var(--black);
}
.button-primary:hover { background: rgba(183, 231, 45, 0.94); }
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(247, 247, 242, 0.9);
  color: var(--black);
}
.button-secondary::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(163, 211, 32, 0.9);
  color: var(--black);
}
.button-secondary:hover { background: rgba(255, 255, 255, 0.94); }
.hero-hours-wrap {
  position: relative;
  z-index: 20;
  grid-area: panel;
  align-self: end;
  display: flex;
  align-items: flex-end;
  width: max-content;
  justify-self: end;
  gap: 0.65em;
}
.hero-panel {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0 0 3px;
  border: 0;
  appearance: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  background: transparent;
}
.hero-panel p {
  margin-bottom: 2px;
  color: rgba(247, 247, 242, 0.68);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-panel strong {
  display: block;
  color: rgba(247, 247, 242, 0.68);
  font-size: 23px;
  line-height: 1;
}
.hours-arrow {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  background: transparent;
}
.hours-arrow::before,
.hours-arrow::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(247,247,242,.68);
  -webkit-mask: url("../images/samotna-sipka.svg") center / 26px 26px no-repeat;
  mask: url("../images/samotna-sipka.svg") center / 26px 26px no-repeat;
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.hours-arrow::before { transform: translate(0, 0); }
.hours-arrow::after { transform: translate(-150%, 150%); }
.hero-hours-wrap:hover .hours-arrow::before,
.hero-hours-wrap:focus-within .hours-arrow::before { transform: translate(150%, -150%); }
.hero-hours-wrap:hover .hours-arrow::after,
.hero-hours-wrap:focus-within .hours-arrow::after { transform: translate(0, 0); }
.hours-drawer {
  position: absolute;
  z-index: -1;
  right: auto;
  left: 0;
  bottom: calc(100% + 14px);
  width: min(288px, 36vw);
  height: auto;
  margin: 0;
  padding: 0 0 3px;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 56px));
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease, visibility 0s linear 420ms;
}
.hero-hours-wrap:hover .hours-drawer,
.hero-hours-wrap:focus-within .hours-drawer,
.hours-drawer.is-open {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.hours-drawer h3 { margin: 0 0 10px; color: rgba(247,247,242,.68); font-size: 6px; font-weight: 900; text-transform: uppercase; }
.hours-row { display: block; margin-bottom: 7px; color: rgba(247,247,242,.68); text-align: left; }
.hours-row span { display: block; font-size: 6px; font-weight: 900; text-transform: uppercase; }
.hours-row strong { display: block; font-size: 14.4px; font-weight: 700; line-height: 1; }
.hero-panel:focus { outline: 0; }
.hours-drawer .dialog-close { color: var(--white); }
.quick-cards {
  grid-area: cards;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.quick-card {
  min-height: 170px;
  padding: 24px;
  background: rgba(8, 9, 9, 0.86);
  transition: background 180ms ease, transform 180ms ease;
}
.quick-card:hover {
  background: var(--graphite-2);
  transform: translateY(-3px);
}
.quick-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.quick-card strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 24px;
  line-height: 1;
}
.quick-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.ticker {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-block: 1px solid rgba(0, 0, 0, 0.32);
  background: var(--paper);
  color: var(--black);
  transition: box-shadow 180ms ease;
}
.ticker-track {
  position: relative;
  z-index: 2;
  width: max-content;
  display: flex;
  animation: ticker 20s linear infinite;
}
.ticker span {
  padding: 5px 24px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(20px, 1.98vw, 30px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow { display: none !important; }
.hero { overflow: clip; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(78px, 10vw, 132px) var(--gutter);
  background: var(--paper);
  color: var(--black);
}
.section::before,
.footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: var(--surface-noise);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: 0.12;
}
.section > *,
.footer > * {
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.news {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.68)),
    url("../images/sypatch-akce-novinky-pozadi.jpg") center / cover no-repeat;
  background-attachment: scroll, fixed;
}
.section-grid {
  width: min(100%, var(--max));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.section h2 {
  font-size: 48px;
}
.section-kicker {
  position: sticky;
  top: 116px;
}
.section-kicker span {
  display: block;
  max-width: 260px;
  color: #5b6058;
  font-weight: 700;
}
.section-dark .section-kicker span { color: var(--muted); }
.section-copy p {
  max-width: 690px;
  margin-top: 24px;
  color: #565b52;
  font-size: 19px;
}
.section-dark .section-copy p { color: var(--muted); }

.about-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}
.cinema-frame {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 700ms ease;
}
.cinema-frame:hover img, .service-card:hover img, .masonry img:hover { transform: scale(1.04); }
.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}
.timeline article {
  padding: 34px;
  background: var(--white);
}
.timeline span, .icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}
.timeline p, .feature-card p, .story-card p, .faq p { color: #5a5f56; }
.value-strip {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line-dark);
}
.value-strip span {
  padding: 22px;
  background: var(--black);
  color: var(--white);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.why-grid, .service-deck, .pricing-grid, .story-grid, .faq-list, .contact-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    var(--graphite-2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature-card:hover {
  border-color: rgba(163, 211, 32, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}
.feature-card h3 { color: var(--white); }
.feature-card p { color: var(--muted); }

.service-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 220px;
  display: flex;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
  color: var(--white);
  isolation: isolate;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.service-card.large { grid-column: auto; grid-row: auto; }
.service-card::before {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(28px,28px) rotate(-45deg);
}
.service-card:hover {
  transform: scale(1.012);
  border-color: rgba(163,211,32,.32);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}
.service-card:hover::before { animation: news-corner-sweep 520ms cubic-bezier(.2,.8,.2,1) 1; }
.service-card::after { content: none; }
.service-card div {
  position: relative;
  z-index: 1;
  width: 100%;
}
.service-card span, .price-card p, .trainer-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
.testimonial-card figcaption {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.service-card ul {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 14px;
}
.service-card li + li { margin-top: 0; }
.service-card p {
  max-width: 520px;
  color: var(--muted);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}
.price-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
  color: var(--white);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.price-card::before {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(28px,28px) rotate(-45deg);
}
.price-card:hover {
  transform: scale(1.012);
  border-color: rgba(163,211,32,.42);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}
.price-card:hover::before { animation: news-corner-sweep 520ms cubic-bezier(.2,.8,.2,1) 1; }
.price-card.featured {
  border-color: rgba(163, 211, 32, 0.72);
  background:
    radial-gradient(circle at 80% 0%, rgba(163, 211, 32, 0.18), transparent 32%),
    #141A04;
  box-shadow: 0 30px 95px rgba(163, 211, 32, 0.16);
}
.price-card.featured > p:not(.price-description):not(.price-promo):not(.price-package-label) {
  max-width: calc(100% - 130px);
}
.best {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 18px 9px 28px;
  border-radius: 0;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%);
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.best span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}
.price-card.featured > p:not(.price-description):not(.price-promo):not(.price-package-label) { margin-top: 0; }
.price-card h3 {
  margin: 12px 0 10px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: none;
}
.price-card > p {
  min-height: 24px;
  margin-bottom: 0;
  font-family: "Urbanist", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.price-card strong {
  color: var(--accent);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}
.price-card > span {
  display: block;
  margin: 5px 0 16px;
  color: var(--muted);
  line-height: 1.25;
}
.price-card ul {
  margin-bottom: 16px;
  color: rgba(247, 247, 242, 0.72);
  line-height: 1.3;
}
.price-card li + li { margin-top: 6px; }
.price-card .button { margin-top: auto; }
.pricing-grid-primary .price-card { height: 100%; }
.price-card .price-description,
.price-card .price-promo,
.price-card .price-package-label {
  min-height: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.price-card .price-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-style: italic;
}
.price-card .price-promo {
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
}
.price-card .price-package-label {
  margin: 12px 0 8px;
  color: var(--white);
  font-weight: 700;
  font-style: italic;
}
.price-card.featured .price-promo {
  margin-top: 26px;
}
.price-card.featured .price-promo + .price-description,
.price-card.featured .price-description + .price-description,
.price-card.featured .price-description + .price-package-label {
  margin-top: 20px;
}

.trainers { overflow: hidden; }
.slider-controls {
  width: min(100%, var(--max));
  margin: -22px auto 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.slider-controls[hidden] { display: none; }
.round-button {
  width: 52px;
  min-width: 52px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(247, 247, 242, 0.9);
  color: var(--black);
  cursor: pointer;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.8;
  -webkit-backdrop-filter: blur(5px) saturate(112%);
  backdrop-filter: blur(5px) saturate(112%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.trainer-slider {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}
.trainer-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.trainer-card::before {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(28px,28px) rotate(-45deg);
}
.trainer-card:hover {
  transform: scale(1.012);
  border-color: rgba(163,211,32,.32);
  box-shadow: none;
}
.trainer-card:hover::before { animation: news-corner-sweep 520ms cubic-bezier(.2,.8,.2,1) 1; }
.trainer-card::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,0));
}
.trainer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.72) contrast(1.08) brightness(0.82);
}
.trainer-card span, .trainer-card h3 {
  position: relative;
  z-index: 2;
  display: block;
  padding-inline: 22px;
}
.trainer-card span {
  margin-top: auto;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
}
.trainer-card h3 {
  margin: 10px 0 24px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.masonry {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.72) contrast(1.1) brightness(0.78);
  transition: transform 700ms ease, filter 180ms ease;
}
.masonry img:hover { filter: saturate(0.85) contrast(1.14) brightness(0.9); }
.masonry .tall { grid-row: span 2; }
.masonry .wide { grid-column: span 2; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.story-card {
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  overflow: hidden;
  border-radius: 6px;
}
.before-after img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.story-card h3 {
  margin: 22px 8px 8px;
  color: var(--black);
}
.story-card p { margin: 0 8px 12px; }

.testimonial-rail {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.testimonial-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
}
.testimonial-card blockquote {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.12;
}
.reviews-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.reviews-summary {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
}
.google-mark { width: 42px; height: 42px; margin-bottom: 20px; }
.reviews-summary strong { color: var(--accent); font-size: clamp(54px, 6vw, 84px); line-height: 0.9; }
.reviews-summary span { margin-top: 12px; color: var(--muted); font-size: 14px; }
.reviews-summary a { margin-top: 24px; font-size: 14px; font-weight: 700; }
.review-track {
  min-width: 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 8px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) var(--graphite-3);
  touch-action: pan-x;
}
.review-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.review-card {
  min-width: min(360px, 78vw);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
  scroll-snap-align: start;
}
.review-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.review-meta span { color: #fbbc04; letter-spacing: 0.08em; }
.review-meta em { color: var(--accent); font-size: 11px; font-style: normal; font-weight: 700; }
.review-card blockquote {
  margin: 34px 0 24px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}
.review-card > strong { margin-top: auto; color: var(--muted); font-size: 14px; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  padding: 22px 24px;
}
summary {
  min-height: 34px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}
details p { margin: 16px 0 0; }
details p a { color: #6f920d; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}
.contact-copy, .map-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}
.contact-address {
  margin-top: 34px;
  color: var(--white);
  font-style: normal;
  text-transform: none;
}
.contact-address h3 {
  margin-bottom: 18px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
}
.contact-address p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.38;
}
.contact-address a { color: var(--white); }
.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}
.contact-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}
dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
dd {
  margin: 8px 0 0;
  color: var(--white);
  font-weight: 800;
}
.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(163, 211, 32, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(163, 211, 32, 0.08), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0a0b0b;
  background-size: auto, 28px 28px, 28px 28px, auto;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}
.map-card p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.map-card span { color: var(--muted); }
.map-card strong { color: var(--accent); }

.footer {
  position: relative;
  isolation: isolate;
  padding: 34px var(--gutter) 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: stretch;
  gap: 42px;
  text-align: left;
  background: var(--accent);
  color: var(--black);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand img {
  width: min(230px, 44vw);
  filter: brightness(0);
}
.footer-brand > p {
  max-width: 380px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
}
.footer .footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 3px;
  max-width: none;
  padding-top: 0;
  border-top: 0;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.08;
  text-align: right;
  text-transform: none;
}
.profile-dialog {
  width: min(760px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 76px 34px 34px;
  background: var(--graphite-2);
  color: var(--white);
  box-shadow: var(--shadow);
}
.profile-dialog::backdrop { background: rgba(0, 0, 0, 0.76); backdrop-filter: blur(4px); }
.profile-dialog p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.profile-dialog blockquote {
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.profile-links { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: rgba(247,247,242,.06);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}
.profile-link:hover { border-color: var(--accent); background: rgba(163,211,32,.1); }
.profile-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-link[href*="facebook"] svg { fill: currentColor; stroke: none; }
.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: 58px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.82);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(5px) saturate(112%);
  backdrop-filter: blur(5px) saturate(112%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.profile-dialog .dialog-close {
  top: 16px;
  right: 16px;
  min-width: 108px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  background: var(--accent);
  color: var(--black);
  font-family: "Urbanist", Arial, sans-serif;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card.reveal.is-visible:hover,
.price-card.reveal.is-visible:hover,
.trainer-card.reveal.is-visible:hover {
  transform: scale(1.012);
}
.trainer-card.reveal.is-visible:hover { box-shadow: none; }
.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  *, *::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: 1040px) {
  .site-header {
    width: calc(100% - 20px);
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .brand { min-width: 0; justify-self: start; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    justify-self: end;
  }
  .menu-toggle span {
    position: absolute;
    left: 13px;
    width: 22px;
    height: 2px;
    background: var(--accent);
    transform-origin: center;
    transition: top 260ms cubic-bezier(.2,.8,.2,1), transform 260ms cubic-bezier(.2,.8,.2,1), opacity 160ms ease;
  }
  .menu-toggle span:nth-child(1) { top: 15px; }
  .menu-toggle span:nth-child(2) { top: 21px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle span:nth-child(4) { top: 33px; }
  .site-header.is-open .menu-toggle span:nth-child(1) { top: 24px; transform: rotate(45deg); }
  .site-header.is-open .menu-toggle span:nth-child(2),
  .site-header.is-open .menu-toggle span:nth-child(3) { top: 24px; opacity: 0; transform: scaleX(0); }
  .site-header.is-open .menu-toggle span:nth-child(4) { top: 24px; transform: rotate(-45deg); }
  .nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    display: none;
    padding: 84px 24px 32px;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .site-header.is-open .nav { display: flex; }
  .site-header.is-open .menu-toggle { position: relative; z-index: 70; }
  .nav a,
  .nav a:hover,
  .nav a:focus-visible {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    color: var(--black);
    font-size: clamp(42px, 12.5vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-transform: none;
    background: transparent;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "panel";
  }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.27) 52%, rgba(5, 5, 5, 0.58) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.16));
  }
  .hero-panel { max-width: 360px; }
  .section-grid, .about-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .section-kicker { position: static; }
  .why-grid, .pricing-grid, .testimonial-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-deck { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-layout { grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr); }
  .trainer-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  .ticker-track { animation-duration: 12s; }
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
  }
  .brand { min-width: 0; padding: 4px 0; }
  .brand img { width: min(245px, calc(100vw - 94px)); }
  .menu-toggle { flex: 0 0 48px; margin-left: auto; }
  .hero-title-primary .hero-title-second { margin-left: 0; }
  .hero {
    min-height: 100svh;
    align-items: end;
    padding-top: 108px;
    padding-bottom: 24px;
  }
  .hero-shell {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  h1 { font-size: clamp(38px, 11.25vw, 52px); }
  h2 { font-size: clamp(34px, 11vw, 48px); }
  .hero-copy, .hero-actions, .quick-cards {
    max-width: calc(100vw - 32px);
  }
  .hero-lead {
    width: min(82vw, 320px);
    max-width: 100%;
    font-size: 14px;
  }
  .hero-actions, .contact-actions {
    width: max-content;
    max-width: 100%;
    display: inline-grid;
    grid-template-columns: max-content;
    align-items: stretch;
  }
  .hero-actions .button, .contact-actions .button {
    width: 100%;
    justify-content: space-between;
  }
  .hero-hours-wrap {
    display: flex;
    margin-top: 24px;
    justify-self: auto;
  }
  .hours-drawer {
    top: 0;
    right: auto;
    bottom: auto;
    left: calc(100% + 0.65em);
    width: min(252px, calc(120vw - 240px));
    padding-left: 0;
    transform: scaleX(0);
    transform-origin: left top;
  }
  .hero-hours-wrap:hover .hours-drawer,
  .hero-hours-wrap:focus-within .hours-drawer,
  .hours-drawer.is-open {
    transform: scaleX(1);
  }
  .quick-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    margin-top: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
  }
  .quick-card {
    flex: 0 0 78%;
    min-width: 0;
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    scroll-snap-align: start;
  }
  .section { padding-block: 72px; }
  .section-grid { margin-bottom: 30px; gap: 18px; }
  .section-copy p { font-size: 17px; }
  .cinema-frame { min-height: 360px; }
  .timeline article { padding: 24px; }
  .value-strip, .why-grid, .service-deck, .pricing-grid, .story-grid, .testimonial-rail, .faq-list, .contact-facts {
    grid-template-columns: 1fr;
  }
  .value-strip span { font-size: 28px; }
  .feature-card { min-height: 240px; }
  .service-deck {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }
  .service-card, .service-card.large {
    flex: 0 0 82%;
    min-width: 0;
    height: 430px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }
  .price-card { min-height: auto; }
  .trainer-card.reveal,
  .trainer-card.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: border-color 260ms ease, box-shadow 260ms ease;
  }
  .trainer-slider {
    grid-template-columns: 1fr;
  }
  .slider-controls { margin-top: -8px; }
  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    gap: 10px;
  }
  .masonry .wide { grid-column: span 2; }
  .testimonial-card, .contact-copy, .map-card { padding: 24px; }
  .contact-layout { gap: 12px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 5px 16px;
    padding: 22px;
  }
  .google-mark { grid-row: span 3; margin: 0; }
  .reviews-summary strong { font-size: 48px; }
  .reviews-summary span, .reviews-summary a { margin-top: 0; }
  .review-card { min-width: 82vw; }
  .contact-address h3 { font-size: 28px; }
  .contact-address p { font-size: 17px; }
  .profile-dialog { padding: 72px 22px 24px; }
  .profile-dialog blockquote { font-size: 16px; }
  .footer {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.65fr);
    gap: 18px;
    padding-inline: 18px;
    text-align: left;
  }
  .footer-brand img { width: min(165px, 42vw); }
  .footer-brand > p { max-width: 190px; font-size: 10px; }
  .footer .footer-legal { font-size: 8px; }
  .footer-meta { font-size: 7px; gap: 3px 8px; }
  .map-placeholder { min-height: 230px; }
  .map-card p { display: block; }
  .map-card strong { display: block; margin-top: 8px; }
}


.price-toggle {
  position: sticky;
  z-index: 20;
  top: 84px;
  isolation: isolate;
  width: fit-content;
  display: flex;
  gap: 0;
  margin: 0 auto 24px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  background: rgba(5,5,5,.72);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 14px 46px rgba(0,0,0,.42), 0 0 28px rgba(163,211,32,.08), inset 0 1px 0 rgba(255,255,255,.1);
}
.price-toggle.reveal.is-visible { transform: none; }
.price-toggle button {
  position: relative;
  z-index: 2;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease;
}
.price-toggle:not(.is-enhanced) button.is-active { background: var(--accent); }
.price-toggle button.is-active { color: var(--black); }
.price-toggle-indicator {
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 0;
  background: var(--accent);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: width 440ms cubic-bezier(.2,.8,.2,1), transform 440ms cubic-bezier(.2,.8,.2,1);
}
.pricing-grid-secondary {
  grid-auto-rows: auto;
  align-items: start;
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
}
.pricing-grid-secondary-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid-secondary-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card.compact {
  min-height: 0;
  padding: 16px;
}
.price-card.compact h3 {
  margin: 0 0 18px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.price-card.compact strong {
  font-size: 36px;
}
.price-card.compact > span {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1040px) {
  .pricing-grid-secondary-wide,
  .pricing-grid-secondary-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid-secondary-three .price-card:last-child { grid-column: 1 / -1; }
}
.footer .footer-legal { max-width: none; padding-top: 0; border-top: 0; font-size: 9px; }
.legal-page { min-height: 100vh; padding: 120px var(--gutter) 80px; background: var(--black); color: var(--white); }
.legal-page > div { width: min(100%, 1080px); margin: 0 auto; }
.legal-intro { max-width: 720px; color: var(--muted); }
.legal-accordion { display: grid; gap: 14px; margin-top: 52px; }
.legal-document {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite-2);
}
.legal-document summary {
  position: relative;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
}
.legal-document summary::-webkit-details-marker { display: none; }
.legal-document summary span { display: grid; gap: 7px; }
.legal-document summary strong {
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.legal-document summary small {
  color: var(--muted);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.legal-document summary i {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}
.legal-document summary i::before,
.legal-document summary i::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 18px;
  height: 2px;
  background: var(--accent);
  content: "";
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}
.legal-document summary i::after { transform: rotate(90deg); }
.legal-document[open] summary i::after { transform: rotate(0); }
.legal-document-body {
  padding: 8px 30px 34px;
  border-top: 1px solid var(--line);
}
.legal-source-heading {
  margin: 30px 0 12px;
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  white-space: pre-wrap;
}
.legal-source-paragraph {
  margin: 13px 0 0;
  color: var(--muted);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  white-space: pre-wrap;
}
.legal-source-bullet { position: relative; padding-left: 22px; }
.legal-source-bullet::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "→";
}
.legal-table-wrap { max-width: 100%; margin-top: 18px; overflow-x: auto; }
.legal-table-wrap table { width: 100%; border-collapse: collapse; }
.legal-table-wrap td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  white-space: pre-wrap;
  vertical-align: top;
}
.legal-document.is-animating { overflow: hidden; }
.legal-policy {
  max-width: 860px;
  margin-top: 72px;
  color: var(--muted);
}
.legal-policy h2,
.legal-policy h3 { color: var(--white); }
.legal-policy h2 { margin: 8px 0 26px; font-size: clamp(38px, 5vw, 64px); }
.legal-policy h3 { margin: 36px 0 10px; font-size: 24px; }
.legal-policy p,
.legal-policy li { font-size: 16px; line-height: 1.6; }
.legal-policy ul { display: grid; gap: 14px; padding-left: 22px; }
.legal-policy strong { color: var(--white); }
.legal-policy a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-policy .button { margin-top: 12px; }


.news-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 14px; }
.news-card { position: relative; min-height: 480px; display: flex; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--graphite-2); transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease; }
.news-card:hover { transform: scale(1.012); border-color: rgba(163,211,32,.32); box-shadow: 0 14px 32px rgba(0,0,0,.16); }
.news-card::before { position: absolute; z-index: 2; right: 8px; bottom: 8px; width: 20px; height: 2px; background: var(--accent); content: ""; opacity: 0; pointer-events: none; transform: translate(28px,28px) rotate(-45deg); }
.news-card:hover::before { animation: news-corner-sweep 520ms cubic-bezier(.2,.8,.2,1) 1; }
.news-card::after { content: none; }
.news-card > div { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.news-card span { color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.news-card > div > span { font-style: italic; font-weight: 700; }
.news-card .button span { font-style: normal; }
.news-card h3 { margin-top: 14px; color: var(--white); font-family: "Urbanist", Arial, sans-serif; font-size: 24px; font-weight: 700; }
.news-card p { color: var(--muted); font-family: "Urbanist", Arial, sans-serif; font-size: 14px; }
.news-card .news-price {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.news-card .news-installment {
  margin-top: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.news-card-featured h3 { margin-bottom: 14px; }
.news-card-featured { grid-column: span 2; }
.news-card .news-action-lead {
  margin-top: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.news-card .button { margin-top: auto; }
.news-card .button,
.news-card .button span { color: var(--black); }
@keyframes news-corner-sweep {
  0% { opacity: 0; transform: translate(28px,28px) rotate(-45deg); }
  28% { opacity: 1; }
  100% { opacity: 0; transform: translate(-38px,-38px) rotate(-45deg); }
}
.gallery-item { min-width: 0; overflow: hidden; padding: 0; border: 0; background: var(--graphite-2); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-dialog {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.88);
  box-shadow: none;
  overflow: hidden;
}
.gallery-dialog[open] { display: grid; place-items: center; }
.gallery-dialog::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.gallery-dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  border: 0;
  object-fit: contain;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
  will-change: transform, opacity;
}
.gallery-dialog .dialog-close {
  z-index: 2;
  border: 0;
  background: rgba(17,19,19,.82);
}
.map-frame { width: 100%; min-height: 340px; margin-bottom: 28px; border: 0; border-radius: 6px; filter: grayscale(1) contrast(1.08); }
.map-consent {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--graphite-2);
}
.map-consent .map-frame { min-height: 0; height: 100%; margin: 0; }
.map-consent-revoke {
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--graphite-2);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.map-consent-revoke:hover,
.map-consent-revoke:focus-visible { color: var(--white); outline: 0; }
.map-consent-content {
  width: min(100%, 600px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 44px;
}
.map-consent-content h3 { margin: 0; font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(32px, 4vw, 48px); line-height: .95; text-transform: uppercase; }
.map-consent-content p { max-width: 560px; margin: 0; color: var(--muted); }
.map-consent-content .eyebrow { color: var(--accent); }
.map-consent-content a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.nav a[aria-current="true"] { color: var(--accent); }
.testimonial-card:only-child { grid-column: 1 / -1; min-height: 270px; }
.testimonial-card:only-child strong { color: var(--accent); font-size: clamp(54px, 8vw, 110px); line-height: 1; }
@media (max-width: 1040px) { .news-grid { grid-template-columns: 1fr 1fr; } .news-card, .news-card-featured { min-height: 410px; grid-column: auto; } }
@media (max-width: 720px) {
  h1 { font-size: clamp(38px, 11.25vw, 49px); }
  .hero-break-mobile { display: block; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card, .news-card-featured { min-height: 0; grid-column: auto; }
  .service-card, .service-card.large { height: auto; }
  .service-card ul { grid-template-columns: 1fr; }
  .pricing-grid-primary { grid-auto-rows: auto; }
  .pricing-grid-primary .price-card { height: auto; }
  .map-frame { min-height: 260px; }
  .map-consent { min-height: 260px; }
  .map-consent-content { padding: 28px; }
  .price-toggle { top: 78px; width: 100%; }
  .price-toggle button { flex: 1; padding-inline: 10px; }
  .pricing-grid-secondary-wide,
  .pricing-grid-secondary-three { grid-template-columns: 1fr; }
  .pricing-grid-secondary-three .price-card:last-child { grid-column: auto; }
  .hero-hours-wrap:hover .hours-drawer,
  .hero-hours-wrap:focus-within .hours-drawer { transform: scaleX(0); }
  .hero-hours-wrap .hours-drawer.is-open { transform: scaleX(1); }
}


@media (min-width: 1260px) {
  .trainer-slider {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Final footer alignment, branded contact actions and a lighter hero video veil. */
.hero-overlay {
  background:
    radial-gradient(circle at 72% 20%, rgba(163, 211, 32, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.51) 0%, rgba(0, 0, 0, 0.39) 42%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.53) 0%, rgba(5, 5, 5, 0) 42%);
}
.hero-actions .button-primary {
  background: #38CEC1;
}
.hero-actions .button-primary:hover {
  background: #55dbcf;
}
.contact-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.contact-button-call {
  background: #38CEC1;
  color: var(--black);
}
.contact-button-whatsapp {
  background: #25D366;
  color: var(--black);
}
.contact-button-email {
  background: #EA4335;
  color: var(--white);
}
.contact-button-facebook {
  background: #1877F2;
  color: var(--white);
}
.contact-button-instagram {
  background: #833AB4;
  background-image: linear-gradient(135deg, #833AB4 0%, #FD1D1D 52%, #FCAF45 100%);
  color: var(--white);
}
.contact-button:hover { filter: brightness(1.08); }
.contact-button-call .button-arrow::before,
.contact-button-call .button-arrow::after,
.contact-button-whatsapp .button-arrow::before,
.contact-button-whatsapp .button-arrow::after {
  background: var(--black);
}
.contact-button-email .button-arrow::before,
.contact-button-email .button-arrow::after,
.contact-button-facebook .button-arrow::before,
.contact-button-facebook .button-arrow::after,
.contact-button-instagram .button-arrow::before,
.contact-button-instagram .button-arrow::after {
  background: var(--white);
}
@media (max-width: 1040px) {
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.09) 52%, rgba(5, 5, 5, 0.15) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.03));
  }
}

.legal-page {
  padding-top: 56px;
}
.legal-toolbar {
  position: sticky;
  z-index: 30;
  top: 0;
  isolation: isolate;
  padding: 20px 0 38px;
  margin-bottom: 82px;
}
.legal-toolbar::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  background: var(--black);
  content: "";
  transform: translateX(-50%);
}
.legal-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .legal-page { padding-inline: 14px; }
  .legal-toolbar { margin-bottom: 50px; }
  .legal-accordion { margin-top: 36px; }
  .legal-document summary { min-height: 104px; padding: 22px 18px; }
  .legal-document summary strong { font-size: 21px; }
  .legal-document summary small { font-size: 14px; }
  .legal-document-body { padding: 4px 18px 28px; }
  .legal-source-heading { font-size: 19px; }
  .legal-source-paragraph { font-size: 15px; }
}

/* CTA brand geometry and the text/arrow entrance-exit motion. */
.button {
  position: relative;
  overflow: hidden;
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}
.button {
  border-radius: 0 !important;
}
.button-label {
  position: relative;
  display: inline-block;
  height: 1.18em;
  overflow: hidden;
  line-height: 1.18;
  vertical-align: middle;
}
.button-label > span {
  display: block;
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.button-label::after {
  position: absolute;
  inset: 100% 0 auto;
  content: attr(data-label);
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.button:hover .button-label > span,
.button:focus-visible .button-label > span {
  transform: translateY(-100%);
}
.button:hover .button-label::after,
.button:focus-visible .button-label::after {
  transform: translateY(-100%);
}
.button::before,
.button::after {
  content: none !important;
}
.button-arrow {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background: transparent;
  clip-path: none;
  border-radius: 0;
}
.button-secondary .button-arrow { background: transparent; }
.button-arrow::before,
.button-arrow::after {
  position: absolute;
  inset: 0;
  background: var(--black);
  content: "";
  -webkit-mask: url("../images/cta-arrow.svg") center / 32px 32px no-repeat;
  mask: url("../images/cta-arrow.svg") center / 32px 32px no-repeat;
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.button-arrow::before { transform: translate(0, 0); }
.button-arrow::after { transform: translate(-150%, 150%); }
.button:hover .button-arrow::before,
.button:focus-visible .button-arrow::before {
  transform: translate(150%, -150%);
}
.button:hover .button-arrow::after,
.button:focus-visible .button-arrow::after {
  transform: translate(0, 0);
}
.menu-toggle {
  border-radius: 0 !important;
  clip-path: none !important;
}
.round-button,
.dialog-close {
  clip-path: none;
}

@media (max-width: 720px) {
  .hero-title-line:first-child > span { display: block; white-space: nowrap; }
  .hero-title-line:first-child .hero-title-second { margin-top: -0.04em; }
}

/* Cards containing CTA keep a stable box so the CTA animation does not flicker. */
.news-card.reveal.is-visible:hover,
.pricing-grid:not(.pricing-grid-secondary) .price-card.reveal.is-visible:hover {
  transform: none;
}

.news-card .button,
.pricing-grid .price-card .button,
.trainer-card .button {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  contain: paint;
}

/* July 26 refinement: hero, pricing, reviews, contact and footer. */
.price-value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
}
.price-value-row > span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.reviews-layout { gap: clamp(26px, 4vw, 58px); }
.reviews-summary {
  min-height: 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.reviews-summary a.google-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.google-link-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: var(--accent);
  font-size: 18px;
}
.google-link-arrow::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "↗";
  transform: translate(-140%, 140%);
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.google-maps-link:hover .google-link-arrow,
.google-maps-link:focus-visible .google-link-arrow {
  color: transparent;
}
.google-maps-link:hover .google-link-arrow::after,
.google-maps-link:focus-visible .google-link-arrow::after {
  color: var(--accent);
  transform: translate(0, 0);
}
.review-track {
  gap: clamp(30px, 4vw, 54px);
  padding: 12px 0 20px;
  scrollbar-width: thin;
}
.review-card {
  min-width: min(340px, 74vw);
  min-height: 220px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.review-card p {
  margin: 30px 0 24px;
  color: var(--white);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.38;
}
.review-card > strong {
  margin-top: auto;
  color: var(--white);
  font-size: 15px;
}

.map-card > h3 {
  margin-bottom: 18px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}

.profile-dialog .dialog-close {
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 180ms ease;
}
.profile-dialog .dialog-close:hover,
.profile-dialog .dialog-close:focus-visible {
  background: #b7e72d;
  transform: scale(1.045);
}
.profile-dialog .dialog-close:hover .button-label > span,
.profile-dialog .dialog-close:focus-visible .button-label > span {
  transform: translateY(-100%);
}
.profile-dialog .dialog-close:hover .button-label::after,
.profile-dialog .dialog-close:focus-visible .button-label::after {
  transform: translateY(-100%);
}

.footer {
  padding-block: 42px 50px;
}
.footer-brand img { width: min(260px, 48vw); }
.footer-brand > p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.22;
}
.footer .footer-legal {
  font-size: 13px;
  line-height: 1.18;
}
.footer-meta {
  margin-top: 18px;
  font-size: 11px;
}

@media (max-width: 1040px) {
  .service-card.reveal,
  .service-card.reveal.is-visible,
  .service-card.reveal.is-visible:hover {
    opacity: 1;
    transform: none;
    transition: border-color 260ms ease, box-shadow 260ms ease;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 30px;
  }
  h1 { font-size: clamp(34px, 10vw, 46px); }
  .hero-hours-wrap {
    width: 172px;
    min-width: 172px;
    margin: 42px 0 4px auto;
    justify-content: flex-end;
  }
  .hero-panel { min-width: 132px; }
  .hours-drawer {
    top: auto;
    right: 0;
    bottom: calc(100% + 12px);
    left: auto;
    width: min(252px, calc(100vw - 32px));
    padding-left: 0;
    transform: translateY(calc(100% + 54px));
    transform-origin: right bottom;
  }
  .hero-hours-wrap:hover .hours-drawer,
  .hero-hours-wrap:focus-within .hours-drawer {
    transform: translateY(calc(100% + 54px));
  }
  .hero-hours-wrap .hours-drawer.is-open {
    transform: translateY(0);
  }
  .reviews-summary {
    padding: 0;
  }
  .review-card {
    min-width: 78vw;
  }
  .map-card > h3 { font-size: 28px; }
  .footer {
    gap: 24px;
    padding: 38px 18px 108px;
  }
  .footer-brand img { width: min(195px, 48vw); }
  .footer-brand > p {
    max-width: 220px;
    font-size: 14px;
  }
  .footer .footer-legal {
    font-size: 11px;
    line-height: 1.18;
  }
  .footer-meta {
    font-size: 9px;
    line-height: 1.2;
  }
}

/* Contact, footer and typography refinement. */
.button {
  font-size: 16px;
  font-weight: 600;
}
.button .button-label,
.button .button-label > span {
  font-size: 16px;
  font-weight: 600;
}
.nav a {
  font-size: 16px !important;
  font-weight: 600 !important;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: end;
  gap: 28px 48px;
}
.contact-copy,
.contact-hours {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-hours {
  color: var(--white);
}
.contact-hours h3 {
  margin-bottom: 18px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}
.contact-hours p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
}
.contact-hours p + p { margin-top: 8px; }
.contact-hours span,
.contact-hours strong {
  color: var(--white);
  font-weight: 600;
}
.contact-map {
  grid-column: 1 / -1;
  min-height: 420px;
  margin: 10px 0 0;
  border-radius: 0;
}

@media (min-width: 721px) {
  .footer {
    width: min(calc(100% - (2 * var(--gutter))), var(--max));
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }
  .contact-hours h3 { font-size: 28px; }
  .contact-hours p {
    display: block;
    font-size: 17px;
  }
  .contact-hours strong {
    display: block;
    margin-top: 3px;
  }
  .contact-map {
    grid-column: auto;
    min-height: 280px;
    margin-top: 0;
  }
  .hero-hours-wrap {
    width: max-content;
    min-width: 0;
    margin: 32px 0 4px;
    justify-content: flex-start;
  }
  .hero-panel { min-width: 0; }
  .hours-drawer {
    top: 0;
    right: auto;
    bottom: auto;
    left: calc(100% + 0.65em);
    width: min(252px, calc(100vw - 190px));
    transform: scaleX(0);
    transform-origin: left top;
  }
  .hero-hours-wrap:hover .hours-drawer,
  .hero-hours-wrap:focus-within .hours-drawer {
    transform: scaleX(0);
  }
  .hero-hours-wrap .hours-drawer.is-open {
    transform: scaleX(1);
  }
  .footer {
    width: 100%;
    margin-inline: 0;
  }
}

/* Reviews, FAQ, contact, gallery captions and angled desktop footer. */
.gallery-item {
  position: relative;
}
.gallery-caption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.92);
  pointer-events: none;
}

.testimonials {
  background: var(--paper);
  color: var(--black);
}
.testimonials .reviews-summary span,
.testimonials .reviews-summary a,
.testimonials .review-card p,
.testimonials .review-card > strong {
  color: var(--black);
}
.testimonials .review-track {
  scrollbar-color: var(--accent) #d9d9d4;
}

.faq {
  background: var(--black);
  color: var(--white);
}
.faq details {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  padding: 0;
}
.faq summary {
  display: block;
  width: 100%;
  min-height: 78px;
  padding: 22px 24px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 0;
  padding: 0 24px 22px;
}
.faq details p {
  color: var(--muted);
}
.faq details p a {
  color: var(--accent);
}
.faq details.is-animating {
  pointer-events: none;
}

.contact {
  background: var(--paper);
  color: var(--black);
}
.contact-layout {
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-copy {
  grid-column: 1 / -1;
}
.contact-copy > p:not(.eyebrow) {
  color: #565b52;
}
.contact-details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 48px;
}
.contact-address {
  margin-top: 0;
  color: var(--black);
}
.contact-address p,
.contact-address a {
  color: #565b52;
}
.contact-hours {
  color: var(--black);
}
.contact-hours h3 {
  color: var(--black);
}
.contact-hours p {
  justify-content: flex-start;
  gap: 28px;
  color: #565b52;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.38;
}
.contact-hours p span {
  min-width: 154px;
  color: #565b52;
  font-weight: 400;
}
.contact .button-secondary {
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(12, 12, 12, 0.96);
  color: var(--white);
}
.contact .button-secondary:hover {
  background: var(--black);
}

@media (min-width: 721px) {
  .footer {
    width: calc(100% - max(var(--gutter), (100% - var(--max)) / 2));
    max-width: none;
    margin-right: 0;
    margin-left: max(var(--gutter), (100% - var(--max)) / 2);
    padding-left: clamp(42px, 5vw, 72px);
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
  }
  .footer-brand > p {
    font-size: 18px;
    font-weight: 700;
  }
  .footer .footer-legal {
    font-size: 16px;
    font-weight: 600;
  }
  .footer-meta {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 720px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-hours p {
    display: flex;
    gap: 16px;
    font-size: 17px;
  }
  .contact-hours p span {
    min-width: 0;
  }
  .contact-hours p span:first-child {
    min-width: 132px;
  }
}

/* Dialog cursor, footer type and final contact/FAQ refinements. */
.gallery-dialog .dialog-close,
.profile-dialog .dialog-close {
  top: 16px;
  right: 16px;
  min-width: 108px;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  background: var(--accent);
  color: var(--black);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 180ms ease;
}
.gallery-dialog .dialog-close:hover,
.gallery-dialog .dialog-close:focus-visible,
.profile-dialog .dialog-close:hover,
.profile-dialog .dialog-close:focus-visible {
  background: #b7e72d;
  transform: scale(1.045);
}
.gallery-dialog .dialog-close:hover .button-label > span,
.gallery-dialog .dialog-close:focus-visible .button-label > span,
.profile-dialog .dialog-close:hover .button-label > span,
.profile-dialog .dialog-close:focus-visible .button-label > span {
  transform: translateY(-100%);
}
.gallery-dialog .dialog-close:hover .button-label::after,
.gallery-dialog .dialog-close:focus-visible .button-label::after,
.profile-dialog .dialog-close:hover .button-label::after,
.profile-dialog .dialog-close:focus-visible .button-label::after {
  transform: translateY(-100%);
}
.profile-dialog {
  box-shadow: none !important;
  outline: 0;
}
.contact .button-secondary .button-arrow::before,
.contact .button-secondary .button-arrow::after {
  background: var(--white);
}
.contact-hours p + p {
  margin-top: 0;
}
.faq summary {
  font-weight: 700;
}
.footer-brand > p {
  font-size: 16px;
  font-weight: 700;
}
.footer .footer-legal {
  font-size: 18px;
  font-weight: 600;
}
.footer-meta {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .footer {
    --footer-mobile-gap: 18px;
    --footer-mobile-bottom: 108px;
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: var(--footer-mobile-bottom);
    overflow: hidden;
  }
  .footer .footer-meta {
    margin-top: var(--footer-mobile-gap);
  }
  .footer .footer-legal {
    width: calc(100% + 36px);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px 14px;
    margin: var(--footer-mobile-gap) -18px calc(-1 * var(--footer-mobile-bottom));
    padding: 18px 18px var(--footer-mobile-bottom);
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }
  .footer .footer-legal a {
    color: var(--white);
    white-space: nowrap;
  }
  body.menu-open .site-header {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
    border-radius: 0;
    background: var(--paper);
    transform: none;
  }
  body.menu-open .site-header .nav {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 76px 20px 30px;
    background: var(--paper);
  }
  body.menu-open .site-header .menu-toggle {
    position: absolute;
    z-index: 70;
    top: 14px;
    right: 14px;
  }
  body.menu-open .site-header .nav a,
  body.menu-open .site-header .nav a:hover,
  body.menu-open .site-header .nav a:focus-visible {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(44px, 13vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.02;
    text-transform: uppercase;
  }
}

/* Final footer placement overrides. */
.footer { grid-template-columns: minmax(0, 1fr); }
.footer-brand { width: min(100%, calc(var(--max) - clamp(42px, 5vw, 72px))); }
.footer .footer-legal {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px 16px;
  margin: 18px 0;
  padding: 0;
  background: transparent;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.footer .footer-legal a { color: var(--black); white-space: normal; }
.footer .footer-meta { margin-top: 0; padding-top: 0; font-size: 15px; }

@media (max-width: 720px) {
  .footer-brand { width: 100%; }
  .footer .footer-legal {
    width: 100%;
    margin: 18px 0;
    padding: 0;
    background: transparent;
    color: var(--black);
    font-size: 15px;
  }
  .footer .footer-legal a { color: var(--black); }
  .footer .footer-meta { margin-top: 0; }
}

/* Final mobile navigation and contact refinements. */
@media (max-width: 720px) {
  .contact-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-actions .contact-button {
    min-width: 0;
    width: 100%;
    padding-inline: 14px;
    justify-content: center;
  }

}

/* Direct document links use the same angled CTA language without expanding inline content. */
.legal-document-head {
  position: relative;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
}
.legal-document { scroll-margin-top: 148px; }
.legal-document-head > span { display: grid; gap: 7px; }
.legal-document-head strong {
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.legal-document-head small {
  color: var(--muted);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.legal-open {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--accent);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  font-family: "Urbanist", Arial, sans-serif;
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), filter 220ms ease;
}
.legal-open:hover,
.legal-open:focus-visible { transform: translateY(-3px) scale(1.05); filter: brightness(1.12); }
.file-icon,
.file-icon::after {
  position: relative;
  display: block;
  width: 16px;
  height: 20px;
  border: 2px solid var(--black);
  background: transparent;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease;
}
.file-icon::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 13px;
  height: 17px;
  margin: 0;
  content: "";
  opacity: 0;
  transform: translate(-12px, 12px);
}
.legal-open:hover .file-icon,
.legal-open:focus-visible .file-icon { transform: translate(10px, -10px); }
.legal-open:hover .file-icon::after,
.legal-open:focus-visible .file-icon::after { opacity: 1; transform: translate(0, 0); }
.legal-gallery {
  width: 100%;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite-2);
}
.legal-gallery img { display: block; width: 100%; height: clamp(220px, 32vw, 430px); object-fit: cover; }
.legal-logo { display: block; width: min(260px, 62vw); margin: 44px auto 0; }
.legal-logo img { display: block; width: 100%; height: auto; }

.footer .footer-legal {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  align-items: start;
  gap: 5px 16px;
}
.footer .footer-legal a:last-child { grid-column: 1 / -1; }
.footer-credit-link {
  display: inline-flex;
  width: 112px;
  align-items: center;
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
}
.footer-credit-link:hover,
.footer-credit-link:focus-visible { transform: scale(1.08); opacity: .86; }
.footer-credit-link img { display: block; width: 100%; height: auto; }
.footer-meta { flex-direction: column; align-items: flex-start; gap: 36px; }
@media (max-width: 720px) {
  .legal-document-head { min-height: 104px; padding: 22px 18px; }
  .legal-document-head strong { font-size: 21px; }
  .legal-document-head small { font-size: 14px; }
  .legal-document { scroll-margin-top: 108px; }
  .footer .footer-legal { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .footer-credit-link { width: 100px; }
  .legal-gallery img { height: 240px; }
  .legal-logo { margin-top: 32px; }
}
