/* ─── Google Fonts ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
    --color-bg-primary:     #F8F6F3;
    --color-bg-secondary:   #EFE7DF;
    --color-card:           #FFFFFF;
    --color-text-primary:   #2B2B2B;
    --color-text-secondary: #6E6A66;
    --color-accent:         #C8B29A;
    --color-btn:            #222222;
    --color-btn-text:       #FFFFFF;
    --color-border:         #E8E2DB;
    --color-dark:           #2B2B2B;
    --transition:           300ms ease;
    --radius:               2px;
    --shadow-sm:            0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:            0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg:            0 12px 48px rgba(0,0,0,0.14);
    --container:            1200px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* ─── Container ──────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-dark {
    background: var(--color-btn);
    color: var(--color-btn-text);
    border: 2px solid var(--color-btn);
}
.btn-dark:hover { background: #3d3d3d; border-color: #3d3d3d; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-primary);
}
.btn-outline:hover { background: var(--color-text-primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: #fff; border: 2px solid var(--color-accent); }
.btn-accent:hover { background: #b09580; border-color: #b09580; transform: translateY(-2px); }

/* ─── Section Labels ─────────────────────────────────────────────────────────── */
.section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); color: var(--color-text-primary); }
.section-title em { font-style: italic; color: var(--color-accent); }
.section-sub { font-size: 15px; color: var(--color-text-secondary); max-width: 560px; margin-top: 12px; line-height: 1.8; }

/* ─── Top Bar ────────────────────────────────────────────────────────────────── */
.topbar {
    background: var(--color-dark);
    color: #fff;
    font-size: 12px;
    padding: 9px 0;
    z-index: 200;
}
.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); }
.topbar-center { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-phone { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar-phone:hover { color: var(--color-accent); }
.topbar-socials { display: flex; align-items: center; gap: 10px; }
.topbar-socials a { color: rgba(255,255,255,0.7); font-size: 16px; transition: color var(--transition); }
.topbar-socials a:hover { color: var(--color-accent); }

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-direction: row; text-align: left; line-height: 1; }
.logo-img { height: 48px; width: auto; display: block; object-fit: contain; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.logo-glore { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: 4px; color: var(--color-text-primary); }
.logo-divider { display: block; width: 100%; height: 1px; background: var(--color-accent); margin: 3px 0; }
.logo-aesthetic { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 400; letter-spacing: 6px; color: var(--color-text-secondary); text-transform: uppercase; }

/* Nav */
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--color-accent);
    transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-text-primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a[class="active"] { color: var(--color-text-primary); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-bg-primary);
    z-index: 300;
    padding: 80px 32px 40px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-drawer.open { right: 0; }
.drawer-close {
    position: absolute; top: 20px; right: 20px;
    font-size: 24px; color: var(--color-text-primary);
    padding: 8px;
}
.drawer-nav ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.drawer-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}
.drawer-nav ul li a:hover { color: var(--color-text-primary); }
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 250;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 55% 45%;
    height: clamp(500px, 46vw, 600px);
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(40px, 5vw, 70px);
    padding-bottom: clamp(40px, 5vw, 70px);
    padding-right: 56px;
    padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
    background: var(--color-bg-primary);
}
.hero-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: clamp(10px, 1.2vw, 16px);
}
.hero-title {
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-text-primary);
    margin-bottom: clamp(12px, 1.4vw, 20px);
}
.hero-title em { font-style: italic; color: var(--color-accent); display: block; }
.hero-sub {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--color-text-secondary);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: clamp(20px, 2.4vw, 32px);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 120px; height: 100%;
    background: linear-gradient(to right, var(--color-bg-primary), transparent);
    z-index: 1;
}

/* ─── Hero Marquee ───────────────────────────────────────────────────────────── */
.hero-marquee {
    overflow: hidden;
    background: var(--color-dark);
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: #fff;
    white-space: nowrap;
}
.hero-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 14px 0;
    animation: heroMarquee 28s linear infinite;
}
.hero-marquee-track span {
    padding: 0 28px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.hero-marquee-track i {
    color: var(--color-accent);
    font-size: 13px;
}
@keyframes heroMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-marquee-track { animation: none; }
}
.hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-placeholder-inner {
    text-align: center;
    color: rgba(255,255,255,0.8);
}
.hero-placeholder-inner i { font-size: 80px; opacity: 0.6; display: block; margin-bottom: 16px; }
.hero-placeholder-inner p { font-family: 'Cormorant Garamond', serif; font-size: 22px; }

@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, -1%); }
}

/* Trust Bar */
.trust-bar {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 52px 24px;
    position: relative;
    z-index: 1;
}
.care-promise-section {
    margin-top: 24px;
}
.trust-intro {
    max-width: var(--container);
    margin: 0 auto 34px;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.8;
}
.trust-intro p {
    max-width: 820px;
    margin: 0 0 14px;
}
.trust-intro p:last-child {
    margin-bottom: 0;
    color: var(--color-text-primary);
    font-weight: 600;
}
.trust-intro-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color var(--transition);
}
.trust-intro-link:hover {
    color: var(--color-text-primary);
}
.trust-bar-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
}
.trust-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--color-accent);
}
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--color-text-primary); }
.trust-text span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--color-bg-secondary); }
.section-dark { background: var(--color-dark); color: #fff; }

/* Section Header */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 20px;
}
.section-header-center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.section-header .view-all {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.section-header .view-all:hover { gap: 10px; }
.section-intro {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.75;
}
.services-subtitle {
    color: var(--color-text-primary);
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    margin: -20px 0 32px;
}
.services-subtitle em {
    color: var(--color-accent);
    font-style: italic;
}

/* ─── Service Cards ──────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-secondary);
    position: relative;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-secondary), #e0d5cc);
}
.service-card-img-placeholder i { font-size: 48px; color: var(--color-accent); opacity: 0.7; }
.service-card-body { padding: 20px; }
.service-card-body h4 { font-size: 19px; margin-bottom: 6px; }
.service-card-body p { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 14px; line-height: 1.6; }
.service-card-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--color-accent); }

/* ─── Philosophy Split ───────────────────────────────────────────────────────── */
.philosophy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.philosophy-image {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-image-placeholder {
    width: 100%; height: 100%;
    min-height: 520px;
    background: linear-gradient(135deg, var(--color-bg-secondary), #c8b29a80);
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy-image-placeholder i { font-size: 100px; color: var(--color-accent); opacity: 0.5; }
.philosophy-content {
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}
.philosophy-intro {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.75;
    margin: 18px 0 0;
}
.philosophy-points { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.philosophy-point {
    padding-left: 20px;
    border-left: 2px solid var(--color-accent);
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}
.philosophy-point strong { display: block; color: var(--color-text-primary); font-size: 15px; margin-bottom: 2px; }

/* ─── Brow Dark Section ──────────────────────────────────────────────────────── */
.brow-section { padding: 100px 0; background: var(--color-dark); }
.brow-header { text-align: center; margin-bottom: 52px; }
.brow-header .section-label { color: var(--color-accent); }
.brow-header .section-title { color: #fff; }
.brow-intro {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    font-size: 14px;
}
.brow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.brow-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}
.brow-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.brow-card.featured { border-color: var(--color-accent); background: rgba(200,178,154,0.08); }
.brow-card-icon { font-size: 36px; color: var(--color-accent); margin-bottom: 16px; }
.brow-card h3 { font-size: 22px; color: #fff; margin-bottom: 8px; }
.brow-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
}
.brow-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.brow-cta { text-align: center; }
.brow-cta a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}
.brow-cta a:hover { gap: 12px; }

/* ─── Banner Section ─────────────────────────────────────────────────────────── */
.banner-section {
    position: relative;
    padding: 120px 0;
    background: var(--color-dark);
    overflow: hidden;
}
.banner-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 0;
}
.banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.banner-content .section-label { color: var(--color-accent); }
.banner-content .section-title { color: #fff; margin-bottom: 16px; }
.banner-content p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; }
.banner-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.banner-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.banner-trust-item i { color: var(--color-accent); font-size: 18px; }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; background: var(--color-bg-primary); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
}
.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}
.testimonial-stars { color: #E8C547; font-size: 18px; letter-spacing: 2px; margin-bottom: 24px; }
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--color-text-secondary); letter-spacing: 1px; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
}
.slider-dot.active { background: var(--color-accent); }

/* ─── Instagram Strip ────────────────────────────────────────────────────────── */
.instagram-section { padding: 60px 0; }
.instagram-label { text-align: center; margin-bottom: 28px; }
.instagram-label span { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-text-secondary); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.instagram-tile {
    aspect-ratio: 1;
    background: var(--color-bg-secondary);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-tile-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-bg-secondary), #d9cfc8); display: flex; align-items: center; justify-content: center; }
.instagram-tile-placeholder i { font-size: 32px; color: var(--color-accent); opacity: 0.5; }
.instagram-tile-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.instagram-tile:hover .instagram-tile-overlay { opacity: 1; }
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-tile-overlay i { font-size: 28px; color: #fff; }

/* ─── Skin Treatments Editorial ──────────────────────────────────────────────── */
.skin-editorial-section {
    background: var(--color-bg-secondary);
    padding: 96px 0;
}
.skin-editorial-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
.skin-editorial-label {
    margin-bottom: 16px;
}
.skin-editorial-heading {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
.skin-editorial-divider {
    width: 48px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 32px;
    border-radius: 2px;
}
.skin-editorial-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-secondary);
    margin: 0 0 18px;
    max-width: 680px;
}
.skin-editorial-body:last-of-type {
    margin-bottom: 40px;
}
.skin-editorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 4px;
    color: var(--color-text-primary);
    font-family: var(--font-serif);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: var(--color-accent);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p {
    max-width: 720px;
    padding: 0 44px 22px 4px;
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer-top { background: var(--color-bg-secondary); padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 16px; }
.footer-logo .logo-glore { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; letter-spacing: 3px; }
.footer-logo .logo-divider { width: 100%; height: 1px; background: var(--color-accent); margin: 3px 0; }
.footer-logo .logo-aesthetic { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 5px; color: var(--color-text-secondary); }
.footer-tagline { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-secondary); font-size: 16px; transition: all var(--transition); }
.footer-socials a:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-card); }
.footer-heading { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-text-primary); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--color-text-secondary); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-text-primary); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text-secondary); }
.footer-contact-list li i { font-size: 16px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: var(--color-text-secondary); transition: color var(--transition); }
.footer-contact-list li a:hover { color: var(--color-text-primary); }
.footer-bottom { background: var(--color-dark); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ─── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--color-bg-secondary);
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); color: var(--color-text-primary); }
.page-hero p { font-size: 15px; color: var(--color-text-secondary); max-width: 520px; margin: 12px auto 0; }

/* Dark Page Hero */
.page-hero-dark {
    background: var(--color-dark);
}
.page-hero-dark::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}
.page-hero-dark .page-hero-bg img { opacity: 0.45; }
.page-hero-dark .page-hero-content { z-index: 2; }
.page-hero-dark h1 { color: #fff; }
.page-hero-dark p { color: rgba(255,255,255,0.7); }
.page-hero-dark .section-label { color: var(--color-accent); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--color-text-secondary); margin-bottom: 16px; }
.breadcrumb a { color: var(--color-accent); }
.breadcrumb span { color: var(--color-text-secondary); }

/* ─── About Page ─────────────────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-story-image img { width: 100%; border-radius: var(--radius); }
.about-story-image-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--color-bg-secondary), #d9cfc8); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.about-story-image-placeholder i { font-size: 80px; color: var(--color-accent); opacity: 0.5; }

.stats-bar { background: var(--color-dark); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 56px; color: var(--color-accent); font-weight: 400; line-height: 1; }
.stat-item .stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }

.how-it-works { padding: 100px 0; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.how-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 80px; right: 80px;
    height: 1px;
    background: var(--color-border);
    z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-accent);
    border: 2px solid var(--color-border);
}
.how-step h4 { font-size: 20px; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; max-width: 240px; margin: 0 auto; }

.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-item i { font-size: 32px; color: var(--color-accent); display: block; margin-bottom: 14px; }
.why-item h4 { font-size: 16px; margin-bottom: 8px; }
.why-item p { font-size: 12px; color: var(--color-text-secondary); line-height: 1.6; }

/* ─── Services Page ──────────────────────────────────────────────────────────── */
.services-filter { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--color-btn); color: #fff; border-color: var(--color-btn); }

.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-page-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.service-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-page-card-image { height: 200px; overflow: hidden; background: var(--color-bg-secondary); }
.service-page-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-page-card:hover .service-page-card-image img { transform: scale(1.06); }
.service-page-card-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-bg-secondary), #d9cfc8); }
.service-page-card-image-placeholder i { font-size: 48px; color: var(--color-accent); opacity: 0.6; }
.service-page-card-body { padding: 24px; }
.service-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(200,178,154,0.12);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.service-page-card-body h3 { font-size: 22px; margin-bottom: 6px; }
.service-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--color-accent); font-weight: 500; margin-bottom: 10px; }
.service-page-card-body p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 18px; }

.wax-package-banner {
    margin-top: 60px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.wax-package-banner h3 { font-size: 28px; margin-bottom: 10px; }
.wax-package-banner p { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 24px; }

/* ─── Service Detail ─────────────────────────────────────────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-detail-image { border-radius: var(--radius); overflow: hidden; }
.service-detail-image img { width: 100%; border-radius: var(--radius); }
.service-detail-price { font-family: 'Cormorant Garamond', serif; font-size: 44px; color: var(--color-accent); font-weight: 400; margin-bottom: 16px; }
.service-detail-desc { font-size: 15px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 32px; }

/* ─── Gallery ────────────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 36px; color: #fff; }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 80px 0; color: var(--color-text-secondary); }
.gallery-empty i { font-size: 64px; color: var(--color-border); display: block; margin-bottom: 16px; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    color: #fff; font-size: 32px;
    cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-info-card i { font-size: 22px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--color-text-primary); }
.contact-info-card a { color: var(--color-text-primary); transition: color var(--transition); }
.contact-info-card a:hover { color: var(--color-accent); }
.contact-social-links { display: flex; gap: 10px; margin-top: 8px; }
.contact-social-links a { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-secondary); transition: color var(--transition); }
.contact-social-links a:hover { color: var(--color-accent); }

/* Forms */
.contact-form, .booking-form {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
}
.form-title { font-size: 26px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-card);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpolyline points='208 96 128 176 48 96' fill='none' stroke='%236E6A66' stroke-width='24' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 20px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

.map-embed { margin-top: 60px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ─── Booking Page ───────────────────────────────────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.booking-info h2 { font-size: 38px; margin-bottom: 16px; }
.booking-info p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 32px; }
.booking-info-list { display: flex; flex-direction: column; gap: 16px; }
.booking-info-item { display: flex; align-items: flex-start; gap: 14px; }
.booking-info-item i { font-size: 22px; color: var(--color-accent); flex-shrink: 0; }
.booking-info-item p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; }
.booking-info-item strong { display: block; color: var(--color-text-primary); font-size: 14px; margin-bottom: 2px; }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1100px) {
    .hero { height: clamp(500px, 50vw, 580px); }
    .hero-title { font-size: clamp(34px, 3.8vw, 52px); }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; height: auto; }
    .hero-image { height: 340px; order: -1; }
    .hero-image::before { background: linear-gradient(to bottom, transparent, var(--color-bg-primary)); width: 100%; height: 80px; top: auto; bottom: 0; }
    .hero-content { padding: 36px 24px 48px; justify-content: flex-start; }
    .hero-title { font-size: clamp(36px, 7vw, 48px); }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-split { grid-template-columns: 1fr; }
    .philosophy-content { padding: 60px 32px; }
    .brow-grid { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: 1fr; }
    .how-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .main-nav, .btn-book { display: none; }
    .hamburger { display: flex; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }
    .skin-editorial-inner { flex-direction: column; text-align: center; gap: 24px; }
    .skin-editorial-divider { margin: 16px auto; }
    .skin-editorial-heading { font-size: clamp(28px, 7vw, 38px); }
}

@media (max-width: 640px) {
    .hero-image { height: 280px; }
    .hero-content { padding: 28px 20px 40px; }
    .hero-title { font-size: clamp(30px, 8.5vw, 38px); }
    .hero-sub { font-size: 13px; margin-bottom: 20px; }
    .hero-label { margin-bottom: 8px; }
    .section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .topbar-center { display: none; }
    .trust-bar-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-trust { gap: 20px; }
    .brow-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header { flex-direction: column; align-items: flex-start; }
    .contact-form, .booking-form { padding: 24px 20px; }
    .testimonial-inner { padding: 32px 24px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
