:root {
  --ink: #111318;
  --muted: #5f6673;
  --line: #e2e5e9;
  --paper: #f7f4ef;
  --white: #ffffff;
  --steel: #28313c;
  --orange: #f48460;
  --orange-dark: #c85d3f;
  --green: #446b57;
  --shadow: 0 22px 60px rgba(17, 19, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lang-en .hr,
body:not(.lang-en) .en {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 54px);
  color: var(--white);
  background: rgba(17, 19, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 36px;
  padding: 0 8px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 950;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.header-cta,
.btn {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.language-toggle {
  width: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--orange);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: clamp(20px, 5vw, 70px);
  padding: clamp(118px, 14vh, 160px) clamp(18px, 5vw, 72px) clamp(42px, 8vh, 82px);
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.95), rgba(17, 19, 24, 0.72) 46%, rgba(17, 19, 24, 0.38)),
    linear-gradient(0deg, rgba(17, 19, 24, 0.85), rgba(17, 19, 24, 0.12) 54%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
}

.hero-actions,
.contact-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.header-cta:hover,
.language-toggle:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--orange);
  color: var(--ink);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
}

.btn.secondary.dark {
  background: var(--steel);
  color: var(--white);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost.dark {
  color: var(--ink);
  border-color: rgba(17, 19, 24, 0.2);
  background: transparent;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

.metric {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 950;
}

.hero-panel span:not(.metric) {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--orange);
  color: var(--ink);
}

.quick-strip a {
  min-width: 0;
  padding: 20px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(17, 19, 24, 0.18);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.quick-strip span {
  color: rgba(17, 19, 24, 0.75);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--white);
}

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

.section-copy h2,
.section-heading h2,
.visit-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.visit-panel p,
.pricing-note {
  color: var(--muted);
  font-size: 1.04rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.fact-grid div {
  min-height: 90px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

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

.fact-grid strong {
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 950;
}

.fact-grid span {
  color: var(--muted);
  font-weight: 700;
}

.image-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 14px;
  align-items: end;
}

.image-stack img,
.gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 3;
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(34px);
}

.gallery-section,
.programs {
  background: #eef0ed;
}

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

figure {
  margin: 0;
}

.gallery img {
  aspect-ratio: 4 / 5;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

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

.program-grid article,
.compare-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.program-grid article,
.compare-grid article {
  padding: 22px;
}

.program-grid article span:first-child {
  color: var(--orange-dark);
  font-weight: 950;
}

.program-grid h3,
.compare-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.program-grid p,
.compare-grid p,
.price-card li {
  color: var(--muted);
}

.membership,
.visit {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.price-card {
  padding: 24px;
}

.price-card.featured {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}

.price-card p {
  margin: 0;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.price-card h3 {
  margin: 12px 0;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1;
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
}

.price-card a {
  color: var(--orange-dark);
  font-weight: 900;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured a {
  color: var(--orange);
}

.pricing-note {
  max-width: 920px;
  margin: 24px 0 0;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(26px, 5vw, 54px);
  background: #f2f3ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-card {
  align-self: start;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.hours-card h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.hours-card dd {
  font-weight: 950;
}

.hours-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.compare {
  background: #e9e2d8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 72px) 92px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.mobile-action-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-action-bar a {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 58px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
}

.mobile-action-bar a:last-child {
  background: var(--orange);
  color: var(--ink);
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
    grid-template-columns: 1fr;
  }

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

  .quick-strip,
  .gallery,
  .program-grid,
  .compare-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .visit-panel {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand span:last-child,
  .header-cta span:not(:first-child) {
    display: none;
  }

  .brand-mark {
    min-width: 50px;
  }

  .language-toggle {
    width: 44px;
  }

  .hero {
    min-height: 88vh;
    padding: 92px 16px 28px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 19, 24, 0.94), rgba(17, 19, 24, 0.42) 70%),
      linear-gradient(90deg, rgba(17, 19, 24, 0.82), rgba(17, 19, 24, 0.22));
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-panel div {
    padding: 14px;
  }

  .metric {
    font-size: 1.5rem;
  }

  .quick-strip,
  .gallery,
  .program-grid,
  .compare-grid,
  .pricing-grid,
  .fact-grid,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 24, 0.18);
  }

  .section {
    padding: 54px 16px;
  }

  .section-copy h2,
  .section-heading h2,
  .visit-panel h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .gallery img {
    aspect-ratio: 4 / 3;
  }

  .visit-panel {
    padding: 18px;
  }

  .hours-card dl div {
    align-items: baseline;
  }

  .site-footer {
    display: block;
    padding: 28px 16px 100px;
  }

  .footer-links {
    margin-top: 18px;
  }

  .mobile-action-bar {
    display: grid;
  }
}
