/* ── Reset & Base ─────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #F8F7F5;
    --gray-light: #F2F1EF;
    --gray-medium: #D8D6D2;
    --gray-dark: #4A4845;
    --gray-muted: #888580;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --shadow-strong: 0 12px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background-color: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo-img { height: 36px; width: auto; }

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }

.nav-link {
    text-decoration: none; color: var(--black);
    font-weight: 500; font-size: 0.8rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: var(--transition); position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background-color: var(--black);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.btn-book {
    background-color: var(--black); color: var(--white) !important;
    padding: 0.5rem 1.3rem; border-radius: 2px;
}
.btn-book::after { display: none; }
.btn-book:hover { background-color: var(--gray-dark); }

.mobile-menu-toggle {
    display: none; flex-direction: column;
    background: none; border: none; cursor: pointer; padding: 0.5rem; gap: 5px;
}
.mobile-menu-toggle span { width: 24px; height: 2px; background-color: var(--black); display: block; transition: var(--transition); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    position: relative; padding-top: 80px;
    background-image: url('img/bgryson.jpg');
    background-size: cover; background-position: center;
    background-attachment: fixed; overflow: hidden;
}

.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.78) 100%);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 1;
}

.hero-lines {
    position: absolute; inset: 0; z-index: 2;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255,255,255,0.025) 119px, rgba(255,255,255,0.025) 120px);
}

.hero-content { max-width: 820px; position: relative; z-index: 3; }

.hero-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 2rem;
    animation: fadeInDown 0.9s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9rem; font-weight: 400; line-height: 0.9;
    letter-spacing: 0.04em; color: var(--white);
    margin-bottom: 1.6rem;
    animation: fadeInUp 0.9s ease 0.15s both;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-divider {
    width: 56px; height: 1.5px;
    background: rgba(255,255,255,0.45);
    margin: 0 auto 1.4rem;
    animation: scaleIn 0.8s ease 0.3s both;
}

.hero-subtitle {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); margin-bottom: 0.8rem;
    animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-description {
    font-size: 0.95rem; color: rgba(255,255,255,0.5);
    margin-bottom: 2.8rem; font-weight: 300;
    animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-cta-group {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.35); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    animation: fadeInUp 0.9s ease 1.1s both;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2.2rem; text-decoration: none;
    border-radius: 2px; font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: var(--transition); border: 1.5px solid transparent; cursor: pointer;
}
.btn-primary { background-color: var(--white); color: var(--black); border-color: var(--white); }
.btn-primary:hover { background-color: transparent; color: var(--white); }

.btn-ghost { background-color: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background-color: var(--white); color: var(--black); border-color: var(--white); }

.btn-primary-dark {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 2.2rem; text-decoration: none; border-radius: 2px;
    font-weight: 600; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: var(--transition); background-color: var(--white); color: var(--black);
    border: 1.5px solid var(--white); cursor: pointer;
}
.btn-primary-dark:hover { background-color: transparent; color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 2.2rem; text-decoration: none; border-radius: 2px;
    font-weight: 600; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: var(--transition); background-color: transparent; color: var(--black);
    border: 1.5px solid var(--black); cursor: pointer;
}
.btn-outline:hover { background-color: var(--black); color: var(--white); }

/* ── Sections ─────────────────────────────────────────── */
section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
    display: block; font-size: 0.68rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gray-muted); margin-bottom: 0.7rem;
}
.section-label.light { color: rgba(255,255,255,0.45); }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.6rem; font-weight: 400; letter-spacing: 0.06em;
    margin-bottom: 1rem; line-height: 1;
}
.section-title.light { color: var(--white); }

.title-underline {
    width: 44px; height: 1.5px; background-color: var(--black);
    margin: 0 auto 1rem;
}
.title-underline.light { background-color: rgba(255,255,255,0.4); }

.section-subtitle { font-size: 0.9rem; color: var(--gray-muted); font-weight: 400; }
.section-subtitle.light { color: rgba(255,255,255,0.5); }

/* ── About ────────────────────────────────────────────── */
.about { background-color: var(--white); }

.about-intro {
    font-size: 1.1rem; text-align: center;
    max-width: 680px; margin: 0 auto 3.5rem;
    line-height: 1.9; color: var(--gray-dark); font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gray-medium);
    overflow-x: auto;
}

.feature-item {
    padding: 2.5rem 1.5rem;
    border-right: 1px solid var(--gray-medium);
    transition: var(--transition);
    min-width: 0;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background-color: var(--off-white); }

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem; color: var(--gray-medium);
    line-height: 1; margin-bottom: 1rem; letter-spacing: 0.05em;
}

.feature-item h3 {
    font-size: 0.8rem; margin-bottom: 0.8rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}

.feature-item p { color: var(--gray-dark); line-height: 1.75; font-size: 0.88rem; font-weight: 300; }

/* ── Packages ─────────────────────────────────────────── */
.packages { background-color: var(--off-white); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    background-color: var(--gray-medium);
    border: 1.5px solid var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
}

.packages-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
    opacity: 0;
}
.packages-extra.visible {
    max-height: 800px;
    opacity: 1;
}

.packages-grid--extra {
    margin-top: 1.5px;
    border-radius: 0 0 4px 4px;
    border-top: none;
}

.package-card {
    background-color: var(--white);
    padding: 2.8rem 2.5rem;
    transition: var(--transition);
    position: relative;
    display: flex; flex-direction: column;
}
.package-card:hover {
    background-color: var(--off-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    z-index: 2;
}
.package-card.featured { background-color: var(--black); color: var(--white); }
.package-card.featured:hover { background-color: #111; }

.package-badge {
    display: inline-block; font-size: 0.62rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.65);
    padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 1.5rem; width: fit-content;
}

.package-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.8rem; font-weight: 400; color: var(--gray-medium);
    line-height: 1; margin-bottom: 1rem; letter-spacing: 0.04em;
}
.package-card.featured .package-number { color: rgba(255,255,255,0.1); }

.package-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem; font-weight: 400; margin-bottom: 0.4rem; letter-spacing: 0.05em;
}
.package-tagline { font-size: 0.78rem; color: var(--gray-muted); letter-spacing: 0.05em; }
.package-card.featured .package-tagline { color: rgba(255,255,255,0.45); }

.package-body { flex-grow: 1; margin-bottom: 2.5rem; }

.package-features { list-style: none; }
.package-features li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
    position: relative; font-size: 0.85rem;
    color: var(--gray-dark); font-weight: 400;
}
.package-card.featured .package-features li { border-bottom-color: rgba(255,255,255,0.09); color: rgba(255,255,255,0.7); }
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--gray-muted); font-size: 0.78rem;
}
.package-card.featured .package-features li::before { color: rgba(255,255,255,0.28); }

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

/* See More button */
.packages-toggle-wrap { text-align: center; margin-top: 2.5rem; }

.btn-see-more {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: transparent; border: 1.5px solid var(--black);
    padding: 0.8rem 2rem; border-radius: 2px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    transition: var(--transition); color: var(--black);
}
.btn-see-more:hover { background-color: var(--black); color: var(--white); }
.btn-see-more svg { transition: transform 0.35s ease; }

/* ── Service Menu Grid ───────────────────────────────── */
.service-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--gray-medium);
    border: 1px solid var(--gray-medium);
    border-radius: 6px;
    overflow: hidden;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.8rem;
    background-color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.service-item:hover {
    background-color: var(--off-white);
}

.service-item--full {
    grid-column: 1 / -1;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.service-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.3;
}

.service-price {
    font-size: 0.75rem;
    color: var(--gray-muted);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.service-duration {
    font-size: 0.78rem;
    color: var(--gray-muted);
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    padding: 0.28rem 0.7rem;
    border: 1px solid var(--gray-medium);
    border-radius: 20px;
    font-size: 0.72rem;
}

/* Extra services collapse */
.service-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
    opacity: 0;
}
.service-extra.visible {
    max-height: 600px;
    opacity: 1;
}
.service-menu-grid--extra {
    margin-top: 1px;
    border-radius: 0 0 6px 6px;
    border-top: none;
}

/* ── Reviews Slider ──────────────────────────────────── */
.review-slider-wrap {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.review-slider {
    position: relative;
    min-height: 200px;
}

.review-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}
.review-slide.active { display: block; }

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

.review-card {
    background-color: var(--off-white);
    padding: 3rem 3.5rem;
    border-radius: 4px;
    border: 1px solid var(--gray-medium);
}

.review-stars { color: var(--black); font-size: 0.9rem; margin-bottom: 1.4rem; letter-spacing: 0.14em; }

.review-text {
    font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.8rem;
    color: var(--gray-dark); font-weight: 300; font-style: italic;
}

.review-author { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); }

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--gray-medium);
    border-radius: 50%;
    background: transparent; cursor: pointer;
    color: var(--gray-dark);
    transition: var(--transition);
}
.review-arrow:hover { background-color: var(--black); color: var(--white); border-color: var(--black); }

.review-dots { display: flex; gap: 0.5rem; align-items: center; }

.review-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.review-dot.active { background-color: var(--black); transform: scale(1.3); }

.review-source {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gray-muted); margin-top: 1.5rem;
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery { background-color: var(--white); }

.showcase-label {
    font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gray-muted); margin-bottom: 1.6rem; display: block; text-align: center;
}

.hairstyle-showcase { margin-bottom: 5rem; }

.hairstyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.hairstyle-card { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 3/4; cursor: pointer; }
.hairstyle-img-wrap { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hairstyle-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); display: block; }
.hairstyle-card:hover .hairstyle-img-wrap img { transform: scale(1.06); }

.hairstyle-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: var(--transition);
}
.hairstyle-card:hover .hairstyle-overlay { opacity: 1; }
.hairstyle-overlay span { color: var(--white); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }

.shop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.gallery-item { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 4/3; cursor: pointer; background: var(--gray-light); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); display: block; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem 0.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: var(--white); font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; font-weight: 500;
    opacity: 0; transform: translateY(6px); transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Studio Lightbox */
.studio-lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.93);
    align-items: center; justify-content: center;
    padding: 1rem;
}
.studio-lightbox.active { display: flex; }

.lightbox-inner {
    max-width: 90vw; max-height: 88vh;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.lightbox-inner img {
    max-width: 100%; max-height: 80vh;
    object-fit: contain; border-radius: 3px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    color: rgba(255,255,255,0.5); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
}
.lightbox-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 2rem; cursor: pointer; line-height: 1;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7); font-size: 2rem; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.4);
}

/* ── Team ─────────────────────────────────────────────── */
.team { background-color: var(--off-white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }

.team-img-wrap {
    position: relative; overflow: hidden; border-radius: 3px;
    aspect-ratio: 3/4; background-color: var(--gray-light);
}
.team-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); display: block;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: flex-end;
    padding: 2rem; opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }

.team-book-btn {
    display: inline-block; width: 100%;
    text-align: center; padding: 0.75rem 1.2rem;
    background-color: var(--white); color: var(--black);
    text-decoration: none; font-weight: 700; font-size: 0.72rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    border-radius: 2px; transition: var(--transition);
}
.team-book-btn:hover { background-color: var(--black); color: var(--white); }

.team-info {
    padding: 1.2rem 0.2rem 0;
    border-bottom: 1.5px solid var(--gray-medium);
    padding-bottom: 1.2rem;
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.06em;
    font-weight: 400; margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.72rem; color: var(--gray-muted);
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}

/* ── Reviews ──────────────────────────────────────────── */
.reviews { background-color: var(--white); }

/* ── Booking ──────────────────────────────────────────── */
.booking { background-color: var(--black); position: relative; overflow: hidden; }

.booking-bg {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px),
        repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px);
}

.booking-content {
    display: flex; align-items: center; justify-content: center;
    gap: 6rem; flex-wrap: wrap; position: relative; z-index: 1;
}

.qr-block { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.qr-frame {
    position: relative; padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
    background: rgba(255,255,255,0.03);
}

.qr-corner { position: absolute; width: 18px; height: 18px; }
.qr-corner--tl { top:-1px; left:-1px; border-top:2px solid var(--white); border-left:2px solid var(--white); }
.qr-corner--tr { top:-1px; right:-1px; border-top:2px solid var(--white); border-right:2px solid var(--white); }
.qr-corner--bl { bottom:-1px; left:-1px; border-bottom:2px solid var(--white); border-left:2px solid var(--white); }
.qr-corner--br { bottom:-1px; right:-1px; border-bottom:2px solid var(--white); border-right:2px solid var(--white); }

.qr-img { display: block; width: 200px; height: 200px; border-radius: 2px; }

.qr-label { color: var(--white); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.qr-url { color: rgba(255,255,255,0.3); font-size: 0.68rem; letter-spacing: 0.04em; }

.booking-divider {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.2); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.booking-divider::before, .booking-divider::after {
    content: ''; width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

.booking-cta { max-width: 380px; }

.booking-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; font-weight: 400; color: var(--white);
    line-height: 1.05; margin-bottom: 1.2rem; letter-spacing: 0.04em;
}
.booking-cta-title em { font-style: italic; }

.booking-cta-desc {
    color: rgba(255,255,255,0.45); font-size: 0.86rem;
    line-height: 1.75; font-weight: 300; margin-bottom: 2rem;
}

.btn-booking-main {
    display: inline-flex; align-items: center; gap: 0.8rem;
    padding: 1rem 2.4rem; background-color: var(--white); color: var(--black);
    text-decoration: none; font-weight: 700; font-size: 0.75rem;
    letter-spacing: 0.16em; text-transform: uppercase; border-radius: 2px;
    transition: var(--transition); border: 1.5px solid var(--white); margin-bottom: 1rem;
}
.btn-booking-main:hover { background-color: transparent; color: var(--white); }
.btn-booking-main svg { transition: transform 0.3s ease; }
.btn-booking-main:hover svg { transform: translateX(5px); }

.booking-note {
    color: rgba(255,255,255,0.22); font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── Location ─────────────────────────────────────────── */
.location { background-color: var(--white); }

.location-content {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 4rem; align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 0; }

.info-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-medium);
}
.info-item:first-child { padding-top: 0; }
.info-item:last-child { border-bottom: none; }

.info-item h3 {
    font-size: 0.7rem; margin-bottom: 0.6rem;
    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-muted);
}
.info-item p { color: var(--gray-dark); line-height: 1.85; font-size: 0.88rem; font-weight: 300; }

.location-map { background-color: var(--gray-light); border-radius: 3px; overflow: hidden; height: 420px; }

/* ── Footer ───────────────────────────────────────────── */
.footer { background-color: var(--black); color: var(--white); padding: 4rem 0 2rem; }

.footer-content {
    text-align: center; margin-bottom: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { height: 34px; width: auto; margin-bottom: 1.2rem; filter: invert(1); opacity: 0.88; }

.footer-text {
    margin-bottom: 2rem; font-size: 0.72rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}

.footer-social { display: flex; justify-content: center; gap: 1.2rem; }

.social-link {
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: var(--transition); display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
}
.social-link:hover { color: var(--white); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }

.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.85; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
    .location-content { grid-template-columns: 1fr; }
    .location-map { height: 340px; }
    .team-grid { gap: 1.5rem; }
    .booking-content { gap: 3rem; flex-direction: column; align-items: center; text-align: center; }
    .booking-cta { text-align: center; }
    .booking-divider { flex-direction: row; }
    .booking-divider::before, .booking-divider::after {
        width: 60px; height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: fixed; left: -100%; top: 62px;
        flex-direction: column; background-color: var(--white);
        width: 100%; text-align: center; transition: 0.3s;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        padding: 2rem 0; gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 0.7rem 0; }

    .hero-title { font-size: 5.5rem; }
    .section-title { font-size: 2.8rem; }
    .booking-cta-title { font-size: 2.8rem; }

    .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

    .hairstyle-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .hairstyle-card { aspect-ratio: 4/3; }

    /* Studio gallery — 2-col masonry on mobile */
    .shop-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
    .gallery-item { aspect-ratio: 1/1; }
    /* Always show captions on touch devices */
    .gallery-caption { opacity: 1; transform: translateY(0); }

    .about-features { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .feature-item { padding: 1.8rem 1rem; min-width: 140px; }
    .feature-number { font-size: 2rem; }
    .feature-item h3 { font-size: 0.7rem; }
    .feature-item p { font-size: 0.78rem; }

    .service-menu-grid { grid-template-columns: 1fr; }
    .service-item--full { grid-column: 1 / 2; }
    .service-menu-grid--extra { border-radius: 0 0 6px 6px; }

    .review-card { padding: 2rem 1.5rem; }

    .packages-grid { gap: 1rem; background: none; border: none; }
    .packages-grid--extra { margin-top: 1rem; border-radius: 4px; border: 1.5px solid var(--gray-medium); }
    .package-card { border-radius: 4px; border: 1.5px solid var(--gray-medium); }
    .package-card.featured { border: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 4rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .qr-img { width: 180px; height: 180px; }
    section { padding: 4rem 0; }
}