/* ============================================
   SALON SILVIA — Beauty & Style
   Premium Single-Page Website
   ============================================ */

/* --- Variables --- */
:root {
    --color-bg-dark: #1a1210;
    --color-bg-dark-alt: #211916;
    --color-bg-light: #faf6f2;
    --color-accent: #c8956c;
    --color-accent-light: #d4a882;
    --color-accent-dark: #b07d5a;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1210;
    --color-text-muted: #a09890;
    --color-text-muted-light: #8a8078;
    --color-border-light: rgba(200, 149, 108, 0.15);
    --color-border-dark: rgba(255, 255, 255, 0.08);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --container-width: 1200px;
    --section-padding: 120px;
}

/* --- 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-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(200, 149, 108, 0.3);
    color: var(--color-text-dark);
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section--light {
    background: var(--color-bg-light);
    padding: var(--section-padding) 0;
}

.section--dark {
    background: var(--color-bg-dark);
    padding: var(--section-padding) 0;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 64px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.section-label--light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--color-text-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transition: left 0.6s var(--ease-out);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 149, 108, 0.35);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 0.875rem;
}

.btn svg {
    flex-shrink: 0;
}


/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(26, 18, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navbar__logo-img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s;
}

.navbar__logo:hover {
    opacity: 0.8;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-text-light);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__cta {
    font-size: 0.75rem;
    padding: 10px 24px;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar__hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--color-text-light);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
}


/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text-light);
    text-decoration: none;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out), color 0.3s;
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__link:hover {
    color: var(--color-accent);
}

.mobile-menu__cta {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active .mobile-menu__cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}


/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(ellipse 70% 60% at 55% 45%, #3a2a1f 0%, #261d18 45%, #1a1210 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.hero__glow--secondary {
    right: auto;
    left: -5%;
    top: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.06) 0%, transparent 70%);
}

.hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.hero__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero__label-line {
    width: 48px;
    height: 1px;
    background: var(--color-accent);
    display: inline-block;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-text-light);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    line-height: 1.4;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: absolute;
    right: -20%;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__image img {
    height: 90vh;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero__scroll span {
    font-family: var(--font-body);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(200, 149, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__scroll-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-accent);
    position: absolute;
    left: -1px;
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: calc(100% - 3px); opacity: 0; }
}


/* ============================================
   ABOUT / O NÁS
   ============================================ */
.about__content {
    max-width: 900px;
    margin-bottom: 80px;
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--color-text-muted-light);
    padding-left: 32px;
    border-left: 2px solid var(--color-accent);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat__number-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-accent);
    margin-left: 2px;
}

.stat__label {
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted-light);
    line-height: 1.5;
}


/* ============================================
   SERVICES / SLUŽBY
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    background: rgba(200, 149, 108, 0.05);
    border-color: rgba(200, 149, 108, 0.35);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(200, 149, 108, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(200, 149, 108, 0.1);
    color: var(--color-accent);
    margin-bottom: 28px;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    transform: scale(1.05);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 16px;
    position: relative;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    position: relative;
}

.service-card__arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card__arrow {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    overflow: hidden;
    padding: 80px 0 0;
    user-select: none;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    -webkit-text-stroke: 1.5px rgba(200, 149, 108, 0.25);
    color: transparent;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   TREATMENTS / ŠPECIÁLNE OŠETRENIA
   ============================================ */
.treatments__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(26, 18, 16, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 2px 16px rgba(26, 18, 16, 0.04);
}

.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(26, 18, 16, 0.12), 0 8px 16px rgba(200, 149, 108, 0.08);
    border-color: rgba(200, 149, 108, 0.15);
}

.treatment-card:hover::after {
    transform: scaleX(1);
}

.treatment-card__icon {
    display: none;
}

.treatment-card__image {
    width: 100%;
    height: 207px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 0;
}

.treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.hhlfix img{
    object-position: top;
}

.treatment-card:hover .treatment-card__image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.treatment-card__body {
    padding: 28px 28px 32px;
}

.treatment-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    position: relative;
}

.treatment-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted-light);
    position: relative;
}


/* ============================================
   GALLERY / GALÉRIA
   ============================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    grid-auto-flow: dense;
}

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.08);
}

.gallery__item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover > img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 16, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
}

.gallery__overlay-icon {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 300;
    line-height: 1;
}


/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-text-light);
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.lightbox__close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lightbox__content {
    text-align: center;
}

.lightbox__image {
    border-radius: 16px;
    margin: 0 auto;
}

.lightbox__label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-top: 24px;
}


/* ============================================
   CONTACT / KONTAKT
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 48px;
}

.contact__info-row .contact__item {
    flex-direction: column;
    align-items: center;
}

.contact__cta-row {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.contact__cta-row .contact__cta {
    max-width: 300px;
}

.contact__maps-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 450px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 24px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact__item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(200, 149, 108, 0.1);
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact__item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact__item p {
    font-size: 0.9375rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

.contact__item a {
    color: var(--color-text-muted-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact__item a:hover {
    color: var(--color-accent);
}

.contact__cta {
    margin-top: 12px;
    align-self: flex-start;
}

.contact__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__visual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 420px;
}

.contact__map-embed {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 18, 16, 0.08);
}

.contact__map-embed iframe {
    display: block;
}

.contact__streetview {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 18, 16, 0.08);
}

.contact__streetview iframe {
    display: block;
}

.contact__map {
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(26, 18, 16, 0.08);
}

.contact__map iframe {
    display: block;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--color-border-light);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0 48px;
}

.footer__logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s;
}

.footer__logo:hover {
    opacity: 0.8;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-top: 20px;
    line-height: 1.6;
    font-style: italic;
}

.footer__links h4,
.footer__contact h4,
.footer__social h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--color-accent);
}

.footer__contact p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer__contact a {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.footer__contact a:hover {
    color: var(--color-accent);
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid var(--color-border-dark);
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero__inner {
        gap: 32px;
    }

    .hero__title {
        font-size: clamp(2.75rem, 6vw, 4.5rem);
    }

    .services__grid {
        gap: 20px;
    }

    .service-card {
        padding: 36px 32px;
    }

    .treatments__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-auto-rows: 180px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .navbar__nav,
    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
        align-items: center;
    }

    .hero__inner {
        min-height: auto;
        text-align: center;
        justify-content: center;
    }

    .hero__content {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero__label {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image {
        position: relative;
        right: auto;
        bottom: auto;
    }

    .hero__image img {
        height: auto;
        max-height: 50vh;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__scroll {
        display: none;
    }

    .hero__glow {
        right: -20%;
        width: 300px;
        height: 300px;
    }

    /* About */
    .about__text {
        font-size: 1rem;
        padding-left: 24px;
    }

    .about__stats {
        gap: 32px;
    }

    .stat__number {
        font-size: 2.5rem;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px 28px;
    }

    .service-card__arrow {
        display: none;
    }

    /* Marquee */
    .marquee__text {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    /* Treatments */
    .treatments__grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__map {
        height: 300px;
    }

    .contact__cta {
        align-self: stretch;
        text-align: center;
        justify-content: center;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__links,
    .footer__contact,
    .footer__social {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .stat {
        text-align: center;
    }

    .stat__number-wrap {
        justify-content: center;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .lightbox__close {
        top: 16px;
        right: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
