/* === Maison Paws — Luxury Pet Spa === */
:root {
    --bg: #1a1a1a;
    --bg-card: #222222;
    --bg-cream: #f9f6f1;
    --text: #f5f2ed;
    --text-muted: #b8b3aa;
    --text-dark: #2c2825;
    --gold: #c9a96e;
    --gold-light: #dfc48b;
    --gold-dark: #a6874e;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius: 4px;
    --transition: .5s cubic-bezier(.25, .46, .45, .94);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 640px; margin: 0 auto; text-align: center; }

/* Typography */
.section-label {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2,
.experience-text h2,
.reserve-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 300;
    letter-spacing: .02em;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--bg);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 32px;
    transition: all .4s ease;
}
.header.scrolled {
    background: rgba(26, 26, 26, .95);
    backdrop-filter: blur(12px);
    padding: 14px 32px;
    border-bottom: 1px solid rgba(201, 169, 110, .1);
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-body);
    font-size: .82rem;
    letter-spacing: .3em;
    font-weight: 500;
    color: var(--gold);
}
.nav { display: flex; gap: 32px; }
.nav a {
    font-size: .75rem;
    letter-spacing: .08em;
    color: var(--text-muted);
    transition: color .3s;
    text-transform: uppercase;
}
.nav a:hover { color: var(--gold); }
.header-cta {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid rgba(201, 169, 110, .4);
    color: var(--gold);
    transition: all .3s;
}
.header-cta:hover {
    background: var(--gold);
    color: var(--bg);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 16px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle span {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--gold);
    transition: all .3s;
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.6);
    transform: scale(1.02);
    transition: transform 12s ease;
}
.hero-bg img.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,.4) 0%, rgba(26,26,26,.7) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 620px;
    padding: 0 24px;
}
.hero-ornament {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}
.hero-label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-sub {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero .btn-gold { margin-top: 8px; }

/* ==================== INTRO ==================== */
.intro-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(201, 169, 110, .08);
}
.intro-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    text-align: center;
    font-style: italic;
}

/* ==================== SPA MENU ==================== */
.spa-section { padding: 100px 0; }
.spa-menu {
    max-width: 800px;
    margin: 0 auto;
}
.spa-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(201, 169, 110, .1);
    gap: 32px;
}
.spa-item:last-child { border-bottom: none; }
.spa-item-left h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text);
}
.spa-item-left p {
    font-size: .82rem;
    color: var(--text-muted);
    max-width: 440px;
}
.spa-item-right {
    text-align: right;
    flex-shrink: 0;
}
.spa-duration {
    display: block;
    font-size: .72rem;
    color: var(--text-muted);
    letter-spacing: .05em;
    margin-bottom: 4px;
}
.spa-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}
.spa-note {
    text-align: center;
    color: var(--text-muted);
    font-size: .78rem;
    margin-top: 40px;
    font-style: italic;
}

/* ==================== EXPERIENCE ==================== */
.experience-section {
    padding: 100px 0;
    background: var(--bg-card);
}
.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.experience-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.experience-text h2 {
    margin-bottom: 20px;
    line-height: 1.3;
}
.experience-text p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 16px;
}
.experience-features {
    list-style: none;
    margin-top: 24px;
}
.experience-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: .84rem;
    color: var(--text-muted);
}
.experience-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ==================== GALLERY ==================== */
.gallery-section { padding: 100px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item--tall { grid-row: span 2; }

/* ==================== TESTIMONIAL ==================== */
.testimonial-section {
    padding: 80px 0;
    border-top: 1px solid rgba(201, 169, 110, .08);
    border-bottom: 1px solid rgba(201, 169, 110, .08);
}
.testimonial { text-align: center; border: none; padding: 0; }
.testimonial-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .5;
}
.testimonial p {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 20px;
}
.testimonial cite {
    font-style: normal;
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .08em;
}

/* ==================== RESERVE ==================== */
.reserve-section { padding: 100px 0; }
.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.reserve-text h2 {
    margin-bottom: 16px;
    line-height: 1.3;
}
.reserve-text > p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 32px;
}
.reserve-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.reserve-detail strong {
    display: block;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 500;
}
.reserve-detail span {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 48px 0 0;
    border-top: 1px solid rgba(201, 169, 110, .08);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}
.footer-left p {
    color: var(--text-muted);
    font-size: .75rem;
    margin-top: 8px;
    line-height: 1.6;
}
.footer-center { text-align: center; }
.footer-nav {
    display: flex;
    gap: 24px;
}
.footer-nav a {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-right {
    text-align: right;
}
.footer-right p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(201, 169, 110, .06);
}
.footer-bottom p {
    font-size: .7rem;
    color: rgba(184, 179, 170, .5);
    letter-spacing: .05em;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--transition), transform .8s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .experience-grid,
    .reserve-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .experience-image img { height: 360px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }
    .gallery-item--tall { grid-row: span 1; }
    .reserve-details { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-right { text-align: center; }
    .footer-nav { justify-content: center; }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 26, .98);
        padding: 120px 40px 40px;
        gap: 28px;
        z-index: 999;
        align-items: center;
    }
    .nav.open a {
        font-size: 1rem;
        color: var(--text);
        letter-spacing: .15em;
    }
    .hero { min-height: 600px; }
    .hero-content h1 { font-size: 2.2rem; }
    .spa-item { flex-direction: column; gap: 12px; }
    .spa-item-right { text-align: left; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item--large,
    .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
    .reserve-details { grid-template-columns: 1fr; }
    .section,
    .spa-section,
    .experience-section,
    .gallery-section,
    .reserve-section { padding: 60px 0; }
}
