/* ===================================================
   BOSKES CREATIVE STUDIO — Full Storyscrolling Styles
   Harvard UX Level Design
   =================================================== */

:root {
    --bg: #faf6f1;          /* warm woody off-white instead of clinical pure white */
    --dark: #1c1512;        /* coffee-tinted near-black */
    --green: #2d5a27;
    --green-light: #4a8c40;
    --green-soft: rgba(45, 90, 39, 0.08);
    /* Woody coffee accent palette */
    --coffee: #5b4334;
    --coffee-light: #8a6a4f;
    --coffee-soft: rgba(91, 67, 52, 0.10);
    --font: 'Montserrat', sans-serif;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,106,79,0.14) 0%, transparent 70%); /* warm woody coffee glow */
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    mix-blend-mode: multiply;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-progress-track {
    width: 1px;
    height: 120px;
    background: rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.scroll-progress-fill {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 0%;
    background: var(--green);
    transition: height 0.1s linear;
}


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

html {
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
    background: var(--bg);
    color: var(--dark);
    font-family: var(--font);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─────────────── NAVBAR ─────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7vw;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: rgba(0,0,0,0.7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--green);
    transition: width 0.35s cubic-bezier(0.2, 1, 0.2, 1);
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

/* Active section highlight (scroll-spy) */
.nav-links a.active { color: var(--green); }
.navbar.scrolled .nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }

/* Visible keyboard focus across all nav links */
.nav-links a:focus-visible,
.nav-logo:focus-visible,
.mobile-link:focus-visible,
.dot:focus-visible,
.back-to-top:focus-visible,
.burger:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 4px;
    border-radius: 3px;
}

/* ── SECTION DOT NAVIGATION ── */
.dot-nav {
    position: fixed;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 600;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dot-nav.visible {
    opacity: 1;
    visibility: visible;
}

.dot {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot:hover::before { background: var(--green-light); transform: scale(1.3); }

.dot.active::before {
    background: var(--green);
    transform: scale(1.5);
    box-shadow: 0 0 0 4px var(--green-soft);
}

.dot-label {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.dot:hover .dot-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 600;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.2, 1, 0.2, 1), background 0.3s ease;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover { background: var(--green-light); transform: translateY(-3px) scale(1.05); }

/* ─────────────── HERO ─────────────── */
.scrolly-hero {
    height: 400vh; /* Long enough for the story beats, short enough to feel agile */
    position: relative;
}

.hero-pinned {
    height: 100vh;
    height: 100svh; /* stable on mobile — ignores URL-bar show/hide */
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Deep cinematic vignette around hero edges */
.hero-pinned::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.content-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.frame {
    position: absolute;
    top: 50%; left: 50%;
    width: 90%;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.hero-logo {
    width: clamp(200px, 35vw, 480px);
    height: auto;
    animation: logoFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-weight: 500;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 11px;
    display: flex;
    justify-content: center;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    margin-top: 7px;
    animation: scrollWheel 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollWheel {
    0%   { transform: translateY(0);    opacity: 1; }
    50%  { opacity: 1; }
    100% { transform: translateY(13px); opacity: 0; }
}

/* ─────────────── SHARED STORY SECTIONS ─────────────── */
.story-section {
    position: relative;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    border-left: 2px solid var(--green);
    padding-left: 12px;
    margin-bottom: 48px;
}

.section-label--light {
    color: rgba(255,255,255,0.4);
    border-left-color: var(--green-light);
}

/* ─────────────── ABOUT — SPLIT LAYOUT ─────────────── */
.about-story {
    height: 200vh; /* Gives scroll room for pin */
    background: var(--bg);
}

.story-sticky {
    height: 100vh;
    height: 100svh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.split-text {
    padding: 80px 7vw;
    opacity: 0;
    transform: translateY(60px);
}

.reveal-text {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
    color: var(--dark);
}

.reveal-text em {
    font-style: normal;
    color: var(--green);
}

.body-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(0,0,0,0.65);
    max-width: 480px;
}

.body-text strong {
    font-weight: 700;
    color: var(--dark);
}

.split-image {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.image-clip {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    clip-path: inset(0 100% 0 0);
}

/* ─────────────── SERVICIOS — DARK STAGGER ─────────────── */
.services-story {
    background: linear-gradient(160deg, #1c1512 0%, #2a1d15 100%); /* warm woody coffee dark */
    padding: 120px 7vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-stagger {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(-50px);
    overflow: hidden;
    cursor: pointer;
    transition: background 0.5s ease, padding 0.5s ease;
    border-radius: 4px;
}

.service-row:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 16px;
}

.service-row:hover .service-num {
    color: var(--green-light);
    transition: color 0.4s ease;
}

.service-row:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-num {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
}

.service-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 500px;
}

.service-img {
    width: 200px;
    height: 120px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1),
                opacity 0.6s ease;
    overflow: hidden;
}

.service-row:hover .service-img {
    opacity: 1;
    transform: scale(1);
}

.service-row:hover .service-content h3 {
    color: var(--green-light);
    transition: color 0.3s ease;
}

/* ─────────────── PORTFOLIO — HORIZONTAL GALLERY ─────────────── */
.portfolio-story {
    height: 450vh; /* Horizontal gallery — trimmed for a quicker pass */
    background: var(--bg);
}

.portfolio-pinned {
    height: 100vh;
    height: 100svh;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 7vw 40px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.portfolio-hint {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 500;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.portfolio-slide {
    flex-shrink: 0;
    width: clamp(260px, 30vw, 380px);
    cursor: pointer;
}

.pslide-img {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.portfolio-slide:hover .pslide-img {
    transform: scale(1.03);
}

.pslide-info {
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pslide-num {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: rgba(0,0,0,0.3);
    font-weight: 500;
}

.pslide-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.pslide-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
}

/* ─────────────── STATEMENT ─────────────── */
.statement-story {
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.statement-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
}

.statement-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 21, 18, 0.55); /* warm coffee veil instead of flat black */
    z-index: 1;
}

.statement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.statement-text {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
}

/* ─────────────── CONTACT ─────────────── */
.contact-story {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    padding: 120px 7vw;
}

.contact-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.contact-email {
    display: block;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--dark);
    text-decoration: none;
    line-height: 1;
    margin-bottom: 30px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--green);
    transition: width 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.contact-email:hover { color: var(--green); }
.contact-email:hover::after { width: 100%; }

.contact-phones {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 80px;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover { color: var(--green); }

.contact-sep {
    color: rgba(0,0,0,0.3);
}

.contact-footer {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
}

/* ─────────────── BURGER & MOBILE MENU ─────────────── */

/* Hamburger button — hidden on desktop */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity   0.3s ease,
                width     0.3s ease;
}

.navbar.scrolled .burger span { background: #111; }

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Fullscreen mobile overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(10, 15, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10vw;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.5s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

.mobile-links li { overflow: hidden; }

.mobile-link {
    display: block;
    font-family: var(--font);
    font-size: clamp(2.8rem, 10vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    transition: color 0.3s ease;
}
.mobile-link:hover { color: var(--green-light); }

.mobile-menu.open .mobile-link {
    animation: linkSlide 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.mobile-menu.open .mobile-links li:nth-child(1) .mobile-link { animation-delay: 0.05s; }
.mobile-menu.open .mobile-links li:nth-child(2) .mobile-link { animation-delay: 0.12s; }
.mobile-menu.open .mobile-links li:nth-child(3) .mobile-link { animation-delay: 0.19s; }
.mobile-menu.open .mobile-links li:nth-child(4) .mobile-link { animation-delay: 0.26s; }

@keyframes linkSlide {
    to { opacity: 1; transform: translateY(0); }
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1.5px solid var(--green-light);
    color: var(--green-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: background 0.3s ease, color 0.3s ease;
}
.mobile-menu.open .mobile-cta {
    animation: linkSlide 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards;
}
/* Close button inside the mobile overlay */
.mobile-close {
    position: absolute;
    top: 24px;
    right: 6vw;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    letter-spacing: 0;
    line-height: 1;
}
.mobile-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ─────────────────────────────── RESPONSIVE ─────────────────────────────── */

/* Disable custom cursor glow & scroll progress on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-glow { display: none !important; }
    .scroll-progress { display: none !important; }
    .mouse { display: none !important; } /* Hide mouse indicator on mobile hero */
    .dot-nav { display: none !important; } /* Burger menu covers navigation on touch */
}

@media (max-width: 900px) {
    .dot-nav { display: none; } /* Avoid overlapping content on narrow screens */
    .about-story { height: 140vh; } /* Less dead scroll — image is hidden here */
    .split-layout { grid-template-columns: 1fr; }
    .split-image { display: none; }
    .split-text { padding: 60px 7vw; }
    
    .service-row { grid-template-columns: 50px 1fr; }
    .service-img { display: none; }
    
    .portfolio-slide { width: clamp(260px, 60vw, 340px); }
    .statement-text { font-size: clamp(2rem, 6vw, 3rem); }
    
    .nav-links { gap: 24px; }
}

/* At 768px show burger, hide desktop links */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .navbar { flex-direction: row; } /* Keep logo + burger on same row */

    /* Shorter hero on tablets — mouse parallax is touch-disabled here */
    .scrolly-hero { height: 320vh; }
}

@media (max-width: 600px) {
    /* Navbar stays horizontal — logo left, burger right */
    .navbar { padding: 16px 5vw; flex-direction: row; justify-content: space-between; align-items: center; }
    .nav-logo img { height: 24px; }

    /* Even shorter hero on phones — keeps the intro snappy */
    .scrolly-hero { height: 260vh; }

    /* Smaller back-to-top FAB so it doesn't crowd the screen */
    .back-to-top { width: 42px; height: 42px; right: 18px; bottom: 18px; }

    /* Adjust typography */
    .section-label { font-size: 0.65rem; margin-bottom: 32px; }
    .reveal-text { font-size: 2rem; margin-bottom: 24px; }
    .body-text { font-size: 1rem; }
    
    /* Services compaction */
    .services-story { padding: 80px 5vw; }
    .service-row { padding: 24px 0; gap: 20px; }
    .service-content h3 { font-size: 1.3rem; }
    .service-content p { font-size: 0.85rem; }

    /* Portfolio slides take up most of the screen on mobile */
    .portfolio-story { height: 320vh; }
    .portfolio-pinned { padding: 80px 5vw 40px; }
    .portfolio-slide { width: 80vw; }

    /* Contact Section stacked */
    .contact-story { padding: 80px 5vw; }
    .contact-email { font-size: clamp(1.6rem, 7vw, 2.5rem); margin-bottom: 24px; word-break: break-all; }
    .contact-phones { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 60px; }
    .contact-sep { display: none; }
}
