/* ============================================
   FADE ZONE BARBERSHOP — Styles
   Deep Navy (#0A1628) + Warm Gold (#C8A45A)
   ============================================ */

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

:root {
    --navy: #0A1628;
    --navy-light: #132038;
    --navy-mid: #1A2D4A;
    --gold: #C8A45A;
    --gold-light: #D4B76E;
    --gold-pale: #F5ECD7;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --cream: #FAFAF8;
    --gray-100: #F0EFEC;
    --gray-200: #E2E0DA;
    --gray-300: #C4C1B8;
    --gray-400: #8A8780;
    --gray-500: #5C5954;
    --text: #1A1A18;
    --text-light: #4A4843;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(200, 164, 90, 0.15);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 8px;
}

.nav__logo-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
}

.nav__link--cta:hover {
    background: var(--gold);
    color: var(--navy);
}

.nav__link--cta::after {
    display: none;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 90, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(200, 164, 90, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 40%, rgba(200, 164, 90, 0.03) 100%),
        url('https://images.pexels.com/photos/8834048/pexels-photo-8834048.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1200&h=1600') center/cover no-repeat;
    opacity: 0.25;
    mask-image: linear-gradient(to left, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__card {
    background: var(--navy-light);
    border: 1px solid rgba(200, 164, 90, 0.15);
    border-radius: var(--radius);
    padding: 48px;
}

.hero__card--main {
    max-width: 520px;
}

.hero__card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__card-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero__headline {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__headline-em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

.hero__subheadline {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Stat Cards */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.stat-card {
    background: var(--navy-light);
    border: 1px solid rgba(200, 164, 90, 0.12);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateX(4px);
}

.stat-card--1 { margin-top: 0; }
.stat-card--2 { margin-top: -20px; }
.stat-card--3 { margin-top: -40px; }

.stat-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(200, 164, 90, 0.1);
    color: var(--gold);
    flex-shrink: 0;
}

.stat-card__value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.stat-card__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* ---------- Divider ---------- */
.divider {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__number {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card__title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.4;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery__item:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.gallery__item:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.gallery__item:nth-child(4) { grid-column: span 5; grid-row: span 1; }
.gallery__item:nth-child(5) { grid-column: span 5; grid-row: span 1; }

/* ---------- CTA ---------- */
.cta {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta__inner .section-label {
    margin-bottom: 20px;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--navy);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-detail__value {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-detail__value a {
    transition: color var(--transition);
}

.contact-detail__value a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 48px;
}

.contact__form-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.1);
}

.form-input::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    gap: 16px;
}

.form-success p {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

/* ---------- Map ---------- */
.map-section {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.map-section iframe {
    filter: grayscale(0.6) contrast(1.05);
    transition: filter var(--transition);
}

.map-section:hover iframe {
    filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer__link {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__card--main {
        max-width: 100%;
    }

    .hero::before {
        display: none;
    }

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

    .about__grid {
        gap: 48px;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery__item {
        height: 240px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(200, 164, 90, 0.15);
    }

    .nav__menu.open {
        transform: translateY(0);
    }

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

    .nav__link--cta {
        display: inline-block;
    }

    .hero {
        padding: 120px 24px 80px;
        min-height: auto;
    }

    .hero__card {
        padding: 32px 28px;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .stat-card {
        margin-top: 0 !important;
    }

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

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

    .about__image-wrapper {
        order: -1;
    }

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

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item {
        height: 220px;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .contact__form-card {
        padding: 32px 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero__card {
        padding: 24px 20px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .services, .about, .gallery, .cta, .contact {
        padding: 80px 0;
    }
}
