/* ============================================
   Lily's Salon Family Cuts — Styles
   Clean minimalist · Burgundy & Blush
   ============================================ */

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

:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --burgundy-light: #8B3A42;
    --blush: #F4E8E4;
    --blush-light: #FAF5F3;
    --blush-mid: #F0DCD6;
    --cream: #FDFCFA;
    --text-dark: #1A1416;
    --text-mid: #4A3F42;
    --text-light: #7A6E71;
    --text-faint: #A89A9D;
    --white: #FFFFFF;
    --line: rgba(114, 47, 55, 0.10);
    --line-strong: rgba(114, 47, 55, 0.22);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
}

em {
    font-style: italic;
    color: var(--burgundy);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    height: 64px;
    box-shadow: 0 1px 0 var(--line);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burgundy);
    letter-spacing: -0.01em;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--burgundy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 0.65rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

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

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 0;
    transition: color 0.3s;
    border-bottom: 1px solid var(--line);
    width: 80%;
    text-align: center;
}

.mobile-menu-link:hover {
    color: var(--burgundy);
}

.mobile-menu-cta {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border: 1px solid var(--burgundy);
    transition: all 0.3s;
}

.mobile-menu-cta:hover {
    background: var(--burgundy);
    color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 50%, transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

.headline-accent {
    display: block;
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
    font-size: 0.85em;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    font-size: 0.72rem;
    color: var(--text-faint);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-meta-sep {
    color: var(--text-faint);
    font-size: 0.6rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    padding-left: 2rem;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img {
    transform: scale(1.02);
}

.hero-accent-line {
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    width: 80px;
    height: 1px;
    background: var(--burgundy);
    opacity: 0.4;
}

.hero-stamp {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 0.15rem;
}

.hero-stamp span {
    font-family: var(--font-body);
    font-size: 0.45rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ---------- Services ---------- */
.services {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--white);
}

.services-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    background: var(--white);
    padding: clamp(2rem, 3vw, 3rem);
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.5s var(--ease-out);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: var(--blush-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ---------- About ---------- */
.about {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-main {
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.about-image-main:hover img {
    transform: scale(1.02);
}

.about-image-small {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 55%;
    overflow: hidden;
    border: 6px solid var(--cream);
}

.about-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    background: var(--burgundy);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-content {
    padding-left: 1rem;
}

.about-divider {
    width: 50px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--white);
}

.gallery-header {
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item--tall img {
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.8s var(--ease-out);
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item--wide img,
.gallery-item:not(.gallery-item--tall) img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.8s var(--ease-out);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(114, 47, 55, 0);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: background 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(114, 47, 55, 0.15);
}

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Visit / Contact ---------- */
.visit {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--blush-light);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit-info {
    padding-right: 2rem;
}

.visit-divider {
    width: 50px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.visit-detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.3rem;
}

.visit-detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.visit-link {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit-map {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.visit-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-map-link:hover {
    color: var(--burgundy);
}

/* Form */
.visit-form-col {
    position: relative;
}

.visit-form-card {
    background: var(--white);
    padding: clamp(2rem, 3vw, 3rem);
    border: 1px solid var(--line);
}

.visit-form-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--line-strong);
    padding: 0.8rem 1rem;
    outline: none;
    transition: all 0.3s var(--ease-out);
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-faint);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    gap: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--burgundy);
}

.form-success p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-phone:hover {
    opacity: 0.7;
}

.footer-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.03em;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 0.7fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery-item--tall {
        grid-column: span 6;
        grid-row: span 1;
    }

    .gallery-item--wide {
        grid-column: span 6;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        padding-left: 0;
    }

    .hero-stamp {
        left: -1rem;
        bottom: -1rem;
        width: 60px;
        height: 60px;
    }

    .hero-image-frame img {
        min-height: 400px;
        object-fit: cover;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .gallery-item--tall img {
        min-height: 300px;
    }

    .gallery-item:not(.gallery-item--tall) img {
        height: 200px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit-info {
        padding-right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-image-small {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
        border: none;
    }

    .about-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about-stat-sep {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .hero-meta-sep {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item--tall img {
        min-height: 260px;
    }
}
