/* ============================================
   Brazilian Wax Center — Styles
   Palette: Soft rose/blush, warm cream, deep charcoal, subtle gold
   Fonts: Playfair Display (headings), Inter (body)
   ============================================ */

/* CSS Variables */
:root {
    --blush: #e8b4b8;
    --blush-light: #f5d6d8;
    --blush-dark: #d49da2;
    --rose: #c0888c;
    --rose-deep: #a66a6f;
    --cream: #fdf8f4;
    --cream-warm: #faf0e9;
    --cream-deep: #f5ebe0;
    --charcoal: #2c2620;
    --charcoal-light: #4a4238;
    --charcoal-muted: #6b6359;
    --gold: #c4a35a;
    --gold-light: #d4b876;
    --gold-soft: #e8d4a8;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(44, 38, 32, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 38, 32, 0.1);
    --shadow-lg: 0 20px 60px rgba(44, 38, 32, 0.15);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

/* ============================================
   Typography Utilities
   ============================================ */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(44, 38, 32, 0.2);
}

.btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 106, 111, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(44, 38, 32, 0.2);
}

.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(192, 136, 140, 0.05);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.82rem;
}

/* ============================================
   Navigation
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rose-deep);
    letter-spacing: -0.02em;
    border: 2px solid var(--rose);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: all var(--transition);
}

#navbar.scrolled .logo-mark {
    border-color: var(--rose-deep);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

#navbar.scrolled .logo-text {
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links li a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(253, 248, 244, 0.9);
    transition: color var(--transition);
    position: relative;
}

#navbar.scrolled .nav-links li a {
    color: var(--charcoal-light);
}

.nav-links li a:not(.nav-book-btn):hover {
    color: var(--blush);
}

#navbar.scrolled .nav-links li a:not(.nav-book-btn):hover {
    color: var(--rose);
}

.nav-links li a:not(.nav-book-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blush);
    transition: width var(--transition);
}

.nav-links li a:not(.nav-book-btn):hover::after {
    width: 100%;
}

.nav-phone {
    font-size: 0.85rem !important;
}

.nav-book-btn {
    background: var(--rose-deep);
    color: var(--cream) !important;
    padding: 10px 24px !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all var(--transition);
}

.nav-book-btn:hover {
    background: var(--charcoal) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
}

#navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--charcoal);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--charcoal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition);
}

.mobile-menu-close:hover {
    color: var(--rose);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin-bottom: 24px;
}

.mobile-menu ul li a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    transition: color var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--rose);
}

.mobile-book-btn {
    display: inline-block;
    background: var(--rose-deep) !important;
    color: var(--cream) !important;
    padding: 14px 40px !important;
    border-radius: 100px;
    font-size: 1.1rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    margin-top: 12px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 38, 32, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(44, 38, 32, 0.45) 0%, 
        rgba(44, 38, 32, 0.55) 50%, 
        rgba(44, 38, 32, 0.65) 100%);
}

.hero-content {
    max-width: 720px;
    z-index: 1;
    color: var(--cream);
    animation: heroFadeUp 1.2s ease-out;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(253, 248, 244, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(253, 248, 244, 0.2);
    margin-bottom: 32px;
}

.hero-rating .stars {
    display: flex;
    gap: 3px;
    color: var(--gold-light);
    font-size: 0.85rem;
}

.hero-rating .rating-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 4.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--blush-light);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(253, 248, 244, 0.9);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta .btn-primary {
    background: var(--rose-deep);
}

.hero-cta .btn-primary:hover {
    background: var(--blush-dark);
}

.hero-cta .btn-ghost {
    color: var(--cream);
    border-color: rgba(253, 248, 244, 0.4);
}

.hero-cta .btn-ghost:hover {
    background: rgba(253, 248, 244, 0.1);
    border-color: var(--cream);
    color: var(--cream);
}

.hero-meta {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(253, 248, 244, 0.8);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    color: var(--gold-light);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 244, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(253,248,244,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    background: var(--charcoal);
    padding: 40px 24px;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.7);
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(253, 248, 244, 0.15);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 24px;
    background: var(--cream);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--blush);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 260px;
}

.about-image-badge i {
    font-size: 1.5rem;
    color: var(--rose);
}

.about-image-badge span {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--charcoal-light);
}

.about-lead {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.about-body {
    font-size: 0.98rem;
    color: var(--charcoal-muted);
    margin-bottom: 36px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

.about-feature i {
    font-size: 1.1rem;
    color: var(--rose);
    flex-shrink: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 24px;
    background: var(--cream-warm);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal-muted);
    background: transparent;
    border: 1.5px solid rgba(44, 38, 32, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-tab:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.service-tab.active {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

/* Service Panels */
.service-panel {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-panel.active {
    display: block;
    animation: fadeInPanel 0.5s ease-out;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-panel-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.service-category-image {
    position: sticky;
    top: 100px;
}

.service-category-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(44, 38, 32, 0.08);
    transition: all var(--transition);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 8px;
}

.service-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.service-info p {
    font-size: 0.85rem;
    color: var(--charcoal-muted);
    line-height: 1.5;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rose-deep);
}

.service-time {
    font-size: 0.75rem;
    color: var(--charcoal-muted);
    font-weight: 500;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.services-cta p {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin-bottom: 24px;
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    padding: 80px 24px;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

/* ============================================
   Reviews
   ============================================ */
.reviews {
    padding: 100px 24px;
    background: var(--cream-warm);
}

.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-top: 16px;
}

.reviews-rating-badge .stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
}

.reviews-rating-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.reviews-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
}

.review-date {
    font-size: 0.78rem;
    color: var(--charcoal-muted);
}

/* ============================================
   Location
   ============================================ */
.location {
    padding: 100px 24px;
    background: var(--cream);
}

.location-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.3rem;
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.location-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-muted);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.location-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.location-item a:hover {
    color: var(--rose);
}

.location-note {
    font-size: 0.82rem !important;
    color: var(--charcoal-muted) !important;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--charcoal-muted);
}

.hours-table tr.closed td {
    color: var(--rose);
}

.location-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 480px;
}

.location-map iframe {
    border: 0;
    filter: sepia(0.1) saturate(0.9);
}

/* ============================================
   Cancellation Policy
   ============================================ */
.policy {
    padding: 0 24px 80px;
    background: var(--cream);
}

.policy-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 40px;
    background: var(--cream-deep);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--rose);
}

.policy-container i {
    font-size: 1.4rem;
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-container h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.policy-container p {
    font-size: 0.88rem;
    color: var(--charcoal-muted);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 24px 32px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253, 248, 244, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(253, 248, 244, 0.7);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--rose-deep);
    color: var(--cream);
    transform: translateY(-2px);
}

.footer h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.6);
    transition: color var(--transition);
}

.footer-links ul li a:hover {
    color: var(--blush);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.6);
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-contact a:hover {
    color: var(--blush);
}

.footer-cta p {
    font-size: 0.88rem;
    color: rgba(253, 248, 244, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-cta .btn-primary {
    background: var(--rose-deep);
}

.footer-cta .btn-primary:hover {
    background: var(--blush-dark);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(253, 248, 244, 0.08);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(253, 248, 244, 0.4);
    text-align: center;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal,
html.js .reveal,
html.js .reveal.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-panel-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-category-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-tall {
        grid-row: span 1;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .location-map {
        min-height: 360px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding: 100px 20px 80px;
    }
    
    .hero-meta {
        gap: 16px;
    }
    
    .hero-meta span {
        font-size: 0.75rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat {
        flex: 1 1 40%;
    }
    
    .about {
        padding: 60px 20px;
    }
    
    .about-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -20px auto 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 60px 20px;
    }
    
    .service-tabs {
        gap: 6px;
    }
    
    .service-tab {
        padding: 10px 16px;
        font-size: 0.78rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .service-meta {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .services-cta {
        padding: 32px 20px;
    }
    
    .gallery {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .gallery-item-lg,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .reviews {
        padding: 60px 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .location {
        padding: 60px 20px;
    }
    
    .policy {
        padding: 0 20px 60px;
    }
    
    .policy-container {
        padding: 24px 24px;
    }
    
    .footer {
        padding: 60px 20px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-rating {
        flex-direction: column;
        gap: 6px;
        padding: 10px 16px;
    }
    
    .service-tab {
        padding: 8px 14px;
        font-size: 0.72rem;
    }
    
    .service-tab i {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}