@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM-Sans.ttf") format("truetype");
  font-weight: 100 1000;
  font-display: swap;
}
:root {
  /* Palette from Figma. */
  --white: #fff;
  --black: #000;
  --paper: #f6f3ee;
  --beige: #e9e2da;
  --light-grey: #eeece6;
  --grey: #60615a;
  --charcoal: #222320;
  --silver: #c7c1b8;
  --lime: #dedf20;
  --violet: #3433cb;
  --red: #ffb3aa;
  /* Shared layout and type. */
  --font-body: "DM Sans", Arial, sans-serif;
  --font-heading: Manrope, Arial, sans-serif;
  --gutter: 25px;
  --container: 1290px;
  --header-height: 88px;
  --section-space: 65px;
  --gap: 20px;
  --radius: 4px;
  --duration: 240ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --h1: 3rem;
  --h2: 2.125rem;
  --h3: 1.75rem;
  --h4: 1.5rem;
  --h5: 1.25rem;
  --body: 1rem;
  --lead: 1.25rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 113px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: var(--body);
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.has-dialog {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  overflow-wrap: break-word;
}
h1 {
  font-size: var(--h1);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--h2);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h3 {
  font-size: var(--h3);
  line-height: 1.25;
}
h4 {
  font-size: var(--h4);
  line-height: 1.25;
}
h5 {
  font-size: var(--h5);
  line-height: 1.25;
}
h6 {
  font-size: 1rem;
  line-height: 1.25;
}
p,
li {
  line-height: 1.5;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
p + p {
  margin-top: 20px;
}
h2 + p,
h3 + p,
h4 + p {
  margin-top: 25px;
}
ul,
ol {
  padding-left: 25px;
}
li + li {
  margin-top: 10px;
}
li > ul,
li > ol {
  margin-top: 10px;
}
blockquote {
  padding: 20px 25px;
  border-left: 3px solid var(--violet);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 5px;
}
.is-dark :focus-visible,
.is-grey :focus-visible,
.mobile-menu :focus-visible {
  outline-color: var(--lime);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  min-width: 0;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 15px 20px;
  z-index: 100;
  background: var(--lime);
  color: var(--charcoal);
}
.theme-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: middle;
  color: inherit;
}
.is-dark {
  background: var(--charcoal);
  color: var(--paper);
}
.is-grey {
  background: var(--grey);
  color: var(--paper);
}
.is-textured {
  position: relative;
  isolation: isolate;
}
.is-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/desktop-final-05TreningPersonalny11.webp")
    center/cover;
  opacity: 0.2;
  pointer-events: none;
}
.intro > p:first-child {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 25px;
}
.is-dark .intro > p:first-child,
.is-grey .intro > p:first-child {
  color: var(--beige);
}
.section-header {
  margin-bottom: 50px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  max-width: 100%;
  padding: 15px 20px;
  background: var(--lime);
  color: var(--charcoal);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition:
    background-color var(--duration),
    box-shadow var(--duration);
}
.button.is-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}
.text-link {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  gap: 10px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  color: var(--violet);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration);
}
.is-dark .text-link,
.is-grey .text-link {
  color: var(--lime);
}

/* One underline interaction for navigation, text and footer links. */
:is(
  .menu a,
  .text-content a,
  .consent a,
  .footer-contact > a,
  .footer-bottom > a
),
.text-link .link-label {
  position: relative;
  text-decoration: none;
}
:is(
  .menu a,
  .text-content a,
  .consent a,
  .footer-contact > a,
  .footer-bottom > a
)::after,
.text-link .link-label::after {
  content: "";
  position: absolute;
  top: calc(50% + .75em);
  inset-inline: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  pointer-events: none;
  transition: transform 200ms ease;
}
.carousel-arrow,
.back-top {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--violet);
  text-decoration: none;
}
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}
.carousel-arrow.is-prev {
  left: -30px;
}
.carousel-arrow.is-next {
  right: -30px;
}
.carousel-arrow.is-prev .theme-icon {
  transform: rotate(180deg);
}
.carousel-arrow:disabled {
  opacity: 0.5;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: var(--beige);
    box-shadow: 0 0 0 1px var(--lime);
  }
  .button.is-outline:hover {
    background: var(--violet);
    color: var(--white);
    box-shadow: none;
  }
  :is(
    .menu a,
    .text-content a,
    .consent a,
    .footer-contact > a,
    .footer-bottom > a
  ):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .text-link:hover .link-label::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .menu a:hover {
    color: var(--violet);
  }
  .is-dark .menu a:hover,
  .mobile-menu .menu a:hover {
    color: var(--lime);
  }
  .carousel-arrow:hover {
    color: var(--charcoal);
    background: var(--lime);
    box-shadow: none;
  }
}

/* Header and WordPress-compatible navigation. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  background: var(--white);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  z-index: -1;
  height: 1px;
  background: rgb(0 0 0 / 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-out);
}
.site-header.is-fixed::after {
  opacity: 1;
}
.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 15px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 72px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark img {
  position: absolute;
  left: -35.42%;
  width: 150%;
  height: 100%;
  max-width: none;
}
.brand-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(0.8rem, 4vw, 1rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.375;
}
.brand-copy > span:last-child {
  background: var(--lime);
  color: var(--charcoal);
  font-size: 9px;
  line-height: 1.333;
  padding: 2px 5px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.site-header .is-outline {
  display: none;
}
.navigation {
  width: 100%;
  padding-bottom: 20px;
}
.navigation.is-enhanced {
  display: none;
}
.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu li {
  margin: 0;
}
.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 1rem;
}
.menu-toggle,
.menu-close,
.dialog-close {
  display: grid;
  place-items: center;
  padding: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-shrink: 0;
}
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
}
.submenu-toggle {
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 0;
  min-width: 44px;
  min-height: 44px;
  vertical-align: middle;
}
.submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.navigation.is-enhanced .sub-menu,
.mobile-menu .sub-menu {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    height var(--duration) var(--ease),
    visibility var(--duration);
}
.navigation.is-enhanced .is-open > .sub-menu,
.mobile-menu .is-open > .sub-menu {
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  background: var(--charcoal);
  color: var(--paper);
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}
.mobile-menu[open].is-ready {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu::backdrop {
  background: var(--charcoal);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}
.mobile-menu.is-ready::backdrop {
  opacity: 1;
}
.mobile-menu-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-inline: var(--gutter);
  background: var(--white);
  color: var(--charcoal);
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 88px);
  padding: 65px var(--gutter) 45px;
}
.mobile-menu-content nav {
  margin-bottom: 50px;
}
.mobile-menu .menu {
  display: block;
}
.mobile-menu .menu > li {
  border-bottom: 1px solid var(--grey);
  padding-block: 10px;
}
.mobile-menu .menu > li > a {
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  min-height: 75px;
  font: 600 var(--h2)/1.2 var(--font-heading);
  letter-spacing: -0.02em;
}
.mobile-menu .menu > li > a svg {
  color: var(--lime);
}
.mobile-menu .menu > .menu-item-has-children > a {
  width: calc(100% - 44px);
}
.mobile-menu .sub-menu a {
  font-size: 1.125rem;
}
.mobile-menu-content > .button {
  width: 100%;
  margin-top: auto;
}
.mobile-menu-content > p {
  font-size: 0.875rem;
  color: var(--silver);
  margin-top: 40px;
}
.content-dialog {
  width: min(720px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  border: 0;
  border-radius: var(--radius);
  padding: 65px 30px 35px;
  background: var(--paper);
  color: var(--charcoal);
}
dialog::backdrop {
  background: rgb(0 0 0 / 0.72);
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 15px;
}
.content-dialog h2 {
  margin-bottom: 30px;
}
.content-dialog h3 {
  margin-top: 30px;
}
.content-dialog .button {
  margin-top: 30px;
}

/* Hero: art-directed image sources, content stays in the document flow. */
.hero {
  position: relative;
  isolation: isolate;
  height: auto;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(75.54deg, rgb(0 0 0 / 0.8) 30.85%, transparent 57.1%),
    linear-gradient(236.28deg, rgb(34 35 32 / 0.1), rgb(96 97 90 / 0.1));
  pointer-events: none;
}
.hero > .container {
  display: grid;
  grid-template-rows: minmax(min-content, 1fr) auto;
  gap: clamp(15px, 3svh, 25px);
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-top: 20px;
  padding-bottom: clamp(15px, calc(100svh - 553px), 30px);
}
.hero .intro {
  align-self: center;
}
.hero .intro > p:first-child {
  margin-bottom: clamp(10px, 3svh, 25px);
  color: var(--silver);
  font-size: 0.6875rem;
}
.hero h1 {
  color: var(--white);
}
.hero h1 + p {
  font: 600 1.25rem/1.25 var(--font-heading);
  margin-top: clamp(10px, 3svh, 30px);
  color: var(--beige);
}
.hero .intro > p:last-child {
  margin-top: clamp(10px, 2.8svh, 25px);
  max-width: 620px;
  color: var(--beige);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 2svh, 20px);
  margin-top: 0;
}
.hero-actions > .button {
  width: 100%;
}
.hero-actions .text-link {
  color: var(--paper);
}
.hero-actions .text-link .theme-icon {
  animation: hero-arrow-bob 1.7s cubic-bezier(.45, 0, .55, 1) infinite;
}
@keyframes hero-arrow-bob {
  0%,
  100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}
.facts > .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px 15px;
  padding-block: 50px 15px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  font-size: 0.875rem;
}
.fact > svg,
.fact > .theme-media-icon,
.fact > span svg {
  width: 28px;
  height: 28px;
}
.fact > .theme-media-icon {
  flex: 0 0 auto;
  object-fit: contain;
}
.fact p {
  margin: 0;
}
.fact strong {
  color: var(--white);
}
.fact-user {
  display: none;
}

/* Native horizontal lists. Width includes exactly one full card + one third. */
.cards-grid {
  padding-block: var(--section-space);
}
.cards-grid h2 {
  max-width: 10.5em;
}
.cards-grid .section-header > .button {
  display: none;
}
.card-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--gap)) * 0.75);
  gap: var(--gap);
  margin-right: calc(-1 * var(--gutter));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) transparent;
  padding: 0 var(--gutter) 10px 0;
}
.card-list:has(> :only-child) {
  grid-auto-columns: 100%;
  overflow: visible;
}
.card-list > article {
  min-width: 0;
  scroll-snap-align: start;
}
.card-list::-webkit-scrollbar,
.service-list::-webkit-scrollbar {
  height: 3px;
}
.card-list::-webkit-scrollbar-thumb,
.service-list::-webkit-scrollbar-thumb {
  background: var(--lime);
}
.cards-grid article > img {
  width: 100%;
  aspect-ratio: 288/246;
  object-fit: cover;
}
.cards-grid article:first-child > img {
  object-position: 45% 70%;
}
.cards-grid article h3 {
  font-size: var(--h5);
  line-height: 1.25;
  margin-top: 30px;
  min-height: 50px;
}
.cards-grid article p {
  margin-top: 20px;
}
.cards-grid .mobile-offer {
  margin-top: 35px;
  min-width: 210px;
}
.scroll-track {
  position: relative;
  height: 2px;
  margin-top: 25px;
  background: rgb(199 193 184 / 0.3);
  overflow: hidden;
}
.scroll-track > span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--lime);
  transform: translateX(0);
}
.scroll-track.is-inactive {
  visibility: hidden;
}
.scroll-component.is-enhanced [data-scroll-list] {
  scrollbar-width: none;
}
.scroll-component.is-enhanced [data-scroll-list]::-webkit-scrollbar {
  display: none;
}

/* Training offer. */
.image-text {
  padding-block: var(--section-space);
}
.two-columns {
  display: grid;
  gap: 40px;
  margin-top: 55px;
}
.two-columns > * {
  min-width: 0;
}
.is-training h2 br {
  display: none;
}
.is-training figure img {
  width: 100%;
  aspect-ratio: 354/264;
  object-fit: cover;
}
figcaption {
  font-size: 1rem;
  margin-top: 25px;
  color: var(--beige);
}
.content > p + p {
  margin-top: 20px;
}
.content ul {
  list-style: none;
  padding: 0;
  margin-block: 25px 35px;
}
.content li {
  position: relative;
  padding-left: 35px;
}
.content li + li {
  margin-top: 15px;
}
.content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 1.25em;
}
.is-training .button {
  width: 100%;
}
.is-training .button + p {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--beige);
}

/* Services: expanding desktop cards, ordinary native scrolling on mobile. */
.services {
  padding-block: var(--section-space);
}
.services .section-header {
  margin-bottom: 30px;
}
.service-carousel {
  position: relative;
}
.service-list {
  display: flex;
  margin-left: 0;
  margin-right: calc(-1 * var(--gutter));
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
  padding: 0 var(--gutter) 10px 0;
}
.service-card {
  flex: 0 0 75%;
  min-width: 0;
  background: var(--light-grey);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.service-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 312/246;
  flex-shrink: 0;
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .services:not(.is-moving) .service-photo:hover img {
    transform: scale(1.03);
  }
  .services.is-enhanced:not(.is-moving)
    .service-card
    .service-photo:hover::after {
    opacity: 0.08;
  }
}
.service-card[data-service="pole"] img {
  object-position: 50% 40%;
}
.service-content {
  padding: 25px 25px 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  min-height: 275px;
}
.service-content h3 {
  font-size: var(--h5);
}
.service-content h3 br {
  display: block;
}
.service-content p {
  color: var(--grey);
  margin-top: 25px;
}
.service-content .text-link {
  margin-top: auto;
  padding-top: 30px;
  gap: 5px;
}
.service-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
}
.service-select:focus-visible {
  outline-offset: -5px;
}
.services .carousel-arrow {
  display: none;
}
.services .scroll-track > span {
  background: var(--violet);
}

/* Starting steps and preparation. */
.steps {
  padding-top: var(--section-space);
}
.steps .section-header {
  margin-bottom: 35px;
}
.consultation-duration {
  margin-top: 25px;
}
.consultation-duration p {
  font-size: 0.875rem;
}
.consultation-duration p + p {
  margin-top: 5px;
}
.consultation-duration strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}
.steps article {
  padding: 20px;
  background: var(--light-grey);
  border-radius: var(--radius);
}
.steps h3 {
  font-size: 1.125rem;
}
.steps article p {
  font-size: 0.875rem;
  margin-top: 20px;
}
.steps .scroll-track > span {
  background: var(--violet);
}
.preparation {
  display: flex;
  gap: 10px;
  padding: 20px;
  margin-top: 45px;
  background: rgb(96 97 90 / 0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.preparation > svg {
  width: 24px;
  height: 24px;
}
.preparation p + p {
  color: var(--grey);
  margin-top: 10px;
}
.is-about > .container {
  display: grid;
  gap: 35px;
}
.is-about figure img {
  width: 100%;
  aspect-ratio: 354/428;
  object-fit: cover;
}
.is-about .content > p:first-child {
  font-size: var(--lead);
  color: var(--charcoal);
}
.is-about .content > p {
  color: var(--grey);
}
.is-about .text-link {
  margin-top: 30px;
}
.locations {
  padding-block: var(--section-space);
}
.locations > .container {
  display: grid;
  gap: 45px;
}
.locations .intro > p:last-child {
  font-size: 0.875rem;
  margin-top: 25px;
}
.locations h3 {
  font-size: var(--h4);
  margin-bottom: 15px;
}
.locations address {
  font-style: normal;
  color: var(--beige);
}
.addresses > div + div {
  border-top: 1px solid var(--silver);
  padding-top: 35px;
  margin-top: 35px;
}
.addresses .text-link {
  margin-top: 25px;
}
.online-link p {
  font-size: 1rem;
}
.online-link .text-link {
  margin-top: 15px;
}

/* Gallery: Swiper, current image and Fancybox. */
.gallery {
  padding-block: var(--section-space);
}
.gallery > .container {
  display: grid;
  gap: 30px;
}
.gallery .intro > p:first-child,
.gallery .intro > p:last-child {
  display: none;
}
.gallery h2 {
  font-size: var(--h4);
}
.gallery h2 br {
  display: none;
}
.gallery > .container > .button {
  width: 100%;
}
.gallery-carousel {
  position: relative;
  min-width: 0;
}
.gallery .swiper {
  overflow: hidden;
  width: auto;
  margin-right: calc(-1 * var(--gutter));
  padding-right: var(--gutter);
  height: 335px;
}
.gallery .swiper-wrapper {
  align-items: center;
  transition-timing-function: ease;
  will-change: transform;
}
.gallery .swiper-slide {
  width: 80%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .swiper-slide > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(7% 0);
  overflow: hidden;
  cursor: pointer;
}
.gallery .swiper-slide.is-current > a {
  clip-path: inset(0);
}
.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-photo {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
  transition:
    transform 200ms ease,
    filter 200ms ease;
}
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--charcoal);
  opacity: var(--gallery-shade, 0.55);
  pointer-events: none;
}
.gallery .swiper-slide.is-current .gallery-photo::after {
  opacity: var(--gallery-shade, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .gallery:not(.is-moving) .swiper-slide > a:hover .gallery-photo {
    transform: scale(1.03);
    filter: brightness(1.12);
  }
}
.gallery .swiper-slide.is-outdoor img {
  transform: scale(2.2);
  object-position: 60% 50%;
}
.image-expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: none;
  transition: opacity 150ms ease;
}
.gallery.is-moving .image-expand {
  opacity: 0;
}
.is-current .image-expand {
  display: block;
}
.gallery .carousel-arrow {
  display: none;
}
.gallery .scroll-track {
  margin-top: 30px;
}
.gallery .swiper:not(.swiper-initialized) .swiper-wrapper {
  transform: none;
}
.gallery .swiper:not(.swiper-initialized) {
  overflow: hidden;
}
.fancybox__container {
  --fancybox-bg: rgb(20 20 18 / 0.97);
}

/* Accessible native FAQ, all answers remain available without JavaScript. */
.faq {
  padding-block: var(--section-space);
}
.faq .section-header {
  margin-bottom: 40px;
}
.question-link {
  margin-top: 30px;
  font-size: 1rem;
}
.question-link .text-link {
  margin-top: 10px;
}
.faq-list details {
  border-top: 1px solid var(--silver);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  position: relative;
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.faq-list summary > span::before,
.faq-list summary > span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--charcoal);
}
.faq-list summary > span::after {
  transform: rotate(90deg);
  transition: transform var(--duration);
}
.faq-list details[open] summary > span::after {
  transform: rotate(0);
}
.faq-list details > div {
  padding: 0 30px 30px 0;
  color: var(--grey);
  font-size: 1rem;
}

/* Contact fields: ready for a separately configured POST endpoint. */
.contact {
  padding-block: var(--section-space);
}
.contact > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.contact .intro > h2 + p {
  font-size: var(--lead);
  margin-top: 30px;
}
.contact .intro > p:last-child {
  font-size: 0.875rem;
  margin-top: 25px;
}
.contact h2 br {
  display: none;
}
.field {
  margin-bottom: 10px;
}
.field label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 15px 20px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.5;
  min-height: 65px;
  transition: border-color var(--duration);
}
.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field input:not([type="checkbox"]):not([type="radio"]):focus-visible,
.field select:focus,
.field select:focus-visible,
.field textarea:focus,
.field textarea:focus-visible {
  border-color: var(--lime);
  outline: 0;
  box-shadow: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--silver);
  opacity: 1;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.select-wrap {
  position: relative;
}
.field select {
  appearance: none;
  padding-right: 55px;
}
.field select:has(option:checked[value=""]) {
  color: var(--silver);
}
.select-wrap > .theme-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  pointer-events: none;
}
.field [aria-invalid="true"] {
  border-color: var(--red);
}
.field-error {
  display: block;
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  font-size: 1rem;
}
.consent input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--lime);
}
.consent label {
  cursor: pointer;
}
.consent a {
  display: block;
}
.contact form > .button {
  width: 100%;
  margin-top: 40px;
}
.form-status {
  font-size: 0.875rem;
  margin-top: 15px;
}
.form-status:empty {
  display: none;
}
.form-status a {
  color: var(--lime);
}
.contact-email > p {
  display: none;
}
.contact-email > div > p {
  font-size: 0.875rem;
  color: var(--silver);
}
.contact-email .text-link {
  font-size: 0.875rem;
  gap: 5px;
  overflow-wrap: anywhere;
  margin-top: 10px;
}

/* Footer and mobile action. */
.site-footer {
  background: var(--black);
  padding-block: 35px 25px;
}
.site-footer a {
  text-decoration: none;
}
.footer-contact > a,
.footer-contact .menu a,
.footer-bottom > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}
.site-footer > .container {
  position: relative;
  display: grid;
  gap: 30px;
}
.footer-brand .brand {
  gap: 15px;
}
.footer-brand .brand-mark {
  width: 59px;
  height: 88px;
}
.footer-brand > p {
  font-size: 0.875rem;
  color: var(--silver);
  margin-top: 20px;
}
.footer-contact > a {
  color: var(--lime);
  font-size: 1rem;
  font-weight: 600;
}
.footer-contact .menu {
  gap: 25px;
  margin-top: 20px;
  color: var(--silver);
}
.footer-contact .menu a {
  font-size: 0.875rem;
}
.back-top {
  position: absolute;
  right: 0;
  top: 20px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--violet);
  color: var(--violet);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .back-top:hover {
    color: var(--white);
    background: var(--violet);
    border-color: var(--violet);
  }
}
.footer-bottom {
  display: grid;
  gap: 20px;
  color: var(--silver);
  font-size: 0.875rem;
}
.footer-bottom > a {
  order: -1;
}
.credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--grey);
  padding-top: 20px;
}
.credits img {
  opacity: 0.6;
}
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--grey);
  background: var(--charcoal);
}
.sticky-cta > .button {
  width: 100%;
}

@media (min-width: 992px) {
  :root {
    --gutter: clamp(35px, 5.21vw, 75px);
    --header-height: 112px;
    --section-space: 95px;
    --gap: 25px;
    --h1: 5.5rem;
    --h2: 3.25rem;
    --h3: 2.25rem;
    --h4: 1.75rem;
    --h5: 1.375rem;
    --body: 1.125rem;
    --lead: 1.375rem;
  }
  html {
    scroll-padding-top: 137px;
  }
  .sticky-cta {
    display: none !important;
  }
  .button {
    padding-inline: 25px;
  }
  .intro > p:first-child {
    margin-bottom: 30px;
  }
  .section-header {
    margin-bottom: 65px;
  }
  .site-header > .container {
    height: var(--header-height);
    flex-wrap: nowrap;
    gap: 25px;
  }
  .brand {
    gap: 30px;
  }
  .brand-mark {
    width: 64px;
    height: 96px;
  }
  .site-header .brand-copy {
    font-size: 1rem;
  }
  .navigation,
  .navigation.is-enhanced {
    display: block;
    width: auto;
    padding: 0;
    margin-inline: auto;
  }
  .menu {
    gap: clamp(15px, 3vw, 45px);
    flex-wrap: nowrap;
  }
  .site-header .is-outline {
    display: flex;
    gap: 25px;
    padding-inline: 20px;
  }
  .menu-toggle {
    display: none;
  }
  .menu-item-has-children {
    position: relative;
  }
  .navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    width: 240px;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
  }
  .navigation .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
  .navigation .sub-menu a {
    padding: 5px 10px;
    max-width: calc(100% - 44px);
  }
  .navigation.is-enhanced .is-open > .sub-menu {
    height: auto !important;
    overflow: visible;
  }
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero-stage {
    display: grid;
    grid-template-rows: minmax(min-content, 1fr) auto;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }
  .hero > .container {
    height: 100%;
    min-height: 0;
    padding-top: clamp(35px, 6svh, 60px);
    padding-bottom: clamp(35px, 6svh, 60px);
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero::after {
    background:
      linear-gradient(54.145deg, rgb(0 0 0 / 0.8) 29.394%, transparent 70.896%),
      linear-gradient(201.467deg, rgb(34 35 32 / 0.1), rgb(96 97 90 / 0.1));
  }
  .hero .intro > p:first-child {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .hero h1 + p {
    font-size: 1.75rem;
    margin-top: 20px;
  }
  .hero .intro > p:last-child {
    margin-top: 25px;
    max-width: 620px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions > .button {
    width: 335px;
  }
  .facts > .container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding-block: 55px;
  }
  .fact {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
  }
  .fact > svg,
  .fact > .theme-media-icon,
  .fact > span {
    margin-top: 5px;
  }
  .fact-users {
    display: none;
  }
  .fact-user {
    display: block;
  }
  .cards-grid {
    padding-top: 30px;
    padding-bottom: 85px;
  }
  .cards-grid .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
  }
  .cards-grid h2 {
    max-width: none;
  }
  .cards-grid h2 br:first-of-type,
  .cards-grid h2 br:last-of-type {
    display: none;
  }
  .cards-grid .section-header > .button {
    display: flex;
    min-width: 210px;
    margin-bottom: 10px;
  }
  .cards-grid .mobile-offer {
    display: none;
  }
  .card-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-right: 0;
    overflow: visible;
    padding: 0;
  }
  .cards-grid article > img {
    aspect-ratio: 304/260;
  }
  .cards-grid article h3 {
    min-height: 0;
  }
  .cards-grid article p {
    font-size: 1rem;
  }
  .card-list + .scroll-track {
    display: none;
  }
  .is-training {
    padding-bottom: 80px;
  }
  .is-training .intro h2 br {
    display: block;
  }
  .two-columns {
    grid-template-columns: minmax(0, 610fr) minmax(0, 585fr);
    gap: 100px;
    margin-top: 50px;
  }
  .is-training figure img {
    aspect-ratio: 606/446;
  }
  .is-training .content ul {
    margin-block: 25px 35px;
  }
  .is-training .content li {
    font-size: 1rem;
  }
  .is-training .button {
    width: 335px;
  }
  .services {
    padding-bottom: 95px;
  }
  .services .section-header {
    margin-bottom: 65px;
  }
  .service-list {
    position: relative;
    container-type: inline-size;
    margin-inline: 0;
    gap: 0;
    padding: 0;
    overflow: clip;
    min-height: 465px;
  }
  .service-card {
    flex: 1;
    min-width: 0;
    flex-direction: row;
  }
  .service-content {
    padding: 40px 30px;
    min-height: 465px;
  }
  .service-content h3 {
    font-size: var(--h4);
  }
  .service-content h3 br {
    display: block;
  }
  .service-content p {
    margin-top: 25px;
  }
  .service-content .text-link {
    padding-top: 0;
    font-size: 1rem;
  }
  .service-photo {
    aspect-ratio: auto;
    min-height: 465px;
  }
  .services:not(.is-enhanced) .service-list {
    gap: 25px;
  }
  .services:not(.is-enhanced) .service-card {
    flex-direction: column;
  }
  .services:not(.is-enhanced) .service-photo {
    height: 300px;
    min-height: 0;
  }
  .services:not(.is-enhanced) .service-content {
    min-height: 300px;
  }
  .services.is-enhanced .service-card {
    flex: 0 0 22.5%;
    overflow: hidden;
    transition: flex-basis 280ms var(--ease-out);
  }
  .services.is-enhanced .service-card.is-open {
    flex-basis: 55%;
  }
  .services.is-enhanced .service-photo {
    width: 22.5cqw;
  }
  .services.is-enhanced .service-content {
    width: 32.5cqw;
    flex: none;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition:
      opacity 200ms ease,
      transform 280ms var(--ease-out);
  }
  .services.is-enhanced .is-open .service-content {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .services.is-instant .service-card,
  .services.is-instant .service-content {
    transition: none;
  }
  .services.is-enhanced .service-card:not(.is-open) .service-photo::after {
    opacity: 0.3;
  }
  .services.is-enhanced .service-select {
    display: block;
  }
  .services.is-enhanced .is-open .service-select {
    pointer-events: none;
  }
  .services.is-enhanced .carousel-arrow {
    display: grid;
  }
  .services .scroll-track {
    display: none;
  }
  .services [data-service="pole"] .service-photo img {
    width: 110.5%;
    max-width: none;
    left: -9.37%;
    object-fit: fill;
  }
  .services [data-service="mobility"] .service-photo img {
    width: 137.46%;
    height: 107.76%;
    max-width: none;
    left: -16.75%;
    top: -0.03%;
    object-fit: fill;
  }
  .service-content p {
    max-width: 295px;
  }
  .steps {
    padding-top: 0;
  }
  .steps .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .consultation-duration {
    min-width: 300px;
    margin: 0;
  }
  .consultation-duration p {
    font-size: 1rem;
  }
  .consultation-duration strong {
    font-size: var(--h4);
  }
  .consultation-duration p + p {
    margin-top: 10px;
  }
  .steps article {
    background: none;
    padding: 25px 0 0;
    border-radius: 0;
    border-top: 1px solid var(--silver);
  }
  .steps h3 {
    font-size: var(--h5);
  }
  .steps article p {
    font-size: 1rem;
    margin-top: 25px;
  }
  .preparation {
    margin-top: 75px;
    padding: 25px 20px;
    font-size: 1rem;
    align-items: center;
    min-height: 85px;
  }
  .preparation > div {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .preparation p + p {
    margin: 0;
  }
  .is-about > .container {
    grid-template-columns: minmax(0, 610fr) minmax(0, 585fr);
    grid-template-rows: auto 1fr;
    column-gap: 100px;
    row-gap: 30px;
  }
  .is-about figure {
    grid-column: 1;
    grid-row: 1/3;
  }
  .is-about figure img {
    aspect-ratio: 610/640;
  }
  .is-about .intro {
    grid-column: 2;
    grid-row: 1;
    padding-top: 15px;
  }
  .is-about .content {
    grid-column: 2;
    grid-row: 2;
  }
  .is-about .content > p:first-child {
    margin-bottom: 25px;
  }
  .is-about .content > p + p {
    margin-top: 25px;
  }
  .is-about .text-link {
    margin-top: 85px;
  }
  .locations {
    padding-bottom: 80px;
  }
  .locations > .container {
    grid-template-columns: minmax(0, 610fr) minmax(0, 585fr);
    grid-template-rows: 1fr auto;
    column-gap: 100px;
    row-gap: 30px;
  }
  .locations .intro {
    grid-column: 1;
    grid-row: 1;
  }
  .addresses {
    grid-column: 2;
    grid-row: 1/3;
  }
  .locations .online-link {
    grid-column: 1;
    grid-row: 2;
  }
  .locations h3 {
    font-size: var(--h4);
    margin-bottom: 15px;
  }
  .addresses > div + div {
    padding-top: 40px;
    margin-top: 40px;
  }
  .addresses .text-link {
    margin-top: 25px;
  }
  .locations .intro > p:last-child {
    display: none;
  }
  .gallery > .container {
    grid-template-columns: minmax(0, 360fr) minmax(0, 820fr);
    grid-template-rows: 1fr auto;
    gap: 40px 105px;
  }
  .gallery .intro {
    grid-column: 1;
    grid-row: 1;
  }
  .gallery h2 {
    font-size: var(--h2);
  }
  .gallery h2 br {
    display: block;
  }
  .gallery .intro > p:first-child,
  .gallery .intro > p:last-child {
    display: block;
  }
  .gallery .intro > p:last-child {
    font-size: 1.125rem;
    margin-top: 35px;
  }
  .gallery-carousel {
    grid-column: 2;
    grid-row: 1/3;
  }
  .gallery .swiper {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    height: 400px;
  }
  .gallery .swiper-slide {
    width: 42%;
  }
  .gallery .swiper-slide > a {
    height: 100%;
    clip-path: inset(6.875% 17.5%);
  }
  .gallery .swiper-slide.is-before > a {
    clip-path: inset(6.875% 0 6.875% 35%);
  }
  .gallery .swiper-slide.is-after > a {
    clip-path: inset(6.875% 35% 6.875% 0);
  }
  .gallery .swiper-slide.is-current > a {
    clip-path: inset(0);
  }
  .gallery .swiper:not(.swiper-initialized) .swiper-wrapper {
    transform: translateX(-13%);
  }
  .gallery .carousel-arrow {
    display: grid;
  }
  .gallery .scroll-track {
    display: none;
  }
  .gallery > .container > .button {
    grid-column: 1;
    grid-row: 2;
    width: 335px;
  }
  .gallery .swiper-slide.is-outdoor img {
    position: absolute;
    transform: none;
    max-width: none;
    width: 226.91%;
    height: 244.61%;
    left: -22.08%;
    top: -63.51%;
    object-fit: fill;
  }
  .faq {
    padding-bottom: 75px;
  }
  .faq > .container {
    display: grid;
    grid-template-columns: minmax(0, 470fr) minmax(0, 735fr);
    gap: 85px;
  }
  .faq .section-header {
    margin: 0;
  }
  .question-link {
    margin-top: 45px;
  }
  .faq-list summary {
    min-height: 80px;
    font-size: 1.125rem;
  }
  .faq-list details > div {
    padding-bottom: 25px;
  }
  .contact {
    padding-block: 110px;
  }
  .contact > .container {
    grid-template-columns: minmax(0, 560fr) minmax(0, 625fr);
    grid-template-rows: 1fr auto;
    gap: 30px 105px;
  }
  .contact .intro {
    grid-column: 1;
    grid-row: 1;
  }
  .contact h2 br {
    display: block;
  }
  .contact .intro > p:last-child {
    margin-top: 35px;
  }
  .contact form {
    grid-column: 2;
    grid-row: 1/3;
  }
  .contact-email {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-email > p {
    display: block;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .contact-email > div > p {
    font-size: 1rem;
  }
  .contact-email .text-link {
    font-size: 1.375rem;
    margin-top: 20px;
  }
  .contact form > .button {
    width: 280px;
  }
  .contact .intro > p:last-child {
    display: none;
  }
  .contact .intro > h2 + p {
    margin-top: 35px;
  }
  .site-footer {
    padding-block: 60px 25px;
  }
  .site-footer > .container {
    grid-template-columns: 1fr 1fr;
    gap: 55px 40px;
  }
  .footer-brand .brand-mark {
    width: 75px;
    height: 110px;
  }
  .footer-brand .brand {
    align-items: flex-start;
    gap: 25px;
  }
  .footer-brand .brand-copy {
    margin-top: 15px;
  }
  .footer-brand > p {
    margin-top: -30px;
    margin-left: 100px;
  }
  .footer-contact {
    padding-top: 10px;
  }
  .footer-contact .menu {
    margin-top: 40px;
    gap: 25px;
  }
  .back-top {
    top: 5px;
  }
  .footer-bottom {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 0.65fr auto;
    align-items: center;
    border-top: 1px solid var(--grey);
    padding-top: 20px;
  }
  .footer-bottom > a {
    order: 0;
  }
  .credits {
    border: 0;
    padding: 0;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html,
  .card-list,
  .service-list {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reusable content pages. */
.coolka-page-title {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(280px, 44vw, 520px);
  padding-block: 70px 55px;
  overflow: hidden;
  background: var(--light-grey);
}
.page-title-media,
.page-title-media::after,
.page-title-media img { position: absolute; inset: 0; }
.page-title-media { z-index: -1; }
.page-title-media::after {
  content: "";
  background: linear-gradient(90deg, rgb(0 0 0 / .72), rgb(0 0 0 / .16));
}
.page-title-media img { width: 100%; height: 100%; object-fit: cover; }
.coolka-page-title.has-image { color: var(--white); }
.coolka-page-title .eyebrow {
  margin: 0 0 10px;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.coolka-page-title.has-image .eyebrow { color: var(--lime); }
.coolka-page-title h1 { max-width: 12em; }
.coolka-text { padding-block: var(--section-space); }
.coolka-text.has-paper-background { background: var(--paper); color: var(--charcoal); }
.coolka-text.has-grey-background { background: var(--light-grey); color: var(--charcoal); }
.coolka-text.is-dark { background: var(--charcoal); }
.coolka-text .is-narrow { max-width: calc(900px + 2 * var(--gutter)); }
.text-content > * + * { margin-top: 22px; }
.text-content > :is(h2,h3) { margin-top: 55px; }
.text-content > :first-child { margin-top: 0; }
.text-content h2 { max-width: 16em; }
.text-content ul,
.text-content ol { padding-left: 1.4em; }
.text-content li + li { margin-top: 10px; }

@media (min-width: 992px) {
  .services.is-enhanced .service-card {
    flex-basis: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      flex-basis 420ms var(--ease-out),
      opacity 220ms ease;
  }
  .services.is-enhanced .service-card.is-visible {
    flex-basis: 22.5%;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .services.is-enhanced .service-card.is-open {
    flex-basis: 55%;
  }
  .services.is-enhanced .service-photo { width: 22.5cqw; }
  .services.is-enhanced .service-content { width: 32.5cqw; }
  .services.is-enhanced .service-card.is-entering,
  .services.is-enhanced .service-card.is-leaving-active {
    flex-basis: 0;
    visibility: visible;
    opacity: 0;
  }
  .services.is-enhanced .service-card.is-entering-active:not(.is-open) {
    flex-basis: 22.5%;
    opacity: 1;
  }
  .services.is-enhanced .service-card.is-entering-active.is-open {
    flex-basis: 55%;
    opacity: 1;
  }
  .services.is-enhanced .service-card.is-leaving-active {
    pointer-events: none;
  }
  .services.is-moving .service-select { pointer-events: none; }
  .services.is-enhanced .service-card:only-child.is-visible { flex-basis: 100%; }
  .services.is-enhanced .service-card:only-child .service-photo { width: 45cqw; }
  .services.is-enhanced .service-card:only-child .service-content { width: 55cqw; }
  .coolka-page-title {
    align-items: center;
    min-height: 360px;
    padding-block: 60px;
  }
}
