/* ============================================
   BRAIDED BY LEXY - STYLESHEET
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --primary-blue: #b6d1ee;
    --secondary-blue: #d5e4f9;
    --accent-navy: #2c4a6b; /* Muted navy for text */
    --accent-warm: #f5a097; /* Subtle warm accent (minimal use) */
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --white: #ffffff;
    --off-white: #fafafa;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 74, 107, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 74, 107, 0.12);
    --shadow-lg: 0 8px 24px rgba(44, 74, 107, 0.16);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max-width: 1200px;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: var(--spacing-xs) 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.announcement-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-navy);
    letter-spacing: 0.5px;
}

/* ===== Header & Navigation ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    height: 80px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav__logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav__brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-navy);
}

.nav__menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
    transition: var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-navy);
    transition: var(--transition-normal);
}

.nav__link:hover {
    color: var(--accent-navy);
}

.nav__link:hover::after {
    width: 100%;
}

.btn--nav-cta {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-navy);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.btn--nav-cta:hover {
    background-color: var(--primary-blue);
    color: var(--accent-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-navy);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    opacity: 0.4;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    position: relative;
}

/* Meta Row */
.hero__meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.hero__meta-row.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero__meta-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.hero__meta-item {
    color: var(--text-medium);
}

/* Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    color: var(--accent-navy);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.hero__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero__title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(182, 209, 238, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

/* Subtitle */
.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 90%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero__subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Style Tags */
.hero__tags {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero__tags.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero__tag {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(44, 74, 107, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--accent-navy);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.hero__tag:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(44, 74, 107, 0.25);
    transform: translateY(-1px);
}

/* CTAs */
.hero__ctas {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero__ctas.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Payment Info */
.hero__payment-info {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.hero__payment-info.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Image Section */
.hero__image-section {
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.hero__image-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero__image-featured {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 74, 107, 0.15);
    border: 1px solid rgba(44, 74, 107, 0.12);
    background-color: var(--white);
    margin-bottom: 1rem;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.hero__image-featured:hover .hero__image {
    transform: scale(1.02);
}

/* Thumbnails */
.hero__thumbnails {
    display: flex;
    gap: 0.75rem;
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    z-index: 2;
}

.hero__thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 74, 107, 0.12);
    border: 1px solid rgba(44, 74, 107, 0.1);
    background-color: var(--white);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(8px);
}

.hero__thumbnail-item:nth-child(1) {
    transition: opacity 0.5s ease 1s, transform 0.5s ease 1s;
}

.hero__thumbnail-item:nth-child(2) {
    transition: opacity 0.5s ease 1.1s, transform 0.5s ease 1.1s;
}

.hero__thumbnail-item:nth-child(3) {
    transition: opacity 0.5s ease 1.2s, transform 0.5s ease 1.2s;
}

.hero__image-section.animate .hero__thumbnail-item {
    opacity: 1;
    transform: translateY(0);
}

.hero__thumbnail-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(44, 74, 107, 0.18);
}

.hero__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero__thumbnail-item:hover .hero__thumbnail-image {
    transform: scale(1.05);
}

/* Image Label */
.hero__image-label {
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn--primary {
    background-color: var(--accent-navy);
    color: var(--white);
    border: 1px solid var(--accent-navy);
    box-shadow: 0 4px 16px rgba(44, 74, 107, 0.2);
}

.btn--primary:hover {
    background-color: var(--white);
    color: var(--accent-navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(44, 74, 107, 0.25);
}

.btn--secondary {
    background-color: transparent;
    color: var(--accent-navy);
    border: 1px solid rgba(44, 74, 107, 0.3);
}

.btn--secondary:hover {
    background-color: var(--accent-navy);
    color: var(--white);
    border-color: var(--accent-navy);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(44, 74, 107, 0.2);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== Services Section ===== */
.services {
    background-color: #f8faff;
    position: relative;
    border: 1px solid rgba(44, 74, 107, 0.08);
    box-shadow: inset 0 1px 2px rgba(44, 74, 107, 0.04);
}

/* Subtle texture pattern using ::before */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(182, 209, 238, 0.15) 0.5px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Soft radial light blobs using ::after */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(182, 209, 238, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(213, 228, 249, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 20% 85%, rgba(182, 209, 238, 0.08) 0%, transparent 40%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.services__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.services__title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0.6;
}

.services__intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.services__flow {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: var(--spacing-xl);
}

.service__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
}

.service__block--left {
    transform: translateX(-30px);
}

.service__block--right {
    transform: translateX(30px);
}

.service__block.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service__block.animate .service__text {
    animation: fadeInUp 0.5s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service__image-container {
    position: relative;
    width: 100%;
}

.service__block:nth-child(1) .service__image-container {
    max-width: 500px;
}

.service__block:nth-child(2) .service__image-container {
    max-width: 450px;
    margin-left: auto;
}

.service__block:nth-child(3) .service__image-container {
    max-width: 480px;
}

.service__block:nth-child(4) .service__image-container {
    max-width: 460px;
    margin-left: auto;
}

.service__block:nth-child(5) .service__image-container {
    max-width: 520px;
}

.service__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(44, 74, 107, 0.12);
    transition: var(--transition-slow);
    display: block;
}

.service__image-container:hover .service__image {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(44, 74, 107, 0.16);
}

.service__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service__name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.service__description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 90%;
}

.service__block--right .service__description {
    margin-left: auto;
}

.services__cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services__cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.services__cta-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* ===== Pricing Section ===== */
.pricing {
    background-color: var(--white);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-blue);
    opacity: 0.3;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing__subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing__subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.pricing__container.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing__services,
.pricing__box-braids {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 74, 107, 0.1);
    transition: var(--transition-normal);
}

.pricing__box-braids {
    background: linear-gradient(135deg, rgba(182, 209, 238, 0.1), rgba(213, 228, 249, 0.1));
}

.pricing__services:hover,
.pricing__box-braids:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing__group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(44, 74, 107, 0.1);
}

.pricing__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dotted rgba(44, 74, 107, 0.15);
    transition: var(--transition-fast);
}

.pricing__item:last-child {
    border-bottom: none;
}

.pricing__item:hover {
    background-color: rgba(182, 209, 238, 0.1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 6px;
}

.pricing__service {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.pricing__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-navy);
    text-align: right;
}

.pricing__price--starting,
.pricing__price--varies {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-medium);
    font-style: italic;
}

.pricing__price--quote {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
}

.pricing__note {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(44, 74, 107, 0.1);
}

.pricing__cta {
    text-align: center;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.pricing__cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing__disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.pricing__disclaimer.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: rgba(255, 255, 255, 0.98);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(213, 228, 249, 0.15));
    position: relative;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(44, 74, 107, 0.08);
    border-bottom: 1px solid rgba(44, 74, 107, 0.08);
    box-shadow: 0 2px 8px rgba(44, 74, 107, 0.04);
}

/* Subtle radial highlight behind images */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(182, 209, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

/* Editorial Header */
.gallery-section__header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) + 1rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.gallery-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 400;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.gallery-section__subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: var(--spacing-md);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.gallery-section__decorator {
    width: 32px;
    height: 1px;
    background-color: rgba(44, 74, 107, 0.25);
    margin: 0 auto;
    position: relative;
}

.gallery-section__decorator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background-color: rgba(44, 74, 107, 0.35);
    border-radius: 50%;
}

/* Editorial Mosaic Layout */
.gallery-section__mosaic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto minmax(200px, auto);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
    background-color: rgba(255, 255, 255, 0.6);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(213, 228, 249, 0.2));
    border: 1px solid rgba(44, 74, 107, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 74, 107, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: visible;
}

/* ===== Gallery Section (New) - Unified Tile System ===== */
.gallery-section__tile {
    position: relative;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    
    /* shape + clipping - ALL tiles share this */
    border-radius: 16px;
    overflow: hidden;
    
    /* same shadow for all */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    
    /* same hover transition for all */
    transition: transform 320ms ease, box-shadow 320ms ease;
    
    /* animation initial state */
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    height: 100%;
}

.gallery-section__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

/* Zoom icon cursor cue (desktop only) */
.gallery-section__tile::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 7V13M7 10H13' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.gallery-section__tile:hover::after {
    opacity: 0.9;
}

/* Desktop only - hide zoom icon on mobile */
@media (max-width: 768px) {
    .gallery-section__tile::after {
        display: none;
    }
}

.gallery-section__tile.animate {
    opacity: 1;
}

.gallery-section__mosaic > .gallery-section__tile:nth-child(3).animate {
    transform: translateY(0);
}

/* Tile 1: Featured left (tall) - spans 6 cols x 2 rows */
.gallery-section__tile--feature {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    aspect-ratio: 3/4;
    min-height: 0;
    transform: translateY(-8px);
}

.gallery-section__tile--feature.animate {
    transform: translateY(-8px);
}

/* Tile 2: Top right - spans 6 cols x 1 row */
.gallery-section__mosaic > .gallery-section__tile:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
    aspect-ratio: 3/2;
    min-height: 0;
    transform: translateY(10px);
}

.gallery-section__mosaic > .gallery-section__tile:nth-child(2).animate {
    transform: translateY(10px);
}

/* Tile 3: Mid right - spans 6 cols x 1 row */
.gallery-section__mosaic > .gallery-section__tile:nth-child(3) {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 3/2;
    min-height: 0;
}

/* Tile 4: Bottom wide - spans all 12 cols x 1 row, shows full image with zero cropping */
.gallery-section__tile--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
    aspect-ratio: 16/9;
    min-height: 0;
    max-height: none;
    transform: translateY(16px);
    /* Background matches panel so contain doesn't show square edges */
    background: rgba(255, 255, 255, 0.6);
}

.gallery-section__tile--wide.animate {
    transform: translateY(16px);
}

/* Image base - applies to ALL images */
.gallery-section__image {
    width: 100%;
    height: 100%;
    display: block;
    
    /* IMPORTANT: inherit the exact same rounding */
    border-radius: inherit;
    
    /* default crop for the first 3 */
    object-fit: cover;
    object-position: center;
    
    transition: transform 500ms ease;
}

.gallery-section__tile:hover .gallery-section__image {
    transform: scale(1.04);
}

/* Bottom wide image - show full image with zero cropping */
.gallery-section__tile--wide .gallery-section__image {
    object-fit: contain;
    object-position: center;
    background: transparent;
}


/* Overlay + View label base - applies to ALL tiles */
.gallery-section__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(18, 32, 49, 0.18);
    opacity: 0;
    transition: opacity 260ms ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-section__tile:hover .gallery-section__overlay {
    opacity: 1;
}

.gallery-section__view-label {
    font: 600 12px/1 var(--font-body), sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(18, 32, 49, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 14px;
    border-radius: 999px;
    transform: translateY(6px);
    transition: transform 260ms ease;
}

.gallery-section__tile:hover .gallery-section__view-label {
    transform: translateY(0);
}

.gallery-section__tile:hover::after {
    opacity: 0.9;
}

/* Desktop only - hide zoom icon on mobile */
@media (max-width: 768px) {
    .gallery-section__tile::after {
        display: none;
    }
}

/* Focus States */
.gallery-section__tile:focus-visible {
    outline: 3px solid rgba(44, 74, 107, 0.4);
    outline-offset: 3px;
}

/* Conversion Section */
.gallery-section__conversion {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(44, 74, 107, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.gallery-section__conversion-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    font-style: italic;
}

.gallery-section__conversion-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-navy);
    background-color: transparent;
    border: 1px solid rgba(44, 74, 107, 0.25);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-section__conversion-btn:hover {
    background-color: rgba(44, 74, 107, 0.05);
    border-color: rgba(44, 74, 107, 0.4);
    transform: translateY(-1px);
}

/* ===== Premium Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 74, 107, 0.75);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__header {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2002;
}

.lightbox__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.lightbox__counter {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox__content {
    transform: scale(1);
}

.lightbox__image-wrapper {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox__image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2003;
    backdrop-filter: blur(10px);
}

.lightbox__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox__close:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.lightbox__close svg {
    stroke: var(--white);
}

.lightbox__nav {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__nav:hover {
    background-color: rgba(182, 209, 238, 0.25);
    border-color: rgba(182, 209, 238, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.lightbox__nav:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.lightbox__nav svg {
    stroke: var(--white);
}

.lightbox__footer {
    margin-top: var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.lightbox__caption {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.lightbox__cta {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-navy);
    background-color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lightbox__cta:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox__cta:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ===== How to Book Section ===== */
.how-to-book {
    background-color: var(--white);
}

.how-to-book__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--secondary-blue);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.step-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.how-to-book__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== Policies Section ===== */
.policies {
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.policies__card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-normal);
}

.policies__card.animate {
    opacity: 1;
    transform: translateY(0);
}

.policy-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--accent-navy);
    stroke-width: 2;
}

.policy-content {
    flex: 1;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-xs);
}

.policy-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== Prep Section ===== */
.prep {
    background-color: var(--white);
}

.prep__card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--secondary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-normal);
}

.prep__card.animate {
    opacity: 1;
    transform: translateY(0);
}

.prep-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.prep-item:last-child {
    margin-bottom: 0;
}

.prep-checkmark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--accent-navy);
    stroke-width: 2.5;
}

.prep-content {
    flex: 1;
}

.prep-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-xs);
}

.prep-subtext {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-left: var(--spacing-sm);
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    text-align: center;
}

.contact__subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.payment-methods {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.payment-methods__label {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.payment-methods__list {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.payment-method {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-navy);
    backdrop-filter: blur(10px);
}

/* ===== FAQ Accordion ===== */
.faq {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    text-align: left;
}

.faq__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-navy);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.faq__item {
    margin-bottom: var(--spacing-sm);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq__question {
    width: 100%;
    padding: var(--spacing-md);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-navy);
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
}

.faq__question:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.faq__icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq__question[aria-expanded="true"] + .faq__answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--accent-navy), #1e3a5f);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__logo {
    width: 60px;
    height: auto;
    margin-bottom: var(--spacing-xs);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.footer__tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.footer__social {
    display: flex;
    flex-direction: column;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--primary-blue);
}

.footer__icon {
    width: 20px;
    height: 20px;
}

.footer__copyright {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary-blue);
    color: var(--accent-navy);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(44, 74, 107, 0.3);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero__image-wrapper {
        order: -1;
    }
    
    /* Gallery Section - Tablet */
    .gallery-section__mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto minmax(0, auto);
        gap: 0.875rem;
        padding: 1.25rem 1.5rem;
        overflow: visible;
    }
    
    .gallery-section__tile--feature {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
        aspect-ratio: 3/4;
        min-height: 0;
        transform: translateY(-6px);
    }
    
    .gallery-section__tile--feature.animate {
        transform: translateY(-6px);
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
        aspect-ratio: 3/2;
        min-height: 0;
        transform: translateY(8px);
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(2).animate {
        transform: translateY(8px);
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
        aspect-ratio: 3/2;
        min-height: 0;
    }
    
    .gallery-section__tile--wide {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
        aspect-ratio: 16/9;
        min-height: 0;
        max-height: none;
        transform: translateY(12px);
        /* Background matches panel so contain doesn't show square edges */
        background: rgba(255, 255, 255, 0.6);
    }
    
    .gallery-section__tile--wide.animate {
        transform: translateY(12px);
    }
    
    .gallery-section__tile--wide .gallery-section__image {
        object-fit: contain;
        object-position: center;
        background: transparent;
    }
    
    .gallery-section__tile--wide:hover {
        transform: translateY(8px);
    }
    
    
    .lightbox__close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .lightbox__nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox__prev {
        left: 20px;
    }
    
    .lightbox__next {
        right: 20px;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .btn--nav-cta {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__image-section {
        order: -1;
    }
    
    .hero__thumbnails {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero__image-label {
        position: relative;
        bottom: auto;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .hero__subtitle {
        max-width: 100%;
    }
    
    .hero__ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__ctas .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero__tags {
        justify-content: center;
    }
    
    .service__block {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service__block--left .service__image-container,
    .service__block--right .service__image-container {
        order: -1;
        max-width: 100%;
    }
    
    .service__block--left,
    .service__block--right {
        transform: translateY(20px);
    }
    
    .service__block--right .service__description {
        margin-left: 0;
    }
    
    .services__flow {
        gap: 4rem;
    }
    
    /* Gallery Section - Mobile */
    .gallery-section {
        padding: var(--spacing-lg) 0;
    }
    
    .gallery-section__header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .gallery-section__title {
        font-size: clamp(1.875rem, 6vw, 2.75rem);
    }
    
    .gallery-section__subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .gallery-section__mosaic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto minmax(200px, auto);
        gap: 0.75rem;
        padding: 1.25rem;
        margin: 0 var(--spacing-sm);
        overflow: hidden;
    }
    
    .gallery-section__tile {
        aspect-ratio: 1;
        border-radius: 10px;
        transform: none !important;
    }
    
    .gallery-section__tile--feature {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        aspect-ratio: 1;
    }
    
    .gallery-section__tile--feature.animate {
        transform: none !important;
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 1;
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(2).animate {
        transform: none !important;
    }
    
    .gallery-section__mosaic > .gallery-section__tile:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        aspect-ratio: 1;
    }
    
    .gallery-section__tile--wide {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        aspect-ratio: 4/3;
        /* Background matches panel so contain doesn't show square edges */
        background: rgba(255, 255, 255, 0.6);
    }
    
    .gallery-section__tile--wide.animate {
        transform: none !important;
    }
    
    .gallery-section__image {
        transform: scale(1) !important;
    }
    
    .gallery-section__tile--wide .gallery-section__image {
        object-fit: contain !important;
        object-position: center !important;
        background: transparent !important;
    }
    
    .gallery-section__tile:hover .gallery-section__image {
        transform: scale(1.05) !important;
    }
    
    .gallery-section__tile--wide:hover .gallery-section__image {
        transform: scale(1.02) !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    .gallery-section__overlay {
        opacity: 0.6;
    }
    
    .gallery-section__view-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .gallery-section__conversion {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    .gallery-section__conversion-text {
        font-size: 0.875rem;
    }
    
    .gallery-section__conversion-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .lightbox {
        padding: var(--spacing-sm);
    }
    
    .lightbox__header {
        top: 15px;
        left: 15px;
        right: 15px;
    }
    
    .lightbox__label {
        font-size: 0.6875rem;
    }
    
    .lightbox__counter {
        font-size: 0.8125rem;
    }
    
    .lightbox__close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox__image-wrapper {
        padding: 0.375rem;
    }
    
    .lightbox__image {
        max-height: 70vh;
    }
    
    .lightbox__nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox__prev {
        left: 10px;
    }
    
    .lightbox__next {
        right: 10px;
    }
    
    .lightbox__footer {
        margin-top: var(--spacing-sm);
    }
    
    .lightbox__caption {
        font-size: 0.875rem;
    }
    
    .lightbox__cta {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .pricing__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pricing__box-braids {
        order: -1;
    }
    
    .how-to-book__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__links {
        align-items: center;
    }
    
    .lightbox__close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
    
    .lightbox__prev {
        left: 15px;
    }
    
    .lightbox__next {
        right: 15px;
    }
    
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .payment-methods__list {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}
