﻿/* === Globals — zmienne, typografia, przyciski === */

:root {
    --rcm-ink:        #1E1A14;
    --rcm-ink-soft:   #3B342A;
    --rcm-ink-mute:   #645B4C;
    --rcm-cream:      #F7F1E5;
    --rcm-cream-soft: #FAF5EB;
    --rcm-forest:      #4A5D3F;
    --rcm-forest-deep: #2F3D2A;
    --rcm-ember:      #FA4A01;
    --rcm-ember-deep: #D43E00;
    --rcm-ember-soft: #FF7A45;
    --rcm-bone:       #EEE6D3;
    --rcm-line:       rgba(30, 26, 20, 0.12);
    --rcm-line-soft:  rgba(30, 26, 20, 0.07);
    --rcm-line-light: rgba(247, 241, 229, 0.1);
    --rcm-line-mid:   rgba(247, 241, 229, 0.2);
    --rcm-text-muted: rgba(247, 241, 229, 0.6);
    --rcm-text-dim:   rgba(247, 241, 229, 0.78);
    --font-serif: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Poppins', system-ui, sans-serif;
    --r-sm:   6px;
    --r-md:   14px;
    --r-pill: 999px;
}

.abtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}
.abtn:hover  { transform: translateY(-1px); }
.abtn:active { transform: translateY(0); }

.abtn--sm { padding: 7px 14px; font-size: 13px; }
.abtn--lg { padding: 17px 30px; font-size: 16px; }

.abtn--ghost {
    background: transparent;
    border-color: rgba(30, 26, 20, 0.18);
    color: #1E1A14;
}
.abtn--ghost:hover {
    border-color: #1E1A14;
    background: rgba(30, 26, 20, 0.04);
    color: #1E1A14;
}

.abtn--ghost-inv {
    background: transparent;
    border-color: rgba(247, 241, 229, 0.35);
    color: #F7F1E5;
}
.abtn--ghost-inv:hover {
    border-color: rgba(247, 241, 229, 0.8);
    background: rgba(247, 241, 229, 0.08);
    color: #F7F1E5;
}

.abtn--ember {
    background: #FA4A01;
    color: #FAF5EB;
    box-shadow: 0 6px 18px -8px rgba(250, 74, 1, 0.5);
}
.abtn--ember:hover {
    background: #D43E00;
    color: #FAF5EB;
    box-shadow: 0 10px 22px -8px rgba(181, 87, 30, 0.55);
}

.abtn--ink {
    background: #1E1A14;
    color: #F7F1E5;
    box-shadow: 0 6px 18px -8px rgba(30, 26, 20, 0.4);
}
.abtn--ink:hover {
    background: #3B342A;
    color: #F7F1E5;
    box-shadow: 0 10px 22px -8px rgba(30, 26, 20, 0.45);
}

/* --- Eyebrow label --- */

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }

/* --- Section headings --- */

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--rcm-ink);
    margin: 0;
}

.section-heading--lg {
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.section-heading--sm {
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.15;
}

.section-heading--inv {
    color: var(--rcm-cream);
}

.container--narrow {
    max-width: 100%;
    width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 4vw, 72px);
    padding-right: clamp(16px, 4vw, 72px);
}

.section-heading span {
    font-style: italic;
    color: var(--rcm-forest-deep);
}

.section-heading--inv span {
    color: #fff;
}

/* --- Section lead --- */

.section-lead {
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.55;
    color: var(--rcm-ink-soft);
    margin: 0;
}

.section-lead--inv {
    color: rgba(247, 241, 229, 0.8);
}

/* --- Section eyebrow --- */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rcm-forest);
    margin: 0 0 18px;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.section-eyebrow--inv {
    color: var(--rcm-ember);
}

/* ── legacy base (zachowane) ── */
body, html {
    font-size: 17px;
    line-height: 29px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    --txt-color: #000;
    --color-main: #eaeaea;
    --font-main: 'Poppins', sans-serif;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.bottom-links a {
    margin: 10px;
    min-width: 160px;
}

.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 3px;
}
.slick-dots li button {
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--color-main);
    padding: 0;
    margin: 0;
    width: 12px;
    height: 12px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: var(--txt-color);
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
}
.slick-lightbox .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 20px;
}
.slick-lightbox .slick-next {
    right: 20px;
}
.slick-lightbox-slick-caption {
    margin-top: 10px;
    display: inline-block;
}

.searchside form {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.searchside form input {
    flex: 1;
    height: 50px;
    font-size: .9rem;
    padding: 20px;
    border: 1px solid #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--txt-color);
}
.searchside form input::placeholder {
    color: var(--txt-color);
}
.searchside form button {
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    border: none;
    background-color: var(--txt-color);
    cursor: pointer;
    transition: .3s;
}
.searchside form button:hover {
    background-color: #707070;
}
.searchside form button svg {
    filter: brightness(0) invert(1);
    width: 17px;
    height: auto;
}

.play-cbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    z-index: 9;
    width: 100px;
    height: 100px;
    padding: 0;
    box-shadow: 0px 3px 10px -6px rgba(66, 68, 90, 1);
    transition: .3s;
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    background-color: rgba(143, 176, 176, .6);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
}
.play-cbtn:hover span {
    background-color: #363636;
}
.play-cbtn svg {
    width: 55%;
    height: auto;
}
.play-btn:not(.paused) {
    opacity: 0;
}
.play-btn.paused {
    opacity: 1;
}

.video-embed video {
    padding: 60px;
    max-height: 100%;
    max-width: 90%;
}
.video-embed {
    z-index: 99999;
    background-color:rgba(143, 176, 176, .53);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-spinner,
.video-spinner:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.video-spinner {
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(59, 49, 39, 0.5);
  border-right: 1.1em solid rgba(59, 49, 39, 0.5);
  border-bottom: 1.1em solid rgba(59, 49, 39, 0.5);
  border-left: 1.1em solid rgba(37, 30, 24, .5);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.video-embed.open {
    display: flex;
}
.video-embed__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.video-embed iframe {
    max-width: 100%;
    width: 1100px;
    height: 500px;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--color-main);
    cursor: pointer;
}

.posrel {
    position: relative;
    z-index: 4;
}
.page-heading {
    font-size: 42px;
    line-height: 140%;
    font-weight: 500;
    color: var(--txt-color);
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cbtn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #000;
    transition: .3s;
    cursor: pointer;
    border-radius: 0;
}
.cbtn:hover {
    color: #fff;
    background-color: var(--txt-color);
}

/* @ @ SEARCH POP START @ @ */
.pop-search {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    display: none;
    background-color: rgba(255,255,255, .95);
    padding: 20px;
}
.pop-search>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pop-search form {
    display: flex;
    align-items: center;
}
.pop-search form input {
    width: 400px;
    background-color: transparent;
    font-size: 1.4rem;
    padding: 20px 15px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-bottom: 1px solid var(--txt-color);
    color: var(--txt-color);
    max-width: calc(100% - 45px);
}
.pop-search form input::placeholder {
    color: var(--txt-color);
    font-weight: 300;
}
.pop-search button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 15px;
    width: 30px;
    height: 30px;
}
.pop-search__close {
    position: absolute;
    top: 120px;
    right: 120px;
    font-weight: 300;
    font-size: 42px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.search-results__item {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 125%;
}
.search-results__title {
    font-weight: 500;
}
.search-results__link {
    font-size: .8rem;
}
/* @ @ SEARCH POP END @ @ */

/* === Strona 404 === */

.error404 {
    min-height: calc(100vh - 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px clamp(20px, 6vw, 120px) 140px;
    position: relative;
    overflow: hidden;
    background: #F7F1E5;
}

.error404__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FA4A01;
    margin: 0 0 16px;
}

.error404__code {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(100px, 18vw, 220px);
    font-weight: 400;
    line-height: 1;
    color: rgba(30, 26, 20, 0.06);
    margin: 0 0 -24px;
    letter-spacing: -0.03em;
    user-select: none;
}

.error404__title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: #1E1A14;
    margin: 0 0 20px;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.error404__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #645B4C;
    max-width: 100%;
    width: 460px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.error404__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error404__mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #1E1A14;
    opacity: 0.055;
    line-height: 0;
    pointer-events: none;
}
/* @ @ BANER START @ @ */

/* @ @ BANER END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */


/* @ @ MEDIA START @ @  */
@media(min-width: 2900px) {
    main {
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrap {
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    body, html {
        font-size: 16px;
        line-height: 27px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-embed iframe {
        height: 400px;
    }

}
@media(max-width: 767px) {
    body, html {
        font-size: 15px;
        line-height: 24px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }

    .video-close {
        right: 0;
    }
    .video-embed__item {
        padding: 20px 40px;
    }
    .video-embed iframe {
        height: 300px;
    }

    
  }
/* @ @ MEDIA END @ @  */

/* === Blog === */

.blog-intro {
    background: var(--rcm-cream);
    border-bottom: 1px solid var(--rcm-line-soft);
    padding: 28px 0 22px;
}

.blog-intro__heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--rcm-ink);
    margin: 0 0 12px;
    line-height: 1.1;
}

.blog-intro__crumbs {
    display: flex;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    align-items: center;
}

.blog-intro__crumbs a {
    color: var(--rcm-ink-mute);
    text-decoration: none;
    transition: color 0.15s;
}

.blog-intro__crumbs a:hover { color: var(--rcm-ember-deep); }
.blog-intro__crumbs .sep { color: var(--rcm-line); }

/* Filtry */

.blog-filters-wrap {
    padding: 28px 0 0;
}

.blog-filters {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 26px;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-pill);
}

.blog-filters__label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--rcm-ink-mute);
}

.blog-filters__chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.blog-filters__count {
    font-size: 13px;
    color: var(--rcm-ink-mute);
    white-space: nowrap;
    font-family: var(--font-serif);
    font-style: italic;
}

.blog-filters__count em {
    font-style: normal;
    font-size: 18px;
    color: var(--rcm-ember-deep);
    margin-right: 4px;
}

.blog-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    min-height: 44px;
    border-radius: var(--r-pill);
    font-size: 13px;
    color: var(--rcm-ink-mute);
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
    font-family: var(--font-sans);
}

.blog-filter-chip:hover {
    color: var(--rcm-ink);
    background: var(--rcm-cream);
}

.blog-filter-chip--active {
    color: var(--rcm-ember-deep);
    background: var(--rcm-cream);
    border-color: var(--rcm-ember);
    box-shadow: 0 0 0 1px var(--rcm-ember) inset;
    font-weight: 500;
}

/* Sekcja postów */

.blog-section {
    padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 7vw, 96px);
}

/* Featured */

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 32px;
    background: var(--rcm-cream-soft);
}

.blog-featured__img {
    display: block;
    min-height: 380px;
    overflow: hidden;
}

.blog-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured__img img {
    transform: scale(1.03);
}

.blog-featured__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--rcm-cream);
    min-height: 380px;
}

.blog-featured__body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured__title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    line-height: 1.15;
    margin: 14px 0 0;
    color: var(--rcm-ink);
}

.blog-featured__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-featured__title a:hover { color: var(--rcm-ember-deep); }

.blog-featured__excerpt {
    font-size: 15px;
    color: var(--rcm-ink-soft);
    line-height: 1.6;
    margin: 18px 0 0;
}

.blog-featured__date {
    margin-top: 24px;
    font-size: 13px;
    color: var(--rcm-ink-mute);
}

.blog-featured__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rcm-ember-deep);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: gap 0.2s, border-color 0.2s;
    align-self: flex-start;
}

.blog-featured__link:hover {
    gap: 12px;
    border-color: var(--rcm-ember-deep);
}

/* Blog meta */

.blog-card__meta {
    display: flex;
    gap: 14px;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    white-space: nowrap;
    align-items: center;
    overflow: hidden;
}

.blog-card__meta .cat {
    color: var(--rcm-forest);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}

.blog-card__meta .cat:hover { color: var(--rcm-forest-deep); }

/* Blog grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -25px rgba(30, 26, 20, 0.2);
}

.blog-card__img-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--rcm-cream);
}

.blog-card__img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__img-el { transform: scale(1.04); }

.blog-card__img--empty {
    width: 100%;
    height: 100%;
    background: var(--rcm-cream);
}

.blog-card__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.blog-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    color: var(--rcm-ink);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__title a:hover { color: var(--rcm-ember-deep); }

.blog-card__excerpt {
    font-size: 14px;
    color: var(--rcm-ink-soft);
    line-height: 1.55;
    margin: 0;
}

.blog-card__date {
    margin-top: auto;
    padding-top: 12px;
    font-size: 12px;
    color: var(--rcm-ink-mute);
}

/* Paginacja */

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--r-pill);
    font-size: 14px;
    color: var(--rcm-ink-soft);
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-pagination .page-numbers:hover {
    background: var(--rcm-cream);
    color: var(--rcm-ink);
    border-color: rgba(30, 26, 20, 0.2);
}

.blog-pagination .page-numbers.current {
    background: var(--rcm-ember);
    color: #FAF5EB;
    border-color: var(--rcm-ember);
    font-weight: 500;
}

.blog-empty {
    text-align: center;
    color: var(--rcm-ink-mute);
    padding: 64px 0;
    font-size: 16px;
}

/* Responsywność */

@media (max-width: 1080px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured__img {
        min-height: 240px;
        max-height: 320px;
    }

    .blog-featured__body {
        padding: 28px 24px;
    }

}

@media (max-width: 580px) {
    .blog-grid { grid-template-columns: 1fr; }

    .blog-filters {
        gap: 12px;
        padding: 14px 18px;
    }

    .blog-filters__count { display: none; }
}

/* === Single Post === */

.post-single {
    padding-bottom: clamp(48px, 7vw, 96px);
}

.post-single__header {
    background: var(--rcm-cream);
    border-bottom: 1px solid var(--rcm-line-soft);
    padding: clamp(40px, 6vw, 80px) 0 clamp(32px, 5vw, 64px);
}

.post-single__header-inner {
    max-width: 100%;
    width: 760px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.post-single__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.post-single__cat {
    color: var(--rcm-forest);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.post-single__cat:hover { color: var(--rcm-forest-deep); }

.post-single__read,
.post-single__date {
    color: var(--rcm-ink-mute);
}

.post-single__meta .post-single__read::before,
.post-single__meta .post-single__date::before {
    content: "·";
    margin-right: 16px;
    color: var(--rcm-line);
    font-size: 18px;
    vertical-align: middle;
}

.post-single__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--rcm-ink);
    margin: 0 0 20px;
}

.post-single__lead {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--rcm-ink-soft);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

.post-single__thumb {
    max-width: 100%;
    width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 72px);
    margin-top: clamp(28px, 4vw, 48px);
}

.post-single__thumb img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--r-md);
}

.post-single__body {
    max-width: 100%;
    width: 760px;
    margin: clamp(32px, 5vw, 56px) auto 0;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* Treść posta */

.post-prose {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--rcm-ink-soft);
}

.post-prose h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -0.015em;
    color: var(--rcm-ink);
    margin: 52px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rcm-line);
    line-height: 1.2;
}

.post-prose h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(19px, 1.8vw, 24px);
    color: var(--rcm-ink);
    margin: 36px 0 14px;
    line-height: 1.25;
}

.post-prose p {
    margin: 0 0 18px;
}

.post-prose strong {
    color: var(--rcm-ink);
    font-weight: 500;
}

.post-prose a {
    color: var(--rcm-ember-deep);
    border-bottom: 1px solid var(--rcm-ember-deep);
    padding-bottom: 1px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}
.post-prose a:hover {
    color: var(--rcm-ink);
    border-color: var(--rcm-ink);
}

.post-prose ul,
.post-prose ol {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
}

.post-prose li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.post-prose blockquote {
    margin: 32px 0;
    padding: 20px 28px;
    border-left: 3px solid var(--rcm-ember);
    background: var(--rcm-cream-soft);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--rcm-ink);
    line-height: 1.55;
}

/* Nawigacja postów */

.post-nav {
    background: var(--rcm-cream-soft);
    border-top: 1px solid var(--rcm-line);
    padding: 0;
}

.post-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 96px;
}

.post-nav__cell {
    display: flex;
    align-items: stretch;
}

.post-nav__cell--prev { justify-content: flex-start; }
.post-nav__cell--all  { border-left: 1px solid var(--rcm-line); border-right: 1px solid var(--rcm-line); }
.post-nav__cell--next { justify-content: flex-end; }

.post-nav__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 24px 28px;
    text-decoration: none;
    transition: background 0.2s;
    max-width: 360px;
}

.post-nav__link:hover {
    background: rgba(30, 26, 20, 0.04);
}

.post-nav__link--next {
    align-items: flex-end;
    text-align: right;
}

.post-nav__dir {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    font-weight: 500;
}

.post-nav__link--next .post-nav__dir {
    justify-content: flex-end;
}

.post-nav__dir svg {
    flex-shrink: 0;
    color: var(--rcm-ink-mute);
}

.post-nav__link:hover .post-nav__dir { color: var(--rcm-ember-deep); }
.post-nav__link:hover .post-nav__dir svg { color: var(--rcm-ember-deep); }

.post-nav__title {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--rcm-ink);
    line-height: 1.3;
    font-weight: 400;
}

.post-nav__link:hover .post-nav__title { color: var(--rcm-ember-deep); }

.post-nav__all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 32px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.post-nav__all:hover {
    background: rgba(30, 26, 20, 0.04);
}

.post-nav__all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rcm-cream);
    border: 1px solid var(--rcm-line);
    color: var(--rcm-ink-mute);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.post-nav__all:hover .post-nav__all-icon {
    background: var(--rcm-ember);
    color: #FAF5EB;
    border-color: var(--rcm-ember);
}

.post-nav__all-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    font-weight: 500;
}

.post-nav__all:hover .post-nav__all-label { color: var(--rcm-ember-deep); }

.post-nav__empty { flex: 1; }

/* Responsywność single */

@media (max-width: 768px) {
    .post-nav__inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .post-nav__cell--all {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--rcm-line);
        border-bottom: 1px solid var(--rcm-line);
    }

    .post-nav__all {
        flex-direction: row;
        padding: 18px 24px;
        gap: 12px;
    }

    .post-nav__link {
        max-width: 100%;
        padding: 20px 24px;
    }

    .post-nav__link--next {
        align-items: flex-start;
        text-align: left;
        border-top: 1px solid var(--rcm-line);
    }

    .post-nav__link--next .post-nav__dir {
        justify-content: flex-start;
    }

    .post-nav__cell--prev .post-nav__empty { display: none; }
    .post-nav__cell--next .post-nav__empty { display: none; }
}

/* === O klinice === */

/* -- Wspólne -- */

/* -- Skyline divider -- */

.skyline {
    color: var(--rcm-forest);
    opacity: 0.14;
    line-height: 0;
    display: block;
}

/* -- TXTIMG -- */

.txtimg {
    padding: clamp(56px, 8vw, 112px) 0;
}

.txtimg__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.txtimg__text {
    display: flex;
    flex-direction: column;
}

.txtimg__text .section-heading { margin-bottom: 24px; }

.txtimg__body {
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.55;
    color: var(--rcm-ink-soft);
}

.txtimg__body p { margin: 0 0 14px; }
.txtimg__body strong { color: var(--rcm-ink); }

.txtimg__flourish {
    margin-top: 32px;
    opacity: 0.6;
}

.txtimg__collage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.txtimg__img-wide {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.txtimg__img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.txtimg__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.txtimg__img-port {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.txtimg__img-port img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.txtimg__badge {
    position: absolute;
    top: -20px;
    right: -12px;
    background: var(--rcm-ember);
    color: #FAF5EB;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 10px 24px -8px rgba(250, 74, 1, 0.45);
    white-space: nowrap;
    z-index: 2;
}

/* -- NUMSTRIP -- */

.numstrip {
    background: var(--rcm-bone);
    padding: 72px 0;
}

.numstrip__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.numstrip__item {
    padding: 24px 0;
}

.numstrip__item--sep {
    padding-left: 32px;
    border-left: 1px solid var(--rcm-line);
}

.numstrip__num {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    color: var(--rcm-ink);
    letter-spacing: -0.025em;
}

.numstrip__label {
    margin-top: 12px;
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--rcm-ink-soft);
    line-height: 1.3;
}

.numstrip__sub {
    margin-top: 5px;
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
}

/* -- ROOMGRID -- */

.roomgrid {
    padding: clamp(56px, 8vw, 112px) 0;
}

.roomgrid__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}


.roomgrid__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.room-card {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.room-card__photo {
    overflow: hidden;
    min-height: 280px;
}

.room-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-card__body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
}

.room-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.room-card__num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 20px;
    flex-shrink: 0;
}

.room-card__eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rcm-ember-deep);
    font-weight: 500;
}

.room-card__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--rcm-ink);
    margin: 0 0 10px;
}

.room-card__desc {
    font-size: 13.5px;
    color: var(--rcm-ink-soft);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.room-card__doctor {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rcm-line-soft);
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
}

.room-card__doctor-label {
    color: var(--rcm-forest);
    font-weight: 500;
    margin-right: 4px;
}

/* -- BENTOGRID -- */

.bentogrid {
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    padding: clamp(72px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.bentogrid__mountain {
    position: absolute;
    inset: 0;
    color: var(--rcm-ember-soft);
    opacity: 0.15;
    pointer-events: none;
    line-height: 0;
}

.bentogrid .container { position: relative; }

.bentogrid__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 40px;
}


.bentogrid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
}

.bentogrid-item {
    position: relative;
    border-radius: var(--r-sm);
    overflow: hidden;
}

.bentogrid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bentogrid-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,26,20,0.55) 0%, transparent 50%);
}

.bentogrid-item__caption {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    font-size: 11.5px;
    color: rgba(247, 241, 229, 0.85);
    letter-spacing: 0.04em;
    z-index: 2;
}

/* -- BOXES: Wyposażenie -- */

.boxes {
    padding: clamp(56px, 8vw, 112px) 0;
}

.boxes__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 40px;
}


.boxes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.eq-card {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.eq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -18px rgba(30, 26, 20, 0.18);
}

.eq-card__icon {
    color: var(--rcm-forest);
    margin-bottom: 6px;
}

.eq-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--rcm-ink);
    margin: 0;
    line-height: 1.2;
}

.eq-card__desc {
    font-size: 13.5px;
    color: var(--rcm-ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* -- IMGTEXT: Certyfikat -- */

.imgtext {
    background: var(--rcm-bone);
    padding: 80px 0;
}

.imgtext__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.imgtext__photo {
    position: relative;
}

.imgtext__photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r-md);
    border: 6px solid var(--rcm-cream);
    box-shadow: 0 20px 48px -18px rgba(30, 26, 20, 0.18);
}

.imgtext__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    padding: 10px 16px;
    border-radius: var(--r-pill);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.imgtext__body .section-heading { margin-bottom: 20px; }

.imgtext__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--rcm-ink-soft);
    margin-bottom: 24px;
}

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

.imgtext__bullets li {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    color: var(--rcm-ink-soft);
    line-height: 1.55;
    align-items: flex-start;
}

.imgtext__bullets li svg {
    flex-shrink: 0;
    color: var(--rcm-forest);
    margin-top: 3px;
}

/* -- PULLQUOTE -- */

/* -- PULLQUOTE -- */

.pullquote {
    padding: clamp(56px, 8vw, 96px) 0;
}

.quote {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: clamp(40px, 5vw, 64px) clamp(40px, 5vw, 72px);
}

.quote__inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.quote__mark-svg {
    color: var(--rcm-ember);
    opacity: 0.5;
    margin-bottom: -8px;
}

.quote__text {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--rcm-ink);
    margin: 0;
}

.quote__byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--rcm-line-soft);
}

.quote__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rcm-forest);
    color: var(--rcm-cream);
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
}

.quote__author-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--rcm-ink);
}

.quote__author-meta {
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
    margin-top: 2px;
}

/* -- TEAMSTRIP -- */

.teamstrip {
    background: var(--rcm-cream-soft);
    border-top: 1px solid var(--rcm-line);
    padding: clamp(56px, 8vw, 96px) 0;
}

.teamstrip__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.teamstrip__header .section-heading em {
    font-style: italic;
    color: var(--rcm-forest-deep);
}

.teamstrip__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rcm-ember-deep);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: gap 0.2s, border-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 24px;
}

.teamstrip__more:hover {
    gap: 12px;
    border-color: var(--rcm-ember-deep);
}

.teamstrip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-mini-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--rcm-cream);
    border: 1px solid var(--rcm-line);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -18px rgba(30, 26, 20, 0.18);
}

.team-mini-card__photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--rcm-cream-soft);
}

.team-mini-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-mini-card__photo--initials {
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--rcm-forest);
    background: var(--rcm-cream-soft);
}

.team-mini-card__body {
    padding: 16px 18px 20px;
}

.team-mini-card__name {
    font-weight: 500;
    font-size: 15px;
    color: var(--rcm-ink);
}

.team-mini-card__role {
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
    margin-top: 4px;
}

/* -- CTA -- */

.cta {
    background: var(--rcm-forest-deep);
    padding: clamp(56px, 8vw, 96px) 0;
    color: var(--rcm-cream);
}

.cta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}


.cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.cta .abtn--ghost {
    border-color: rgba(247, 241, 229, 0.3);
    color: var(--rcm-cream);
}

.cta .abtn--ghost:hover {
    border-color: var(--rcm-cream);
    background: rgba(247, 241, 229, 0.08);
    color: var(--rcm-cream);
}

/* Responsywność O klinice */

@media (max-width: 1080px) {
    .numstrip__items { grid-template-columns: repeat(2, 1fr); }
    .numstrip__item--sep:nth-child(3) { border-left: none; padding-left: 0; }
    .teamstrip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .txtimg__inner { grid-template-columns: 1fr; gap: 40px; }
    .txtimg__badge { top: auto; bottom: -14px; right: 16px; }
    .roomgrid__header { grid-template-columns: 1fr; gap: 16px; }
    .roomgrid__grid { grid-template-columns: 1fr; }
    .room-card { grid-template-columns: 1fr; }
    .room-card__photo { min-height: 220px; }
    .bentogrid__header { grid-template-columns: 1fr; gap: 16px; }
    .bentogrid__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .boxes__header { grid-template-columns: 1fr; gap: 16px; }
    .boxes__grid { grid-template-columns: repeat(2, 1fr); }
    .imgtext__inner { grid-template-columns: 1fr; gap: 40px; }
    .imgtext__photo { max-width: 480px; }
}

@media (max-width: 580px) {
    .numstrip__items { grid-template-columns: 1fr 1fr; }
    .boxes__grid { grid-template-columns: 1fr; }
    .teamstrip__header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .teamstrip__more { margin-left: 0; }
    .cta__actions { flex-direction: column; width: 100%; }
    .cta__actions .abtn { justify-content: center; }
}

@media (max-width: 480px) {
    .numstrip__items { grid-template-columns: 1fr; }
    .numstrip__item--sep { border-left: none; padding-left: 0; }
    .bentogrid__grid { grid-auto-rows: 120px; }
    .room-card__photo { min-height: 180px; }
}

/* === Final CTA (globalna — nad footerem) === */

.final-cta {
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.final-cta__mountains {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta__eyebrow {
    justify-content: center;
}

.final-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.4vw, 78px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--rcm-cream);
    max-width: 100%;
    width: 720px;
    margin: 16px auto 0;
}

.final-cta__title em {
    color: var(--rcm-ember-soft);
    font-style: italic;
}

.final-cta__lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    color: rgba(247, 241, 229, 0.78);
    max-width: 580px;
    margin: 24px auto 0;
}

.final-cta__ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .final-cta__ctas { flex-direction: column; align-items: stretch; }
    .final-cta__ctas .abtn { justify-content: center; }
}

/* === Breadcrumbs (global) === */

.breadcrumbs {
    background: var(--rcm-cream-soft);
    border-bottom: 1px solid var(--rcm-line-soft);
    padding: 11px 0;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
    font-family: var(--font-sans);
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    margin: 0 8px;
    color: var(--rcm-line);
    font-size: 11px;
}

.breadcrumbs__item a {
    color: var(--rcm-ink-mute);
    text-decoration: none;
    transition: color .15s;
}

.breadcrumbs__item a:hover {
    color: var(--rcm-ember);
}

.breadcrumbs__item--current span {
    color: var(--rcm-ink);
}

/* === Strona Usługi (template-service.php) === */

.service-page {
    padding: 56px 0 80px;
}

.service-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Sidebar rail --- */

.service-rail {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-rail__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    margin: 0;
}

.service-rail__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-rail__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    text-decoration: none;
    color: var(--rcm-ink);
    border: 1px solid var(--rcm-line-soft);
    border-radius: var(--r-md);
    transition: background 0.2s, border-color 0.2s;
}

.service-rail__item:hover {
    background: var(--rcm-cream-soft);
    border-color: var(--rcm-ember-soft);
}

.service-rail__item--active {
    background: var(--rcm-cream-soft);
    border-color: var(--rcm-ember);
    box-shadow: 0 0 0 1px var(--rcm-ember) inset, 0 8px 18px -10px rgba(250, 74, 1, 0.2);
}

.service-rail__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--rcm-ink-mute);
    flex-shrink: 0;
}

.service-rail__item--active .service-rail__num {
    color: var(--rcm-ember-deep);
}

.service-rail__body {
    flex: 1;
    min-width: 0;
}

.service-rail__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

.service-rail__meta {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: var(--rcm-ink-mute);
    margin-top: 3px;
}

.service-rail__arrow {
    color: var(--rcm-ink-mute);
    opacity: 0.3;
    flex-shrink: 0;
    transition: opacity 0.2s, color 0.2s;
}

.service-rail__item--active .service-rail__arrow,
.service-rail__item:hover .service-rail__arrow {
    opacity: 1;
    color: var(--rcm-ember);
}

.service-rail__cta {
    margin-top: 20px;
    padding: 18px;
    background: var(--rcm-bone);
    border-radius: 10px;
}

.service-rail__cta-hint {
    font-size: 12px;
    color: var(--rcm-ink-mute);
    margin: 0 0 10px;
    line-height: 1.5;
}

.service-rail__cta-btn {
    width: 100%;
    justify-content: center;
}

/* --- Pane header --- */

.service-pane__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rcm-line);
}

.service-filar-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rcm-ember);
    margin-bottom: 14px;
}

.service-pane__lead {
    font-size: 17px;
    color: var(--rcm-ink-soft);
    line-height: 1.65;
    margin-top: 16px;
}

.service-pane__photo {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-pane__photo img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Groups accordion --- */

.service-groups {
    display: flex;
    flex-direction: column;
}

.service-group {
    border-top: 1px solid var(--rcm-line-soft);
    padding: 8px 0;
}

.service-group:last-child {
    border-bottom: 1px solid var(--rcm-line-soft);
}

.service-group summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 20px;
    padding: 28px 6px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: padding 0.2s ease;
}

.service-group summary:hover {
    padding-left: 14px;
    padding-right: 14px;
}

.service-group summary::-webkit-details-marker {
    display: none;
}

.service-group__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rcm-bone);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    align-self: center;
    transition: background 0.2s;
}

.service-group__icon:empty {
    display: none;
}

.service-group[open] .service-group__icon {
    background: var(--rcm-ember);
}

.service-group__icon img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(30%) saturate(500%) hue-rotate(75deg);
    transition: filter 0.2s;
}

.service-group[open] .service-group__icon img {
    filter: brightness(0) invert(1);
}

.service-group__title-wrap {
    min-width: 0;
}

.service-group__title {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--rcm-ink);
}

.service-group__meta {
    display: block;
    font-size: 12.5px;
    font-style: italic;
    color: var(--rcm-ink-mute);
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.service-group__plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--rcm-line);
    display: grid;
    place-items: center;
    font-size: 16px;
    color: var(--rcm-ink-mute);
    flex-shrink: 0;
    align-self: center;
    transition: background 0.2s, color 0.2s, transform 0.3s, border-color 0.2s;
    line-height: 1;
}

.service-group summary:hover .service-group__plus {
    border-color: var(--rcm-ember);
    color: var(--rcm-ember-deep);
}

.service-group[open] .service-group__plus {
    background: var(--rcm-ember);
    color: var(--rcm-cream);
    border-color: var(--rcm-ember);
    transform: rotate(45deg);
}

.service-group__body {
    padding: 0 6px 32px;
}

.service-group__intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--rcm-ink-soft);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 720px;
    border-left: 2px solid var(--rcm-ember);
    padding-left: 20px;
}

/* --- Treatment list --- */

.service-treatment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-treatment {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: baseline;
    padding: 16px 0;
    border-top: 1px solid var(--rcm-line-soft);
}

.service-treatment:first-child {
    border-top: none;
}

.service-treatment__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--rcm-ember-deep);
}

.service-treatment__name {
    font-size: 16px;
    color: var(--rcm-ink);
}


/* --- Responsive --- */

@media (max-width: 1080px) {
    .service-layout {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }
}

@media (max-width: 840px) {
    .service-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .service-rail {
        position: static;
        gap: 12px;
    }

    .service-rail, .service-pane { min-width: 0; }

    .service-rail__list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 4px;
    }

    .service-rail__list::-webkit-scrollbar {
        display: none;
    }

    .service-rail__list li {
        flex: 0 0 auto;
    }

    .service-rail__item {
        padding: 7px 16px;
        border-radius: 999px;
        gap: 8px;
        white-space: nowrap;
    }

    .service-rail__num {
        font-size: 11px;
    }

    .service-rail__body {
        flex: 0 0 auto;
    }

    .service-rail__title {
        font-size: 14px;
        letter-spacing: 0;
    }

    .service-rail__meta,
    .service-rail__arrow,
    .service-rail__cta {
        display: none;
    }

    .service-pane__header {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-pane__photo {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 520px) {
    .service-group__body {
        padding-left: 12px;
    }
}

/* === Usługi Hub (template-services.php) === */

.srv-hub {
    padding: 72px 0 120px;
}

.srv-hub__header {
    margin-bottom: 48px;
}

.srv-hub__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.srv-tile {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 44px 48px;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line-soft);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: var(--rcm-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    min-height: 300px;
}

.srv-tile:hover {
    border-color: var(--rcm-ember);
    box-shadow: 0 16px 48px -20px rgba(250, 74, 1, 0.22);
    transform: translateY(-3px);
}

.srv-tile__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--rcm-ember);
    letter-spacing: 0.06em;
}

.srv-tile__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
    flex-grow: 1;
}

.srv-tile__lead {
    font-size: 15px;
    color: var(--rcm-ink-soft);
    line-height: 1.65;
    margin: 0;
}

.srv-tile__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--rcm-line-soft);
    margin-top: auto;
}

.srv-tile__meta {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--rcm-ink-mute);
}

.srv-tile__arrow {
    color: var(--rcm-ember);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.srv-tile:hover .srv-tile__arrow {
    transform: translateX(5px);
}

@media (max-width: 760px) {
    .srv-hub__grid {
        grid-template-columns: 1fr;
    }

    .srv-tile {
        padding: 32px 28px;
        min-height: auto;
    }
}

/* === Strona Zespołu === */

.team-page {
    padding: clamp(40px, 6vw, 80px) 0 clamp(24px, 3vw, 48px);
}

.team-page__header {
    margin-bottom: 0;
    max-width: 720px;
}

.team-page__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--rcm-ink-soft);
    margin: 16px 0 0;
}

/* Filter strip */

.team-filters {
    background: var(--rcm-cream-soft);
    border-bottom: 1px solid var(--rcm-line-soft);
    border-top: 1px solid var(--rcm-line-soft);
    padding: 18px 0;
    position: sticky;
    top: 88px;
    z-index: 30;
}

@media (max-width: 480px) {
    .team-filters { top: 64px; }
}

.team-filters__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.team-filters__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    flex-shrink: 0;
}

.team-filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-chip {
    padding: 7px 13px;
    min-height: 44px;
    font-size: 12px;
    font-family: var(--font-sans);
    font-weight: 500;
    border-radius: var(--r-pill);
    border: 1px solid var(--rcm-line);
    background: transparent;
    color: var(--rcm-ink-soft);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.team-chip:hover {
    background: rgba(30, 26, 20, 0.05);
    color: var(--rcm-ink);
}

.team-chip--active {
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    border-color: var(--rcm-ink);
}

/* Section */

.team-section {
    padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 112px);
}

/* Grid */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Card */

.team-card {
    height: 100%;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -25px rgba(30, 26, 20, 0.2);
}

/* Photo */

.team-card__photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    flex-shrink: 0;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__photo--placeholder {
    background: linear-gradient(160deg, #E4D8C0, var(--rcm-bone));
    display: grid;
    place-items: center;
    font-family: var(--font-serif);
    font-size: 64px;
    color: var(--rcm-ink-mute);
}

.team-card__photo--placeholder span {
    background: rgba(247, 241, 229, 0.6);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(30, 26, 20, 0.12);
    font-size: 40px;
    text-align: center;
    padding-top: 7px;
}

/* Body */

.team-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-card__name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--rcm-ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 11px;
    color: var(--rcm-forest);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.5;
}

.team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.team-tag {
    background: var(--rcm-bone);
    color: var(--rcm-ink-soft);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    letter-spacing: 0.02em;
}

/* Bio expand */

.team-card__bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.team-card__bio-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--rcm-ink-soft);
    margin: 16px 0 0;
}

/* Card footer */

.team-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    margin-top: 18px;
    border-top: 1px solid var(--rcm-line-soft);
}

.team-card__bio-toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--rcm-forest-deep);
    cursor: pointer;
    transition: color 0.15s;
}

.team-card__bio-toggle:hover {
    color: var(--rcm-ember);
}

/* Hidden state (filter) */

.team-card--hidden {
    display: none !important;
}

/* Empty state */

.team-empty {
    padding: 80px 0;
    text-align: center;
    color: var(--rcm-ink-mute);
}

/* Jobs CTA */

.team-jobs {
    background: var(--rcm-forest-deep);
    padding: clamp(72px, 10vw, 120px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-jobs__mountains {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
}

.team-jobs__mountains svg {
    width: 100%;
    height: 100%;
}

.team-jobs .container { position: relative; }

.team-jobs__eyebrow {
    color: var(--rcm-ember-soft);
    margin: 0 0 20px;
}

.team-jobs__heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--rcm-cream);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.team-jobs__lead {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(247, 241, 229, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
}

.team-jobs__ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.team-jobs__rodo-link {
    font-size: 13px;
    color: rgba(247, 241, 229, 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.team-jobs__rodo-link:hover {
    color: rgba(247, 241, 229, 0.9);
}

/* Responsive */

@media (max-width: 1080px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-filters__label {
        display: none;
    }

    .team-filters__inner {
        flex-wrap: nowrap;
    }

    .team-filters__chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
    }

    .team-filters__chips::-webkit-scrollbar {
        display: none;
    }
}

/* === Polityka prywatności === */

.eyebrow--ember { color: var(--rcm-ember); }

.policy-hero-wrap {
    background: var(--rcm-bone);
    border-bottom: 1px solid var(--rcm-line);
    padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}

.policy-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.policy-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--rcm-ink);
    margin-top: 22px;
    max-width: 14ch;
}
.policy-hero__title em {
    color: var(--rcm-ember-deep);
    font-style: italic;
}

.policy-hero__lead {
    margin-top: 22px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    color: var(--rcm-ink-soft);
    max-width: 540px;
}

.policy-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.policy-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    color: var(--rcm-ink-soft);
    font-size: 12.5px;
    font-weight: 500;
}

.policy-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 36px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rcm-line);
}

.policy-hero__meta-item span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rcm-ink-mute);
    margin-bottom: 4px;
}
.policy-hero__meta-item strong {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--rcm-ink);
}

/* TOC sidebar */

.policy-toc {
    position: sticky;
    top: 120px;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: 24px 28px 28px;
    align-self: start;
}

.policy-toc__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--rcm-ink);
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rcm-line);
}

.policy-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.policy-toc__list li {
    border-bottom: 1px dotted var(--rcm-line);
}
.policy-toc__list li:last-child { border-bottom: none; }
.policy-toc__list a {
    display: block;
    padding: 9px 4px;
    font-size: 13.5px;
    color: var(--rcm-ink-soft);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.policy-toc__list a:hover {
    color: var(--rcm-ember-deep);
    padding-left: 10px;
}

/* Prose article */

.policy-article {
    padding: clamp(48px, 7vw, 80px) 0;
    background: var(--rcm-cream);
}

.policy-article__container {
    max-width: 100%;
    width: 760px;
}

.policy-prose {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--rcm-ink-soft);
}

.policy-prose h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--rcm-ink);
    margin: 56px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rcm-line);
    scroll-margin-top: 120px;
}
.policy-prose h2:first-child { margin-top: 8px; }

.policy-prose p { margin: 0 0 14px; }

.policy-prose ul,
.policy-prose ol {
    padding-left: 0;
    margin: 0 0 16px;
    list-style: none;
}
.policy-prose li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.7;
}
.policy-prose ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1;
    color: var(--rcm-ember);
    top: 2px;
}
.policy-prose ol { list-style: decimal; padding-left: 20px; }
.policy-prose ol li::before { display: none; }

.policy-prose strong { color: var(--rcm-ink); font-weight: 500; }

.policy-prose a {
    color: var(--rcm-ember-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--rcm-ember-deep);
}
.policy-prose a:hover { color: var(--rcm-ink); border-color: var(--rcm-ink); }

.policy-prose blockquote {
    background: var(--rcm-bone);
    border-left: 3px solid var(--rcm-ember);
    padding: 20px 24px;
    margin: 18px 0 28px;
    border-radius: var(--r-sm);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--rcm-ink-soft);
}
.policy-prose blockquote strong { color: var(--rcm-ink); }
.policy-prose blockquote a { color: var(--rcm-ember-deep); }

.policy-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: 14px;
}
.policy-prose th,
.policy-prose td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--rcm-line);
    vertical-align: top;
    line-height: 1.6;
}
.policy-prose th {
    background: var(--rcm-bone);
    color: var(--rcm-ink);
    font-weight: 600;
    width: 35%;
}
.policy-prose td { color: var(--rcm-ink-soft); }

/* RODO accordions */

.policy-clauses {
    margin-top: 28px;
    border-top: 1px solid var(--rcm-line);
}

.policy-clause {
    border-bottom: 1px solid var(--rcm-line);
}

.policy-clause summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--rcm-ink);
    list-style: none;
    background: transparent;
    user-select: none;
    transition: color 0.2s;
}
.policy-clause summary:hover { color: var(--rcm-forest-deep); }
.policy-clause summary::-webkit-details-marker { display: none; }

.policy-clause summary::after {
    content: '+';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--rcm-line);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--rcm-ink-soft);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.policy-clause[open] summary::after {
    content: '\00D7';
    background: var(--rcm-ink);
    color: var(--rcm-cream);
    border-color: var(--rcm-ink);
}

.policy-clause__body {
    padding: 6px 4px 28px;
}

.policy-clause__ctx {
    font-size: 13.5px;
    color: var(--rcm-ink-mute);
    font-style: italic;
    margin: 0 0 14px;
}

.policy-clause table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 8px;
}
.policy-clause th,
.policy-clause td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--rcm-line-soft);
    vertical-align: top;
    line-height: 1.6;
    font-size: 14px;
}
.policy-clause th {
    background: var(--rcm-bone);
    font-weight: 500;
    color: var(--rcm-ink);
    width: 200px;
}
.policy-clause td { color: var(--rcm-ink-soft); }

.policy-clause__note {
    margin: 14px 0 0;
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
}

/* Contact CTA */

.policy-contact {
    margin-top: 64px;
    padding: 40px 44px;
    background: var(--rcm-forest-deep);
    color: var(--rcm-cream);
    border-radius: 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-contact .eyebrow--ember { color: var(--rcm-ember-soft); }

.policy-contact__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: var(--rcm-cream);
    margin: 12px auto 14px;
}
.policy-contact__title em {
    color: var(--rcm-ember-soft);
    font-style: italic;
}

.policy-contact__lead {
    font-size: 15px;
    color: rgba(247, 241, 229, 0.78);
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 100%;
    width: 480px;
}

.policy-contact__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 960px) {
    .policy-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .policy-toc { position: static; }
    .policy-hero__meta { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 600px) {
    .policy-hero__meta { grid-template-columns: 1fr 1fr; }
    .policy-contact { padding: 32px 24px; }
}

@media (max-width: 540px) {
    .policy-clause__body { overflow-x: auto; }
    .policy-clause th { min-width: 130px; width: auto; }
}

/* === Kontakt === */

/* Cards */

.contact-cards {
    padding: clamp(32px, 4vw, 48px) 0 0;
    background: var(--rcm-cream-soft);
}

.contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 22px 20px;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

a.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -12px rgba(30, 26, 20, 0.15);
    border-color: rgba(30, 26, 20, 0.25);
}

.contact-card__icon { color: var(--rcm-forest); }

.contact-card__label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
    margin-top: 4px;
    font-weight: 500;
}

.contact-card__value {
    font-family: var(--font-serif);
    font-size: 19px;
    line-height: 1.2;
    color: var(--rcm-ink);
}

.contact-card__sub {
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
    line-height: 1.4;
}

/* Map + form split */

.contact-split {
    padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 7vw, 80px);
    background: var(--rcm-cream-soft);
}

.contact-split__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-map {
    position: relative;
    min-height: 480px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--rcm-line);
    background: linear-gradient(135deg, #DDE0CC, #BFC6A8);
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: var(--rcm-ink-mute);
}

.contact-form-box {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: 22px;
    padding: 36px;
}

.contact-form-box__title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    color: var(--rcm-ink);
    margin: 14px 0 0;
    line-height: 1.2;
}

/* CF7 form */

.cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    margin-top: 28px;
}

.cf7-field {
    display: block;
    min-width: 0;
}

.cf7-field--wide { grid-column: 1 / -1; }

.cf7-field > p {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.cf7-field br { display: none; }

.cf7-field .wpcf7-form-control-wrap { display: block; width: 100%; }

.cf7-field label {
    font-size: 11px;
    font-weight: 500;
    color: var(--rcm-ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 10px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rcm-line);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--rcm-ink);
    line-height: 1.5;
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    border-bottom-color: var(--rcm-ember);
    box-shadow: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: var(--rcm-ink-mute); }

.wpcf7 textarea {
    resize: vertical;
    min-height: 130px;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; }

.wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12.5px;
    color: var(--rcm-ink-mute);
    line-height: 1.55;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--rcm-forest);
    cursor: pointer;
}

.wpcf7 .wpcf7-acceptance a {
    color: var(--rcm-ember-deep);
    text-decoration: underline;
}

.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: var(--rcm-ember);
    color: #FAF5EB;
    border: none;
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 18px -8px rgba(250, 74, 1, 0.5);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--rcm-ember-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(181, 87, 30, 0.55);
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 11.5px;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}

.wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    border: 1px solid transparent;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background: rgba(74, 93, 63, 0.08);
    border-color: rgba(74, 93, 63, 0.25);
    color: var(--rcm-forest-deep);
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    background: rgba(192, 57, 43, 0.07);
    border-color: rgba(192, 57, 43, 0.22);
    color: #c0392b;
}

/* Info columns */

.contact-info {
    padding: clamp(48px, 7vw, 80px) 0;
    background: var(--rcm-bone);
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-info__eyebrow { color: var(--rcm-forest); }

.contact-info__col-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    color: var(--rcm-ink);
    margin: 14px 0 0;
    line-height: 1.2;
}

.contact-info__col-text {
    margin-top: 12px;
    font-size: 14.5px;
    color: var(--rcm-ink-soft);
    line-height: 1.65;
}

/* Responsive */

@media (max-width: 960px) {
    .contact-split__grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 320px; }
    .contact-info__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
    .contact-cards__grid { grid-template-columns: 1fr 1fr; }
    .cf7-grid { grid-template-columns: 1fr; }
    .cf7-field--wide { grid-column: 1; }
}

@media (max-width: 480px) {
    .contact-cards__grid { grid-template-columns: 1fr; }
    .contact-info__grid { grid-template-columns: 1fr; }
    .contact-form-box { padding: 24px 20px; }
    .contact-map { min-height: 260px; }
}
/* === Hero — Strona główna === */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--rcm-ink);
    display: flex;
    align-items: stretch;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,26,20,0.05) 0%, rgba(30,26,20,0.5) 70%, rgba(30,26,20,0.78) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(44px, 5.5vw, 64px) 0 clamp(40px, 5vw, 56px);
    color: var(--rcm-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero__content--center {
    align-items: center;
    text-align: center;
}

.eyebrow--cream { color: var(--rcm-cream); }

.hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--rcm-cream);
    margin: 18px 0 0;
    max-width: 20ch;
}

.hero__title em {
    color: var(--rcm-ember-soft);
    font-style: italic;
    font-weight: 400;
}

.hero__lead {
    font-size: clamp(17px, 1.4vw, 21px);
    color: rgba(247, 241, 229, 0.92);
    max-width: 620px;
    line-height: 1.6;
    margin: 24px 0 0;
}

.hero__content--center .hero__lead {
    margin-left: auto;
    margin-right: auto;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.hero__content--center .hero__ctas { justify-content: center; }

.hero__rating {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    background: rgba(247, 241, 229, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(247, 241, 229, 0.18);
    border-radius: var(--r-pill);
}

.hero__rating-stars {
    display: flex;
    gap: 3px;
    color: #FFB400;
    font-size: 18px;
    line-height: 1;
}

.hero__rating-stars .star--empty { color: rgba(247, 241, 229, 0.25); }

.hero__rating-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero__rating-text strong {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--rcm-cream);
}

.hero__rating-text span {
    font-size: 13.5px;
    color: rgba(247, 241, 229, 0.72);
}

.hero__mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: var(--rcm-cream);
    pointer-events: none;
    line-height: 0;
}

@media (max-width: 640px) {
    .hero__title { font-size: clamp(36px, 10vw, 54px); }
    .hero__rating { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: clamp(32px, 9vw, 44px); max-width: 100%; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .abtn { justify-content: center; }
}

/* === Advantages — Strona główna === */

.advan {
    background: var(--rcm-bone);
    position: relative;
}

.advan__header {
    text-align: center;
    max-width: 100%;
    width: 760px;
    margin: 0 auto;
    padding-top: clamp(64px, 7vw, 96px);
}

.advan__header .section-heading {
    margin-top: 12px;
}

.advan__header .section-lead {
    margin-top: 22px;
}

.about-clinic .eyebrow {
    color: var(--rcm-ember-soft);
}

.advan__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rcm-line);
    border-bottom: 1px solid var(--rcm-line);
    margin-top: clamp(40px, 5vw, 64px);
}

.advan-card {
    padding: 56px 32px;
    border-right: 1px solid var(--rcm-line);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background .25s ease;
}

.advan-card:last-child { border-right: none; }
.advan-card:hover { background: var(--rcm-cream-soft); }

.advan-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.advan-card__num {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--rcm-ember-deep);
    letter-spacing: 0.1em;
}

.advan-card__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.advan-card__title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--rcm-ink);
    margin: 0;
}

.advan-card__body {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--rcm-ink-soft);
    margin: 0;
}

@media (max-width: 900px) {
    .advan__grid { grid-template-columns: repeat(2, 1fr); }
    .advan-card:nth-child(2) { border-right: none; }
    .advan-card:nth-child(1),
    .advan-card:nth-child(2) { border-bottom: 1px solid var(--rcm-line); }
}

@media (max-width: 540px) {
    .advan__grid { grid-template-columns: 1fr; }
    .advan-card { border-right: none; border-bottom: 1px solid var(--rcm-line); padding: 36px 20px; }
    .advan-card:last-child { border-bottom: none; }
}

/* === Services Section === */

.svc-section {
    padding: clamp(72px, 8vw, 112px) 0;
    background: var(--rcm-cream-soft);
}

.svc-section__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.svc-card {
    position: relative;
    background: var(--rcm-cream);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 320px;
    text-decoration: none;
    color: var(--rcm-ink);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -25px rgba(30, 26, 20, 0.2);
    border-color: var(--rcm-ember);
}

.svc-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.svc-card__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--rcm-ember-deep);
}

.svc-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rcm-bone);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .3s ease, transform .3s ease;
}

.svc-card:hover .svc-card__icon {
    background: var(--rcm-ember);
    transform: rotate(-8deg);
}

.svc-card__icon img {
    display: block;
    transition: filter .3s ease;
}

.svc-card:hover .svc-card__icon img {
    filter: brightness(0) invert(1);
}

.svc-card__title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0;
}

.svc-card__body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rcm-ink-soft);
    margin: 0;
}

.svc-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--rcm-line);
    color: var(--rcm-ink-soft);
    display: grid;
    place-items: center;
    align-self: flex-start;
    margin-top: auto;
    flex-shrink: 0;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.svc-card:hover .svc-card__arrow {
    background: var(--rcm-ember);
    color: var(--rcm-cream);
    border-color: var(--rcm-ember);
    transform: rotate(45deg);
}

.svc-card--feature {
    grid-column: span 2;
    background-color: var(--rcm-forest-deep);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    color: var(--rcm-cream);
    min-height: 360px;
}

.svc-card--feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47, 61, 42, 0.45) 0%, rgba(31, 40, 28, 0.82) 100%);
}

.svc-card--feature > * { position: relative; z-index: 1; }

.svc-card--feature .svc-card__title {
    color: var(--rcm-cream);
    font-size: 36px;
}

.svc-card--feature .svc-card__body {
    color: rgba(247, 241, 229, 0.85);
}

.svc-card--feature .svc-card__num {
    color: var(--rcm-ember-soft);
}

.svc-card--feature .svc-card__arrow {
    background: var(--rcm-ember);
    color: var(--rcm-cream);
    border-color: var(--rcm-ember);
}

.svc-card--feature .svc-card__icon {
    background: rgba(247, 241, 229, 0.15);
}

.svc-card--feature:hover .svc-card__icon {
    background: var(--rcm-ember);
}

@media (max-width: 900px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-card--feature { grid-column: span 2; }
    .svc-section__header { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 540px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-card--feature { grid-column: span 1; min-height: 0; }
    .svc-section { padding: 64px 0; }
}

/* === About Clinic === */

.about-clinic {
    position: relative;
    overflow: hidden;
    background: var(--rcm-forest-deep);
    color: var(--rcm-cream);
    padding: clamp(72px, 8vw, 112px) 0;
}

.about-clinic__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.about-clinic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30,26,20,0.92) 0%, rgba(30,26,20,0.6) 60%, rgba(30,26,20,0.85) 100%);
}

.about-clinic__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-clinic__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-clinic__text .section-heading {
    margin-top: 4px;
}

.about-clinic__stats {
    display: flex;
    gap: 36px;
    margin-top: 16px;
}

.about-clinic__stat-num {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1;
    color: var(--rcm-cream);
}

.about-clinic__stat-label {
    font-size: 12px;
    color: rgba(247, 241, 229, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

.about-clinic__visual {
    position: relative;
}

.about-clinic__photo {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    border: 6px solid var(--rcm-cream);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.about-clinic__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-clinic__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--rcm-cream);
    color: var(--rcm-ink);
    padding: 12px 16px;
    border-radius: var(--r-md);
    max-width: 200px;
    box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.3);
}

.about-clinic__badge-title {
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.about-clinic__badge-sub {
    font-size: 11.5px;
    color: var(--rcm-ink-mute);
    line-height: 1.4;
}

@media (max-width: 960px) {
    .about-clinic__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-clinic__visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .about-clinic { padding: 64px 0; }
    .about-clinic__stats { flex-wrap: wrap; gap: 24px; }
    .about-clinic__badge { right: 0; bottom: -12px; }
}

/* === Team Teaser === */

.team-teaser {
    padding: clamp(72px, 8vw, 112px) 0;
    background: var(--rcm-cream);
}

.team-teaser--bone {
    background: var(--rcm-bone);
}

.team-teaser__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 48px;
}

.team-teaser__header-link {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.team-teaser .team-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.team-teaser .team-card {
    height: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rcm-forest-deep);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--rcm-forest-deep);
    transition: opacity 0.2s ease;
}

.link-arrow svg {
    transition: transform 0.2s ease;
}

.link-arrow:hover {
    opacity: 0.7;
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .team-teaser__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-teaser__header-link {
        justify-content: flex-start;
    }
    .team-teaser .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .team-teaser { padding: 64px 0; }
    .team-teaser .team-grid { grid-template-columns: 1fr; }
}

/* === Price Teaser === */

.price-teaser {
    padding: clamp(72px, 8vw, 112px) 0;
    background: var(--rcm-bone);
}

.price-teaser__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.price-teaser__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-teaser__text .abtn {
    align-self: flex-start;
}

.price-teaser__card {
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: 36px;
}

.price-teaser__card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.price-teaser__card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--rcm-ink);
}

.price-teaser__card-since {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rcm-ink-mute);
}

.price-teaser__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid var(--rcm-line);
}

.price-teaser__row:first-child {
    border-top: none;
    padding-top: 0;
}

.price-teaser__row-label {
    font-size: 15px;
    color: var(--rcm-ink-soft);
}

.price-teaser__row-price {
    font-family: var(--font-serif);
    font-size: 18px;
    white-space: nowrap;
    color: var(--rcm-ink);
    margin-left: 16px;
}

@media (max-width: 900px) {
    .price-teaser__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 540px) {
    .price-teaser { padding: 64px 0; }
    .price-teaser__card { padding: 24px; }
}

/* === Testimonials === */

.testimonial-section {
    padding: clamp(72px, 8vw, 112px) 0;
    background: var(--rcm-cream);
    overflow: hidden;
}

.testimonial-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 48px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonial-scroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: var(--rcm-cream-soft);
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card__mark {
    color: var(--rcm-forest-deep);
    opacity: 0.25;
    line-height: 1;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--rcm-ink-soft);
    flex: 1;
    margin: 0;
}

.testimonial-card__byline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rcm-forest-deep);
    color: var(--rcm-cream);
    font-family: var(--font-serif);
    font-size: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--rcm-ink);
}

.testimonial-card__meta {
    font-size: 12px;
    color: var(--rcm-ink-mute);
    margin-top: 2px;
}

.testimonial-card__stars {
    color: #D4A41C;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.testimonial-section__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--rcm-ink-mute);
}

.testimonial-section__score {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--rcm-ink);
}

@media (max-width: 540px) {
    .testimonial-section { padding: 64px 0; }
    .testimonial-card { width: 300px; }
}

@media (max-width: 360px) {
    .testimonial-card { width: calc(100vw - 48px); }
}

/* === Blog Teaser === */

.blog-teaser {
    padding: clamp(48px, 5vw, 72px) 0 clamp(72px, 8vw, 112px);
}

.blog-teaser__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 48px;
}

.blog-teaser__header-link {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .blog-teaser__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-teaser__header-link {
        justify-content: flex-start;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .blog-teaser { padding: 64px 0; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* === Page — Strona standardowa === */

.page-hero {
    padding: clamp(40px, 5vw, 72px) 0;
    background: var(--rcm-cream-soft);
    border-bottom: 1px solid var(--rcm-line-soft);
}

.page-hero__inner {
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 72px);
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--rcm-ink);
    margin: 0;
}

.page-body {
    padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 8vw, 120px);
    background: var(--rcm-cream);
}

.page-body__inner {
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 72px);
}

/* Prose — typografia treści z edytora WP */

.prose {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.72;
    color: var(--rcm-ink-soft);
}

.prose > * + * { margin-top: 1.4em; }
.prose > *:first-child { margin-top: 0; }

.prose h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--rcm-ink);
    margin-top: 2.2em;
    margin-bottom: 0.5em;
}

.prose h3 {
    font-family: var(--font-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--rcm-ink);
    margin-top: 1.8em;
    margin-bottom: 0.4em;
}

.prose h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--rcm-ink);
    letter-spacing: 0.01em;
    margin-top: 1.6em;
    margin-bottom: 0.3em;
}

.prose p { margin: 0; }
.prose p + p { margin-top: 1.2em; }

.prose a {
    color: var(--rcm-forest);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}
.prose a:hover { color: var(--rcm-forest-deep); }

.prose strong { font-weight: 600; color: var(--rcm-ink); }
.prose em { font-style: italic; }

.prose ul,
.prose ol {
    padding-left: 1.6em;
    margin: 0;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.45em; }
.prose li:last-child { margin-bottom: 0; }
.prose li + li { margin-top: 0; }

.prose blockquote {
    border-left: 3px solid var(--rcm-forest);
    margin: 0;
    padding: 4px 0 4px 24px;
    font-style: italic;
    color: var(--rcm-ink-mute);
}
.prose blockquote p { margin: 0; }

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r-md);
    display: block;
}

.prose figure {
    margin: 0;
}
.prose figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: var(--rcm-ink-mute);
    text-align: center;
    font-style: italic;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.prose th,
.prose td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--rcm-line-soft);
    vertical-align: top;
    line-height: 1.6;
}
.prose th {
    background: var(--rcm-bone);
    font-weight: 500;
    color: var(--rcm-ink);
    font-size: 13.5px;
    letter-spacing: 0.02em;
}
.prose td { color: var(--rcm-ink-soft); }

.prose hr {
    border: none;
    border-top: 1px solid var(--rcm-line);
    margin: 2.4em 0;
}

.prose .wp-block-image,
.prose .aligncenter { text-align: center; }
.prose .alignleft  { float: left;  margin: 0 24px 16px 0; }
.prose .alignright { float: right; margin: 0 0 16px 24px; }

@media (max-width: 600px) {
    .prose { font-size: 16px; }
    .prose .alignleft,
    .prose .alignright { float: none; margin: 0; }
    .prose table { display: block; overflow-x: auto; }
}

/* ═══════════════════════════════════════════════
   HERO QUICKLINKS — szybki dostęp do specjalizacji
   ═══════════════════════════════════════════════ */
.hero-quicklinks {
    position: relative;
    z-index: 5;
    margin-top: -54px;
}
.hero-quicklinks .container { max-width: 1300px; }
.hero-quicklinks__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.hero-quicklink {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(30, 26, 20, 0.07);
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    color: var(--rcm-ink);
    box-shadow: 0 14px 34px rgba(20, 16, 10, 0.10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hero-quicklink:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(20, 16, 10, 0.16);
    border-color: rgba(250, 74, 1, 0.35);
}
.hero-quicklink__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(250, 74, 1, 0.10);
}
.hero-quicklink__icon img { display: block; }
.hero-quicklink__label {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}
.hero-quicklink__arrow {
    color: var(--rcm-ember);
    flex-shrink: 0;
    transition: transform .2s ease;
}
.hero-quicklink:hover .hero-quicklink__arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .hero-quicklinks__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
    .hero-quicklinks { margin-top: -30px; }
    .hero-quicklinks__grid { grid-template-columns: 1fr; gap: 10px; }
    .hero-quicklink { padding: 16px 18px; }
}

/* ═══════════════════════════════════════════════
   HERO SLAJDER + PAGER + SOCIAL BAR (styl Moreno)
   ═══════════════════════════════════════════════ */
.hero__slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.0);
    transition: opacity 1.5s cubic-bezier(.4, 0, .2, 1), transform 8s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}
/* płynny cross-fade + powolny zoom (zamiast skaczącego Ken Burnsa) */
.hero__slide.is-active { opacity: 1; transform: scale(1.09); }
.hero__slide::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(18,14,9,.42) 0%, rgba(18,14,9,.38) 45%, rgba(18,14,9,.72) 100%),
        radial-gradient(120% 85% at 50% 38%, rgba(18,14,9,.42) 0%, rgba(18,14,9,.20) 46%, transparent 76%);
}

/* Pager (numer + kreski) */
.hero__pager {
    position: absolute; left: clamp(20px, 5vw, 72px); bottom: clamp(100px, 13vw, 132px);
    z-index: 6; display: flex; flex-direction: column; gap: 12px;
    color: var(--rcm-cream);
}
.hero__pager-num { font-family: var(--font-serif); font-size: 15px; letter-spacing: .04em; line-height: 1; }
.hero__pager-num strong { font-size: 30px; font-weight: 500; color: #fff; }
.hero__pager-total { opacity: .6; }
.hero__pager-bars { display: flex; gap: 8px; }
.hero__pager-bar {
    width: 34px; height: 3px; padding: 0; border: none; border-radius: 2px;
    background: rgba(255,255,255,.32); cursor: pointer; transition: background .3s, width .3s;
}
.hero__pager-bar.is-active { background: var(--rcm-ember); width: 46px; }

/* Social bar pionowy (prawa) */
.hero__social {
    position: absolute; right: clamp(16px, 3vw, 44px); top: 50%; transform: translateY(-50%);
    z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.hero__social-label {
    writing-mode: vertical-rl; transform: rotate(180deg);
    letter-spacing: .32em; font-size: 11px; font-weight: 600;
    color: var(--rcm-cream); opacity: .85;
}
.hero__social-line { width: 1px; height: 56px; background: linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,0)); }
.hero__social a {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--rcm-cream);
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.hero__social a:hover { background: var(--rcm-ember); border-color: var(--rcm-ember); color: #fff; transform: translateY(-2px); }

@media (max-width: 992px) {
    .hero__social { display: none; }
    .hero__pager { left: 20px; bottom: 86px; }
    .hero__pager-num strong { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    .hero__slide.is-active { animation: none; transform: none; }
    .hero__slide { transition: none; }
}

/* ═══════════════════════════════════════════════
   HERO TITLE — efekt WOW (gradient akcent + mask reveal)
   ═══════════════════════════════════════════════ */
.hero__title--wow { display: block; }
.hero__tl {
    display: block;
    overflow: hidden;
    padding: 0.06em 0.02em;
    margin: -0.04em 0;
}
.hero__ti {
    display: inline-block;
    transform: translateY(118%);
    will-change: transform;
}
.hero__title--wow .hero__tl:nth-child(1) .hero__ti { animation: heroMaskUp 1.05s 0.25s cubic-bezier(.16, 1, .3, 1) forwards; }
.hero__title--wow .hero__tl:nth-child(2) .hero__ti { animation: heroMaskUp 1.05s 0.42s cubic-bezier(.16, 1, .3, 1) forwards; }
@keyframes heroMaskUp { from { transform: translateY(118%); } to { transform: translateY(0); } }

/* akcent „Twoje zdrowie" — gradient pomarańcz + glow */
.hero__ti--accent {
    font-style: italic;
    background: linear-gradient(105deg, #FF8A52 0%, #FA4A01 52%, #D8420A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 6px 28px rgba(250, 74, 1, 0.40));
}
/* biała część — subtelna głębia na zdjęciu */
.hero__title--wow .hero__ti:not(.hero__ti--accent) {
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.30);
}

@media (prefers-reduced-motion: reduce) {
    .hero__ti { transform: none !important; animation: none !important; }
}

/* Hero title — 3. linia (reveal) + animowane podkreślenie */
.hero__title--wow .hero__tl:nth-child(3) .hero__ti { animation: heroMaskUp 1.05s 0.58s cubic-bezier(.16, 1, .3, 1) forwards; }
.hero__ti--underline { position: relative; }
.hero__ti--underline::after {
    content: ""; position: absolute; left: 1%; right: 1%; bottom: -0.04em;
    height: 5px; border-radius: 3px;
    background: linear-gradient(90deg, #FF7A45 0%, #FA4A01 100%);
    transform: scaleX(0); transform-origin: left center;
    animation: heroUnderline 0.85s 1.85s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes heroUnderline { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
    .hero__ti--underline::after { transform: scaleX(1); animation: none; }
}

/* ═══════════════════════════════════════════════
   POPRAWKI: góry usunięte, CTA ze zdjęciem, odstępy
   ═══════════════════════════════════════════════ */
/* Usunięcie dekoracyjnych „gór" z całego projektu */
[class*="__mountains"] { display: none !important; }

/* Final CTA — zdjęcie gabinetu w tle + ciemny overlay (czytelność) */
.final-cta {
    background:
        linear-gradient(rgba(255, 255, 255, 0.90), rgba(250, 245, 235, 0.93)),
        url('/wp-content/uploads/2026/05/hero-gabinet-kresy.jpg') center center / cover no-repeat;
}

/* Rozdzielacz u góry sekcji — taki sam jak na dole (.site-footer::before) */
.final-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: min(560px, 72%); height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--rcm-ember) 50%, transparent);
    z-index: 2;
}

/* Jasny overlay → treści w ciemnej kolorystyce */
.final-cta__title { color: var(--rcm-ink); }
.final-cta__title em { color: var(--rcm-ember); }
.final-cta__lead { color: var(--rcm-ink-mute); }
/* przycisk-telefon (ghost-inv był jasny — niewidoczny na bieli) → ciemny ghost */
.final-cta .abtn--ghost-inv {
    border-color: rgba(30, 26, 20, 0.20);
    color: var(--rcm-ink);
}
.final-cta .abtn--ghost-inv:hover {
    border-color: var(--rcm-ink);
    background: rgba(30, 26, 20, 0.05);
    color: var(--rcm-ink);
}

/* Quicklinks — większy odstęp od opinii (mniejszy overlap na hero) */
.hero-quicklinks { margin-top: -14px; }
@media (max-width: 520px) { .hero-quicklinks { margin-top: -10px; } }

/* ═══════════════════════════════════════════════
   HERO — pager pionowy po lewej (desktop, lustro do social) (2026-05-31)
   ═══════════════════════════════════════════════ */
@media (min-width: 993px) {
    .hero__pager {
        left: clamp(16px, 3vw, 44px);
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .hero__pager-num {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        letter-spacing: .06em;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .hero__pager-num strong { font-size: 26px; }
    .hero__pager-bars { flex-direction: column; gap: 8px; }
    .hero__pager-bar { width: 3px; height: 34px; }
    .hero__pager-bar.is-active { width: 3px; height: 46px; }
}

/* ═══════════════════════════════════════════════
   HERO MOBILE — oddech + brak nakładania pager/ocena (2026-05-31)
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
    /* .hero jest flexem (row) — bez tego pager wskakuje jako druga kolumna;
       padding-bottom = oddech pod paskiem postępu */
    .hero { flex-direction: column; padding-bottom: 34px; }
    /* .container ma 0px paddingu poziomego na mobile — dodajemy oddech po bokach */
    .hero__content {
        padding-top: clamp(30px, 9vw, 48px);
        padding-bottom: 22px;
        padding-left: clamp(20px, 6vw, 30px);
        padding-right: clamp(20px, 6vw, 30px);
    }
    .hero__lead { margin-top: 18px; }
    .hero__ctas { margin-top: 30px; gap: 12px; }
    .hero__rating { margin-top: 28px; }

    /* pager z absolutu → do flow, wyśrodkowany pod treścią, z odstępem */
    .hero__pager {
        position: static;
        left: auto; bottom: auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        width: 100%;
        margin: 30px 0 0;
    }
    .hero__pager-num strong { font-size: 22px; }

    /* quicklinks nie nachodzą już na pager (był -10px overlap) */
    .hero-quicklinks { margin-top: 0; }
}

@media (max-width: 480px) {
    /* header jest teraz sticky (w flow) — body bez padding-top */
    .hero__content { padding-top: 32px; padding-bottom: 18px; }
    /* buttony i pasek opinii równej szerokości (100% paddowanego contentu) */
    .hero__ctas { margin-top: 26px; width: 100%; }
    .hero__ctas .abtn { width: 100%; }
    .hero__rating { margin-top: 24px; width: 100%; justify-content: center; box-sizing: border-box; }
    .hero__pager { margin-top: 26px; }
}

/* ═══════════════════════════════════════════════
   DROPDOWN "Usługi" → mega-menu PRO z ikonami (2026-05-31)
   ═══════════════════════════════════════════════ */
.dropdown {
    min-width: 332px;
    padding: 12px;
    padding-top: 13px;
    border-radius: 18px;
    box-shadow: 0 30px 60px -24px rgba(30, 26, 20, 0.30);
}
.dropdown__item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 12px;
    border-radius: 13px;
    position: relative;
}
.dropdown__item-ico {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(250, 74, 1, 0.10);
    color: var(--rcm-ember);
    transition: background .22s ease, color .22s ease, transform .22s ease;
}
.dropdown__item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.dropdown__item-arrow {
    flex-shrink: 0;
    color: var(--rcm-ember);
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity .22s ease, transform .22s ease;
}
/* override starego zielonkawego hovera */
.dropdown__item:hover {
    background: rgba(250, 74, 1, 0.06);
    color: inherit;
}
.dropdown__item:hover .dropdown__item-ico {
    background: var(--rcm-ember);
    color: #fff;
    transform: scale(1.06) rotate(-3deg);
}
.dropdown__item:hover .dropdown__item-title { color: var(--rcm-ember-deep); }
.dropdown__item:hover .dropdown__item-arrow { opacity: 1; transform: none; }

/* "Wszystkie usługi" jako wyróżniony skrót na górze */
.dropdown__item:first-child {
    margin-bottom: 6px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(30, 26, 20, 0.08);
    border-radius: 13px 13px 0 0;
}

/* ═══════════════════════════════════════════════
   Podpisy zdjęć / góry / rozdzielacz / karty zespołu (2026-05-31)
   ═══════════════════════════════════════════════ */

/* #13 — góry w tle WSZĘDZIE (łapie też liczbę pojedynczą .bentogrid__mountain) */
[class*="__mountain"] { display: none !important; }

/* #11 — podpis przy zdjęciu w sekcji „O klinice" (front) */
.about-clinic__badge { display: none !important; }

/* #12 — podpisy w galerii na stronie O klinice + ich przyciemniający gradient */
.bentogrid-item__caption { display: none !important; }
.bentogrid-item::after { display: none !important; }

/* #14 — rozdzielacz między sekcją CTA a stopką (obie ciemne, zlewały się) */
.site-footer { position: relative; border-top: 1px solid rgba(247, 241, 229, 0.12); }
.site-footer::before {
    content: "";
    position: absolute;
    top: -2px; left: 50%; transform: translateX(-50%);
    width: min(560px, 72%); height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--rcm-ember) 50%, transparent);
}

/* Karty zespołu BEZ zdjęć — kompaktowy monogram zamiast pustego bloku 4/5 */
.team-card:has(.team-card__photo--placeholder) {
    text-align: center;
    background: linear-gradient(180deg, #FBF6EC 0%, var(--rcm-cream-soft) 100%);
}
.team-card__photo--placeholder {
    aspect-ratio: auto;
    background: none;
    padding: 30px 22px 2px;
    font-size: 0;
}
.team-card__photo--placeholder span {
    width: 88px; height: 88px;
    font-size: 31px; font-weight: 400;
    color: var(--rcm-forest-deep);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(30, 26, 20, 0.06), 0 12px 26px -14px rgba(30, 26, 20, 0.40);
    position: relative;
    padding-top: 5px;
}
.team-card__photo--placeholder span::after {
    content: "";
    position: absolute; inset: -7px;
    border-radius: 50%;
    border: 1.5px solid rgba(250, 74, 1, 0.28);
}
.team-card:has(.team-card__photo--placeholder) .team-card__body { align-items: center; padding-top: 14px; }
.team-card:has(.team-card__photo--placeholder) .team-card__tags { justify-content: center; }
.team-card:has(.team-card__photo--placeholder) .team-card__bio-text { text-align: left; }

/* ═══════════════════════════════════════════════
   PULLQUOTE (O klinice) — wariant editorial PRO (2026-05-31)
   ═══════════════════════════════════════════════ */
.quote {
    background: linear-gradient(180deg, #FFFDF8 0%, var(--rcm-cream-soft) 100%);
    border: 1px solid var(--rcm-line);
    border-radius: 26px;
    box-shadow: 0 34px 74px -44px rgba(30, 26, 20, 0.34);
    padding: clamp(48px, 6vw, 84px) clamp(30px, 6vw, 92px);
    position: relative;
    overflow: hidden;
    text-align: center;
}
/* delikatny akcent ember w narożniku */
.quote::after {
    content: "";
    position: absolute;
    top: -90px; right: -90px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 74, 1, 0.10), transparent 70%);
    pointer-events: none;
}
.quote__inner { align-items: center; gap: 26px; position: relative; z-index: 1; }

/* duży znak cudzysłowu — akcent, pełny ember, wyśrodkowany */
.quote__mark-svg {
    color: var(--rcm-ember);
    opacity: 1;
    margin: 0 auto 2px;
    width: 56px; height: 56px;
    line-height: 0;
}
.quote__mark-svg svg { width: 56px; height: 56px; }

.quote__text {
    font-size: clamp(21px, 2.3vw, 31px);
    line-height: 1.5;
    max-width: 32ch;
    margin: 0 auto;
}

/* byline wyśrodkowany + krótka kreska ember zamiast pełnoszerokiej */
.quote__byline {
    border-top: none;
    justify-content: center;
    padding-top: 30px;
    position: relative;
    text-align: left;
}
.quote__byline::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 46px; height: 2px; border-radius: 2px;
    background: var(--rcm-ember);
}
.quote__avatar {
    width: 52px; height: 52px;
    font-size: 18px;
    box-shadow: 0 0 0 4px rgba(74, 93, 63, 0.12);
}

/* ═══════════════════════════════════════════════
   Fix monogramu zespołu (ścięty pierścień) + skyline→rozdzielacz (2026-05-31)
   ═══════════════════════════════════════════════ */

/* #12 — .team-card__photo ma overflow:hidden i przycinał pierścień monogramu na dole */
.team-card__photo--placeholder {
    overflow: visible;
    padding: 32px 22px 16px;
}

/* #13 — skyline (góry na stronie O klinice) → czysty gradientowy rozdzielacz */
.skyline { opacity: 1; display: flex; justify-content: center; padding: clamp(10px, 2vw, 20px) 0; }
.skyline svg { display: none !important; }
.skyline::before {
    content: "";
    width: min(560px, 78%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 26, 20, 0.16), transparent);
}

/* #2 (team page) — footer karty pełnej szerokości: "Rozwiń biogram" i "Umów" rozsunięte
   (align-items:center na body zwijał space-between) */
.team-card:has(.team-card__photo--placeholder) .team-card__footer { align-self: stretch; }

/* Strona zespołu — karty zawsze widoczne (filtr nie może czekać na scroll-reveal AOS);
   teasery na froncie/about zachowują animację wejścia */
.team-section .js-team-card { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════════════
   Sekcje beżowe → białe tło + tło zdjęciowe w "Kariera" (2026-05-31)
   ═══════════════════════════════════════════════ */
body { background: #fff; }

/* sekcje z beżem (bone/cream/cream-soft) → białe; karty/akcenty zostają */
.advan, .svc-section, .team-teaser, .team-teaser--bone, .price-teaser,
.testimonial-section, .blog-teaser, .numstrip, .roomgrid, .boxes, .imgtext {
    background: #fff !important;
}

/* #C — sekcja "Kariera w Kresach" (team-jobs): zdjęcie w tle zamiast pustej zieleni */
.team-jobs {
    background:
        linear-gradient(rgba(30, 26, 20, 0.88), rgba(30, 26, 20, 0.93)),
        url('/wp-content/uploads/2026/05/hero-klinika-kresy.jpg') center center / cover no-repeat !important;
}

/* ═══════════════════════════════════════════════
   Wyróżnione fragmenty nagłówków → gradient jak w hero (2026-05-31)
   ═══════════════════════════════════════════════ */
.section-heading span,
.section-heading--inv span {
    background: linear-gradient(105deg, #FF8A52 0%, #FA4A01 52%, #D8420A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 4px 16px rgba(250, 74, 1, 0.18));
}

/* === Ikony outline w głównym menu (2026-05-31) === */
.site-nav__item { gap: 7px; }
.site-nav__item-ico { display: inline-flex; align-items: center; flex-shrink: 0; opacity: .82; }
.site-nav__item-ico svg { width: 16px; height: 16px; display: block; }
.site-nav__item:hover .site-nav__item-ico,
.site-nav__item--active .site-nav__item-ico { opacity: 1; }

/* === Ikony w menu mobilnym (drawer) (2026-05-31) === */
.site-header__mobile-item { display: flex; align-items: center; gap: 12px; }
.site-header__mobile-item-ico { display: inline-flex; align-items: center; flex-shrink: 0; opacity: .68; color: var(--rcm-ink); }
.site-header__mobile-item-ico svg { width: 19px; height: 19px; display: block; }
.site-header__mobile-item:hover .site-header__mobile-item-ico,
.site-header__mobile-item:focus .site-header__mobile-item-ico { opacity: 1; color: var(--rcm-ember-deep); }

.site-header__mobile-sub { display: flex; align-items: center; gap: 10px; padding-left: 22px; }
.site-header__mobile-sub-ico { display: inline-flex; align-items: center; flex-shrink: 0; opacity: .75; color: var(--rcm-ember); }
.site-header__mobile-sub-ico svg { width: 16px; height: 16px; display: block; }

/* === Mobilne menu — ciaśniejsze odstępy, by całość się mieściła (2026-05-31) === */
.site-header__mobile-head { padding: 13px 20px; }
.site-header__mobile-nav { padding: 8px 14px; gap: 0; }
.site-header__mobile-item { padding: 9px 16px; font-size: 16px; }
.site-header__mobile-sub { padding: 6px 16px 6px 22px; font-size: 13.5px; }
.site-header__mobile-cta { padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); gap: 8px; }
.site-header__mobile-cta .abtn { padding-top: 11px; padding-bottom: 11px; }

/* Mobilne menu — nav musi móc się kurczyć (flex min-height:auto wypychał CTA poza szufladę = ucięte przyciski na niższych ekranach) */
.site-header__mobile-nav { min-height: 0; }

/* ═══════════════════════════════════════════════
   ZABIEG — podstrona pojedynczego zabiegu/metody (2026-06-01)
   ═══════════════════════════════════════════════ */
.zabieg-hero-wrap {
    background: linear-gradient(180deg, var(--rcm-cream-soft) 0%, #fff 100%);
    border-bottom: 1px solid var(--rcm-line-soft);
    padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
}
.zabieg-hero { max-width: 860px; }
.zabieg-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--rcm-ink);
    margin: 14px 0 0;
}
.zabieg-hero__lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    color: var(--rcm-ink-mute);
    margin: 18px 0 0;
    max-width: 640px;
}
.zabieg-article { padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 90px); }
.zabieg-article__container { max-width: 860px; }
.zabieg-prose { font-size: 17px; line-height: 1.75; color: var(--rcm-ink-soft); }
.zabieg-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 40px;
    padding: 12px 22px;
    border: 1px solid var(--rcm-line);
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--rcm-ink);
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
}
.zabieg-back:hover { border-color: var(--rcm-ember); background: rgba(250, 74, 1, 0.06); color: var(--rcm-ember-deep); }
.zabieg-back svg { flex-shrink: 0; color: var(--rcm-ember); transition: transform .2s; }
.zabieg-back:hover svg { transform: translateX(-3px); }

/* Klikalny zabieg w akordeonie usługi (gdy ma podstronę) */
.service-treatment__name--link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.service-treatment__name--link:hover {
    color: var(--rcm-ember-deep);
    border-bottom-color: rgba(250, 74, 1, 0.4);
}
.service-treatment:has(.service-treatment__name--link) { cursor: pointer; }

/* Przycisk "Dowiedz się więcej" przy zabiegach z podstroną */
.service-treatment__more {
    justify-self: end;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid rgba(250, 74, 1, 0.30);
    border-radius: var(--r-pill);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--rcm-ember-deep);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.service-treatment__more:hover {
    background: var(--rcm-ember);
    border-color: var(--rcm-ember);
    color: #fff;
}
.service-treatment__more svg { flex-shrink: 0; transition: transform .2s; }
.service-treatment__more:hover svg { transform: translateX(3px); }

@media (max-width: 560px) {
    .service-treatment { grid-template-columns: 28px minmax(0, 1fr); row-gap: 10px; }
    .service-treatment__more {
        grid-column: 2 / -1;
        justify-self: start;
        padding: 7px 14px;
    }
}

/* ═══════════════════════════════════════════════
   HERO podstron — pomarańczowy gradient akcentu (ujednolicenie: cennik, zespół, blog) 2026-06-01
   ═══════════════════════════════════════════════ */
.price-intro__title em,
.price-intro__title span,
.team-page__header .section-heading em,
.team-page__header .section-heading span,
.blog-intro__heading em,
.blog-intro__heading span {
    font-style: italic;
    background: linear-gradient(105deg, #FF8A52 0%, #FA4A01 52%, #D8420A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Hero /zespol/ — ujednolicenie wizualne z hero cennika (.price-intro) 2026-06-01 */
.team-page {
    background: var(--rcm-cream-soft);
    padding: clamp(40px, 5vw, 60px) 0 32px;
}
.team-page__header { max-width: 760px; }
.team-page .section-heading {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.016em;
    margin: 0 0 14px;
}
.team-page__lead {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--rcm-ink-mute);
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   POPUP „Umów wizytę" (appt-modal) — 2026-06-01
   ═══════════════════════════════════════════════ */
body.appt-open { overflow: hidden; }
.appt-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.appt-modal[hidden] { display: none; }
.appt-modal__overlay { position: absolute; inset: 0; background: rgba(30, 26, 20, 0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: apptFade .25s ease both; }
.appt-modal__dialog {
    position: relative; z-index: 1;
    width: 100%; max-width: 460px; max-height: calc(100vh - 40px); overflow-y: auto;
    background: linear-gradient(180deg, #FFFDF8 0%, var(--rcm-cream-soft) 100%);
    border: 1px solid var(--rcm-line);
    border-radius: 24px;
    box-shadow: 0 40px 90px -30px rgba(30, 26, 20, 0.5);
    padding: clamp(26px, 4vw, 38px);
    animation: apptPop .3s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes apptFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apptPop { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }

.appt-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--rcm-line); background: #fff; color: var(--rcm-ink);
    display: grid; place-items: center; cursor: pointer;
    transition: background .2s, color .2s, transform .25s;
}
.appt-modal__close:hover { background: rgba(250, 74, 1, 0.10); color: var(--rcm-ember); transform: rotate(90deg); }

.appt-modal__eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--rcm-ember); }
.appt-modal__title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 36px); font-weight: 500; line-height: 1.05; color: var(--rcm-ink); margin: 8px 0 0; }
.appt-modal__title em { font-style: italic; background: linear-gradient(105deg, #FF8A52 0%, #FA4A01 52%, #D8420A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.appt-modal__lead { font-size: 14px; line-height: 1.6; color: var(--rcm-ink-mute); margin: 10px 0 0; }

.appt-modal__rows { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 0; }
.appt-row { display: flex; align-items: center; gap: 13px; padding: 13px 15px; background: #fff; border: 1px solid var(--rcm-line-soft); border-radius: 14px; text-decoration: none; }
.appt-row--link { transition: border-color .2s, background .2s; }
.appt-row--link:hover { border-color: var(--rcm-ember); background: rgba(250, 74, 1, 0.04); }
.appt-row__ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: rgba(250, 74, 1, 0.10); color: var(--rcm-ember); display: grid; place-items: center; }
.appt-row__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.appt-row__label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rcm-ink-mute); }
.appt-row__value { font-size: 16px; font-weight: 500; color: var(--rcm-ink); text-decoration: none; word-break: break-word; }
a.appt-row__value:hover { color: var(--rcm-ember-deep); }
.appt-row__chev { flex-shrink: 0; color: var(--rcm-ember); opacity: .6; }
.appt-copy { flex-shrink: 0; padding: 7px 13px; border: 1px solid rgba(250, 74, 1, 0.3); border-radius: 999px; background: transparent; color: var(--rcm-ember-deep); font-family: var(--font-sans); font-size: 12px; font-weight: 500; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.appt-copy:hover, .appt-copy.is-copied { background: var(--rcm-ember); border-color: var(--rcm-ember); color: #fff; }

.appt-row--hours { align-items: flex-start; }
.appt-row--hours .appt-row__ico { margin-top: 2px; }
.appt-row__hours-list { display: flex; flex-direction: column; gap: 3px; margin-top: 3px; }
.appt-hour { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.appt-hour span { color: var(--rcm-ink-mute); }
.appt-hour strong { color: var(--rcm-ink); font-weight: 500; white-space: nowrap; }

.appt-modal__foot { margin-top: 22px; }
.appt-modal__cta { width: 100%; justify-content: center; }
.appt-modal__note { font-size: 11.5px; color: var(--rcm-ink-mute); text-align: center; margin: 14px 0 0; }

@media (max-width: 520px) {
    .appt-modal { padding: 0; align-items: flex-end; }
    .appt-modal__dialog { max-width: 100%; max-height: 92vh; border-radius: 22px 22px 0 0; padding: 26px 20px calc(24px + env(safe-area-inset-bottom)); animation: apptSheet .32s cubic-bezier(.22,.61,.36,1) both; }
    @keyframes apptSheet { from { transform: translateY(100%); } to { transform: none; } }
}
