/* ========================================
   SILA - Premium Hair Salon
   Color Palette: Gold & Deep Green
======================================== */

:root {
    /* Primary Colors */
    --gold: #C9A962;
    --gold-light: #D4BC7D;
    --gold-dark: #A68B4B;
    --gold-muted: rgba(201, 169, 98, 0.15);

    /* Green Palette */
    --green-deep: #1A3A2F;
    --green-dark: #0D1F18;
    --green-medium: #234536;
    --green-light: #2D5A47;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #F9F7F3;
    --gray-light: #E8E6E1;
    --gray: #9A9A9A;
    --black: #0A0A0A;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 40px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cream);
    background-color: var(--green-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--green-dark);
    padding: 1rem 2rem;
    z-index: 10001;
    font-weight: 500;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--cream);
    outline-offset: 2px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Cookie Notice
======================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--green-deep);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-notice.visible {
    transform: translateY(0);
}

.cookie-notice.hidden {
    display: none;
}

.cookie-notice p {
    font-size: 0.85rem;
    color: var(--cream);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: var(--green-dark);
}

.cookie-btn-accept:hover {
    background-color: var(--gold-light);
}

.cookie-btn-decline {
    border: 1px solid var(--gray);
    color: var(--gray);
}

.cookie-btn-decline:hover {
    border-color: var(--cream);
    color: var(--cream);
}

/* ========================================
   Floating Action Buttons
======================================== */

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.fab:hover {
    transform: scale(1.1);
}

.fab svg {
    width: 24px;
    height: 24px;
}

.fab-phone {
    background-color: var(--gold);
    color: var(--green-dark);
}

.fab-whatsapp {
    background-color: #25D366;
    color: white;
}

/* ========================================
   Language Switcher
======================================== */

.lang-switcher {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.25rem;
    z-index: 999;
    background-color: rgba(13, 31, 24, 0.95);
    padding: 0.25rem;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.lang-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray);
    transition: var(--transition-fast);
}

.lang-btn.active {
    background-color: var(--gold);
    color: var(--green-dark);
}

.lang-btn:hover:not(.active) {
    color: var(--cream);
}

/* ========================================
   Container
======================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Navigation
======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.nav.scrolled {
    background-color: rgba(13, 31, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: var(--gold);
}

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

.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--gold);
}

.nav-link-cta {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: var(--gold);
    color: var(--green-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

/* ========================================
   Buttons
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.25rem 2.5rem;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Hero Section
======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video,
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video {
    z-index: 1;
}

.hero-img {
    z-index: 0;
}

.hero-video.hidden {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(13, 31, 24, 0.7) 0%,
            rgba(13, 31, 24, 0.5) 50%,
            rgba(13, 31, 24, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 1rem;
    text-indent: 0.5em;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 3rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 1;
    z-index: 10;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ========================================
   Promo Banner
======================================== */

.promo-banner {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 1rem 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 1.5rem;
}

.promo-text {
    font-size: 0.9rem;
    color: var(--green-dark);
    text-align: center;
}

.promo-btn {
    padding: 0.5rem 1rem;
    background-color: var(--green-dark);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.promo-btn:hover {
    background-color: var(--green-deep);
}

/* ========================================
   Section Styles
======================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.section-line-center {
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================================
   About Section
======================================== */

.about {
    background-color: var(--green-deep);
    padding-bottom: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

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

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image-frame {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.feature-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--cream);
}

/* ========================================
   First Visit Section
======================================== */

.first-visit {
    background-color: var(--green-dark);
}

.first-visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.first-visit-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(26, 58, 47, 0.3);
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-fast);
}

.first-visit-step:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.first-visit-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
}

.first-visit-step p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Team Section
======================================== */

.team {
    background-color: var(--green-deep);
}

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

.team-member {
    background-color: rgba(26, 58, 47, 0.4);
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
    transition: var(--transition-medium);
}

.team-member:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 24, 0.95), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-more {
    padding: 0.75rem 1.5rem;
    background-color: var(--gold);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.team-member:hover .member-more {
    background-color: var(--gold-light);
}

.member-info {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.member-level {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.member-level-master {
    color: var(--gold-light);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.member-bio-short {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   Products Section
======================================== */

.products {
    background-color: var(--green-dark);
}

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

.product-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: var(--transition-fast);
}

.product-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
}

.product-logo {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========================================
   Quote Section
======================================== */

.quote-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background-color: var(--green-deep);
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-bg img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    position: absolute;
    top: -15%;
    left: 0;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 31, 24, 0.85);
}

.quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.5;
    line-height: 0;
    display: block;
    margin-bottom: -1rem;
}

.quote-mark-end {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ========================================
   Services Section
======================================== */

.services {
    background-color: var(--green-dark);
}

/* Service Filter */
.service-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--cream);
}

.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

/* Stylist Levels */
.stylist-levels {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stylist-level {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.level-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.level-icon svg {
    width: 100%;
    height: 100%;
}

.level-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
}

/* Price Table */
.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--green-deep);
}

.price-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.price-table-wrapper::-webkit-scrollbar-track {
    background: var(--green-deep);
}

.price-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

.price-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
}

.price-table thead {
    position: sticky;
    top: 0;
}

.price-table th {
    background-color: var(--green-deep);
    padding: 1.25rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    border-bottom: 1px solid var(--gold);
}

.price-table th.service-col {
    text-align: left;
    width: 50%;
}

.price-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--cream);
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition-fast);
}

.price-table tbody tr:hover td {
    background-color: rgba(201, 169, 98, 0.05);
}

.price-table tbody tr.hidden {
    display: none;
}

.price-table .service-name {
    text-align: left;
    font-weight: 400;
}

.price-table .service-note {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.25rem;
}

/* Category Rows */
.category-row {
    background-color: rgba(26, 58, 47, 0.6);
}

.category-row td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.category-row:hover td {
    background-color: transparent !important;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Price Note */
.price-note {
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gray);
    margin-top: 2rem;
}

/* ========================================
   Gallery Section
======================================== */

.gallery {
    background-color: var(--green-deep);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 31, 24, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
}

/* Instagram Feed */
.instagram-feed {
    margin-top: 4rem;
    text-align: center;
}

.instagram-feed h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.instagram-handle {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.instagram-handle:hover {
    color: var(--gold-light);
}

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

.instagram-item {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
    filter: grayscale(20%);
}

.instagram-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* ========================================
   Reviews Section
======================================== */

.reviews {
    background-color: var(--green-dark);
}

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

.review-card {
    padding: 2.5rem;
    background-color: rgba(26, 58, 47, 0.4);
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.review-stars {
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 500;
    color: var(--cream);
}

.review-source {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   FAQ Section
======================================== */

.faq {
    background-color: var(--green-deep);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-align: left;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ========================================
   Gift Card Section
======================================== */

.gift-card {
    background-color: var(--green-dark);
}

.gift-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-card-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.gift-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gift-option {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
    font-size: 0.85rem;
    color: var(--cream);
    transition: var(--transition-fast);
}

.gift-option:hover {
    border-color: var(--gold);
    background-color: rgba(201, 169, 98, 0.1);
}

.gift-card-visual {
    display: flex;
    justify-content: center;
}

.gift-card-mockup {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, var(--green-medium), var(--green-deep));
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.gift-card-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.gift-card-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.5rem;
    color: var(--gold);
}

.gift-card-value {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--cream);
}

.gift-card-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

/* ========================================
   Location Section
======================================== */

.location {
    background-color: var(--green-deep);
}

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

.location-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.location-value {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cream);
}

.location-value a {
    transition: var(--transition-fast);
}

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

.location-nav-btn {
    margin-top: 1rem;
}

.location-nav-btn svg {
    width: 18px;
    height: 18px;
}

.location-map {
    position: relative;
    width: 100%;
    min-height: 400px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.1);
}

/* ========================================
   Newsletter Section
======================================== */

.newsletter {
    background-color: var(--green-dark);
    padding: 4rem 0;
}

/* ========================================
   Blog Section
======================================== */

.blog {
    background-color: var(--green-dark);
}

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

.blog-card {
    background-color: var(--green-deep);
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
    transition: var(--transition-fast);
}

.blog-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--gold);
    color: var(--green-dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.blog-link:hover {
    color: var(--gold-light);
}

/* ========================================
   Stylist Modal
======================================== */

.stylist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.stylist-modal.active {
    opacity: 1;
    visibility: visible;
}

.stylist-modal-content {
    background-color: var(--green-deep);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.stylist-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    background: none;
    border: 1px solid rgba(201, 169, 98, 0.3);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.stylist-modal-close:hover {
    background-color: var(--gold);
    color: var(--green-dark);
}

.stylist-modal-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.stylist-modal-image {
    height: 100%;
    min-height: 400px;
}

.stylist-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stylist-modal-info {
    padding: 2rem 2rem 2rem 0;
}

.stylist-modal-level {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stylist-modal-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.stylist-modal-exp {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.stylist-modal-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.stylist-modal-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.stylist-modal-section {
    margin-bottom: 1.5rem;
}

.stylist-modal-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.stylist-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stylist-modal-tag {
    background-color: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--cream);
}

.stylist-modal-book {
    display: inline-block;
    margin-top: 1rem;
}

/* ========================================
   CTA Section
======================================== */

.cta {
    background-color: var(--green-deep);
    text-align: center;
    padding: 3rem 0;
}

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

.cta-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

/* ========================================
   Footer
======================================== */

.footer {
    background-color: var(--green-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--gold);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-bottom span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 30px;
    }

    .lang-switcher {
        bottom: 2rem;
        left: 1.5rem;
    }

    .about-grid,
    .location-grid,
    .gift-card-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about {
        padding-bottom: var(--section-padding);
    }

    .first-visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stylist-levels {
        gap: 2rem;
    }

    .gallery-item {
        height: 220px;
    }

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

    .stylist-modal-body {
        grid-template-columns: 1fr;
    }

    .stylist-modal-image {
        min-height: 300px;
    }

    .stylist-modal-info {
        padding: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .lang-switcher {
        bottom: 1.5rem;
        left: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--green-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
    }

    .hero-scroll {
        bottom: 1.5rem;
    }

    .hero-scroll-line {
        height: 30px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .first-visit-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stylist-levels {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .member-info {
        padding: 1.5rem;
    }

    .gallery-grid {
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 1 1 calc(33.333% - 0.5rem);
        height: 180px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Price Table - Card Layout */
    .price-table-wrapper {
        overflow-x: visible;
    }

    .price-table {
        min-width: unset;
    }

    .price-table thead {
        display: none;
    }

    .price-table tbody tr {
        display: block;
        background-color: var(--green-deep);
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid rgba(201, 169, 98, 0.1);
    }

    .price-table tbody tr.hidden {
        display: none;
    }

    .price-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
        text-align: right;
    }

    .price-table tbody td::before {
        content: attr(data-label);
        font-weight: 500;
        color: var(--gray);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
    }

    .price-table tbody td:first-child {
        display: block;
        text-align: left;
        padding-bottom: 0.75rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    }

    .price-table tbody td:first-child::before {
        display: none;
    }

    .price-table tbody td:first-child .service-name {
        font-size: 1rem;
        color: var(--cream);
    }

    .category-row {
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 1.5rem !important;
    }

    .category-row td {
        display: block !important;
        padding: 0.5rem 0 !important;
    }

    .category-row td::before {
        display: none !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .location-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 25px;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }

    .about-image-frame {
        display: none;
    }

    .category-title {
        font-size: 0.95rem;
    }

    .price-note {
        font-size: 0.75rem;
    }

    .gift-card-mockup {
        width: 280px;
        height: 170px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .stylist-modal-content {
        max-height: 100vh;
    }

    .stylist-modal-name {
        font-size: 2rem;
    }
}

/* ========================================
   Scroll Animations
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   Custom Scrollbar
======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--green-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ========================================
   Selection
======================================== */

::selection {
    background-color: var(--gold);
    color: var(--green-dark);
}