/* ==========================================
   VARIABLES & RESET 
   ========================================== */
:root {
    --onyx: #0b0b0d;
    --gold: #c5a059;
    --gold-light: #e2c690;
    --cream: #f5f1e8;
    --forest: #2a332d;
    --grey-dark: #1a1a1c;
    --grey: #2a2a2d;
    --white: #ffffff;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--onyx);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1400px; margin: 0 auto; }

/* CURSOR */
.cursor, .cursor-follow { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
.cursor { width: 8px; height: 8px; background: var(--gold); transition: transform 0.2s ease; }
.cursor-follow { width: 40px; height: 40px; border: 1px solid var(--gold); transition: transform 0.4s var(--ease), width 0.3s, height 0.3s, background 0.3s; }
.cursor-active .cursor-follow { width: 80px; height: 80px; background: rgba(197, 160, 89, 0.1); }

/* LOADER */
.loader { position: fixed; inset: 0; background: var(--onyx); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s var(--ease), visibility 0.8s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo-img { width: 220px; max-width: 60vw; margin-bottom: 30px; animation: pulse 2s infinite ease-in-out; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.8; transform: scale(0.98); } }
.loader-bar { width: 220px; height: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.loader-bar::after { content: ''; display: block; width: 100%; height: 100%; background: var(--gold); animation: loadProgress 1.5s var(--ease) forwards; }
@keyframes loadProgress { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

/* CURTAIN */
.curtain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; display: flex; }
.curtain-panel { flex: 1; background: var(--onyx); transition: transform 0.8s var(--ease); }
.curtain.active .curtain-panel.left { transform: translateX(0); }
.curtain.active .curtain-panel.right { transform: translateX(0); }
.curtain .curtain-panel.left { transform: translateX(-100%); }
.curtain .curtain-panel.right { transform: translateX(100%); }
.curtain.exit .curtain-panel.left { transform: translateX(-100%); }
.curtain.exit .curtain-panel.right { transform: translateX(100%); }

/* NAVIGATION */
.nav-bar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 50px; transition: background 0.4s, padding 0.4s; display: flex; justify-content: center; }
.nav-bar.scrolled { background: rgba(11, 11, 13, 0.85); backdrop-filter: blur(15px); padding: 10px 50px; border-bottom: 1px solid rgba(197, 160, 89, 0.1); }
.nav-container { width: 100%; max-width: 1400px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo-img { height: 70px; width: auto; transition: height 0.4s var(--ease); }
.nav-bar.scrolled .nav-logo-img { height: 55px; }
.nav-menu { display: flex; gap: 40px; }
.nav-link { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 400; position: relative; padding: 5px 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.menu-toggle { display: none; flex-direction: column; justify-content: center; width: 40px; height: 40px; background: transparent; border: none; gap: 6px; z-index: 101; }
.toggle-line { height: 2px; width: 30px; background: var(--cream); transition: all 0.4s var(--ease); }
.menu-toggle.active .top { transform: rotate(45deg) translate(5px, 5px); background: var(--gold); }
.menu-toggle.active .bottom { transform: rotate(-45deg) translate(6px, -6px); background: var(--gold); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; display: flex; visibility: hidden; transition: visibility 0.1s; }
.mobile-menu.active { visibility: visible; }
.mobile-menu-panel { position: absolute; height: 100%; width: 75%; top: 0; transition: transform 0.8s var(--ease); }
.mobile-menu .left-panel { left: 0; background: var(--grey-dark); transform: translateY(-100%); }
.mobile-menu .right-panel { right: 0; width: 75%; background: var(--onyx); transform: translateY(100%); display: flex; flex-direction: column; justify-content: center; align-items: center; clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
.mobile-menu.active .left-panel { transform: translateY(0); }
.mobile-menu.active .right-panel { transform: translateY(0); }
.mobile-nav { display: flex; flex-direction: column; gap: 30px; text-align: right; padding-right: 50px; }
.mobile-link { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--cream); opacity: 0; transform: translateX(30px); }
.mobile-menu.active .mobile-link { opacity: 1; transform: translateX(0); transition: all 0.5s var(--ease); }
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.6s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.7s; }
.mobile-contact { margin-top: 40px; color: var(--gold); text-align: right; padding-right: 50px; }

/* SPA */
.page { display: none; min-height: 100vh; }
.page.active { display: block; padding-bottom: 60px; }

/* TYPOGRAPHY */
.section-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 20px; display: block; }
.section-eyebrow.center { text-align: center; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; font-weight: 400; }
.section-title em { color: var(--gold); font-style: italic; }
.section-title.center { text-align: center; }

.btn { padding: 18px 40px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; border: 1px solid var(--gold); background: transparent; color: var(--cream); position: relative; overflow: hidden; transition: color 0.4s var(--ease); display: inline-flex; align-items: center; gap: 10px; z-index: 1; cursor: none; }
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gold); transform: translateY(100%); transition: transform 0.4s var(--ease); z-index: -1; }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--onyx); }
.btn-primary { background: var(--gold); color: var(--onyx); }
.btn-primary::before { background: var(--cream); }

/* HERO */
.hero { position: relative; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); animation: heroZoom 10s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,13,0.95) 0%, rgba(11,11,13,0.7) 50%, rgba(11,11,13,0.3) 100%); }
.hero-content { position: relative; z-index: 2; padding-left: 8vw; max-width: 800px; }
.hero-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 20px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; font-weight: 500; margin-bottom: 30px; }
.hero-sub { font-size: 1.1rem; line-height: 1.6; max-width: 500px; color: rgba(245, 241, 232, 0.8); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 15px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--cream); }
.scroll-indicator .line { width: 1px; height: 50px; background: var(--gold); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp 1s var(--ease) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* HOME */
.home-intro { padding: 150px 20px; text-align: center; }
.home-intro-text { max-width: 800px; margin: 30px auto 0; font-size: 1.2rem; line-height: 1.8; color: rgba(245, 241, 232, 0.7); }
.home-featured { padding: 0 50px 100px; }
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.featured-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); }
.featured-link { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.featured-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; height: 500px; }
.featured-grid .portfolio-item { height: 100%; }

/* FAQ */
.faq-section { padding: 100px 20px; max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--grey-dark); border: 1px solid rgba(197, 160, 89, 0.1); transition: border 0.3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-question { padding: 25px 30px; cursor: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); }
.faq-question i { color: var(--gold); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 30px 25px; color: rgba(245, 241, 232, 0.7); line-height: 1.6; }

/* ABOUT */
.about-container { padding: 150px 50px 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; color: rgba(245, 241, 232, 0.8); }
.stats-grid { display: flex; gap: 40px; margin-top: 50px; border-top: 1px solid rgba(197, 160, 89, 0.2); padding-top: 30px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(245, 241, 232, 0.6); }
.about-image { width: 100%; height: 600px; overflow: hidden; position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.about-image:hover img { transform: scale(1.05); }

.process-section { padding: 100px 50px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.process-card { background: var(--grey-dark); padding: 40px 30px; border: 1px solid rgba(197, 160, 89, 0.1); transition: all 0.4s var(--ease); }
.process-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: rgba(197, 160, 89, 0.3); display: block; margin-bottom: 20px; }
.process-card h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--cream); }
.process-card p { font-size: 0.9rem; line-height: 1.6; color: rgba(245, 241, 232, 0.6); }

/* SERVICES */
.services-hero { padding: 200px 50px 100px; text-align: center; }
.services-intro { max-width: 600px; margin: 30px auto 0; color: rgba(245, 241, 232, 0.7); }
.services-list { display: flex; flex-direction: column; }
.service-item { display: flex; justify-content: space-between; align-items: center; padding: 60px 50px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; transition: all 0.5s var(--ease); cursor: none; }
.service-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--grey-dark); z-index: -1; opacity: 0; transition: opacity 0.5s var(--ease); }
.service-item:hover::before { opacity: 1; }
.service-item:hover .service-num { color: var(--gold); }
.service-info { display: flex; align-items: center; gap: 30px; }
.service-num { font-size: 1rem; color: rgba(245, 241, 232, 0.3); transition: color 0.5s var(--ease); }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
.service-desc { font-size: 0.9rem; color: rgba(245, 241, 232, 0.6); text-transform: uppercase; letter-spacing: 1px; }
.service-arrow { font-size: 1.5rem; transition: transform 0.5s var(--ease); }
.service-item:hover .service-arrow { transform: translateX(10px); color: var(--gold); }

.service-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.service-modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(11,11,13,0.9); backdrop-filter: blur(10px); animation: fadeIn 0.4s; }
.modal-content { position: relative; background: var(--grey-dark); width: 100%; max-width: 1000px; height: 85vh; display: flex; overflow: hidden; animation: scaleIn 0.5s var(--ease); }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-image { flex: 1; overflow: hidden; height: 100%; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { flex: 1; padding: 60px 50px; overflow-y: auto; display: flex; flex-direction: column; justify-content: flex-start; }
.modal-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.modal-info p { line-height: 1.8; margin-bottom: 30px; color: rgba(245, 241, 232, 0.8); }
#modalFeatures { list-style: none; }
#modalFeatures li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 10px; }
#modalFeatures li::before { content: '✦'; color: var(--gold); }
.modal-close { position: absolute; top: 20px; right: 20px; background: transparent; border: 1px solid var(--cream); width: 40px; height: 40px; color: var(--cream); cursor: none; transition: all 0.3s; z-index: 10; }
.modal-close:hover { background: var(--gold); border-color: var(--gold); }

/* PORTFOLIO */
.portfolio-header { padding: 200px 50px 80px; }
.portfolio-sub { max-width: 500px; margin-top: 20px; color: rgba(245, 241, 232, 0.6); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 20px; padding: 0 50px 100px; }
.portfolio-item { position: relative; overflow: hidden; background-size: cover; background-position: center; cursor: none; transition: transform 0.5s var(--ease); }
.portfolio-item.large { grid-column: span 2; grid-row: span 2; }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.p-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,13,0.95), rgba(11,11,13,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: opacity 0.6s var(--ease); }
.portfolio-item.in-view .p-overlay { opacity: 1; } 
.p-overlay span { color: var(--gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }
.p-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-top: 10px; }

.reviews-section { padding: 100px 50px; background: var(--grey-dark); }
.reviews-track { display: flex; gap: 30px; margin-top: 60px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; }
.review-card { flex: 1 0 300px; background: var(--onyx); padding: 40px; scroll-snap-align: start; border: 1px solid rgba(197, 160, 89, 0.1); transition: border 0.3s; }
.review-card:hover { border-color: var(--gold); }
.review-card i { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; }
.review-card p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; color: rgba(245, 241, 232, 0.9); }
.reviewer { display: flex; align-items: center; gap: 15px; }
.r-avatar { width: 50px; height: 50px; border-radius: 50%; background-size: cover; background-position: center; }
.reviewer h4 { font-weight: 500; }
.stars { color: var(--gold); font-size: 0.8rem; margin-top: 5px; }

/* CONTACT */
.contact-wrapper { display: flex; min-height: 100vh; padding-top: 120px; }
.contact-info { flex: 1; padding: 80px 50px; display: flex; flex-direction: column; justify-content: center; }
.contact-desc { margin: 30px 0; color: rgba(245, 241, 232, 0.7); max-width: 400px; }
.contact-details { margin-top: 50px; }
.contact-details p { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.contact-details i { color: var(--gold); width: 20px; }
.contact-form-wrapper { flex: 1; background: var(--grey-dark); padding: 80px; display: flex; align-items: center; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); }
.contact-form { width: 100%; max-width: 500px; margin-left: 5%; }
.form-group { position: relative; margin-bottom: 40px; }
.form-group input, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 10px 0; color: var(--cream); font-family: 'Jost', sans-serif; font-size: 1rem; outline: none; resize: vertical; }
.form-group label { position: absolute; top: 10px; left: 0; color: rgba(245, 241, 232, 0.5); transition: all 0.3s var(--ease); pointer-events: none; }
.form-group input:focus ~ label, .form-group input:valid ~ label, .form-group textarea:focus ~ label, .form-group textarea:valid ~ label { top: -15px; font-size: 0.8rem; color: var(--gold); }
.form-group .line { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.form-group input:focus ~ .line, .form-group textarea:focus ~ .line { transform: scaleX(1); }
.form-submit { width: 100%; justify-content: center; }

/* FOOTER */
.footer { background: var(--onyx); padding: 80px 50px 140px; text-align: center; border-top: 1px solid rgba(197, 160, 89, 0.1); position: relative; z-index: 10; }
.footer-logo-img { height: 100px; margin: 0 auto 20px; }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-credit { margin-top: 40px; font-size: 0.8rem; color: rgba(245, 241, 232, 0.4); display: flex; flex-direction: column; gap: 10px; }
.dw33py-sig { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; transition: text-shadow 0.3s; }
.dw33py-sig:hover { text-shadow: 0 0 10px rgba(197, 160, 89, 0.5); }

/* FLOATING BUTTONS */
.float-btn { position: fixed; bottom: 30px; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 998; transition: all 0.3s var(--ease); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.wa-btn { left: 30px; background: #25D366; color: white; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.top-btn { right: 30px; background: var(--gold); color: var(--onyx); border: none; cursor: none; opacity: 0; pointer-events: none; }
.top-btn.show { opacity: 1; pointer-events: auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { flex-direction: column; padding-top: 100px; }
    .contact-form-wrapper { clip-path: none; padding: 50px; margin-top: 40px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item.large, .portfolio-item.wide { grid-column: span 2; }
    .modal-content { flex-direction: column; height: 90vh; width: 100%; }
    .modal-image { height: 200px; flex: none; }
    .modal-info { padding: 30px; }
    .featured-grid { grid-template-columns: 1fr; height: auto; gap: 20px; }
    .featured-grid .portfolio-item { height: 300px; }
}

@media (max-width: 768px) {
    .nav-bar { padding: 15px 20px; }
    .nav-logo-img { height: 50px; }
    .hero-content { padding-left: 20px; }
    .home-intro, .about-container, .process-section, .services-hero, .portfolio-header, .reviews-section, .contact-info, .contact-form-wrapper, .footer, .faq-section { padding-left: 20px; padding-right: 20px; }
    .stats-grid { flex-wrap: wrap; gap: 20px; }
    .service-item { flex-direction: column; align-items: flex-start; gap: 15px; padding: 40px 20px; }
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; padding: 0 20px 50px; }
    .portfolio-item.large, .portfolio-item.tall, .portfolio-item.wide { grid-column: span 1; grid-row: span 1; }
    .process-grid { grid-template-columns: 1fr; }
    .mobile-menu .right-panel { width: 100%; clip-path: none; }
    .mobile-nav { text-align: center; padding: 0; }
    .mobile-contact { text-align: center; padding: 0; }
    .float-btn { width: 45px; height: 45px; font-size: 1.2rem; bottom: 20px; }
    .wa-btn { left: 20px; }
    .top-btn { right: 20px; }
}

@media (hover: none) {
    body { cursor: auto; }
    .cursor, .cursor-follow { display: none; }
    .btn, .service-item, .portfolio-item, .modal-close, .faq-question, .top-btn { cursor: pointer; }
}