@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Yellowtail";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/yellowtail-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --lime-50: #f4f9e8;
  --lime-100: #e7f2cd;
  --lime-200: #d2e7a2;
  --lime-300: #bcda73;
  --lime-400: #a6cd4e;
  --lime-500: #8fbe3c;
  --lime-600: #739a2e;
  --lime-700: #587526;
  --lime-800: #455c20;
  --lime-900: #3a4d1f;
  --neutral-0: #fff;
  --neutral-50: #f7f7f5;
  --neutral-100: #efefec;
  --neutral-200: #e2e2dd;
  --neutral-300: #c9c9c2;
  --neutral-400: #a7a7a0;
  --neutral-500: #84847d;
  --neutral-600: #5c5c5c;
  --neutral-700: #454540;
  --neutral-800: #2b2c27;
  --neutral-900: #1b1d16;
  --neutral-950: #101109;
  --success-500: #4fa845;
  --warning-500: #e6a416;
  --danger-500: #b82929;
  --info-500: #3b82c4;
  --brand: var(--lime-500);
  --brand-strong: var(--lime-700);
  --brand-stronger: var(--lime-800);
  --brand-soft: var(--lime-100);
  --surface-page: var(--neutral-50);
  --surface-card: var(--neutral-0);
  --surface-sunken: var(--neutral-100);
  --surface-inverse: var(--neutral-900);
  --surface-inverse-2: var(--neutral-800);
  --text-strong: var(--neutral-900);
  --text-body: var(--neutral-700);
  --text-muted: var(--neutral-600);
  --text-faint: var(--neutral-500);
  --border: var(--neutral-200);
  --border-strong: var(--neutral-300);
  --border-inverse: rgba(255, 255, 255, 0.12);
  --focus-ring: var(--lime-500);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --container-max: 1200px;
  --container-prose: 760px;
  --page-gutter: clamp(20px, 5vw, 56px);
  --container-gutter: max(var(--page-gutter), calc((100vw - var(--container-max)) / 2));
  --prose-frame: calc(var(--container-prose) + var(--page-gutter) + var(--page-gutter));
  --header-main-height: 76px;
  --opening-bar-height: 44px;
  --header-height: calc(var(--header-main-height) + var(--opening-bar-height));
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(27, 29, 22, 0.06);
  --shadow-sm: 0 1px 3px rgba(27, 29, 22, 0.08), 0 1px 2px rgba(27, 29, 22, 0.04);
  --shadow-md: 0 4px 12px rgba(27, 29, 22, 0.08), 0 2px 4px rgba(27, 29, 22, 0.04);
  --shadow-lg: 0 12px 28px rgba(27, 29, 22, 0.12), 0 4px 8px rgba(27, 29, 22, 0.05);
  --shadow-brand: 0 10px 26px rgba(143, 190, 60, 0.36);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  max-width: 68ch;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

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

::selection {
  background: var(--lime-300);
  color: var(--neutral-900);
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--neutral-900);
  font-family: var(--font-display);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: block;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.site-header-main {
  height: var(--header-main-height);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 0;
  padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header-dark-top:not(.is-scrolled) {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.brand-wordmark {
  display: inline-flex;
  flex: none;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  line-height: 1;
  color: var(--neutral-600);
}

.brand-script,
.hero-script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand-script {
  margin: 0 0 -3px 2px;
  color: currentColor;
  font-size: 12px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name span:first-child {
  color: var(--brand);
}

.brand-name span:last-child {
  color: currentColor;
  font-weight: 700;
}

.site-header-dark-top:not(.is-scrolled) .brand-wordmark,
.brand-wordmark-inverse {
  color: var(--neutral-200);
}

.primary-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item-main {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.has-submenu .nav-link {
  padding-right: 5px;
}

.submenu-toggle {
  width: 30px;
  height: 44px;
  display: inline-grid;
  flex: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
}

.submenu-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--dur-fast) var(--ease-out);
}

.submenu-toggle[aria-expanded="true"] .submenu-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 2;
  width: max-content;
  min-width: 220px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: visibility var(--dur-fast), opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
  content: "";
}

.nav-item:hover > .nav-submenu,
.nav-submenu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-submenu-link {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-submenu-link:hover,
.nav-submenu-link.is-active {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.site-header-dark-top:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.66);
}

.site-header-dark-top:not(.is-scrolled) .submenu-toggle {
  color: rgba(255, 255, 255, 0.66);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.site-header-dark-top:not(.is-scrolled) .nav-link:hover,
.site-header-dark-top:not(.is-scrolled) .nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-actions .button-sm {
  min-height: 44px;
  padding-right: 14px;
  padding-left: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header-dark-top:not(.is-scrolled) .header-phone {
  color: rgba(255, 255, 255, 0.82);
}

.nav-toggle {
  display: none;
}

.opening-status {
  min-height: var(--opening-bar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-inverse);
  color: #fff;
}

.opening-status-inner {
  width: 100%;
  max-width: var(--container-max);
  min-width: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 var(--page-gutter);
}

.opening-status-label {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  color: var(--lime-300);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-status-label .icon {
  width: 16px;
  height: 16px;
}

.opening-status-summary {
  display: none;
}

.opening-status-detail {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--neutral-200);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.opening-status-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.opening-status-item strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}

.opening-status-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid rgba(210, 231, 162, 0.34);
  border-radius: var(--radius-pill);
  color: var(--lime-200);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.opening-status-link:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--neutral-900);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.97);
}

.button-sm {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.button-lg {
  min-height: 58px;
  padding: 0 32px;
  font-size: 17px;
}

.button-primary {
  background: var(--brand);
  color: var(--neutral-900);
  box-shadow: var(--shadow-sm);
}

.button-primary:hover {
  background: var(--lime-600);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  border-color: var(--border-strong);
  background: var(--surface-card);
  color: var(--text-strong);
}

.button-outline {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--text-strong);
}

.button-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.button-outline:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.button-inverse {
  background: var(--surface-card);
  color: var(--text-strong);
}

.button-inverse:hover {
  box-shadow: var(--shadow-lg);
}

.button-icon {
  display: inline-flex;
  transform: translateY(-1px);
  transition: transform var(--dur-base) var(--ease-out);
}

.button:hover .button-icon {
  transform: translate(4px, -1px);
}

.button > span {
  position: relative;
  z-index: 1;
}

.button-primary::before {
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58% 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-115%);
  transition: transform 620ms var(--ease-out-expo);
}

.button-primary:hover::before {
  transform: translateX(115%);
}

@keyframes phc-hero-image-settle {
  from {
    filter: saturate(0.9) contrast(0.96);
    transform: scale(1.035);
  }

  to {
    filter: saturate(1) contrast(1);
    transform: scale(1);
  }
}

@keyframes phc-hero-rise {
  from {
    opacity: 0.01;
    filter: blur(8px);
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes phc-stat-in {
  from {
    opacity: 0.01;
    transform: translate3d(0, 16px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

body.motion-ready .hero-media > .hero-image {
  animation: phc-hero-image-settle 960ms var(--ease-out-expo) both;
  transform-origin: center;
}

body.motion-ready .hero-content > * {
  animation: phc-hero-rise 680ms var(--ease-out-expo) both;
}

body.motion-ready .hero-content > :nth-child(1) {
  animation-delay: 70ms;
}

body.motion-ready .hero-content > :nth-child(2) {
  animation-delay: 130ms;
}

body.motion-ready .hero-content > :nth-child(3) {
  animation-delay: 190ms;
}

body.motion-ready .hero-content > :nth-child(4) {
  animation-delay: 250ms;
}

body.motion-ready .hero-content > :nth-child(5) {
  animation-delay: 310ms;
}

body.motion-ready .hero-stats .stat-block {
  animation: phc-stat-in 520ms var(--ease-out-quart) both;
}

body.motion-ready .hero-stats .stat-block:nth-child(1) {
  animation-delay: 360ms;
}

body.motion-ready .hero-stats .stat-block:nth-child(2) {
  animation-delay: 410ms;
}

body.motion-ready .hero-stats .stat-block:nth-child(3) {
  animation-delay: 460ms;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 56px) var(--page-gutter) 72px;
  margin-top: calc(0px - var(--header-height));
  overflow: hidden;
  background: var(--surface-inverse);
  color: #fff;
}

.hero-layout-detail {
  min-height: 520px;
  align-items: flex-end;
  padding-bottom: 56px;
}

.hero-pattern {
  min-height: 360px;
  align-items: flex-end;
  padding-bottom: 64px;
}

.hero-pattern .hero-media {
  display: none;
}

.hero-pattern::before {
  position: absolute;
  inset: 0;
  background: var(--surface-inverse);
  content: "";
}

.hero-pattern::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(143, 190, 60, 0.08) 42% 48%, transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 38%);
  content: "";
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 21, 14, 0.95) 0%, rgba(20, 21, 14, 0.78) 42%, rgba(20, 21, 14, 0.32) 78%, rgba(20, 21, 14, 0.15) 100%);
}

.hero-layout-detail .hero-overlay {
  background: linear-gradient(0deg, rgba(20, 21, 14, 0.94) 0%, rgba(20, 21, 14, 0.66) 46%, rgba(20, 21, 14, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero:not(.hero-layout-detail):not(.hero-pattern) .hero-content {
  max-width: var(--container-max);
}

.hero-content > * {
  max-width: 660px;
}

.hero-script {
  color: var(--lime-400);
  font-size: 34px;
}

.hero-kicker,
.section-kicker,
.related-label,
.location-label {
  display: inline-flex;
  margin: 0;
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--lime-400);
}

.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-layout-detail h1,
.hero-pattern h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 0.98;
}

.hero h1 span {
  color: var(--brand);
}

.hero-text {
  color: var(--neutral-300);
  font-size: 19px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  max-width: 620px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-block strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.stat-block span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.stat-block-inverse strong {
  color: #fff;
}

.stat-block-inverse span {
  color: var(--neutral-400);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof span {
  color: var(--neutral-300);
  font-weight: 600;
}

.section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--container-gutter);
}

.section-card {
  max-width: none;
  background: var(--surface-card);
}

.narrow {
  max-width: var(--container-prose);
}

.section-card > * {
  max-width: var(--container-max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 640px;
}

.section-heading h2,
.cta-band h2 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-heading::after,
.phc-rule {
  display: block;
  width: 56px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  content: "";
}

.section-heading p:not(.section-kicker) {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading-inverse h2,
.section-heading-inverse p:not(.section-kicker) {
  color: #fff;
}

.section-heading-inverse p:not(.section-kicker) {
  color: var(--neutral-300);
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.services-section .service-grid,
.steps-section .service-grid {
  margin-top: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 48px;
  row-gap: 0;
}

.service-card {
  min-width: 0;
}

.service-card-link {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
  padding: 30px 28px 32px 0;
  border-top: 1px solid var(--border);
  color: var(--text-body);
  cursor: pointer;
}

a.service-card-link:hover {
  color: var(--brand-strong);
}

.service-card-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.service-card-link:hover .service-card-line {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card .icon,
.location-lines .icon,
.contact-location .icon,
.trial-contact-list .icon,
.schedule-note .icon {
  color: var(--brand-strong);
}

.service-card .icon {
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.service-card-link:hover .icon {
  color: var(--lime-600);
  transform: translateY(-2px) rotate(-8deg) scale(1.08);
}

.service-card-index {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.service-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.service-card-link:hover strong {
  color: var(--brand-strong);
}

.service-card span:not(.icon):not(.service-card-index):not(.service-card-line):not(.service-card-top):not(.service-card-cta) {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.6;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-cta span {
  transition: transform var(--dur-base) var(--ease-out);
}

.service-card-link:hover .service-card-cta span {
  transform: translateX(4px);
}

.also-links {
  display: flex;
  align-items: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.also-links span {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.also-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 1px;
  border-bottom: 2px solid transparent;
  color: var(--text-body);
  font-size: 15px;
  font-weight: 600;
}

.also-links a:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.feature-band {
  width: 100%;
  padding: clamp(56px, 8vw, 104px) var(--container-gutter);
}

.feature-band > * {
  max-width: var(--container-max);
}

.feature-band-inverse {
  display: grid;
  grid-template-columns: minmax(0, 572px) minmax(0, 572px);
  gap: 56px;
  align-items: center;
  justify-content: center;
  background: var(--surface-inverse);
}

.feature-copy {
  justify-self: end;
  width: min(100%, 572px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.feature-media {
  position: relative;
  width: min(100%, 572px);
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corner-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.corner-flag-large {
  width: 64px;
  height: 64px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  display: grid;
  flex: none;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--neutral-900);
  content: "✓";
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.check-list-inverse li {
  color: #fff;
}

.classes-preview {
  background: var(--surface-page);
}

.class-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.class-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--neutral-900);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.class-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.class-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.class-card:hover .class-card-image {
  transform: scale(1.05);
}

.class-card-overlay {
  transition: opacity var(--dur-base) var(--ease-out);
}

.class-card:hover .class-card-overlay {
  opacity: 0.88;
}

.class-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 29, 22, 0.88) 0%, rgba(27, 29, 22, 0.22) 52%, transparent 100%);
}

.class-card-copy {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.class-card-copy span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.class-card-copy span span {
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.class-card-copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.class-card-copy strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.locations-section .location-grid {
  margin-top: 44px;
}

.location-grid,
.team-grid,
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.location-card,
.hours-panel,
.benefit-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.location-card {
  --location-card-padding: 32px;
  overflow: hidden;
  padding: var(--location-card-padding);
}

.location-card-media {
  position: relative;
  height: clamp(190px, 20vw, 230px);
  margin: calc(var(--location-card-padding) * -1) calc(var(--location-card-padding) * -1) 4px;
  overflow: hidden;
  background: var(--surface-sunken);
}

.location-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(27, 29, 22, 0.46), transparent);
  content: "";
  pointer-events: none;
}

.location-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.location-card:hover .location-card-image {
  transform: scale(1.035);
}

.location-card,
.hours-panel,
.benefit-panel,
.price-row,
.news-item {
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.location-card:hover,
.hours-panel:hover,
.benefit-panel:hover,
.price-row:hover,
.news-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.location-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.location-card h3,
.contact-location h3 {
  margin-top: 6px;
  color: var(--text-strong);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 5px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-soft {
  background: var(--brand-soft);
  color: var(--lime-700);
}

.location-lines,
.footer-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.location-lines a,
.location-lines span,
.contact-location a,
.contact-location > span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-body);
  font-size: 15px;
}

.location-lines a {
  min-height: 44px;
}

.contact-location a {
  min-height: 44px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  margin: 0;
  border-top: 1px solid var(--border);
}

.hours-list div,
.opening-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
}

.hours-list dt,
.opening-summary span {
  color: var(--text-muted);
}

.hours-list dd,
.opening-summary strong {
  margin: 0;
  color: var(--text-strong);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.small-note,
.form-note {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.cta-section {
  padding: clamp(40px, 6vw, 72px) var(--container-gutter);
  background: var(--surface-page);
}

.cta-band {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.cta-copy {
  max-width: 560px;
}

.cta-copy p {
  margin-top: 12px;
  color: rgba(27, 29, 22, 0.78);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.detail-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.detail-body > * {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow-wrap: anywhere;
}

.detail-copy > p {
  color: var(--text-body);
  font-size: 17.5px;
  line-height: 1.7;
}

.detail-section-list {
  display: grid;
  gap: 20px;
}

.detail-section-list article {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.detail-section-list.markdown-content > h2 {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.detail-section-list h2,
.benefit-panel h2,
.contact-form-column h2,
.opening-summary h3 {
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-section-list p {
  margin-top: 8px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
}

.detail-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.benefit-panel h2 {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) var(--container-gutter) clamp(56px, 8vw, 100px);
  background: var(--surface-page);
}

.detail-gallery figure {
  height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  box-shadow: var(--shadow-md);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-services {
  padding: clamp(40px, 6vw, 72px) var(--container-gutter);
  border-top: 1px solid var(--border);
  background: var(--surface-card);
}

.related-services > div {
  max-width: var(--container-max);
  margin: 0 auto;
}

.pill-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 18px;
}

.pill-link-row a,
.class-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
}

.pill-link-row a:hover,
.class-links a:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.class-links {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  flex-wrap: wrap;
  max-width: none;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--container-gutter) 0;
}

.class-links span {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.class-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  padding: 28px var(--container-gutter) 0;
  background: var(--surface-page);
}

.class-media-strip figure {
  position: relative;
  min-width: 0;
  height: clamp(220px, 24vw, 330px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  box-shadow: var(--shadow-md);
}

.class-media-strip figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 29, 22, 0.78) 0%, rgba(27, 29, 22, 0.08) 56%, transparent 100%);
  content: "";
}

.class-strip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.class-media-strip figure:hover .class-strip-image {
  transform: scale(1.04);
}

.class-media-strip figcaption,
.contact-photo-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule-section {
  padding: clamp(48px, 6vw, 72px) var(--container-gutter) clamp(56px, 8vw, 104px);
  background: var(--surface-page);
}

.schedule-controls {
  max-width: var(--container-max);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.schedule-period {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.schedule-period-week {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-period-range {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.schedule-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.schedule-filter-pills button {
  min-height: 48px;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  color: var(--text-body);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.schedule-filter-pills button:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  transform: translateY(-1px);
}

.schedule-filter-pills button.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--lime-700);
}

.schedule-filter-pills button:disabled {
  border-color: var(--border);
  background: var(--surface-sunken);
  color: var(--text-muted);
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.schedule-status {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: -12px auto 20px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 700;
}

.schedule-status::before {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-strong);
  content: "";
  animation: phc-schedule-status-pulse 1200ms var(--ease-out-quart) infinite alternate;
}

@keyframes phc-schedule-status-pulse {
  from {
    opacity: 0.38;
    transform: scale(0.78);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.schedule-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.schedule-card-grid.is-loading {
  pointer-events: none;
}

.schedule-day-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.schedule-skeleton-card {
  min-height: 340px;
}

.schedule-skeleton-line {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--surface-sunken);
}

.schedule-skeleton-line::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.72) 48%, transparent 76%);
  content: "";
  transform: translateX(-110%);
  animation: phc-schedule-skeleton 1450ms var(--ease-out-quart) infinite;
}

@keyframes phc-schedule-skeleton {
  to {
    transform: translateX(110%);
  }
}

.schedule-skeleton-heading {
  width: 132px;
  height: 22px;
}

.schedule-skeleton-date {
  width: 88px;
  height: 13px;
}

.schedule-skeleton-badge {
  width: 78px;
  height: 28px;
}

.schedule-skeleton-list {
  gap: 10px;
  padding-top: 16px;
}

.schedule-skeleton-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
}

.schedule-skeleton-time {
  width: 52px;
  height: 21px;
}

.schedule-skeleton-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.schedule-skeleton-name {
  width: min(74%, 190px);
  height: 17px;
}

.schedule-skeleton-meta {
  width: min(94%, 270px);
  height: 13px;
}

.schedule-load-error {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.schedule-load-error h2 {
  color: var(--text-strong);
  font-size: clamp(24px, 4vw, 34px);
}

.schedule-load-error p {
  max-width: 54ch;
  margin: 12px auto 0;
  color: var(--text-body);
  line-height: 1.65;
}

.schedule-load-error .button-row {
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.schedule-noscript {
  max-width: var(--container-prose);
  margin: 20px auto 0;
  color: var(--text-body);
  line-height: 1.6;
  text-align: center;
}

.schedule-noscript a {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@keyframes phc-filter-in {
  from {
    opacity: 0.01;
    transform: translate3d(0, 10px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.schedule-day-card.is-filtered-in {
  animation: phc-filter-in 280ms var(--ease-out-quart) both;
}

.schedule-day-card[hidden],
.schedule-row[hidden] {
  display: none;
}

.schedule-day-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.schedule-day-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-day-card h2 {
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.schedule-day-title p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.schedule-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 16px;
  scroll-margin-top: 180px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background var(--dur-fast) var(--ease-out);
}

.schedule-row:hover,
.schedule-row:focus-visible {
  background: var(--surface-sunken);
}

.schedule-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 46%, transparent);
  outline-offset: 2px;
}

.schedule-row time {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.schedule-row strong {
  display: block;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.schedule-row small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

.type-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--text-muted);
}

.type-dot-kracht,
.type-dot-outdoor {
  background: var(--brand-strong);
}

.type-dot-body-mind {
  background: var(--lime-600);
}

.type-dot-dans {
  background: var(--warning-500);
}

.schedule-row-icon {
  color: var(--brand-strong);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.schedule-row:hover .schedule-row-icon {
  opacity: 1;
}

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  max-width: var(--container-prose);
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: 14px;
}

.schedule-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--ink-950) 68%, transparent);
}

.schedule-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-xl);
}

.schedule-dialog:focus {
  outline: none;
}

.schedule-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-page);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.schedule-modal-close:hover,
.schedule-modal-close:focus-visible {
  border-color: var(--brand);
  color: var(--text-strong);
  transform: rotate(6deg);
}

.schedule-dialog h2 {
  max-width: calc(100% - 56px);
  margin-top: 6px;
  color: var(--text-strong);
  font-size: clamp(30px, 4vw, 48px);
}

.schedule-modal-description {
  margin-top: 14px;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
}

.schedule-modal-description[hidden],
.schedule-modal-details [hidden] {
  display: none;
}

.schedule-modal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.schedule-modal-details div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-sunken);
}

.schedule-modal-details dt {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-modal-details dd {
  color: var(--text-strong);
  font-size: 16px;
  line-height: 1.45;
}

body.schedule-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .schedule-dialog {
    padding: 28px 20px 24px;
  }

  .schedule-dialog h2 {
    font-size: 30px;
  }

  .schedule-modal-details {
    grid-template-columns: 1fr;
  }
}

.contact-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact-body > * {
  min-width: 0;
  max-width: none;
}

.contact-form-column,
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-photo-panel {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  box-shadow: var(--shadow-md);
}

.contact-photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 29, 22, 0.78) 0%, rgba(27, 29, 22, 0.12) 54%, transparent 100%);
  content: "";
}

.contact-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.contact-location {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-location div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.opening-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-summary h3 {
  margin-bottom: 2px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opening-summary p {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.trial-form-section {
  padding: clamp(48px, 6vw, 72px) var(--container-gutter) clamp(64px, 9vw, 112px);
  background: var(--surface-page);
}

.trial-form-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
}

.trial-form-shell > * {
  min-width: 0;
}

.trial-form-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(rgba(20, 21, 14, 0.84), rgba(20, 21, 14, 0.9)), center/cover no-repeat url("/media/join.jpg");
  color: #fff;
}

.trial-form-aside-fittest {
  background-image: linear-gradient(rgba(20, 21, 14, 0.84), rgba(20, 21, 14, 0.9)), url("/media/coaching.jpg");
}

.trial-form-aside-egym {
  background-image: linear-gradient(rgba(20, 21, 14, 0.84), rgba(20, 21, 14, 0.9)), url("/media/egym.jpg");
}

.trial-form-aside h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

.trial-form-aside p {
  color: var(--neutral-300);
  font-size: 16px;
  line-height: 1.6;
}

.trial-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.trial-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--neutral-300);
  font-size: 14.5px;
}

.trial-contact-list a:first-child {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.trial-form-card {
  padding: clamp(32px, 4vw, 48px);
}

.trial-form-card .form-panel > .button {
  width: 100%;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

label,
.choice-fieldset {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  color: var(--text-strong);
  font-size: 15px;
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

textarea {
  min-height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(143, 190, 60, 0.18);
  transform: translateY(-1px);
}

::placeholder {
  color: var(--text-muted);
}

.choice-fieldset {
  padding: 18px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
}

.choice-fieldset legend {
  padding: 0 6px;
  color: var(--text-strong);
  font-weight: 700;
}

.choice-fieldset label,
.check-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  color: var(--text-body);
  font-size: 14.5px;
  font-weight: 600;
}

.choice-fieldset input,
.check-row input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.check-row {
  flex-wrap: wrap;
}

.check-row-copy {
  flex: 1;
  min-width: 0;
}

.check-row-copy label {
  display: inline;
  color: inherit;
  font: inherit;
}

.check-row-copy span {
  display: block;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.field-error,
.error-list {
  color: var(--danger-500);
  font-weight: 700;
}

.field-error {
  font-size: 12.5px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger-500);
  box-shadow: 0 0 0 4px rgba(214, 67, 59, 0.12);
}

@keyframes phc-error-in {
  from {
    opacity: 0.01;
    transform: translate3d(0, -4px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes phc-form-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-5px);
  }

  65% {
    transform: translateX(4px);
  }
}

.field-error {
  animation: phc-error-in 180ms var(--ease-out-quart) both;
}

.form-panel.has-validation-error {
  animation: phc-form-nudge 220ms var(--ease-out-quart);
}

.form-panel.is-submitting .button {
  opacity: 0.84;
  pointer-events: none;
}

.form-panel.is-submitting .button::after {
  position: relative;
  z-index: 1;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: phc-spin 700ms linear infinite;
}

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

.check-row .field-error {
  flex-basis: 100%;
  margin-left: 28px;
}

.article-layout,
.article-body,
.thank-you {
  max-width: var(--prose-frame);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--page-gutter);
}

.section-card .article-body {
  max-width: var(--container-prose);
  padding: 0;
}

.legal-prose .article-body {
  max-width: var(--container-prose);
}

.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.legal-list li {
  padding-left: 6px;
}

.article-body {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.article-body a,
.text-link {
  overflow-wrap: anywhere;
}

.article-body h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 800;
}

.article-body p + p,
.article-body p + .button,
.markdown-content p + p {
  margin-top: 14px;
}

.markdown-content h2 {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.thank-you {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: 58vh;
}

.thank-you > *,
.article-hero > * {
  min-width: 0;
  max-width: 100%;
}

.thank-you-media {
  position: relative;
  min-height: clamp(320px, 40vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 16, 0.1);
  background: var(--surface-muted);
  box-shadow: 0 28px 70px rgba(16, 17, 16, 0.12);
}

.thank-you-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 13, 0) 42%, rgba(12, 14, 13, 0.42) 100%),
    linear-gradient(135deg, rgba(210, 237, 51, 0.2), rgba(210, 237, 51, 0) 36%);
  content: "";
  pointer-events: none;
}

.thank-you-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.thank-you-content {
  display: grid;
  gap: 18px;
}

.thank-you h1 {
  color: var(--text-strong);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.thank-you-content > p:not(.section-kicker) {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.6;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.team-grid {
  margin-top: 44px;
}

.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.about-story > * {
  min-width: 0;
  max-width: none;
}

.about-story .section-heading {
  max-width: 620px;
}

.about-story .section-heading p:not(.section-kicker) {
  font-size: 17.5px;
  line-height: 1.7;
}

.about-story-media {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  box-shadow: var(--shadow-md);
}

.about-story-media::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
}

.about-story-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 8px;
}

.values-section .service-grid {
  margin-top: 44px;
}

.team-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.team-teaser > * {
  max-width: none;
}

.team-teaser-images {
  display: flex;
}

.team-teaser-images span {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 3px solid var(--surface-card);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.team-teaser-images span + span {
  margin-left: -18px;
}

.team-teaser-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-teaser h2 {
  color: var(--text-strong);
  font-size: 22px;
  font-weight: 800;
}

.team-teaser p {
  margin-top: 4px;
  color: var(--text-body);
  font-size: 15px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.team-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--surface-sunken);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(210, 237, 51, 0.28), transparent 34%),
    var(--neutral-900);
}

.team-photo-placeholder span {
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 900;
  line-height: 1;
}

.team-copy {
  padding: 20px 22px 24px;
}

.team-role {
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 6px 0 8px;
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 800;
}

.team-copy p:last-child {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.55;
}

.price-row,
.news-item {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.pricing-list,
.news-list,
.faq-list {
  display: grid;
  gap: 20px;
}

.news-item {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.news-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.news-item > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 28px 28px 0;
}

.news-item time,
.article-hero time,
.article-hero .section-kicker {
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-item h2 {
  color: var(--text-strong);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.news-item h2 a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.news-item p {
  color: var(--text-body);
  line-height: 1.65;
}

.article-hero {
  display: grid;
  gap: 18px;
}

.article-hero h1 {
  color: var(--text-strong);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.article-hero > p:not(.section-kicker) {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.6;
}

.article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.post-nav {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.section-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
}

.section-faq > * {
  min-width: 0;
}

.section-faq .section-heading {
  margin: 0;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  color: var(--text-strong);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.faq-item p {
  margin-top: 10px;
  color: var(--text-body);
  line-height: 1.65;
}

.price-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.price-row strong {
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
}

.site-footer {
  background: var(--surface-inverse);
  color: var(--neutral-300);
  padding-top: clamp(48px, 7vw, 80px);
  padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
  padding-bottom: max(36px, env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand p {
  max-width: 280px;
  color: var(--neutral-400);
  font-size: 14.5px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 2px;
  color: var(--lime-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: var(--neutral-300);
  font-size: 14.5px;
  line-height: 1.5;
}

.footer-column a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-inverse);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--neutral-500);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--neutral-300);
}

.icon {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
  display: inline-grid;
  width: 1em;
  height: 1em;
  place-items: center;
  flex: none;
  color: currentColor;
  font-size: 1.15em;
  line-height: 1;
}

.icon::before {
  width: 1em;
  height: 1em;
  background: currentColor;
  content: "";
  mask: var(--icon-glyph) center / contain no-repeat;
  -webkit-mask: var(--icon-glyph) center / contain no-repeat;
}

.icon-phone {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.64a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.43-1.43a2 2 0 0 1 2.11-.45c.86.27 1.74.47 2.64.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.icon-clock {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.icon-mail {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.icon-map-pin {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.icon-info {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
}

.icon-dumbbell {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 6.5 11 11'/%3E%3Cpath d='m21 21-1.5-1.5'/%3E%3Cpath d='m3 3 1.5 1.5'/%3E%3Cpath d='m18 22 4-4'/%3E%3Cpath d='m2 6 4-4'/%3E%3Cpath d='m12 10 2-2'/%3E%3Cpath d='m8 14 2-2'/%3E%3C/svg%3E");
}

.icon-activity {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E");
}

.icon-user-round {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='5'/%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3C/svg%3E");
}

.icon-heart-pulse {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z'/%3E%3Cpath d='M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27'/%3E%3C/svg%3E");
}

.icon-users {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.icon-leaf {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 4 13c0-6 8-10 17-10 0 9-4 17-10 17Z'/%3E%3Cpath d='M4 13c4 0 8 0 11-5'/%3E%3C/svg%3E");
}

.icon-trees {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m17 14 3 3.3a1 1 0 0 1-.7 1.7H13'/%3E%3Cpath d='m7 14-3 3.3a1 1 0 0 0 .7 1.7H11'/%3E%3Cpath d='M12 22V3'/%3E%3Cpath d='m12 3 5 5.5a1 1 0 0 1-.7 1.7h-2.8'/%3E%3Cpath d='m12 3-5 5.5a1 1 0 0 0 .7 1.7h2.8'/%3E%3C/svg%3E");
}

.icon-calendar-check {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='m9 16 2 2 4-4'/%3E%3C/svg%3E");
}

.icon-badge-check {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.85 8.62a4 4 0 0 1 4.77-4.77 4 4 0 0 1 6.76 0 4 4 0 0 1 4.77 4.77 4 4 0 0 1 0 6.76 4 4 0 0 1-4.77 4.77 4 4 0 0 1-6.76 0 4 4 0 0 1-4.77-4.77 4 4 0 0 1 0-6.76Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.icon-instagram {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E");
}

.icon-facebook {
  --icon-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

@keyframes phc-list-in {
  from {
    opacity: 0.82;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.motion-ready .motion-list .motion-item {
  opacity: 0.82;
  transform: translate3d(0, 18px, 0);
}

body.motion-ready .motion-list.is-in-view .motion-item {
  animation: phc-list-in 520ms var(--ease-out-quart) both;
  animation-delay: calc(var(--motion-index, 0) * 42ms);
}

@keyframes phc-nav-panel-in {
  from {
    opacity: 0.01;
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes phc-nav-link-in {
  from {
    opacity: 0.01;
    transform: translate3d(10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .page-home .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 52px;
  }

  .page-home .hero-content {
    gap: 18px;
  }

  .page-home .hero-stats {
    gap: 30px;
    padding-top: 18px;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: block;
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    overflow: auto;
    border-top: 1px solid var(--border);
    background: var(--surface-card);
    animation: phc-nav-panel-in 260ms var(--ease-out-quart) both;
  }

  .nav-list {
    width: min(100%, var(--container-max));
    margin: 0 auto;
    padding: 20px;
    display: grid;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .nav-item-main {
    width: 100%;
  }

  .has-submenu .nav-link {
    padding-right: 10px;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;
    color: var(--text-body);
  }

  .site-header-dark-top:not(.is-scrolled) .primary-nav.is-open .submenu-toggle {
    color: var(--text-body);
  }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    visibility: visible;
    gap: 2px;
    padding: 2px 0 8px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-item:hover > .nav-submenu {
    display: none;
  }

  .nav-submenu.is-open,
  .nav-item:hover > .nav-submenu.is-open {
    display: grid;
  }

  .nav-submenu-link {
    min-height: 44px;
    padding-left: 14px;
    border-left: 2px solid var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .primary-nav.is-open .nav-list > li {
    animation: phc-nav-link-in 320ms var(--ease-out-quart) both;
  }

  .primary-nav.is-open .nav-list > li:nth-child(1) {
    animation-delay: 25ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(2) {
    animation-delay: 50ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(3) {
    animation-delay: 75ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(4) {
    animation-delay: 100ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(5) {
    animation-delay: 125ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(6) {
    animation-delay: 150ms;
  }

  .primary-nav.is-open .nav-list > li:nth-child(7) {
    animation-delay: 175ms;
  }

  .site-header-dark-top:not(.is-scrolled) .primary-nav.is-open .nav-link {
    color: var(--text-body);
  }

  .site-header-dark-top:not(.is-scrolled) .primary-nav.is-open .nav-link:hover,
  .site-header-dark-top:not(.is-scrolled) .primary-nav.is-open .nav-link.is-active {
    color: var(--brand-strong);
    background: var(--brand-soft);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-left: auto;
    padding: 0 12px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--surface-inverse);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .site-header-dark-top:not(.is-scrolled) .nav-toggle {
    background: rgba(255, 255, 255, 0.16);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
    transform-origin: center;
    transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  }

  .nav-toggle-lines::before {
    transform: translateY(-6px);
  }

  .nav-toggle-lines::after {
    transform: translateY(4px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: translateY(1px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: translateY(-1px) rotate(-45deg);
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero-stats {
    gap: 24px;
  }

  .feature-band-inverse {
    grid-template-columns: 1fr;
  }

  .feature-copy,
  .feature-media {
    justify-self: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --opening-bar-height: 58px;
  }

  .site-header-main {
    gap: 12px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .opening-status-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .opening-status-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .opening-status-summary {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--neutral-200);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .opening-status-detail {
    display: none;
  }

  .opening-status-link {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 36px;
    align-self: center;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-script {
    font-size: 11px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .hero-layout-detail h1,
  .hero-pattern h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-text {
    font-size: 17px;
  }

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

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-block strong {
    font-size: 34px;
  }

  .section,
  .section-card,
  .schedule-section,
  .trial-form-section {
    padding-inline: 20px;
  }

  .schedule-controls,
  .schedule-filter-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-filter-pills button {
    width: 100%;
  }

  .service-grid,
  .detail-body,
  .class-card-grid,
  .location-grid,
  .team-grid,
  .hours-grid,
  .schedule-card-grid,
  .contact-body,
  .trial-form-shell,
  .about-story,
  .section-faq {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-media {
    height: 320px;
  }

  .class-card {
    height: 300px;
  }

  .location-card,
  .hours-panel,
  .benefit-panel {
    padding: 24px;
  }

  .location-card {
    --location-card-padding: 24px;
  }

  .class-media-strip {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 20px;
  }

  .class-media-strip figure {
    height: 240px;
  }

  .contact-photo-panel,
  .contact-photo {
    min-height: 240px;
  }

  .about-story-media,
  .about-story-image {
    min-height: 260px;
  }

  .thank-you {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .thank-you-media,
  .thank-you-image {
    min-height: 280px;
  }

  .schedule-row {
    grid-template-columns: 58px 1fr;
  }

  .schedule-row-icon {
    display: none;
  }

  .trial-form-shell {
    border-radius: var(--radius-lg);
  }

  .trial-form-card,
  .trial-form-aside {
    padding: 28px;
  }

  .cta-band {
    border-radius: var(--radius-lg);
  }

  .price-row,
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item > div {
    padding: 0 24px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-home .hero {
    min-height: calc(100svh - 32px);
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 36px;
  }

  .page-home .hero-content {
    gap: 16px;
  }

  .page-home .hero-script {
    font-size: 30px;
  }

  .page-home .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.94;
  }

  .page-home .hero-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .page-home .hero-stats {
    padding-top: 16px;
  }

  .detail-copy .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .site-header-main {
    gap: 8px;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .opening-status-inner {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .brand-name {
    gap: 0.22em;
    font-size: 16px;
  }

  .brand-script {
    margin-bottom: -2px;
    font-size: 10px;
  }

  .nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .nav-toggle-label {
    display: none;
  }

  .page-home .hero {
    min-height: calc(100svh - 32px);
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 28px;
  }

  .page-home .hero-content {
    gap: 12px;
  }

  .page-home .hero h1 {
    font-size: clamp(30px, 10.5vw, 36px);
  }

  .thank-you h1,
  .article-hero h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .page-home .hero-text {
    max-width: 28ch;
    font-size: 15.5px;
    line-height: 1.4;
  }

  .page-home .hero-actions {
    gap: 10px;
  }

  .page-home .hero-actions .button {
    min-height: 46px;
  }

  .page-home .hero-stats {
    display: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .page-home .hero {
    min-height: calc(100svh - 28px);
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 22px;
  }

  .page-home .hero-content {
    max-width: 620px;
    gap: 10px;
  }

  .page-home .hero-script {
    font-size: 26px;
  }

  .page-home .hero h1 {
    font-size: clamp(34px, 6vw, 52px);
    line-height: 0.9;
  }

  .page-home .hero-text,
  .page-home .hero-stats {
    display: none;
  }

  .page-home .hero-actions .button {
    width: auto;
    min-height: 44px;
    padding-right: 22px;
    padding-left: 22px;
  }
}

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

  body.motion-ready .motion-list .motion-item {
    opacity: 1;
    transform: none;
  }

  input:focus,
  select:focus,
  textarea:focus,
  .button:hover,
  .class-card:hover,
  .team-card:hover,
  .location-card:hover,
  .hours-panel:hover,
  .benefit-panel:hover,
  .price-row:hover,
  .news-item:hover {
    transform: none;
  }
}
