/* === Variables === */
:root {
    --bronze: #8B6914;
    --bronze-light: #C4A35A;
    --bronze-glow: #D4B76A;
    --ivory: #FAF6F0;
    --cream: #F3ECE0;
    --charcoal: #1A1A1A;
    --charcoal-mid: #3A3A3A;
    --charcoal-soft: #6B6B6B;
    --white: #FEFEFE;
    --warm-white: #FFFDF8;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 2px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.1);
    --max-width: 1200px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Legacy mappings for other pages */
    --primary: #8B6914;
    --primary-dark: #6B5210;
    --accent: #F3ECE0;
    --dark: #1A1A1A;
    --dark-light: #6B6B6B;
    --gray: #FAF6F0;
    --gray-border: #E8E0D0;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--warm-white);
}
a { color: var(--bronze); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--charcoal); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Utilities === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2.5rem; }
.mt-3 { margin-top: 3rem; }
.section { padding: 7rem 0; }

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* === Editorial Typography === */
.editorial-heading {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.editorial-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--bronze);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--bronze);
}
.section-label-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bronze);
}
.text-center .section-label {
    justify-content: center;
}
.text-center .section-label .section-label-line {
    display: none;
}

/* Legacy section-title for other pages */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-primary:hover {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--white);
}
.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: rgba(0,0,0,0.2);
}
.btn-ghost:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn-full { width: 100%; }
.btn-danger { background: #C0392B; color: var(--white); border-color: #C0392B; }
.btn-danger:hover { background: #96281B; border-color: #96281B; color: var(--white); }

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254,253,248,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.3s;
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}
.nav-logo:hover { color: var(--charcoal); }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-menu a {
    font-weight: 400;
    color: var(--charcoal-soft);
    transition: color var(--transition);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--charcoal); }
.btn-book-nav {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.4rem !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    border: 1px solid var(--charcoal) !important;
    border-radius: 0 !important;
}
.btn-book-nav:hover {
    background: var(--bronze) !important;
    border-color: var(--bronze) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: all 0.3s;
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    padding-top: 72px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-lash-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--bronze);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--bronze);
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 2rem;
}
.hero-title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -0.03em;
}
.hero-title-italic {
    font-style: italic;
    color: var(--bronze);
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-badge {
    width: 180px;
    height: 180px;
    border: 1px solid var(--bronze-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}
.hero-badge::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(196,163,90,0.3);
    border-radius: 50%;
}
.hero-badge-lash {
    width: 60px;
    height: 30px;
}
.hero-badge-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bronze);
    text-align: center;
    line-height: 1.6;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}
.hero-scroll-hint span {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--charcoal-soft);
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--bronze-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === About === */
.about { background: var(--warm-white); }
.about-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}
.about-body {
    max-width: 600px;
}
.about-body p {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    margin-bottom: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
}

/* === Services Preview === */
.services-preview { background: var(--ivory); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
}
.service-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transition: background var(--transition);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(196,163,90,0.04); }
.service-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--bronze-light);
    opacity: 0.5;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--charcoal);
}
.service-card p {
    color: var(--charcoal-soft);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}
.service-card-line {
    width: 30px;
    height: 1px;
    background: var(--bronze-light);
    margin-top: 1.5rem;
    transition: width var(--transition);
}
.service-card:hover .service-card-line { width: 60px; }

/* Legacy service-icon for other pages */
.service-icon { font-size: 2rem; margin-bottom: 1rem; }

/* === Gallery === */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.gallery-grid {
    display: grid;
    gap: 0.5rem;
}
.gallery-grid.preview { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.gallery-grid.full { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--cream);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(0.1);
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.94);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 2001;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 0.5rem; right: 1rem; font-size: 2.5rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* === Pricing (pricing page) === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    padding: 1.5rem 2rem;
    background: var(--cream);
    color: var(--charcoal);
}
.pricing-items { padding: 1rem 2rem 2rem; }
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-name { font-weight: 500; }
.pricing-item-duration { font-size: 0.85rem; color: var(--charcoal-soft); display: block; }
.pricing-item-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--bronze);
    white-space: nowrap;
    margin-left: 1rem;
}

/* === Testimonials === */
.testimonials { background: var(--cream); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}
.testimonial-quote {
    width: 36px;
    height: 28px;
    margin-bottom: 1.5rem;
}
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--charcoal-mid);
    line-height: 1.8;
}
.testimonial-author-name {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bronze);
}

/* === CTA === */
.cta {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}
.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-lash-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.cta-content { position: relative; z-index: 1; }
.cta h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--white);
}
.cta h2 em {
    font-style: italic;
    color: var(--bronze-glow);
}
.cta p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: 0.6;
    font-weight: 300;
}
.cta .btn-primary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.cta .btn-primary:hover {
    background: var(--bronze-glow);
    border-color: var(--bronze-glow);
    color: var(--charcoal);
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-item { margin-bottom: 2rem; }
.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.contact-item a { color: var(--bronze); }
.contact-item a:hover { text-decoration: underline; }

/* === Page Header === */
.page-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--ivory);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.page-header p { color: var(--charcoal-soft); font-size: 1.05rem; font-weight: 300; }

/* === Footer === */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.5);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { width: 40px; margin-bottom: 1rem; filter: brightness(10); }
.footer p { font-weight: 300; font-size: 0.92rem; line-height: 1.7; }
.footer h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.footer a {
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
    font-size: 0.9rem;
    font-weight: 300;
}
.footer a:hover { color: var(--bronze-glow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
}

/* === Login === */
.login-box {
    max-width: 400px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
}
.login-box h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.85rem; }
.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-border);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--warm-white);
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--bronze);
}
.error-msg { color: #C0392B; font-size: 0.9rem; min-height: 1.2em; margin-bottom: 0.5rem; }
.status-msg { color: var(--bronze); font-size: 0.9rem; margin-top: 0.5rem; }
.loading { color: var(--charcoal-soft); font-style: italic; }

/* === Admin === */
.admin-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
}
.admin-section h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.upload-area {
    border: 1px dashed var(--gray-border);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    margin-bottom: 2rem;
    -webkit-tap-highlight-color: transparent;
}
.upload-area:hover, .upload-area.dragover {
    border-color: var(--bronze);
    background: var(--ivory);
}
.admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}
.admin-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--ivory);
}
.admin-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.admin-gallery-item .delete-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(192,57,43,0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

/* Pricing editor */
.pricing-category-editor {
    border: 1px solid var(--gray-border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.pricing-category-editor h4 { margin-bottom: 1rem; }
.pricing-category-editor input {
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--gray-border);
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.pricing-service-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.pricing-service-row input { flex: 1; min-width: 80px; }
.pricing-service-row input.price-input { max-width: 80px; }
.pricing-service-row input.duration-input { max-width: 100px; }
.remove-btn {
    background: none;
    border: none;
    color: #C0392B;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem;
}
.add-service-btn {
    background: none;
    border: 1px dashed var(--gray-border);
    padding: 0.4rem 1rem;
    cursor: pointer;
    color: var(--charcoal-soft);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.add-service-btn:hover { border-color: var(--bronze); color: var(--bronze); }
.remove-category-btn {
    background: none;
    border: none;
    color: #C0392B;
    cursor: pointer;
    font-size: 0.85rem;
    float: right;
}

/* === Mobile === */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254,253,248,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 0.8rem 0; font-size: 0.85rem; }
    .btn-book-nav { text-align: center !important; margin-top: 0.5rem; }

    .section { padding: 4.5rem 0; }

    /* Hero mobile */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    .hero-title-line { font-size: 2.8rem; }
    .hero-visual { justify-content: center; width: 100%; }
    .hero-badge { width: 140px; height: 140px; }
    .hero-badge-lash { width: 45px; height: 22px; }
    .hero-badge-text { font-size: 0.55rem; }
    .hero-scroll-hint { display: none; }
    .hero-actions { gap: 0.75rem; }
    .hero-actions .btn { width: 100%; }

    /* About mobile */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .editorial-heading { font-size: 2.4rem; }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding: 2rem 1.5rem;
    }
    .service-card:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.06); }
    .service-card:nth-last-child(-n+2) { border-bottom: none; }

    /* Gallery mobile */
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .gallery-grid.preview { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .gallery-grid.full { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

    /* Testimonials mobile */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* CTA mobile */
    .cta h2 { font-size: 2.2rem; }
    .cta { padding: 5rem 0; }

    /* Other pages */
    .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .page-header { padding: 6rem 0 2rem; }
    .page-header h1 { font-size: 2.2rem; }
    .admin-gallery { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .pricing-service-row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .service-card:last-child { border-bottom: none; }
    .hero-title-line { font-size: 2.2rem; }
    .editorial-heading { font-size: 2rem; }
}
