/* Custom Properties */
:root {
    --bg-dark: #0a0a0a;
    --text-color: #111111;
    --accent: #d4af37; /* Not used much anymore */
    --light-gray: #E0E0E0; /* Wait, this is quite gray. */
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Anton', sans-serif;
}

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

html {
    /* Disable smooth scroll CSS since GSAP might handle smooth scrolling or we want tight control */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

em, i, .script-font {
    font-family: var(--font-script);
    text-transform: none; /* override uppercase from headings */
    font-style: normal;
    font-size: 1.8em; /* Script fonts usually need to be larger to match x-height */
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0.1em;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-0.05em); /* optical adjustment */
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.section-title.text-white {
    color: var(--white);
}

.body-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2rem;
    color: #333;
    column-count: 2;
    column-gap: 2rem;
}

.vertical-label {
    position: absolute;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: top left;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(59, 61, 255, 0.08);
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 0;
}

.vertical-label.right {
    right: 0;
    left: auto;
    /* Transformation logic handles rotation correctly if applied inline or kept simple */
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-padding {
    padding: 8rem 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.align-center { text-align: center; }
.bg-dark { background-color: var(--text-color); color: var(--bg-color); }
.bg-light { background-color: var(--white); }

.section-padding {
    padding: 4rem 2rem;
}

/* Buttons & Links Micro-interactions */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle fill effect */
.btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: top 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

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

.btn-primary:hover::before {
    top: 0;
}

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

.btn-outline::before {
    background-color: var(--text-color);
}

.btn-outline:hover {
    color: var(--white);
}
.btn-outline:hover::before {
    top: 0;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: var(--white);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

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

.navbar .btn {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}
.navbar .btn::before {
    background-color: var(--white);
}
.navbar .btn:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%; /* Extra width for zoom/pan */
    height: 120%; /* for parallax and zoom */
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(120%);
    z-index: -1;
    transform-origin: center center;
    animation: kenBurns 30s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -2%); }
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    display: none; /* Removed from HTML, keeping class just in case */
}

/* Custom CSS Logo */
.custom-logo {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.logo-main {
    font-family: var(--font-logo); /* Tall and bold Anton font matches reference */
    font-size: clamp(5rem, 15vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.mustache-wrapper {
    position: relative;
    display: inline-block;
}

.mustache {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(40px, 8vw, 80px);
    height: auto;
    color: var(--white);
}

.logo-icon {
    margin: 0.5rem 0;
}

.scissors {
    width: 35px;
    height: 35px;
    color: var(--white);
    transform: rotate(90deg); /* Rotate to match reference image */
}

.logo-sub {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 2vw, 1.2rem);
    letter-spacing: 1em;
    text-transform: uppercase;
    font-weight: 300;
    margin-left: 1em; /* Offset for letter-spacing to keep perfectly centered */
}

.line-wrapper {
    overflow: hidden;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.5em; /* Extreme luxury tracking */
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Luxury Button */
.btn-outline-luxury {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-luxury:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    animation: lineScroll 2s ease-in-out infinite;
}

@keyframes lineScroll {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}
.line {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
    margin-bottom: 0.5rem;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* About Section */
.about {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 2rem;
}

.stat-num {
    font-size: 3rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.stat-desc {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    font-weight: 500;
}

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

.img-card {
    position: absolute;
    background: var(--light-gray);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.img-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.card-1 {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.card-2 {
    width: 55%;
    height: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Pinned Services Section */
.services-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.services-left {
    width: 40%;
    position: relative;
}

.services-right {
    width: 55%;
}

.service-category {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 0.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.service-name {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.services-premium {
    position: relative;
}

.premium-card {
    border: 1px solid var(--text-color);
    padding: 2rem;
    background: var(--white);
}

.premium-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 2rem;
}

/* Team Section */
.barbers-carousel {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
}

.barbers-carousel::-webkit-scrollbar {
    display: none;
}

.barber-card {
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.barber-card:hover {
    transform: translateY(-10px);
}

.barber-img-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.barber-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.barber-card:hover .barber-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.barber-name {
    font-size: 2rem;
    color: var(--white);
}

.barber-role {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.barber-exp {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Horizontal Gallery Section */
.gallery-wrapper {
    position: relative;
    height: 100vh;
    background-color: var(--bg-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.gallery-container {
    width: max-content;
    display: flex;
    padding: 6rem 0;
}

.gallery-track {
    display: flex;
    gap: 3rem;
    padding: 0 5vw;
}

.gallery-item {
    width: 320px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Testimonials - Magazine Layout */
.testimonials {
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 4rem;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    padding: 3rem 0;
}

.testimonial-item {
    border-right: 1px solid var(--light-gray);
    padding-right: 2rem;
}

.testimonial-item:last-child {
    border-right: none;
    padding-right: 0;
}

.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Section */
.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    width: fit-content;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--text-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    filter: grayscale(100%);
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* Footer */
.footer {
    background-color: #050505;
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.8;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.footer-col p, .footer-col a {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.footer-form input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    flex: 1;
    outline: none;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom p, .back-to-top {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.back-to-top:hover {
    color: var(--white);
}

/* Set Initial States for GSAP */
.gs-reveal, .gs-reveal-fade, .gs-reveal-up, .gs-service-item {
    visibility: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2-col, .services-container {
        flex-direction: column;
        display: flex;
        gap: 3rem;
    }
    .services-left, .services-right {
        width: 100%;
    }
    .vertical-label {
        display: none;
    }
    .about-images {
        height: 400px;
        margin-top: 3rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-item {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .testimonial-item:last-child {
        border-bottom: none;
    }
    .body-text {
        column-count: 1;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        mix-blend-mode: normal;
        background-color: var(--text-color);
    }
    .nav-links {
        display: none;
    }
    .section-title {
        font-size: 3rem;
    }
    .hero-title {
        font-size: 4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .section-padding {
        padding: 5rem 0;
    }
    .hero-bg {
        height: 100%;
    }
    .gallery-item {
        width: 300px;
        height: 400px;
    }
}

/* Premium Mega Menu Styles */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

.mega-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mega-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

.mega-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6rem;
    display: flex;
    align-items: center;
    color: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.mega-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mega-link {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff;
    text-decoration: none;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    width: max-content;
}

.mega-link:hover {
    color: #aaa;
}

.mega-num {
    font-family: var(--font-body);
    font-size: 1rem;
    vertical-align: super;
    margin-right: 1rem;
    color: #666;
}

.mega-menu-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 4rem;
}

.mega-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 3rem;
}

.mega-contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mega-contact-details p {
    font-family: var(--font-body);
    color: #aaa;
    line-height: 1.8;
}

.mega-email {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.mega-email:hover {
    color: #888;
    border-bottom-color: #888;
}
