/* ============================================
   KAO BLISS — Gabinet Masażu Twarzy
   Japanese luxury spa aesthetic
   ============================================ */

/* --- Custom Properties --- */
:root {
    --color-bg: #F6F1EC;
    --color-bg-alt: #EDE6DD;
    --color-cream: #FAF7F2;
    --color-beige: #D4C4B0;
    --color-brown: #7A6652;
    --color-brown-dark: #5A4A38;
    --color-gold: #B8963E;
    --color-gold-light: #D4AF37;
    --color-coral: #C9544D;
    --color-text: #3A3530;
    --color-text-light: #7A7068;
    --color-white: #FFFFFF;
    --color-black: #1A1816;

    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', -apple-system, 'Segoe UI', sans-serif;

    --nav-height: 72px;
    --container-max: 1180px;
    --section-pad: 100px;
    --section-pad-mobile: 64px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(58, 53, 48, 0.06);
    --shadow-md: 0 8px 30px rgba(58, 53, 48, 0.08);
    --shadow-lg: 0 16px 50px rgba(58, 53, 48, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-brown-dark);
    margin-bottom: 48px;
}

/* --- Sections --- */
.section {
    padding: var(--section-pad-mobile) 0;
}

.section--alt {
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-pad) 0;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-brown-dark);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-brown);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    border: 1.5px solid var(--color-brown-dark);
    color: var(--color-brown-dark);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-brown-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn--block {
    width: 100%;
}

.btn svg { flex-shrink: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    background-color: rgba(246, 241, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(58, 53, 48, 0.08);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform 0.3s var(--ease-out);
}

.nav__logo:hover img {
    transform: scale(1.05);
}

.nav__links {
    display: none;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
        gap: 32px;
    }
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-out);
}

.nav.scrolled .nav__links a {
    color: var(--color-text);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.35s var(--ease-out);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

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

/* Language Toggle */
.lang-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled .lang-toggle {
    border-color: var(--color-beige);
    color: var(--color-text);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-toggle__en { display: none; }
html.lang-en .lang-toggle__pl { display: none; }
html.lang-en .lang-toggle__en { display: inline; }

/* Nav CTA */
.btn--nav {
    display: none;
    padding: 10px 24px;
    font-size: 0.75rem;
    background: var(--color-brown-dark);
    color: var(--color-white);
    border-radius: var(--radius);
}

.btn--nav:hover {
    background: var(--color-brown);
}

@media (min-width: 768px) {
    .btn--nav { display: inline-flex; }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .hamburger span {
    background: var(--color-text);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.hamburger.open span {
    background: var(--color-text);
}

@media (min-width: 768px) {
    .hamburger { display: none; }
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(246, 241, 236, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu__links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-brown-dark);
    transition: color 0.3s;
}

.mobile-menu__links a:hover {
    color: var(--color-gold);
}

.btn--mobile {
    padding: 16px 40px;
    background: var(--color-brown-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('img/hero.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 24, 22, 0.55) 0%,
        rgba(26, 24, 22, 0.35) 50%,
        rgba(26, 24, 22, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
    animation: fadeInUp 1.2s var(--ease-out) 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(184, 150, 62, 0.15);
}

@media (min-width: 768px) {
    .hero__logo {
        width: 240px;
        height: 240px;
    }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    letter-spacing: 0.02em;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.hero__cta .btn--primary {
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 500;
}

.hero__cta .btn--primary:hover {
    background: var(--color-gold-light);
}

.hero__cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.hero__cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 8px 20px;
    border-radius: 100px;
    animation: fadeInUp 1.2s var(--ease-out) 0.9s both;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bobble 2s var(--ease-in-out) infinite;
}

@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    display: grid;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        margin-bottom: 80px;
    }
}

.about__lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-brown-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__text p:not(.section__label):not(.about__lead) {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 576px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature {
    text-align: center;
    padding: 32px 20px;
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-beige), var(--color-gold-light), var(--color-beige));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card--accent {
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-cream));
    border: 1px solid var(--color-beige);
}

.service-card__header {
    margin-bottom: 16px;
}

.service-card__name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    line-height: 1.2;
}

.service-card__tagline {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 4px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-beige);
    margin-bottom: 16px;
}

.service-card__time {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.service-card__price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-left: auto;
}

.service-card__toggle {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brown);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.service-card__toggle::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 300;
    transition: transform 0.35s var(--ease-out);
}

.service-card__toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.service-card__toggle:hover {
    color: var(--color-gold);
}

.service-card__details {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
    padding-top: 0;
}

.service-card__details[hidden] {
    display: block;
    max-height: 0;
    padding-top: 0;
}

.service-card__details.open {
    max-height: 400px;
    padding-top: 16px;
}

.service-card__details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 10px;
}

.service-card__details ul {
    padding-left: 0;
}

.service-card__details li {
    position: relative;
    padding-left: 16px;
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.service-card__details li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ============================================
   TIMELINE / VISIT
   ============================================ */
.timeline {
    max-width: 680px;
    margin: 0 auto 48px;
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-beige);
}

.timeline__step {
    position: relative;
    margin-bottom: 40px;
}

.timeline__step:last-child {
    margin-bottom: 0;
}

.timeline__number {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-cream);
    border: 1px solid var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold);
    z-index: 1;
}

.timeline__content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.timeline__content p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

.timeline__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    cursor: pointer;
    aspect-ratio: 3 / 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 24, 22, 0);
    transition: background 0.4s var(--ease-out);
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__item:hover::after {
    background: rgba(26, 24, 22, 0.1);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 24, 22, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox[hidden] { display: flex; }

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease-out);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: var(--color-white);
    font-size: 2rem;
    padding: 12px;
    transition: opacity 0.3s;
    opacity: 0.7;
    z-index: 1;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

.lightbox__close {
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing__item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 196, 176, 0.4);
}

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

.pricing__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    white-space: nowrap;
}

.pricing__name em {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-left: 4px;
}

.pricing__dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-beige);
    min-width: 24px;
    margin-bottom: 4px;
}

.pricing__time {
    font-size: 0.85rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-gold);
    white-space: nowrap;
}

.pricing__item--accent .pricing__name {
    font-size: 1rem;
}

.pricing__notes {
    max-width: 700px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing__note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.pricing__note svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.pricing__note--promo {
    color: var(--color-coral);
    font-weight: 400;
}

.pricing__note--promo svg {
    color: var(--color-coral);
}

.pricing__cta {
    text-align: center;
}

/* ============================================
   ABOUT ME
   ============================================ */
.about-me {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-me {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-me__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-me__text p:not(.section__label) {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-me__quote {
    margin-top: 24px;
    padding: 24px 28px;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.about-me__quote p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-brown-dark) !important;
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
}

.testimonial__stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial__text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial__author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-brown-dark);
}

.testimonials__link {
    text-align: center;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-brown);
    transition: color 0.3s, gap 0.3s;
}

.link-arrow:hover {
    color: var(--color-gold);
    gap: 12px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-brown-dark);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.contact__detail a {
    color: var(--color-text);
    font-weight: 400;
}

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

.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.contact__map iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-brown-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer__brand { align-items: flex-start; }
}

.footer__brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer__brand p:first-of-type {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.08em;
}

.footer__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer__nav a {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--color-white);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s, color 0.3s;
}

.footer__social a:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__voucher {
    color: var(--color-gold-light);
    font-weight: 400;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.features .feature:nth-child(2) { transition-delay: 0.1s; }
.features .feature:nth-child(3) { transition-delay: 0.2s; }
.features .feature:nth-child(4) { transition-delay: 0.3s; }

.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.4s; }

.timeline__step:nth-child(2) { transition-delay: 0.1s; }
.timeline__step:nth-child(3) { transition-delay: 0.2s; }
.timeline__step:nth-child(4) { transition-delay: 0.3s; }

.testimonials .testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonials .testimonial:nth-child(3) { transition-delay: 0.2s; }

/* Language is handled by JS swapping textContent */

/* ============================================
   UTILITY: Body scroll lock
   ============================================ */
body.no-scroll {
    overflow: hidden;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .nav, .hero__scroll, .lightbox, .mobile-menu, .hamburger, .lang-toggle, .btn--nav { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero__bg, .hero__overlay { display: none; }
    .hero__content { color: var(--color-text); }
    .hero__title { color: var(--color-brown-dark); }
    .section { padding: 32px 0; }
    .reveal { opacity: 1; transform: none; }
}
