/* ========================================
   ROOT VARIABLES & RESET
   ======================================== */

:root {
    --primary-color: #2C1F1A;
    --secondary-color: #ffffff;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --accent-color: #8B8B8B;
    --border-color: #E8E8E8;
    --transition: all 0.3s ease;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: transparent;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #2C1F1A;
    transition: background 0.4s ease;
}

.header.scrolled {
    background: #2C1F1A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    width: 100%;
    padding: 1rem 2rem;
    background: #2C1F1A;
}

.navbar > * {
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff !important;
    transition: var(--transition);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.tagline {
    font-size: 0.65rem;
    color: #ffffff !important;
    letter-spacing: 3px;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    font-family: var(--font-sans);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

/* Invisible gap to keep submenu visible when moving mouse */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    z-index: 1999;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #2C1F1A;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 2000;
    padding: 0.5rem 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, pointer-events 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

.dropdown-menu li {
    padding: 0.75rem 1.5rem;
}

.dropdown-menu a {
    text-decoration: none;
    color: #ffffff !important;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: #D4AF37;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    margin-top: 0;
    margin-top: 80px;
    min-height: 450px;
    background-color: #ffffff;
}

.hero-left {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-right {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D2E27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.hero-content {
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-content h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-weight: 600;
    line-height: 1.1;
}

.slogan {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #A9A9A9;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* ========================================
   AS SEEN IN SECTION
   ======================================== */

.as-seen-in {
    background-color: var(--secondary-color);
    padding: 0.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, #FAFAFA 0%, var(--secondary-color) 100%);
}

.as-seen-in h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.as-seen-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-logo {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    width: auto;
}

.series-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
}

.series-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 2rem 0;
    display: block;
}

.logos-track {
    display: flex;
    gap: 3rem;
    animation: scroll-logos 60s linear infinite !important;
    animation-play-state: running !important;
    width: max-content;
    padding: 0 1rem;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-item {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: transparent;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.logo-item:hover .logo-image {
    filter: brightness(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    16.67% {
        transform: translateX(calc(-180px * 1 - 3rem * 1));
    }
    33.33% {
        transform: translateX(calc(-180px * 2 - 3rem * 2));
    }
    50% {
        transform: translateX(calc(-180px * 3 - 3rem * 3));
    }
    66.67% {
        transform: translateX(calc(-180px * 4 - 3rem * 4));
    }
    83.33% {
        transform: translateX(calc(-180px * 5 - 3rem * 5));
    }
    100% {
        transform: translateX(0);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fafafa 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 106, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.services-section > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* 2-1-2 layout like Sisters Beauty Lounge */
.service-card:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}

.service-card:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
}

.service-card:nth-child(3) {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
}

.service-card:nth-child(4) {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    filter: brightness(0.95);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 31, 26, 0.85) 0%, rgba(44, 31, 26, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-align: left;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(44, 31, 26, 0.95) 0%, rgba(44, 31, 26, 0.6) 50%, transparent 100%);
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-card-empty {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-empty .service-overlay {
    background: transparent;
    backdrop-filter: none;
}

.service-card-empty .service-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    text-align: center;
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D2E27 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.booking-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.booking-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.booking-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.booking-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f5f5f5;
}

/* ========================================
   OUR STORY SECTION
   ======================================== */

.our-story {
    position: relative;
    background: linear-gradient(180deg, var(--secondary-color) 0%, #f5f5f5 100%);
    padding: 5rem 0 0 0;
    text-align: center;
    overflow: hidden;
}

.story-image-container {
    position: relative;
    margin: 0 auto -120px;
    width: 380px;
    height: 380px;
    max-width: 90vw;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.story-content {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 150px 2rem 4rem 2rem;
    position: relative;
    z-index: 5;
    margin: 0;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.story-italic {
    font-style: italic;
    font-weight: 400;
    margin-right: 0.5rem;
}

.story-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-column {
    text-align: left;
    line-height: 1.8;
}

.story-column p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-column p:last-child {
    margin-bottom: 0;
}

/* ========================================
   INSTAGRAM FEED SECTION
   ======================================== */

.instagram-feed {
    background: linear-gradient(180deg, #FAFAFA 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.instagram-feed h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.instagram-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.instagram-track {
    display: flex;
    gap: 1rem;
    padding: 1rem 1rem;
    will-change: transform;
    animation: scroll-left 80s linear infinite !important;
    animation-play-state: running !important;
}

.instagram-post-link {
    text-decoration: none;
    display: block;
    flex-shrink: 0;
}

.instagram-post {
    flex: 0 0 360px;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-icon {
    color: var(--secondary-color);
    font-size: 2rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(calc(-360px * 1 - 1rem * 1));
    }
    40% {
        transform: translateX(calc(-360px * 2 - 1rem * 2));
    }
    60% {
        transform: translateX(calc(-360px * 3 - 1rem * 3));
    }
    80% {
        transform: translateX(calc(-360px * 4 - 1rem * 4));
    }
    100% {
        transform: translateX(0);
    }
}

/* Duplicate posts for seamless loop */
.instagram-track::after {
    content: '';
    display: none;
}

.instagram-cta {
    margin-top: 2rem;
}

.instagram-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

.instagram-cta a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, #1F1815 100%);
    color: var(--secondary-color);
    padding: 4rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   GENERIC PAGE STYLES
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D2E27 100%);
    color: var(--secondary-color);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.95;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.content-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    letter-spacing: 0.2px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--secondary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.price-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D2E27 100%);
    color: var(--secondary-color);
    padding: 1.2rem 1rem;
    text-align: left;
    font-family: var(--font-serif);
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-table tr:hover {
    background-color: #f5f5f5;
}

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #2C1F1A;
        gap: 0;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

    .nav-menu li a {
        color: #ffffff;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #1A1410;
    }

    .dropdown-menu a {
        color: #ffffff;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown > a {
        cursor: pointer;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 70px;
        min-height: auto;
    }

    .hero-left {
        min-height: 250px;
    }

    .hero-right {
        padding: 2rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .slogan {
        font-size: 1.1rem;
    }

    .story-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto -100px;
    }

    .story-content {
        padding: 120px 1.5rem 3rem 1.5rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .story-text-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-column {
        text-align: center;
    }

    .as-seen-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .page-header {
        padding: 6rem 1.5rem 3rem;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .team-container {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .service-card:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .service-card:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .service-card:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .service-card:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .service-card:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .instagram-track {
        animation: scroll-left 70s linear infinite;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .instagram-post {
        flex: 0 0 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-left {
        min-height: 350px;
    }

    .hero {
        min-height: 350px;
    }

    .slogan {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-section h2 {
        font-size: 1.8rem;
    }

    .services-section > p {
        font-size: 0.95rem;
    }

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

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .service-overlay {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .booking-section h2 {
        font-size: 1.8rem;
    }

    .booking-section p {
        font-size: 1rem;
    }

    .as-seen-content {
        flex-direction: row;
        gap: 1.5rem;
    }

    .logo-container,
    .series-info {
        min-width: auto;
        flex: 1;
    }

    .featured-logo {
        max-height: 100px;
    }

    .series-logo {
        max-height: 100px;
    }

    .logo-item {
        flex: 0 0 120px;
        height: 80px;
    }

    .logos-track {
        gap: 1.5rem;
        animation: scroll-logos 50s linear infinite;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }
        16.67% {
            transform: translateX(calc(-120px * 1 - 2rem * 1));
        }
        33.33% {
            transform: translateX(calc(-120px * 2 - 2rem * 2));
        }
        50% {
            transform: translateX(calc(-120px * 3 - 2rem * 3));
        }
        66.67% {
            transform: translateX(calc(-120px * 4 - 2rem * 4));
        }
        83.33% {
            transform: translateX(calc(-120px * 5 - 2rem * 5));
        }
        100% {
            transform: translateX(0);
        }
    }

    .our-story {
        background-size: 200% !important;
        background-position: center -50px !important;
    }

    .price-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .price-table th,
    .price-table td {
        padding: 0.5rem 0.3rem;
        white-space: nowrap;
        min-width: 55px;
    }

    .price-table th:first-child,
    .price-table td:first-child {
        white-space: normal;
        min-width: 110px;
    }
    
    .contact-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .instagram-track {
        animation: scroll-left-mobile 60s linear infinite !important;
        animation-play-state: running !important;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .instagram-post {
        flex: 0 0 280px;
        height: 280px;
    }
    
    @keyframes scroll-left-mobile {
        0% {
            transform: translateX(0);
        }
        20% {
            transform: translateX(calc(-280px * 1 - 0.5rem * 1));
        }
        40% {
            transform: translateX(calc(-280px * 2 - 0.5rem * 2));
        }
        60% {
            transform: translateX(calc(-280px * 3 - 0.5rem * 3));
        }
        80% {
            transform: translateX(calc(-280px * 4 - 0.5rem * 4));
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

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

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.pricing-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.pricing-section .price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pricing-section .price-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-section .price-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
}

.pricing-section .price-table tr:hover {
    background: #f5f5f5;
}

.pricing-section .price-table .price {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 1.5rem;
    }

    .pricing-section .price-table {
        font-size: 0.9rem;
    }

    .pricing-section .price-table th,
    .pricing-section .price-table td {
        padding: 0.5rem;
    }
}


/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.team-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #7A6A5A;
}



.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.team-member h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.team-role {
    color: #7A6A5A;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.team-expertise {
    color: #999;
    font-size: 0.85rem;
    margin: 1rem 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.team-description {
    color: #666;
    font-size: 0.95rem;
    margin: 1.5rem 0 0;
    line-height: 1.7;
}

/* Mobile Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 3rem 1rem;
    }
    
    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-image {
        height: 250px;
    }
}


/* ========================================
   SALONIZED BOOKING WIDGET STYLING
   ======================================== */

.salonized-booking {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}

.salonized-booking iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.salonized-widget-container {
    display: block !important;
    visibility: visible !important;
}


/* TikTok Feed Section */
.tiktok-feed {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.tiktok-feed .section-title {
    margin-bottom: 3rem;
}

.tiktok-feed .section-title span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
}

.tiktok-feed h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -1px;
}

.tiktok-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.tiktok-track {
    display: flex;
    width: calc(280px * 10);
    animation: scroll-tiktok 40s linear infinite;
    gap: 1rem;
    animation-play-state: running !important;
}

.tiktok-item {
    width: 280px;
    height: 450px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tiktok-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok-btn {
    margin-top: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.85rem 2.5rem;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tiktok-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

@keyframes scroll-tiktok {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5 - 1rem * 5));
    }
}


.tiktok-btn-black {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.tiktok-btn-black:hover {
    background-color: #222222;
}

.tiktok-btn-black svg {
    width: 24px;
    height: 24px;
}
_*

@media (max-width: 768px) {
    .tiktok-track {
        animation: scroll-tiktok-mobile 30s linear infinite;
    }

    .tiktok-item {
        width: 220px;
        height: 350px;
    }

    @keyframes scroll-tiktok-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 5 - 1rem * 5));
        }
    }
}

@media (max-width: 480px) {
    .tiktok-track {
        animation: scroll-tiktok-small-mobile 25s linear infinite;
    }

    .tiktok-item {
        width: 180px;
        height: 280px;
    }

    @keyframes scroll-tiktok-small-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 5 - 1rem * 5));
        }
    }
}
