/* ============================================
   POP'S BARBERSHOP — Style sheet
   ============================================ */

:root {
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --gold: #f0b419;
    --gold-light: #f5c542;
    --gold-dark: #c88f0a;
    --white: #f5f5f0;
    --white-soft: #e8e8e3;
    --gray: #888;
    --gray-dark: #2a2a2a;
    --gray-darker: #1e1e1e;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Caveat', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-hex {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gold);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    animation: pulse 1.2s ease-in-out infinite;
}

.loader p {
    font-family: var(--font-display);
    letter-spacing: 0.3em;
    font-size: 14px;
    color: var(--gold);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.6; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(240, 180, 25, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo img {
    height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.nav-desktop {
    display: flex;
    gap: 36px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-soft);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-desktop a:hover {
    color: var(--gold);
}

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

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-phone:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--gold);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--gold);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80%, 360px);
    height: 100vh;
    background: var(--black-soft);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--gray-dark);
    z-index: 1001;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gray-dark);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-mobile-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--gold);
}

.nav-mobile-phone {
    margin-top: auto;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 100px;
    text-align: center;
    font-size: 16px !important;
    font-family: var(--font-body) !important;
    font-weight: 600;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg-hex {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background-image:
        linear-gradient(60deg, transparent 48%, rgba(240, 180, 25, 0.06) 49%, rgba(240, 180, 25, 0.06) 51%, transparent 52%),
        linear-gradient(-60deg, transparent 48%, rgba(240, 180, 25, 0.06) 49%, rgba(240, 180, 25, 0.06) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(240, 180, 25, 0.06) 49%, rgba(240, 180, 25, 0.06) 51%, transparent 52%);
    background-size: 80px 138px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 180, 25, 0.3);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.25s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .line-1 { animation-delay: 0.3s; }
.hero-title .line-2 {
    animation-delay: 0.5s;
    padding-left: 0.8em;
}
.hero-title .line-3 { animation-delay: 0.7s; }

.hero-title em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold);
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-block;
    transform: rotate(-3deg);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white-soft);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(240, 180, 25, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-dark);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image-wrap:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.4) 100%);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 16px 22px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-3deg);
}

.badge-stars {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(60px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--gold);
    color: var(--black);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.15em;
}

.marquee-track .sep {
    font-size: 20px;
    opacity: 0.5;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section-tag {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 24px;
}

.section-title em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold);
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
    transform: rotate(-2deg);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 140px 0;
    background: var(--black);
    position: relative;
}

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

.about-text .section-title {
    margin-bottom: 32px;
}

.about-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text p {
    color: var(--white-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-dark);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-img-1,
.about-img-2 {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-img-1 {
    width: 65%;
    height: 75%;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-img-2 {
    width: 55%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid var(--black);
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-1:hover img,
.about-img-2:hover img {
    transform: scale(1.05);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 140px 0;
    background: var(--black-soft);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-sub {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 16px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-dark);
    transition: all 0.3s ease;
    position: relative;
}

.service-row::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.service-row:hover {
    padding-left: 16px;
}

.service-row:hover::before {
    width: 12px;
}

.service-name {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-shrink: 0;
}

.service-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0.1em;
    min-width: 30px;
}

.service-name h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--white);
    font-weight: 400;
}

.service-detail {
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-body);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 300;
}

.service-line {
    flex: 1;
    height: 1px;
    background: var(--gray-dark);
    background-image: linear-gradient(to right, var(--gray-dark) 50%, transparent 50%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

.service-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.service-special {
    background: linear-gradient(135deg, rgba(240, 180, 25, 0.08), transparent);
    padding: 28px 24px;
    border-radius: 8px;
    border-bottom: none;
    margin-top: 16px;
    border: 1px solid rgba(240, 180, 25, 0.2);
}

.service-special:hover {
    padding-left: 24px;
    background: linear-gradient(135deg, rgba(240, 180, 25, 0.12), rgba(240, 180, 25, 0.02));
}

.service-special::before {
    display: none;
}

.service-special-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.service-special-content h3 {
    margin: 0;
}

.service-included {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--white-soft);
    letter-spacing: 0.05em;
    font-style: italic;
    font-weight: 300;
    text-transform: none;
}

.service-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 4px;
    vertical-align: middle;
    width: fit-content;
}

.services-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-dark);
}

.services-cta p {
    color: var(--white-soft);
    margin-bottom: 20px;
    font-size: 16px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 140px 0;
    background: var(--black);
}

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

/* Bannière devanture pleine largeur */
.gallery-banner {
    width: 100%;
    height: clamp(300px, 50vw, 600px);
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

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

.gallery-banner:hover img {
    transform: scale(1.03);
}

.gallery-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-banner-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    width: 100%;
    padding: 0 24px;
}

.gallery-banner-caption span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 6px;
}

.gallery-banner-caption p {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-soft);
    margin: 0;
}

/* Sous-titres galerie */
.gallery-subtitle {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px;
}

.gallery-subtitle:first-child {
    margin-top: 0;
}

.gallery-subtitle h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-top: 12px;
}

.gallery-subtitle h3 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold);
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    transform: rotate(-2deg);
}

/* Grille des coupes (3 colonnes mises en valeur) */
.gallery-cuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.gallery-cut {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--gray-dark);
}

.gallery-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: brightness(0.9);
}

.gallery-cut:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-cut::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(240, 180, 25, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-cut:hover::after {
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(240, 180, 25, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

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

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

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

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

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 140px 0;
    background: var(--black-soft);
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.info-block {
    padding: 32px;
    background: var(--black-card);
    border-radius: 8px;
    border: 1px solid var(--gray-dark);
    transition: border-color 0.3s ease;
}

.info-block:hover {
    border-color: var(--gold);
}

.info-block h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.info-block p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-link {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.info-link:hover {
    opacity: 0.7;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--white-soft);
    font-size: 14px;
    border-bottom: 1px solid var(--gray-darker);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:last-child {
    color: var(--gold);
    font-weight: 500;
}

.info-contact {
    display: block;
    color: var(--white);
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid var(--gray-dark);
    filter: grayscale(0.4) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-map:hover {
    filter: grayscale(0) contrast(1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid var(--gray-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: var(--white-soft);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.socials a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-dark);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    color: var(--white-soft);
    transition: all 0.3s ease;
}

.socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.review-link {
    display: inline-block !important;
    padding: 8px 16px !important;
    border: 1px solid var(--gold) !important;
    border-radius: 100px;
    color: var(--gold) !important;
    font-size: 12px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-link:hover {
    background: var(--gold);
    color: var(--black) !important;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.footer-meta {
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.15em !important;
}

/* ============================================
   FLOATING CALL BUTTON (mobile)
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(240, 180, 25, 0.4);
    z-index: 999;
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(240, 180, 25, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 32px rgba(240, 180, 25, 0.6); }
}

/* ============================================
   ANIMATIONS SCROLL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

    .gallery-banner {
        height: 400px;
    }
}

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

    .nav-desktop {
        display: none;
    }

    .btn-phone span {
        display: none;
    }

    .btn-phone {
        padding: 12px;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title em {
        font-size: 0.6em;
    }

    .hero-title .line-2 {
        padding-left: 0.4em;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    .hero-badge {
        bottom: -15px;
        left: -10px;
        padding: 12px 16px;
    }

    .marquee-track span {
        font-size: 24px;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-visual {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .about-img-1,
    .about-img-2 {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        border: none;
    }

    .service-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-name h3 {
        font-size: 20px;
    }

    .service-price {
        font-size: 22px;
        margin-left: auto;
    }

    .service-line {
        display: none;
    }

    .gallery-banner {
        height: 280px;
        margin-bottom: 60px;
    }

    .gallery-cuts {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
    }

    .gallery-cut {
        aspect-ratio: 4/5;
    }

    .gallery-subtitle {
        margin-bottom: 30px;
        margin-top: 20px;
    }

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

    .gallery-item-1,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

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

    .floating-call {
        display: flex;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(48px, 14vw, 80px);
    }

    .section-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .info-block {
        padding: 24px;
    }
}
