@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@400;600&family=Inter:wght@300;400;500;600&display=swap');

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

html {
    background-color: #1a1a1a;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
    width: 100%;
    max-width: 100vw;
    height: auto;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    background-color: #1a1a1a;
    line-height: 1.65;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
}

section, header, footer, nav, div, main {
    max-width: 100%;
}

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

a {
    color: inherit;
}

/* ============ INSTAGRAM BANNER (matches Urban Hair - in normal flow for crisp text) ============ */
.instagram-banner {
    width: 100%;
    background: #1a1a1a;
    padding: 11px 24px;
    text-align: center;
    z-index: 1001;
    position: relative;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

.instagram-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
    padding: 4px 16px;
    min-height: 22px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.instagram-banner-link:hover {
    opacity: 0.85;
}

.instagram-banner-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.instagram-banner-handle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .instagram-banner-text {
        font-size: 12px;
    }
    .instagram-banner-handle {
        font-size: 12px;
    }
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============ NAV (sticky - stays visible, banner scrolls away above it) ============ */
.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #111111;
    height: 100px;
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 0 40px;
    width: 100%;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100px;
    padding-left: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    max-width: 330px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-shrink: 0;
    height: 100px;
    margin-left: auto;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.6px;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c4956a;
}

.nav-book-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: #c4956a;
    color: #1a1a1a;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-book-btn:hover {
    background: #b8845a;
}

/* keep the Book Now pill at its natural height inside the full-height link row */
.nav-links a.nav-book-btn {
    height: auto;
    align-self: center;
    color: #1a1a1a;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111111;
    z-index: 999;
    padding: 144px 24px 36px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-link:hover {
    color: #c4956a;
}

.mobile-book-btn {
    display: block;
    text-align: center;
    margin-top: 22px;
    background: #c4956a;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 0;
    border-radius: 4px;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
    transform-origin: center;
}

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

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
}

/* ============ LAYOUT HELPERS ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 90px 0;
}

.section-white { background: #ffffff; }
.section-offwhite { background: #fafaf8; }
.section-dark { background: #1a1a1a; }

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 14px;
    display: block;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-heading.on-dark { color: #ffffff; }

.section-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    max-width: 620px;
    margin-bottom: 48px;
}

.section-intro.on-dark { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ============ HERO ============ */
.hero {
    position: relative;
    margin-top: 0;
    min-height: calc(100vh - 144px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: visible;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: translateZ(0);
}

.hero-slide.active { opacity: 1; }

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 auto 22px;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: #c4956a;
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    display: inline-block;
}

.btn-primary:hover { background: #b8845a; }

.btn-ghost {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: #c4956a;
    color: #c4956a;
}

.btn-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
    display: inline-block;
}

.btn-dark:hover { background: #333; }

.btn-outline-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.btn-outline-dark:hover { background: #1a1a1a; color: #ffffff; }

.btn-lg {
    font-size: 17px;
    padding: 18px 44px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: #1a1a1a;
    border-top: 1px solid rgba(196,149,106,0.25);
    border-bottom: 1px solid rgba(196,149,106,0.25);
    padding: 26px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.trust-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4956a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c4956a;
    border-radius: 50%;
    display: inline-block;
}

/* ============ ABOUT ============ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 4px solid #c4956a;
    border-radius: 4px;
}

.about-content h2 { margin-bottom: 20px; }

.about-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15.5px;
    color: #444;
    margin-bottom: 26px;
}

.about-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.about-bullets li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
}

.about-bullets li::before {
    content: '';
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 0.55em;
    margin-right: 14px;
    background: #c4956a;
    border-radius: 50%;
}

/* ============ BOOKING SECTION ============ */
.booking-section {
    background: #1a1a1a;
    padding: 90px 0;
    text-align: center;
}

.booking-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.booking-section p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
}

.booking-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-top: 3px solid transparent;
    border-radius: 4px;
    padding: 34px 28px;
    text-decoration: none;
    display: block;
    transition: border-top-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    border-top-color: #c4956a;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14.5px;
    color: #555;
}

.service-card .service-more {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4956a;
}

/* ============ REVIEWS CAROUSEL ============ */
.carousel-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y;
}

.carousel-track.dragging {
    transition: none;
}

.review-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 32px 28px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #c4956a;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15.5px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

.review-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4956a;
    margin-top: 4px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #c4956a;
    color: #1a1a1a;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 3;
}

.carousel-btn:hover { background: #b8845a; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ============ CTA BAND ============ */
.cta-band {
    background: #c4956a;
    padding: 72px 0;
    text-align: center;
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.cta-band p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2b2b2b;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: #1a1a1a;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
    margin-top: 0;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ SERVICES ACCORDION ============ */
.accordion {
    max-width: 860px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e6e2d7;
    border-radius: 6px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: none;
    padding: 22px 26px;
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease;
}

.accordion-header:hover { background: #fafaf8; }

/* service name fills the row so every price starts at the same x */
.accordion-header > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.accordion-header .acc-price {
    flex: 0 0 auto;
    width: 92px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #c4956a;
    white-space: nowrap;
}

.accordion-header .acc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-left: 8px;
}

.accordion-header .acc-icon::before,
.accordion-header .acc-icon::after {
    content: '';
    position: absolute;
    background: #c4956a;
    transition: transform 0.3s ease;
}

.accordion-header .acc-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.accordion-header .acc-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.accordion-item.open .acc-icon::after { transform: rotate(90deg); opacity: 0; }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-body-inner {
    padding: 4px 26px 26px;
}

.accordion-body-inner p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.service-notes {
    max-width: 860px;
    margin: 40px auto 0;
    background: #fafaf8;
    border: 1px solid #e6e2d7;
    border-radius: 6px;
    padding: 28px 30px;
}

.service-notes li {
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.6;
    color: #333;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
}

.service-notes li::before {
    content: '';
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 0.55em;
    margin-right: 14px;
    background: #c4956a;
    border-radius: 50%;
}

/* ============ GALLERY GRID ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    height: 270px;
    overflow: hidden;
    border-radius: 3px;
}

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

/* ============ REVIEWS GRID ============ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reviews-grid .review-card {
    border: 1px solid #ece9e0;
}

/* ============ CONTACT ============ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-block { margin-bottom: 30px; }

.contact-block h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 8px;
}

.contact-block p, .contact-block a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
}

.contact-block a:hover { color: #c4956a; }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
}

.hours-table td {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #333;
    padding: 9px 0;
    border-bottom: 1px solid #ece9e0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-note {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c4956a;
    margin: 18px 0 26px;
}

.booking-panel {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 44px 36px;
    text-align: center;
}

.booking-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.booking-panel p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 26px;
}

.fresha-frame {
    width: 100%;
    height: 640px;
    border: none;
    border-radius: 8px;
    background: #fafaf8;
    margin-bottom: 20px;
}

/* ============ CONTACT FORM ============ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    border: 1px solid #d8d3c6;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
    width: 100%;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c4956a;
}

.form-status {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 6px;
}

.form-status.success { color: #1c7a3e; }
.form-status.error { color: #b23b3b; }

/* ============ FOOTER ============ */
.footer {
    background: #1a1a1a;
    padding: 64px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c4956a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-name svg { width: 24px; height: 24px; color: #c4956a; }

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px auto;
}

.footer p, .footer a, .footer li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.9;
}

.footer a:hover { color: #c4956a; }

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-col ul { list-style: none; }

.footer-note {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c4956a;
    margin-top: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 44px auto 0;
    padding: 22px 32px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============ REVEAL ANIMATIONS ============ */
/* All reveal elements are always fully visible so page content never depends on JS. */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 1100px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image { height: 420px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .about-inner { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .carousel-outer { padding: 0 44px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .page-hero { padding-left: 24px; padding-right: 24px; padding-bottom: 64px; }
    .trust-item { font-size: 12px; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .trust-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }
    .booking-buttons .btn-primary,
    .booking-buttons .btn-ghost,
    .about-content .btn-primary,
    .cta-buttons .btn-dark,
    .cta-buttons .btn-outline-dark { width: 100%; text-align: center; }
    .carousel-outer { padding: 0 12px; }
    .carousel-btn { width: 38px; height: 38px; font-size: 16px; }
    .accordion-header { font-size: 16px; padding: 18px 18px; }
    .accordion-header .acc-price { width: 78px; font-size: 14px; }
}

/* ============ SHOP PAGE ============ */
.shop-section {
    background: #fafaf8;
    padding: 80px 32px;
}

.shop-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-intro {
    text-align: center;
    margin-bottom: 56px;
}

.shop-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    max-width: 600px;
    margin: 16px auto 0 auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: #c4956a;
}

.product-image-placeholder span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4956a;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #666666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.product-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.product-order-btn:hover {
    background: #c4956a;
    color: #1a1a1a;
}

.product-order-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.product-order-btn.whatsapp:hover {
    background: #20bb5a;
}

.shop-note {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.shop-note h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.shop-note p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.shop-note strong {
    color: #c4956a;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

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

/* ============ FRESHA BOOKING (CONTACT) ============ */
.fresha-booking {
    background: #fafaf8;
    border-radius: 8px;
    padding: 40px 36px;
    height: 100%;
}

.fresha-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    background: #c4956a;
    color: #1a1a1a;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    margin: 24px 0;
}

.fresha-book-btn:hover {
    background: #b8845a;
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333333;
}

.feature-icon {
    color: #c4956a;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.booking-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888888;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.booking-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.7;
}

/* ============ SOLID BARS - NO TRANSPARENCY ============ */
.instagram-banner,
.nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-clip: padding-box;
}

.instagram-banner::before,
.nav::before {
    display: none;
}

/* ============ NAV + BANNER RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 768px) {
    .instagram-banner {
        padding: 8px 16px;
    }

    .nav {
        height: 88px;
    }

    .mobile-menu {
        padding-top: 128px;
    }

    .nav-inner {
        height: 88px;
        padding: 0 16px;
    }

    .nav-logo {
        height: 88px;
        padding-left: 8px;
    }

    .nav-logo-img {
        height: 88px;
        max-width: 260px;
    }

    .nav-links {
        height: 88px;
    }

    .hero {
        margin-top: 0;
        min-height: calc(100vh - 128px);
    }

    .page-hero {
        padding-top: 72px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-banner {
        padding: 7px 14px;
    }

    .nav {
        height: 80px;
    }

    .mobile-menu {
        padding-top: 118px;
    }

    .nav-inner {
        height: 80px;
        padding: 0 12px;
    }

    .nav-logo {
        height: 80px;
        padding-left: 6px;
    }

    .nav-logo-img {
        height: 80px;
        max-width: 220px;
    }

    .nav-links {
        height: 80px;
    }

    .hero {
        margin-top: 0;
        min-height: calc(100vh - 118px);
    }

    .page-hero {
        padding-top: 64px;
    }
}

/* ============ SCROLL GUARANTEE (must stay last) ============ */
html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
}

/* ============ AREAS WE COVER PAGE ============ */
.areas-list {
    max-width: 760px;
    margin: 44px auto 0;
}

.areas-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 8px;
}

.areas-list h3:first-child { margin-top: 0; }

.areas-list p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.areas-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============ STACKING ============ */
main {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero,
section,
footer {
    position: relative;
    z-index: 1;
}
