/* Poppins — self-hosted (woff2, latin + latin-ext). Replaces Google Fonts. */
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/poppins-300-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/poppins-300-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/poppins-400-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/poppins-400-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}

/* ==========================================================================
   Bello Theme — main.css
   Design 1:1 with salonurodybello.pl (Poppins, cream/gold/black palette)
   Zero page builders, zero jQuery
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Brand */
    --brand-cream: #f8f3ed;
    --brand-cream-dark: #f0e8de;
    --brand-gold: #e0c8b3;
    --brand-gold-dark: #c9a88a;
    --brand-gold-rich: #b8956e;
    --brand-black: #1a1a1a;
    --brand-white: #ffffff;
    --brand-warm-gray: #6b5e54;
    --brand-rose: #c4a08a;
    --brand-rose-muted: #d4b5a0;

    /* UI */
    --hover-bg: #faf6f1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 8px 30px rgba(224, 200, 179, 0.25);
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --border-gold: rgba(224, 200, 179, 0.92);
    --border-gold-light: rgba(224, 200, 179, 0.35);

    /* Typography */
    --font: 'Poppins', sans-serif;
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 15px;
    --text-md: 18px;
    --text-lg: 24px;
    --text-xl: 36px;
    --text-2xl: 48px;
    --text-3xl: 56px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 48px;
    --space-2xl: 96px;
    --space-3xl: 128px;

    /* Layout */
    --container: 1140px;
    --container-narrow: 980px;
    --header-height: 82px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--brand-black);
    background-color: var(--brand-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--brand-black);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--brand-gold-dark);
}


ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-md); font-weight: 600; letter-spacing: 0; }
h4 { font-size: var(--text-base); font-weight: 600; letter-spacing: 0; }

::selection {
    background: var(--brand-gold);
    color: var(--brand-black);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--brand-black);
    color: var(--brand-white);
    padding: var(--space-sm) var(--space-md);
}

.skip-link:focus {
    left: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #f8f3ed;
    transition: box-shadow var(--transition);
}


.header--scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* Hero pages: header stays normal (beige), hero starts right below it */

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo {
    position: relative;
    z-index: 1;
}

.header__logo img {
    height: 58px;
    width: auto;
}

.header__logo:hover img {
    opacity: 0.85;
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Home link */
.nav__list > li.nav__home {
    display: list-item;
}

.nav__list > li > a {
    font-size: var(--text-base);
    font-weight: 400;
    position: relative;
    padding: var(--space-sm) 0;
    letter-spacing: 0.01em;
    transition: none;
}

.nav__list > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brand-gold);
}

.nav__list > li > a:hover::after,
.nav__list .active > a::after {
    width: 100%;
}

/* Prevent rendering artifact: fully remove pseudo-element for submenu triggers */
.nav__list .has-sub > a::after,
.nav__list .has-sub > a:hover::after {
    content: none !important;
}

/* Chevron for items with submenu */
.nav__list > .has-sub > a {
    padding-right: 14px;
}

.nav__list > .has-sub > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--brand-gold-dark);
    border-bottom: 1.5px solid var(--brand-gold-dark);
    transform: translateY(-60%) rotate(45deg);
}

.nav__list > .has-sub:hover > a::before {
    transform: translateY(-30%) rotate(-135deg);
}

/* Mega menu dropdown */
.nav__list .has-sub {
    position: static;
}

.nav__list .has-sub > a::after {
    display: none;
}

/* --- Simple dropdown (WP walker nav__sub) --- */
.nav__sub {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: var(--space-md) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 200;
    list-style: none;
}

/* Invisible bridge to prevent hover gap — only for simple dropdowns, not mega */
.has-sub:not(.has-mega)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.has-sub:hover > .nav__sub,
.has-sub:focus-within > .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav__sub li {
    display: block;
}

.nav__sub li a {
    display: block;
    padding: 10px var(--space-lg);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-black);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
    border-left: 2px solid transparent;
}

.nav__sub li a:hover {
    background: var(--hover-bg);
    color: var(--brand-gold-rich);
    padding-left: calc(var(--space-lg) + 4px);
    border-left-color: var(--brand-gold);
}

.nav__sub li + li {
    border-top: 1px solid rgba(224, 200, 179, 0.12);
}

/* --- Mega panel (desktop) --- */

.mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--brand-white);
    border-bottom: 1px solid var(--border-gold-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    z-index: 9999;
}

.mega.mega--visible {
    display: block;
}

.mega__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 260px;
    gap: 0;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
}

.mega--small .mega__inner {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
}

.mega__col {
    display: flex;
    flex-direction: column;
    padding: 28px 32px;
    border-right: 1px solid var(--border-gold-light);
}

.mega--small .mega__col {
    border-right: none;
}

.mega__col:last-child {
    border-right: none;
}

.mega__top {
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-gold-light);
    background: var(--brand-cream);
}

.mega__highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-black);
    background: var(--brand-white);
    border: 1px solid var(--brand-gold);
    transition: background var(--transition);
}

.mega__highlight:hover {
    background: var(--brand-gold);
    color: var(--brand-white);
}

.mega__highlight span {
    font-size: 12px;
    font-weight: 400;
    color: var(--brand-warm-gray);
}

.mega__highlight:hover span {
    color: var(--brand-white);
    opacity: 0.8;
}

.mega__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px 32px;
    background: var(--brand-cream);
    border-left: 1px solid var(--border-gold-light);
}

.mega__heading {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold-rich);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold-light);
}

.mega__col a {
    display: flex;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: var(--brand-black);
    transition: color var(--transition), transform var(--transition);
}

.mega__col a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--brand-gold);
    margin-right: 0;
    transition: width 0.2s ease, margin-right 0.2s ease;
}

.mega__col a:hover {
    color: var(--brand-gold-rich);
}

.mega__col a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.mega__aside-text {
    font-size: 13px;
    color: var(--brand-warm-gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.mega__aside-question {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 16px;
}

.mega__cta {
    display: inline-block;
    padding: 10px 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--brand-black);
    border: 1px solid var(--brand-gold);
    border-radius: 6px;
    text-align: center;
    transition: background var(--transition), color var(--transition);
}

.mega__cta:hover {
    background: var(--brand-gold);
    color: var(--brand-white);
}

/* Nav CTA button */
.nav__cta {
    flex-shrink: 0;
}

/* Phone CTA at top of mobile menu — hidden on desktop */
.nav__cta--top {
    display: none;
}

/* --- CTA box (subpages — umów wizytę) --- */
.cta-box {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-dark) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-rich), var(--brand-gold));
}

.cta-box__title {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: var(--space-sm);
}

.cta-box__address {
    font-size: var(--text-sm);
    color: var(--brand-warm-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cta-box__address a {
    color: var(--brand-warm-gray);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-box__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--brand-white);
    background: var(--brand-gold-rich);
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.cta-box__phone:hover {
    background: var(--brand-gold-dark);
    color: var(--brand-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 149, 110, 0.35);
}

.cta-box__hours {
    font-size: var(--text-xs);
    color: var(--brand-warm-gray);
    margin-top: var(--space-md);
    letter-spacing: 0.02em;
}

/* --- Hamburger --- */
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-black);
    transition: transform var(--transition), opacity var(--transition);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: var(--brand-black);
    color: var(--brand-white);
}

.btn--primary:hover {
    background: #333;
    color: var(--brand-white);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--brand-black);
    border: 1.5px solid var(--brand-gold);
}

.btn--outline:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
    box-shadow: var(--shadow-gold);
}

.btn--gold {
    background: var(--brand-gold);
    color: var(--brand-black);
}

.btn--gold:hover {
    background: var(--brand-gold-dark);
    color: var(--brand-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn--phone {
    background: var(--brand-gold);
    color: var(--brand-black);
    font-weight: 600;
}

.btn--phone:hover {
    background: var(--brand-gold-dark);
    color: var(--brand-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn--phone svg {
    width: 18px;
    height: 18px;
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn--sm {
    padding: 10px 22px;
    font-size: var(--text-xs);
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.main {
    margin-top: var(--header-height);
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--brand-gold-dark);
}

.breadcrumb a {
    color: var(--brand-gold-dark);
}

.breadcrumb a:hover {
    color: var(--brand-black);
}

.breadcrumb__sep {
    margin: 0 var(--space-sm);
    opacity: 0.5;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: var(--space-md) 0 var(--space-2xl);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__title {
    font-size: var(--text-3xl);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero__title-location {
    display: block;
    font-size: var(--text-lg);
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-top: var(--space-xs);
}

.hero__subtitle {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.hero__lead {
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.hero__photo {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

/* 4-photo stagger */
.hero__photo:first-child {
    margin-top: var(--space-xl);
}

.hero__photo:nth-child(2) {
    margin-top: 0;
}

.hero__photo:nth-child(3) {
    margin-top: calc(-1 * var(--space-xl));
}

.hero__photo:nth-child(4) {
    margin-top: calc(-2 * var(--space-xl));
}

/* 3-photo layout */
.hero__photos--trio {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.hero__photos--trio .hero__photo:first-child {
    margin-top: var(--space-lg);
}

.hero__photos--trio .hero__photo:nth-child(2) {
    margin-top: 0;
}

.hero__photos--trio .hero__photo:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
    /* No negative margin: it overlapped the staggered top-left photo (+space-lg). 0 = clean 16px gap. */
    margin-top: 0;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero__photo:hover img {
    transform: scale(1.04);
}

/* Fallback for no-photo hero */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Quick Actions (homepage) --- */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    margin-top: calc(-1 * var(--space-xl));
    position: relative;
    z-index: 2;
}

.quick-actions__item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    transition: all var(--transition);
}

.quick-actions__item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--brand-gold);
}

.quick-actions__icon {
    margin-bottom: var(--space-sm);
    color: var(--brand-gold-rich);
}

.quick-actions__item--reviews {
    text-align: center;
}

.quick-actions__stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-xs);
}

.quick-actions__badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.quick-actions__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text);
    font-size: var(--text-sm);
}

.quick-actions__badge:hover {
    color: var(--brand-gold-rich);
}

.quick-actions__badge svg {
    color: var(--brand-gold-rich);
    width: 16px;
    height: 16px;
}

/* --- Section --- */
.section {
    padding: var(--space-2xl) 0;
}

.section--alt {
    background: var(--brand-white);
}

.section__title {
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--brand-gold);
    margin: var(--space-md) auto 0;
}

.section__subtitle {
    text-align: center;
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--brand-warm-gray);
    margin-top: 0;
    margin-bottom: var(--space-xl);
}

.section__divider {
    width: 60px;
    height: 2px;
    background: var(--brand-gold);
    margin: var(--space-lg) auto;
}

/* --- Service Cards --- */
/* Problem cards grid (hub page) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.problem-card {
    display: block;
    padding: var(--space-lg);
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--brand-black);
    position: relative;
    overflow: hidden;
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--brand-black);
}

.problem-card:hover::after {
    transform: scaleX(1);
}

.problem-card__title {
    font-size: var(--text-md);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.problem-card__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

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

.service-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.03);
}

.service-card__body {
    padding: var(--space-lg);
}

.service-card__title {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: var(--text-sm);
    opacity: 0.85;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.service-card__price {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--brand-gold-dark);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: var(--space-md);
    color: var(--brand-black);
}

.service-card__link:hover {
    color: var(--brand-gold-dark);
}

/* --- Steps (first visit timeline) --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    counter-reset: step;
}

.steps__item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    position: relative;
}

.steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--brand-white);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.steps__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.steps__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Expanding panels (Proposal 22 — SVG backgrounds) --- */
.expand-panels {
    display: flex;
    gap: 5px;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
}

.expand-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 28px 20px;
    background: #1a1a1a;
    color: var(--brand-white);
    text-decoration: none;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.expand-panel:hover,
.expand-panel:focus-visible {
    flex: 3.5;
    text-decoration: none;
    color: var(--brand-white);
}

.expand-panel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.85;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.02);
}

.expand-panel:hover .expand-panel__bg {
    opacity: 0.95;
    transform: scale(1.1);
}

.expand-panel {
    border-bottom: 3px solid var(--brand-gold);
}

.expand-panel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.7) 0%,
        transparent 40%
    );
    transition: background 0.5s ease;
}

.expand-panel:hover .expand-panel__overlay {
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.6) 0%,
        transparent 50%
    );
}

.expand-panel__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.expand-panel__bar {
    display: none;
}

.expand-panel:hover .expand-panel__bar {
    display: none;
}

.expand-panel__title {
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    border-left: 3px solid var(--brand-gold);
    padding-left: 10px;
    margin: 0 0 4px;
    transition: font-size 0.4s ease;
}

.expand-panel:hover .expand-panel__title {
    font-size: var(--text-base);
}

.expand-panel__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    line-height: 1.5;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}

.expand-panel:hover .expand-panel__sub {
    max-height: 60px;
    opacity: 1;
}

.expand-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-gold);
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.15s;
}

.expand-panel:hover .expand-panel__cta {
    max-height: 40px;
    opacity: 1;
}

.expand-panel__cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.expand-panel:hover .expand-panel__cta svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .expand-panels {
        flex-direction: column;
        height: auto;
        gap: 8px;
        border-radius: 14px;
    }
    .expand-panel {
        min-height: 100px;
        flex: none;
        border-radius: 12px;
        overflow: hidden;
    }
    .expand-panel__bg {
        opacity: 0.6;
    }
    .expand-panel:hover,
    .expand-panel:focus-visible {
        flex: none;
        min-height: 130px;
    }
    .expand-panel__title {
        white-space: normal;
        font-size: var(--text-base);
    }
    .expand-panel:hover .expand-panel__title {
        font-size: var(--text-base);
    }
    .expand-panel__sub {
        max-height: 60px;
        opacity: 0.7;
    }
    .expand-panel__cta {
        max-height: 40px;
        opacity: 1;
    }
}

/* --- Pricing Accordion --- */
.pricing {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

/* Section titles — big centered headings between groups */
.pricing__section-title {
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: var(--space-2xl) 0 var(--space-lg);
}

.pricing__section-title:first-child {
    margin-top: 0;
}

/* Shared box style for all pricing elements */
.pricing__category,
.pricing__table {
    margin-bottom: 2px;
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    background: var(--brand-white);
}

/* Accordion header (button) */
.pricing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background var(--transition);
    gap: 16px;
    text-align: left;
    color: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.pricing__header:hover,
.pricing__header[aria-expanded="true"] {
    background: var(--hover-bg);
}

.pricing__header[aria-expanded="true"] {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Static header (non-accordion, e.g. START section) */
.pricing__header--static {
    cursor: default;
}

/* Highlighted category (START section) */
.pricing__category--highlight {
    margin-bottom: var(--space-lg);
    background: var(--brand-cream);
    border-color: var(--brand-gold);
}

.pricing__category-title {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.35;
}

.pricing__category-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
}

.pricing__toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    opacity: 0.7;
    flex-shrink: 0;
}

.pricing__header[aria-expanded="true"] .pricing__toggle-icon {
    transform: rotate(180deg);
}

/* Accordion body */
.pricing__body {
    padding: 0 20px 14px;
    border-top: 1px solid var(--border-gold-light);
}

.pricing__body--open {
    display: block;
}

.pricing__note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-gold-light);
    line-height: 1.6;
}

/* Simple table (no accordion) — uses same box from shared rule above */
.pricing__table {
    padding: 0 20px 14px;
}

.pricing__table-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 0 8px;
    border-bottom: 1px solid var(--border-gold-light);
}

/* Shared row styles */
.pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gold-light);
    font-size: 14px;
}

.pricing__row:last-child {
    border-bottom: none;
}

.pricing__service-name {
    flex: 1;
}

.pricing__amount {
    font-weight: 300;
    white-space: nowrap;
    margin-left: var(--space-md);
}

/* --- Badge --- */
.badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: var(--brand-gold);
    color: #000;
    padding: 3px 8px;
}

/* --- Stars / Rating --- */
.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--brand-gold);
}

.stars svg {
    width: 16px;
    height: 16px;
}

.stars__text {
    margin-left: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--brand-black);
}

/* --- Service Page --- */
.service-page {
    padding-bottom: var(--space-xl);
}

.service-page__header {
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.service-page__title {
    margin-bottom: var(--space-md);
}

.service-page__meta {
    display: flex;
    gap: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--brand-gold-dark);
    margin-bottom: var(--space-lg);
}

.service-page__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: min-content 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Intro: left column, row 1 (defines its own height) */
.service-page__intro {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

/* Body: left column, row 2 — flows directly under intro; any slack from a
   tall sticky sidebar lands below the body (row 2 = 1fr), not as a gap. */
.service-page__body {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    min-width: 0;
}

.service-page__body h2 {
    font-size: var(--text-lg);
    margin: var(--space-xl) 0 var(--space-md);
}

.service-page__body h3 {
    margin: var(--space-lg) 0 var(--space-sm);
}

.service-page__body p {
    margin-bottom: var(--space-md);
}

.service-page__body ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.service-page__body li {
    list-style: disc;
    margin-bottom: var(--space-xs);
}

/* Sidebar on service pages */
.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
    grid-column: 2;
    grid-row: 1 / -1;
}

.service-sidebar__card {
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.service-sidebar__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.service-sidebar__price {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--brand-gold-dark);
    margin-bottom: var(--space-md);
}

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

/* --- FAQ --- */
.faq {
    margin-top: var(--space-md);
}

.faq__item {
    border-bottom: 1px solid var(--border-gold-light);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--brand-black);
    gap: var(--space-md);
}

.faq__question:hover {
    color: var(--brand-gold-dark);
}

.faq__icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    flex-shrink: 0;
    opacity: 0.6;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 0 var(--space-md);
    font-size: var(--text-base);
    line-height: 1.6;
    opacity: 0.85;
}

/* --- Indication Cards (service pages) --- */
.indications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.indication-card {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: 14px var(--space-md);
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius-sm, 8px);
    transition: border-color var(--transition);
}

.indication-card:hover {
    border-color: var(--brand-gold);
}

.indication-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-cream-dark), var(--brand-cream));
    border: 1px solid var(--border-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-md);
    color: var(--brand-gold-rich);
}

.indication-card__text {
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--brand-warm-gray);
}

.indication-card__text strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--brand-black);
    margin-bottom: 2px;
}

/* --- Highlight Box (service pages) --- */
.highlight-box {
    background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-dark) 100%);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--brand-gold-rich);
    border-radius: 0 var(--border-radius-sm, 8px) var(--border-radius-sm, 8px) 0;
    padding: 20px var(--space-lg);
    margin: var(--space-lg) 0;
}

.highlight-box__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: var(--space-sm);
}

.highlight-box ul {
    padding-left: 20px;
    margin: 0;
}

.highlight-box li {
    font-size: var(--text-sm);
    color: var(--brand-warm-gray);
    margin-bottom: var(--space-xs);
    list-style: disc;
}

/* --- Related Treatment Cards (service pages) --- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.related-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius-sm, 8px);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.related-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.related-card__name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--brand-black);
    margin-bottom: var(--space-xs);
}

.related-card__desc {
    font-size: 12px;
    color: var(--brand-warm-gray);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.related-card__price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-gold-rich);
    margin-top: auto;
}

/* --- Gallery / Efekty --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

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

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* --- About Asia (homepage) --- */
.about-asia__grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-asia__photo-wrap {
    position: relative;
}

.about-asia__photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.about-asia__experience {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(-1 * var(--space-xl));
    background: var(--brand-white);
    border: 2px solid var(--brand-gold);
    border-radius: var(--border-radius);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-gold);
}

.about-asia__experience-number {
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1;
    color: var(--brand-gold-rich);
}

.about-asia__experience-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--brand-warm-gray);
}

.about-asia__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-sm);
}

.about-asia__title {
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.about-asia__content p {
    line-height: 1.7;
    font-weight: 300;
}

.about-asia__quote {
    font-size: var(--text-md);
    color: var(--brand-gold-rich);
    border-left: 3px solid var(--brand-gold);
    padding-left: var(--space-lg);
}

.about-asia__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.about-asia__rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.about-asia__rating-stars {
    display: flex;
    gap: 2px;
    color: var(--brand-gold-rich);
}

.about-asia__rating-stars svg {
    width: 18px;
    height: 18px;
}

.about-asia__rating-score {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--text);
    margin-left: var(--space-xs);
}

.about-asia__rating-label {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.about-asia__rating > svg {
    color: var(--brand-gold-rich);
}

.about-asia__ratings {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.about-asia__ratings-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* --- Trust / Social Proof --- */
.trust {
    text-align: center;
    padding: var(--space-xl) 0;
}

.trust__rating {
    margin-bottom: var(--space-md);
}

.trust__logos {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0.6;
}

/* --- Page Content (generic) --- */
.page-content {
    padding: var(--space-xl) 0;
}

.page-content .page-title {
    margin-bottom: var(--space-lg);
}

.entry-content h2 {
    font-size: var(--text-lg);
    margin: var(--space-xl) 0 var(--space-md);
}

.entry-content h3 {
    margin: var(--space-lg) 0 var(--space-sm);
}

.entry-content p {
    margin-bottom: var(--space-md);
}

.entry-content ul, .entry-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.entry-content li {
    list-style: disc;
    margin-bottom: var(--space-xs);
}

.entry-content ol li {
    list-style: decimal;
}

/* Tables inside entry-content */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-gold-light);
}

.entry-content thead {
    background: var(--brand-gold-rich);
    color: #fff;
}

.entry-content th {
    padding: 12px 16px;
    font-weight: 600;
    text-align: left;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.entry-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-gold-light);
}

.entry-content tbody tr:last-child td {
    border-bottom: none;
}

.entry-content tbody tr:hover {
    background: rgba(184,149,110,0.05);
}

.entry-content td a {
    font-weight: 600;
}

/* Bold paragraph openers as sub-section headers */
.entry-content p > strong:first-child {
    display: block;
    font-size: var(--text-base);
    color: var(--brand-black);
    margin-bottom: var(--space-xs);
    padding-top: var(--space-sm);
}

/* --- CTA Section (homepage bottom) --- */
.cta-section {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

.cta-section__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-gold);
    margin-bottom: var(--space-sm);
}

.cta-section__title {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--brand-white);
    letter-spacing: -0.02em;
}

.cta-section__subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.cta-section__detail {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
}

/* CTA grid with map */
.cta-section__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
}

.cta-section__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta-section__detail-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.75);
}

.cta-section__detail-row svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-section__detail-row strong {
    color: var(--brand-white);
}

.cta-section__note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

.cta-section__map {
    max-width: 240px;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.cta-section__map:hover {
    opacity: 0.85;
}

.cta-section__map img {
    width: 100%;
    height: auto;
    filter: invert(1) brightness(0.85);
}

.cta-section__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn--lg {
    padding: 18px 40px;
    font-size: var(--text-base);
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--brand-white);
    box-shadow: none;
}

/* ==========================================================================
   CTA BAR (mobile sticky bottom)
   ========================================================================== */
.cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--brand-white);
    border-top: 1px solid var(--border-gold);
    transition: transform var(--transition);
}

.cta-bar--hidden {
    transform: translateY(100%);
}

.cta-bar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    padding: 10px 8px;
    font-size: var(--text-xs);
    font-weight: 500;
    text-align: center;
    color: var(--brand-black);
    transition: background var(--transition);
}

.cta-bar__link svg {
    width: 20px;
    height: 20px;
}

.cta-bar__link--phone {
    background: var(--brand-gold);
    color: var(--brand-black);
}

.cta-bar__link--phone:hover {
    background: var(--brand-gold-dark);
    color: var(--brand-black);
}

.cta-bar__link--insta svg,
.cta-bar__link--fb svg {
    color: var(--brand-gold-rich);
}

.cta-bar__link--directions svg {
    color: var(--brand-warm-gray);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-2xl) 0 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
    color: var(--brand-gold);
}

/* --- Footer grid --- */
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer__heading {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold);
    margin-bottom: var(--space-lg);
}

.footer__address {
    font-style: normal;
    font-size: var(--text-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer__hint {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
    line-height: 1.6;
}

.footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-gold) !important;
    margin-top: var(--space-md);
}

.footer__map-link svg {
    width: 16px;
    height: 16px;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.footer__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.5;
}

.footer__link--phone {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--brand-white);
}

.footer__hours {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__hours svg {
    width: 16px;
    height: 16px;
    opacity: 0.4;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-black);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__nav a {
    font-size: var(--text-sm);
    padding: 2px 0;
    transition: color var(--transition), padding-left var(--transition);
}

.footer__nav a:hover {
    padding-left: 4px;
}

.footer__map-thumb {
    display: inline-block;
}

.footer__map-img {
    max-width: 160px;
    height: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer__map-img:hover {
    opacity: 1;
}

.footer__logo {
    height: 36px;
    width: auto;
    opacity: 0.5;
}

.footer__bottom {
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
}

.footer__bottom-links a:hover {
    color: var(--brand-gold);
}

/* ==========================================================================
   CONTACT SIDEBAR (sticky right side, desktop)
   ========================================================================== */
.contact-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 80;
    display: flex;
    align-items: center;
}

/* --- Icon strip (collapsed state) --- */
.contact-side__strip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--brand-black);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 6px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.contact-side__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0;
}

.contact-side__icon svg {
    width: 18px;
    height: 18px;
}

.contact-side__icon:hover {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.08);
}

.contact-side__icon--phone {
    color: var(--brand-gold);
}

.contact-side__icon--phone:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
}

.contact-side__expand {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    padding-top: 4px;
}

/* --- Expanded panel --- */
.contact-side__panel {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-side__panel[hidden] {
    display: none;
}

.contact-side__panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-gold-light);
}

.contact-side__panel-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-gold-rich);
}

.contact-side__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-warm-gray);
    line-height: 1;
    padding: 0;
    transition: color var(--transition);
}

.contact-side__close:hover {
    color: var(--brand-black);
}

.contact-side__panel-body {
    padding: var(--space-lg);
}

/* Phone CTA button */
.contact-side__cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--brand-gold);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition);
    color: var(--brand-black);
}

.contact-side__cta:hover {
    background: var(--brand-gold-dark);
    color: var(--brand-black);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.contact-side__cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-side__cta strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
}

.contact-side__cta small {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.75;
}

/* Contact links list (vertical) */
.contact-side__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: var(--space-md);
}

.contact-side__link-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--brand-black);
    transition: all var(--transition);
}

.contact-side__link-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-side__link-item:hover {
    background: var(--hover-bg);
    color: var(--brand-black);
}

.contact-side__link-item small {
    display: block;
    font-size: var(--text-xs);
    opacity: 0.6;
}

.contact-side__divider {
    height: 1px;
    background: var(--border-gold-light);
    margin: var(--space-md) 0;
}

/* Patience message */
.contact-side__message {
    font-size: 12px;
    line-height: 1.55;
    color: var(--brand-warm-gray);
    padding-top: var(--space-sm);
}

.contact-side__message em {
    color: var(--brand-gold-rich);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .header__toggle {
        display: flex;
        position: relative;
        z-index: 10001;
    }

    /* When menu open: hide all logos */
    body.menu-open .header__logo,
    body.menu-open .footer__logo {
        display: none !important;
    }

    /* Desktop chevron pseudo — hide on mobile */
    .nav__list > .has-sub > a::before {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: var(--brand-cream);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + var(--space-md)) var(--space-lg) calc(var(--space-lg) + 80px);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
        gap: 0;
        z-index: 9999;
    }

    .nav--open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav__list > li > a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-gold-light);
        font-size: var(--text-md);
        font-weight: 400;
    }

    /* Mobile mega menu — reset ALL desktop properties explicitly */
    .mega,
    .mega.mega--visible {
        display: block !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: auto !important;
        background: var(--brand-cream) !important;
        border: none !important;
        box-shadow: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Mobile: megas always expanded */
    .mega,
    .mega.mega--visible,
    .nav__list .has-mega > .mega,
    .nav__list .has-mega.open > .mega {
        max-height: 2000px !important;
        overflow: visible !important;
    }

    .mega__inner {
        display: block !important;
        padding: 0 !important;
        grid-template-columns: none !important;
    }

    .mega__col {
        padding: 8px 0 8px var(--space-md);
        border-right: none !important;
        border-bottom: 1px solid var(--border-gold-light);
    }

    .mega__col:last-child {
        border-bottom: none;
    }

    .mega__heading {
        margin-bottom: 8px;
    }

    .mega__col a {
        display: block !important;
        padding: 9px 0 9px var(--space-sm);
        font-size: var(--text-sm);
        border-bottom: none;
        position: static !important;
    }

    .mega__col a::before {
        display: none !important;
    }

    .mega__aside {
        display: none !important;
    }

    /* No chevron needed — menus always expanded */
    .nav__list .has-sub > a::after {
        content: none !important;
        flex-shrink: 0;
    }

    /* Mobile dropdown (nav__sub) */
    .nav__sub {
        position: static;
        transform: none;
        min-width: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-sub.open > .nav__sub {
        max-height: 600px;
    }

    .nav__sub li a {
        padding: 10px 0 10px var(--space-lg);
        font-size: var(--text-sm);
        color: var(--brand-warm-gray);
        white-space: normal;
    }

    .nav__sub li a:hover {
        background: transparent;
        color: var(--brand-gold-rich);
    }

    .nav__cta--top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        background: var(--brand-gold);
        color: var(--brand-white);
        border-radius: var(--border-radius);
        font-weight: 600;
        font-size: 1.05rem;
        text-decoration: none;
        order: -1;
    }

    .nav__cta--top svg {
        width: 18px;
        height: 18px;
    }

    /* Service page — stack: intro → sidebar → body (DOM order) */
    .service-page__content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-sidebar {
        position: static;
        grid-column: 1;
        grid-row: auto;
    }

    .service-page__intro,
    .service-page__body {
        grid-column: 1;
        grid-row: auto;
    }

    /* Service hero mobile */
    .service-hero {
        min-height: 340px;
    }

    .service-hero__content {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .service-hero h1 {
        font-size: var(--text-lg);
    }

    .service-hero__price {
        font-size: var(--text-md);
    }

    /* Reviews box mobile — slightly smaller */
    .reviews-box {
        padding: var(--space-md);
    }

    /* Indication cards mobile — single column */
    .indications {
        grid-template-columns: 1fr;
    }

    /* Related cards mobile — single column */
    .related-grid {
        grid-template-columns: 1fr;
    }

    /* Quick actions — 2 columns */
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-side {
        display: none;
    }

    /* CTA — stack on tablet */
    .cta-section__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-section__map {
        margin: 0 auto;
        max-width: 180px;
    }

    .cta-section__details {
        align-items: center;
    }

    .cta-section__actions {
        justify-content: center;
    }

    /* About Asia — stack */
    .about-asia__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-asia__photo-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-asia__experience {
        right: var(--space-md);
    }

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

    .about-asia__actions {
        justify-content: center;
    }

    .about-asia__quote {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    /* Footer — 2 columns on tablet */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet hero */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__photos {
        max-width: 500px;
        margin: var(--space-xl) auto 0;
    }

    .hero__photo:first-child,
    .hero__photo:nth-child(3) {
        margin-top: 0;
    }

    .hero__photo:nth-child(4) {
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --text-3xl: 36px;
        --text-2xl: 32px;
        --text-xl: 26px;
        --text-lg: 20px;
        --space-3xl: 64px;
        --space-2xl: 48px;
        --space-xl: 32px;
    }

    .cta-bar {
        display: flex;
    }

    .footer {
        padding-bottom: 64px; /* space for sticky CTA bar */
    }

    .hero {
        padding: var(--space-xl) 0;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .entry-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .pricing__header {
        padding: 14px;
    }

    .pricing__body {
        padding: 0 14px 12px;
    }
}

/* ==========================================================================
   UTILITY
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Scroll reveal --- */
.service-card,
.about-asia__photo-wrap,
.about-asia__content,
.quick-actions__item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.revealed,
.about-asia__photo-wrap.revealed,
.about-asia__content.revealed,
.quick-actions__item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Keep hover transforms working after reveal */
.service-card.revealed:hover {
    transform: translateY(-4px);
}

.quick-actions__item.revealed:hover {
    transform: translateY(-3px);
}

.text-center { text-align: center; }
.text-gold { color: var(--brand-gold-dark); }
.text-sm { font-size: var(--text-sm); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ==========================================================================
   SIDEBAR EXTRAS (new templates)
   ========================================================================== */

/* Sidebar nav links */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-gold-light);
    transition: padding-left var(--transition), color var(--transition);
}

.sidebar-nav a:last-child {
    border-bottom: none;
}

.sidebar-nav a:hover {
    padding-left: 4px;
    color: var(--brand-gold-dark);
}

/* Sidebar steps (voucher) */
.sidebar-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.sidebar-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--brand-black);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Sidebar Asia profile (konsultacja) */
.sidebar-asia {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.sidebar-asia__photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-gold);
}

/* Sidebar checklist */
.sidebar-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    list-style: none !important;
    padding-left: 0 !important;
}

.sidebar-checklist svg {
    color: var(--brand-gold-rich);
    flex-shrink: 0;
}

/* Highlight card variant */
.service-sidebar__card--highlight {
    border-color: var(--brand-gold);
    position: relative;
}

.service-sidebar__card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-dark));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Voucher card */
.voucher-card {
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.voucher-card__visual img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* --- Local SEO intro block --- */
.local-intro {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-top: 3px solid var(--brand-gold);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
    line-height: 1.45;
    color: var(--brand-warm-gray);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.local-intro__logo {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    opacity: 1;
    transform: rotate(-90deg);
    margin: 0 -24px 0 -38px;
}

.local-intro__text {
    flex: 1;
}

.local-intro__text p {
    margin: 0;
}

.local-intro__text p + p {
    margin-top: 6px;
}

.local-intro__place strong {
    font-size: var(--text-base);
}

.local-intro strong {
    color: var(--brand-black);
}

/* --- Reviews Box (sidebar) --- */
.reviews-box {
    background: var(--brand-white);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-md);
}

.reviews-box__stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-xs);
}

.reviews-box__stars svg {
    width: 18px;
    height: 18px;
}

.reviews-box__title {
    display: block;
    font-size: var(--text-base);
    color: var(--brand-black);
    margin-bottom: var(--space-sm);
}

.reviews-box__badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.reviews-box__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--brand-warm-gray);
    font-size: var(--text-sm);
}

.reviews-box__badge svg {
    width: 14px;
    height: 14px;
    color: var(--brand-gold-rich);
}

.reviews-box__badge strong {
    color: var(--brand-black);
    font-size: var(--text-base);
}

/* --- Service Hero (full-width, edge-to-edge) --- */
.service-hero {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    background: #000;
    margin-bottom: var(--space-xl);
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.35;
}

.service-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.4;
}

.service-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0 var(--space-xl);
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.breadcrumb--hero {
    padding: 0 0 var(--space-md);
    font-size: var(--text-xs);
}
.breadcrumb--hero a,
.breadcrumb--hero span {
    color: rgba(255,255,255,0.7);
}
.breadcrumb--hero a:hover {
    color: var(--brand-gold);
}

.service-hero__category {
    display: inline-block;
    padding: var(--space-xs) 14px;
    background: rgba(224,200,179,0.15);
    border: 1px solid rgba(224,200,179,0.3);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--brand-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.service-hero h1 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.service-hero__meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: 20px;
}

.service-hero__price {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-gold);
}

.service-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: var(--brand-gold-rich);
    color: #fff;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.service-hero__cta:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184,149,110,0.35);
    color: #fff;
}

.service-hero__cta svg {
    width: 18px;
    height: 18px;
}

/* --- Styled H2 with gold accent --- */
.service-page__body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: var(--space-xl) 0 var(--space-md);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gold-light);
    position: relative;
}

.service-page__body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--brand-gold-rich);
}

/* --- Reassurance box (sidebar) --- */
.reassurance-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--brand-cream-dark), var(--brand-white));
    border: 1px solid var(--brand-gold);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.reassurance-box__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-gold);
    flex-shrink: 0;
}

.reassurance-box__text {
    flex: 1;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--brand-warm-gray);
}

.reassurance-box__text strong {
    color: var(--brand-black);
}

/* --- Asia tip box --- */
.asia-tip {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    background: var(--brand-white);
    border-left: 3px solid var(--brand-gold);
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-sm);
}

.asia-tip__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.asia-tip__body {
    flex: 1;
}

.asia-tip__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-gold-rich);
    margin-bottom: 6px;
}

.asia-tip__text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--brand-black);
    font-style: italic;
}

/* ==========================================================================
   INSTAGRAM FEED SECTION (homepage optional)
   ========================================================================== */
/* --- Efekty grid (before/after photos) --- */
.efekty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.efekty-grid__item {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.efekty-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.efekty-grid__item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* --- Social banner (dark CTA) --- */
.social-banner {
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-2xl) 0;
}

.social-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.social-banner__text {
    flex: 1;
    max-width: 520px;
}

.social-banner__title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-white);
    line-height: 1.35;
    margin-bottom: var(--space-md);
}

.social-banner__desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.social-banner__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex-shrink: 0;
}

.social-banner__btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--brand-white);
    transition: all var(--transition);
    min-width: 260px;
}

.social-banner__btn:hover {
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-gold);
}

.social-banner__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-banner__btn span {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: var(--text-base);
    line-height: 1.3;
}

.social-banner__btn small {
    font-weight: 400;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
}

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

    .social-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .social-banner__links {
        width: 100%;
    }

    .social-banner__btn {
        min-width: 0;
        justify-content: center;
    }
}

/* ==========================================================================
   Trust Bar — social proof strip below hero
   ========================================================================== */
.trust-bar {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: var(--space-md) 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--brand-white);
    text-decoration: none;
    transition: opacity var(--transition);
}

.trust-bar__item:hover {
    opacity: 0.8;
    color: var(--brand-gold);
}

.trust-bar__stars {
    display: flex;
    gap: 2px;
    color: var(--brand-gold);
}

.trust-bar__stars svg {
    width: 14px;
    height: 14px;
}

.trust-bar__item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.trust-bar__number {
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
}

.trust-bar__label {
    font-size: var(--text-xs);
    opacity: 0.7;
    white-space: nowrap;
}

.trust-bar__item--cta {
    background: var(--brand-gold-dark);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-sm);
}

.trust-bar__item--cta:hover {
    background: var(--brand-gold-rich);
    opacity: 1;
    color: var(--brand-white);
}

@media (max-width: 767px) {
    .trust-bar__inner {
        gap: var(--space-md);
        justify-content: space-around;
    }

    .trust-bar__label {
        display: none;
    }

    .trust-bar__item--cta {
        width: 100%;
        justify-content: center;
        order: -1;
    }
}

/* ==========================================================================
   Testimonials — homepage reviews section
   ========================================================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial {
    background: var(--brand-white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gold-light);
    display: flex;
    flex-direction: column;
    margin: 0;
}

.testimonial__stars {
    display: flex;
    gap: 2px;
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-md);
}

.testimonial__stars svg {
    width: 16px;
    height: 16px;
}

.testimonial__text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--brand-black);
    flex: 1;
    font-style: italic;
    margin: 0;
}

.testimonial__author {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-gold-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial__author strong {
    font-size: var(--text-sm);
    font-weight: 600;
}

.testimonial__source {
    font-size: var(--text-xs);
    color: var(--brand-warm-gray);
}

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

/* ==========================================================================
   About Page — /o-nas/
   ========================================================================== */
.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-hero__photo {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-hero__title {
    font-size: var(--text-2xl);
    font-weight: 300;
}

.about-hero__subtitle {
    font-size: var(--text-md);
    color: var(--brand-warm-gray);
    margin-top: var(--space-sm);
}

.about-hero__badges {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.about-hero__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--brand-black);
}

.about-hero__badge:hover {
    color: var(--brand-gold-rich);
}

.about-hero__badge strong {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--brand-gold-rich);
}

.about-hero__badge span {
    font-size: var(--text-xs);
    color: var(--brand-warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero__stars {
    display: flex;
    gap: 1px;
    color: var(--brand-gold-rich);
}

.about-hero__stars svg {
    width: 14px;
    height: 14px;
}

.about-hero__badge svg {
    width: 16px;
    height: 16px;
    color: var(--brand-gold-rich);
}

.about-hero__sep {
    width: 1px;
    height: 24px;
    background: var(--border-gold);
}

/* Manifesto blockquote */
.manifesto {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
    border: none;
}

.manifesto p {
    font-size: var(--text-md);
    line-height: 1.8;
    font-weight: 300;
    color: var(--brand-black);
    margin: 0 0 var(--space-md);
}

.manifesto footer {
    font-size: var(--text-base);
    color: var(--brand-gold-rich);
    font-style: italic;
    margin-top: var(--space-lg);
}

/* About values grid */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.about-value {
    background: var(--brand-white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    border: 1px solid var(--border-gold-light);
}

.about-value h3 {
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-sm);
}

.about-value p {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

/* Anniversary */
.anniversary {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.anniversary__badge {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--brand-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 600;
}

.anniversary__content h2 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.anniversary__content p {
    line-height: 1.7;
    margin: 0;
}

/* Qualifications */
.qualifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.qual h3 {
    color: var(--brand-gold-rich);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.qual ul {
    list-style: none;
    padding: 0;
}

.qual ul li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-gold-light);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.qual ul li:last-child {
    border-bottom: none;
}

/* Location info */
.location-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
}

.location-info__details address {
    font-style: normal;
    line-height: 1.8;
}

.location-info__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-info__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--brand-white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-gold-light);
    transition: border-color var(--transition);
}

.location-info__link:hover {
    border-color: var(--brand-gold-dark);
    color: var(--brand-black);
}

.location-info__link span {
    display: flex;
    flex-direction: column;
}

.location-info__link small {
    font-size: var(--text-xs);
    color: var(--brand-warm-gray);
}

/* ==========================================================================
   Reels Section — Instagram video grid + CTA
   ========================================================================== */
.reels-section {
    background: var(--brand-black);
    color: var(--brand-white);
    overflow: hidden;
}

.reels-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.reels-section__title {
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--brand-white);
}

.reels-section__desc {
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.reels-section__links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn--insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--brand-white);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: opacity var(--transition);
}

.btn--insta:hover {
    opacity: 0.9;
    color: var(--brand-white);
}

.reels-section__stats {
    display: flex;
    gap: var(--space-xl);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.reel-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #222;
    cursor: pointer;
}

.reel-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity var(--transition);
}

.reel-card:hover .reel-card__overlay {
    opacity: 0;
}

.reel-card__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    transition: transform var(--transition);
}

.reel-card__play svg {
    width: 24px;
    height: 24px;
}

.reel-card:hover .reel-card__play {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .reels-section__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .reels-section__links {
        justify-content: center;
    }

    .reels-section__stats {
        justify-content: center;
    }

    .reels-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* About page responsive */
@media (max-width: 767px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-hero__photo-wrap {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-hero__badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .anniversary {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .qualifications {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ==========================================================================
   Related links — contextual internal linking
   ========================================================================== */
.related-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.related-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.related-link:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.related-link__name {
    font-weight: 500;
    font-size: var(--text-sm);
}

.related-link__price {
    font-size: var(--text-xs);
    color: var(--gold-dark, #8b6914);
    white-space: nowrap;
    margin-left: var(--space-sm);
}

/* --- Porady (Tips) Grid --- */
.porady-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.porada-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.porada-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.porada-card__tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.porada-card__title {
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
    color: var(--brand-black);
}

.porada-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    flex-grow: 1;
    margin-bottom: 20px;
}

.porada-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: var(--brand-warm-gray);
}

.porada-card__author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

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

/* iOS Safari data detectors: keep auto-detected tel/date "links" styled as plain text (prices like "+100 zł") */
.pricing a:not([href^="http"]):not([href^="/"]),
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Safari/iOS: buttons don't inherit color by default (system blue tint). Normalize all theme buttons. */
button {
    color: inherit;
    font: inherit;
    -webkit-appearance: none;
}

/* === Efekty: gallery sections + lightbox ============================== */
.gallery-section-title {
    font-size: var(--text-2xl, 1.5rem);
    text-align: center;
    position: relative;
}

.gallery-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--brand-gold);
    margin: var(--space-sm, 12px) auto 0;
}

.gallery-section-desc {
    text-align: center;
    color: var(--brand-warm-gray);
    max-width: 560px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.mt-2xl { margin-top: var(--space-2xl, 4rem); }

.gallery-grid--square .gallery-item img {
    aspect-ratio: 1 / 1;
}

/* Before/after compare slider (lightbox) */
.lightbox__compare {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
    touch-action: none;
    margin-left: auto;
    margin-right: auto;
    --pos: 50%;
}

.lightbox__compare[hidden] { display: none; }

.lightbox__layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
}

.lightbox__layer--after {
    clip-path: inset(0 0 0 var(--pos));
}

.lightbox__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    margin-left: -1px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 8px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.lightbox__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}

.lightbox__tag {
    position: absolute;
    top: 12px;
    z-index: 2;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    pointer-events: none;
}

.lightbox__tag--before {
    left: 12px;
    background: rgba(26, 26, 26, .72);
    color: #fff;
}

.lightbox__tag--after {
    right: 12px;
    background: var(--brand-gold, #e0c8b3);
    color: #1a1a1a;
}

.lightbox__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

.lightbox__compare:focus-within .lightbox__divider {
    background: var(--brand-gold, #e0c8b3);
}

/* Crossfade mode: two separate before/after photos, slider drives opacity (no wipe) */
.lightbox__compare.is-fade .lightbox__layer--after { clip-path: none; }
.lightbox__compare.is-fade .lightbox__divider { display: none; }
.lightbox__compare.is-fade .lightbox__range {
    inset: auto;
    left: 8%;
    bottom: 14px;
    width: 84%;
    height: 24px;
    margin: 0;
    opacity: 1;
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
    accent-color: var(--brand-gold, #c9a36a);
    background: rgba(20, 16, 12, .55);
    border-radius: 999px;
    padding: 0 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* gallery items are <button> now */
button.gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--brand-cream-dark);
    background: var(--brand-white);
    cursor: zoom-in;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

button.gallery-item:hover,
button.gallery-item:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.gallery-item__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.gallery-item__zoom svg { width: 18px; height: 18px; }

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .gallery-item__zoom { opacity: .9; transform: none; }
}

.gallery-item:focus-visible {
    outline: 2px solid var(--brand-gold, #c9a36a);
    outline-offset: 2px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001; /* above .header (10000) and .cta-bar (90) */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 10, 8, .94);
    opacity: 0;
    transition: opacity .25s ease;
}

/* display:flex above would override the hidden attribute — keep it explicit */
.lightbox[hidden] {
    display: none;
}

.lightbox.is-open { opacity: 1; }

.lightbox__figure {
    margin: 0;
    max-width: min(92vw, 1000px);
    text-align: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.lightbox__caption {
    /* Hidden by request: lightbox shows the photo only, no caption text.
       Caption still drives img.alt in JS (SEO/accessibility). */
    display: none;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .28); }

.lightbox__close {
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
}

.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

@media (max-width: 640px) {
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__img { max-height: 70vh; }
}

body.lightbox-open { overflow: hidden; }

/* Content tables: horizontal scroll on small screens instead of page overflow */
@media (max-width: 768px) {
    .service-page__intro table,
    .service-page__body table,
    .entry-content table,
    main article table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

/* === "Efekty moich klientek" teaser on service pages ================== */
.efekty-teaser__desc {
    color: var(--brand-warm-gray);
    margin-top: 6px;
}

.efekty-teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.efekty-teaser__grid .gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.efekty-teaser__more {
    margin-top: var(--space-md);
    text-align: center;
}

/* Row of CTA buttons — keep them spaced and wrapping on small screens */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .efekty-teaser__grid {
        gap: 10px;
    }
}

/* === "Na tej stronie" content TOC ===================================== */
.content-toc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    margin-bottom: var(--space-lg);
    background: var(--brand-cream);
    border: 1px solid var(--brand-cream-dark);
    border-radius: var(--border-radius);
}

.content-toc__label {
    font-size: var(--text-xs, 12px);
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--brand-warm-gray);
    white-space: nowrap;
}

.content-toc__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.content-toc a {
    font-size: 13px;
    line-height: 1.3;
    padding: 7px 12px;
    background: var(--brand-white);
    border: 1px solid var(--brand-cream-dark);
    border-radius: 999px;
    color: var(--brand-black);
    text-decoration: none;
    transition: border-color .2s, background .2s;
    white-space: normal;
    max-width: 100%;
}

.content-toc a:hover {
    border-color: var(--brand-gold);
    background: var(--brand-white);
}

/* anchor targets land below the fixed header */
.service-page__body h2[id],
#efekty-klientek,
#faq-sekcja {
    scroll-margin-top: calc(var(--header-height, 80px) + 20px);
}

@media (max-width: 640px) {
    .content-toc {
        padding: 12px;
    }
    .content-toc__links {
        gap: 6px;
    }
    .content-toc a {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* homepage efekty tiles share the compare-lightbox button styles */
.efekty-grid .gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ==========================================================================
   Cookie consent — minimalist card, Google Consent Mode v2
   ========================================================================== */
.cookie {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 10002; /* above lightbox (10001) */
    width: 380px;
    max-width: calc(100vw - 32px);
}
.cookie[hidden] { display: none; }
/* .btn forces inline-flex; restore [hidden] for the save button */
.cookie__btn[hidden] { display: none; }

.cookie__card {
    background: var(--brand-cream);
    border: 1px solid var(--border-gold-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    animation: cookieIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cookieIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .cookie__card { animation: none; }
}

.cookie__title {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--brand-black);
    margin: 0 0 8px;
}
.cookie__desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--brand-warm-gray);
    margin: 0;
}
.cookie__desc a {
    color: var(--brand-gold-rich);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

/* preferences panel */
.cookie__prefs {
    margin-top: 18px;
    border-top: 1px solid var(--border-gold-light);
    padding-top: 6px;
}
.cookie__prefs[hidden] { display: none; }

.cookie__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gold-light);
    cursor: pointer;
}
.cookie__row:last-child { border-bottom: none; }
.cookie__row--locked { cursor: default; opacity: 0.85; }

.cookie__row-text { flex: 1; min-width: 0; }
.cookie__row-name {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--brand-black);
}
.cookie__row-note {
    display: block;
    font-size: var(--text-xs);
    line-height: 1.5;
    color: var(--brand-warm-gray);
    margin-top: 2px;
}

/* toggle switch */
.cookie__switch {
    flex: none;
    width: 42px;
    height: 24px;
    border-radius: 9999px;
    background: var(--brand-cream-dark);
    border: 1px solid var(--brand-gold-dark);
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}
.cookie__switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.cookie__switch--on,
.cookie__row input:checked ~ .cookie__switch {
    background: var(--brand-gold-rich);
    border-color: var(--brand-gold-rich);
}
.cookie__switch--on::after,
.cookie__row input:checked ~ .cookie__switch::after {
    transform: translateX(18px);
}

/* actions */
.cookie__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}
.cookie__btn {
    padding: 11px 20px;
    font-size: var(--text-xs);
    flex: 1 1 auto;
    justify-content: center;
}
.cookie__link {
    background: none;
    border: none;
    padding: 6px 4px;
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--brand-warm-gray);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    flex: none;
    transition: color var(--transition);
}
.cookie__link:hover { color: var(--brand-black); }

/* footer reopen trigger */
.cookie-reopen {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 600px) {
    .cookie {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }
    .cookie__card { padding: 20px; }
    .cookie__actions { gap: 8px; }
    .cookie__btn { flex: 1 1 100%; }
    .cookie__link { flex: 1 1 100%; text-align: center; padding: 8px; }
}

/* ==========================================================================
   Legal page — privacy / cookie policy (minimal single column)
   ========================================================================== */
.legal {
    padding: 56px 0 80px;
}
.legal .container { max-width: 760px; }

.legal__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gold-light);
}
.legal__title {
    font-size: var(--text-xl);
    margin: 0;
}
.legal__body {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--brand-black);
}
.legal__body h2 {
    font-size: var(--text-md);
    margin: 40px 0 12px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 16px; }
.legal__body ul {
    margin: 0 0 16px;
    padding-left: 22px;
}
.legal__body li { margin-bottom: 8px; }
.legal__body a {
    color: var(--brand-gold-rich);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal__body strong { color: var(--brand-black); }
.legal__updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gold-light);
    font-size: var(--text-sm);
    color: var(--brand-warm-gray);
}
