﻿@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --base-100: #2e2e2e;
    --base-200: #4e4e4e;
    --base-300: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html.lenis,
html.lenis body {
    height: auto;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: "Host Grotesk";
    background-color: var(--base-300);
}
.btn,
.btn-premium,
.project-btn,
.collab-btn-standalone,
.primary-btn,
.outline-btn,
.why-cta-btn,
.form-submit-btn {
    padding: 0.6rem 0.6rem 0.6rem 2.2rem !important;
    min-width: auto !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
    border-radius: 4rem !important;
    background-color: var(--base-300) !important;
    color: var(--base-100) !important;
    border: 1px solid rgba(24, 23, 23, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.btn:hover,
.btn-premium:hover,
.project-btn:hover,
.collab-btn-standalone:hover,
.primary-btn:hover,
.form-submit-btn:hover {
    background-color: #ffffff !important;
    color: var(--base-100) !important;
    border-color: #D47328 !important;
    transform: translateY(-3px);
}
.btn .btn-label span,
.form-submit-btn .btn-label span {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: inherit !important;
}
.btn .btn-icon,
.btn-premium .btn-icon,
.project-btn .btn-icon,
.collab-btn-standalone .btn-icon,
.primary-btn .btn-icon,
.form-submit-btn .btn-icon {
    width: 3.2rem !important;
    height: 3.2rem !important;
    background-color: #D47328 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:hover .btn-icon,
.form-submit-btn:hover .btn-icon {
    transform: scale(1.1);
}
.btn .btn-icon ion-icon,
.form-submit-btn .btn-icon ion-icon {
    font-size: 1.4rem !important;
}
.form-submit-btn {
    width: max-content !important;
    margin-left: auto;
}
.contact-section-premium {
    position: relative;
    width: 100%;
    background-color: var(--base-300);
    color: var(--base-100);
    padding: 3rem 4rem 4rem 4rem;
    border-radius: 0 0 3rem 3rem;
    z-index: 25;
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 7rem;
    display: flex;
    justify-content: space-between;
    gap: 6rem;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}
.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D47328;
}
.contact-title {
    font-family: serif;
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.contact-title em {
    font-style: italic;
    color: #D47328;
    font-weight: 400;
}
.contact-sub {
    font-size: 1.15rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.contact-form-wrapper {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    background: transparent;
}
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.form-row {
    display: flex;
    gap: 2rem;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(24, 23, 23, 0.2);
    padding: 1rem 0;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--base-100);
    transition: border-color 0.3s ease;
    resize: none;
}
.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: rgba(24, 23, 23, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #D47328;
}
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1rem;
    font-size: 0.8rem;
    color: #D47328;
    font-weight: 500;
}
.form-consent {
    flex: 1;
    text-align: left;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(24, 23, 23, 0.7);
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.consent-text a {
    color: #D47328;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 115, 40, 0.2);
}
.consent-text a:hover {
    color: var(--base-100);
    border-bottom-color: #D47328;
}
.custom-checkbox input {
    display: none;
}
.checkmark {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(24, 23, 23, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.custom-checkbox input:checked~.checkmark {
    background-color: #D47328;
    border-color: #D47328;
}
.custom-checkbox input:checked~.checkmark::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form-submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}
.main-footer {
    position: relative;
    background-color: var(--base-100);
    color: var(--base-300);
    padding: 0;
    z-index: 20;
    margin-top: -3rem;
    padding-top: 3rem;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding: 8rem 4rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-col .logo-text {
    color: var(--base-300);
    font-size: 2rem;
}
.footer-about {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 320px;
}
.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.social-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials a {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--base-300);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}
.footer-socials a:hover {
    border-color: #D47328;
    transform: translateY(-5px);
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a {
    color: var(--base-300);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #D47328;
}
.col-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0.7;
}
.col-contact .contact-item ion-icon {
    font-size: 1.4rem;
    color: #D47328;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 4rem;
    border-top: 1px solid rgba(245, 245, 245, 0.05);
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.4;
    text-align: center;
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .contact-section-premium { padding: 4rem 3rem 6rem; }
    .contact-container { flex-direction: column; gap: 4rem; }
    .contact-info { max-width: 100%; text-align: center; }
    .contact-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 4rem 2rem; }
}
@media (max-width: 768px) {
    .contact-section-premium { padding: 3rem 1.5rem 5rem; border-radius: 0 0 2rem 2rem; }
    .contact-container { gap: 3rem; }
    .form-row { flex-direction: column; gap: 2rem; }
    .form-footer-action { 
        flex-direction: column; 
        align-items: center; 
        gap: 2rem; 
        text-align: center;
    }
    .form-submit-btn {
        width: 100% !important;
        justify-content: center !important;
        margin-left: 0 !important;
    }
    .form-consent {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-main-grid { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; }
    .footer-col { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .footer-about { text-align: center; }
    ul.footer-links { align-items: center; text-align: center; }
    .col-contact .contact-item { justify-content: center; text-align: center; flex-direction: column; gap: 0.5rem; }
    .footer-socials { justify-content: center; width: 100%; margin-top: 1rem; }
    .footer-social-wrapper { text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}
.form-group {
    position: relative;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 115, 40, 0.15);
}
.footer-col.col-brand .logo-text {
    font-size: 3rem;
    color: var(--base-300);
    display: inline-block;
    transition: letter-spacing 0.4s ease;
}
.footer-col.col-brand .logo-text:hover {
    letter-spacing: 0.05em;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
}
.footer-links a::before {
    content: '\2190';
    font-size: 0.8em;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: #D47328;
    display: inline-block;
    margin-right: 0;
    width: 0;
    overflow: hidden;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 1.2em;
    margin-right: 0.3rem;
}
.footer-links a:hover {
    padding-left: 0;
    color: #D47328;
    opacity: 1;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.form-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}
.consent-text {
    white-space: nowrap;
}
.form-consent {
    flex: 1;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 50%;
    color: rgba(245, 245, 245, 0.5);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-socials a:hover {
    border-color: #D47328;
    color: #D47328;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 115, 40, 0.2);
}
.footer-main-grid {
    padding: 6rem 4rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-bottom {
    position: relative;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4rem;
    right: 4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.06) 50%, transparent);
}
.btn,
.btn-premium,
.collab-btn-standalone,
.why-cta-btn {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        filter 0.3s ease;
}
::selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-moz-selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--base-300);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 40, 0.4);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D47328;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(212, 115, 40, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}
body.has-custom-cursor,
body.has-custom-cursor *,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor label,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor .btn,
body.has-custom-cursor .btn *,
body.has-custom-cursor .social-icon,
body.has-custom-cursor .social-links a,
body.has-custom-cursor .menu-btn,
body.has-custom-cursor ion-icon {
    cursor: none !important;
}
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 50000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #D47328;
    margin-left: -3px;
    margin-top: -3px;
}
.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(212, 115, 40, 0.4);
    margin-left: -17px;
    margin-top: -17px;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border 0.3s ease;
}
.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background-color: rgba(212, 115, 40, 0.05);
    border-color: #D47328;
}
.cursor-hover .cursor-dot {
    transform: scale(1.5);
}
.cursor-clicking .cursor-ring {
    transform: scale(0.8);
    background-color: rgba(212, 115, 40, 0.2);
}
.cursor-text .cursor-dot {
    opacity: 1;
    width: 2px;
    height: 24px;
    margin-left: -1px;
    margin-top: -12px;
    border-radius: 2px;
}
.cursor-on-dark .cursor-dot {
    background-color: #ffffff;
}
.cursor-on-dark .cursor-ring {
    border-color: rgba(255, 255, 255, 0.4);
}
.cursor-on-dark.cursor-hover .cursor-dot {
    background-color: #D47328 !important;
}
.cursor-on-dark.cursor-hover .cursor-ring {
    border-color: #D47328 !important;
    background-color: rgba(212, 115, 40, 0.1);
}
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
    .has-custom-cursor,
    .has-custom-cursor a,
    .has-custom-cursor button {
        cursor: auto !important;
    }
}
:root {
    --nw-b100: #2e2e2e;
    --nw-b200: #4e4e4e;
    --nw-b300: #f5f5f5;
    --nw-acc:   #D47328;
    --nw-s-pad: clamp(4rem, 10vw, 10rem);
    --nw-c-pad: clamp(1.5rem, 5vw, 4rem);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: 'Host Grotesk', sans-serif;
    background-color: var(--nw-b300);
    color: var(--nw-b100);
}
.nw-footer {
    position: relative;
    background-color: var(--nw-b100);
    color: var(--nw-b300);
    padding: 0;
    z-index: 20;
    margin-top: -3rem;
    padding-top: 3rem;
}
.nw-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding: var(--nw-s-pad) var(--nw-c-pad) 0.5rem var(--nw-c-pad);
    max-width: 1400px;
    margin: 0 auto;
}
.nw-footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.nw-footer-col .nw-logo-text {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.4s ease;
}
.nw-footer-col .nw-logo-text:hover { transform: translateY(-3px); }
.nw-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nw-footer-about {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 320px;
}
.nw-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.nw-social-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.nw-footer-socials {
    display: flex;
    gap: 1rem;
}
.nw-footer-socials a {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--nw-b300);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}
.nw-footer-socials a:hover {
    border-color: var(--nw-acc);
    color: var(--nw-acc);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212,115,40,.2);
}
.nw-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.nw-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nw-footer-links a {
    color: var(--nw-b300);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
}
.nw-footer-links a::before {
    content: '\2190';
    font-size: 0.9em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--nw-acc);
    display: inline-block;
    margin-left: 0;
    width: 0;
    overflow: hidden;
}
.nw-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 1.2em;
    margin-right: 0.3rem;
}
.nw-footer-links a:hover {
    opacity: 1;
    color: var(--nw-acc);
}
.nw-col-contact .nw-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0.7;
}
.nw-col-contact .nw-contact-item ion-icon {
    font-size: 1.4rem;
    color: var(--nw-acc);
}
.nw-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem var(--nw-c-pad);
    border-top: 1px solid rgba(245, 245, 245, 0.05);
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.4;
    text-align: center;
    line-height: 1.6;
}
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor, 
    body.has-custom-cursor * { 
        cursor: none !important; 
    }
}
.nw-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--nw-acc);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width .25s ease, height .25s ease, background-color .25s ease, opacity .25s ease;
}
.nw-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid var(--nw-acc);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0.6;
    transition:
        width .35s cubic-bezier(.25,1,.5,1),
        height .35s cubic-bezier(.25,1,.5,1),
        opacity .25s ease,
        border-color .25s ease,
        background-color .3s ease;
}
body.nw-cursor-hover .nw-cursor-dot  { width:6px; height:6px; background:#fff; opacity:.9; }
body.nw-cursor-hover .nw-cursor-ring { width:52px; height:52px; opacity:.85; border-color:var(--nw-acc); background-color:rgba(212,115,40,.08); }
body.nw-cursor-clicking .nw-cursor-dot  { width:5px; height:5px; }
body.nw-cursor-clicking .nw-cursor-ring { width:28px; height:28px; opacity:1; background-color:rgba(212,115,40,.15); }
body.nw-cursor-on-dark .nw-cursor-dot  { background-color:#f5f5f5; }
body.nw-cursor-on-dark .nw-cursor-ring { border-color:#f5f5f5; }
body.nw-cursor-text .nw-cursor-dot { width:3px; height:22px; border-radius:2px; background-color:var(--nw-acc); }
body.nw-cursor-text .nw-cursor-ring { opacity:0; }
@media (hover: none) {
    .nw-cursor-dot, .nw-cursor-ring { display:none !important; }
    body, body * { cursor: auto !important; }
}
@media (max-width: 1024px) {
    .nw-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
    .btn, .form-submit-btn {
        padding: 0.5rem 0.5rem 0.5rem 1.8rem !important;
        gap: 1rem !important;
    }
    .btn .btn-label span, .form-submit-btn .btn-label span {
        font-size: 0.95rem !important;
    }
    .btn .btn-icon, .form-submit-btn .btn-icon {
        width: 2.6rem !important;
        height: 2.6rem !important;
    }
    .btn .btn-icon ion-icon, .form-submit-btn .btn-icon ion-icon {
        font-size: 1.15rem !important;
    }
}
@media (max-width: 640px) {
    .nw-footer-grid {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem 1.5rem;
    }
    .nw-footer-bottom {
        flex-direction: column;
    }
    .btn, .form-submit-btn {
        padding: 0.4rem 0.4rem 0.4rem 1.2rem !important;
        gap: 0.8rem !important;
    }
    .btn .btn-label span, .form-submit-btn .btn-label span {
        font-size: 0.85rem !important;
    }
    .btn .btn-icon, .form-submit-btn .btn-icon {
        width: 2.1rem !important;
        height: 2.1rem !important;
    }
    .btn .btn-icon ion-icon, .form-submit-btn .btn-icon ion-icon {
        font-size: 1rem !important;
    }
}
.menu-btn {
    position: fixed;
    bottom: clamp(1.5rem, 5vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20000;
    width: max-content;
    pointer-events: auto;
    transition: transform 0.4s ease;
}
.menu-btn.active .btn {
    background-color: #ffffff;
    border-color: #D47328;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.menu-btn.active .btn .btn-label span {
    color: var(--base-100, #181717);
}
.btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem) clamp(1rem, 3vw, 2rem);
    border-radius: 4rem;
    background-color: var(--nw-b300, #f5f5f5);
    color: var(--nw-b100, #181717);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    width: max-content;
    text-decoration: none;
    will-change: transform;
}
.btn:hover {
    background-color: #ffffff !important;
    border-color: #D47328 !important;
    color: var(--nw-b100, #181717) !important;
}
.btn-icon {
    width: clamp(2.2rem, 5vw, 2.8rem);
    height: clamp(2.2rem, 5vw, 2.8rem);
    background-color: var(--nw-acc, #D47328);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    border-radius: 100%;
    will-change: transform;
}
.btn-icon ion-icon {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    --ionicon-stroke-width: 32px;
}
.btn-label {
    overflow: hidden;
    height: clamp(0.9rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
}
.btn-label span {
    font-family: 'Host Grotesk', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-color: #363636;
    z-index: 10000;
    display: flex;
    padding: 1rem;
    gap: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    pointer-events: none;
}
.menu-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3.5rem;
    padding: 2.5rem 0 2.5rem 1.5rem;
    color: #ffffff;
}
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}
.menu-link-item {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-link-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.menu-link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    padding: 0.35em 0;
    transform: translateY(110%);
    transition: color 0.3s ease, letter-spacing 0.4s ease;
    position: relative;
}
.menu-link-item a:hover {
    color: var(--nw-acc, #D47328);
    letter-spacing: -0.02em;
}
.menu-link-item a sup {
    position: absolute;
    left: 0;
    font-size: clamp(1rem, 2.2vw, 2rem);
    opacity: 0.6;
    letter-spacing: 0.1rem;
}
.menu-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.menu-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.social-links { display: flex; gap: 0.6rem; }
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}
.social-icon:hover {
    border-color: var(--nw-acc, #D47328);
    color: var(--nw-acc, #D47328);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 115, 40, 0.2);
}
.menu-right {
    flex: 0.75;
    border-radius: 3rem;
    overflow: hidden;
    background: #222;
}
@media (max-width: 900px) {
    .menu-right { flex: 0.5; border-radius: 2rem; }
    .menu-link-item a { padding: 0.6em 0; }
    .menu-left { gap: 3rem; }
}
@media (max-width: 640px) {
    .menu-right { display: none; }
    .menu-left { 
        flex: 1; 
        padding: 3rem 1.5rem 8rem;
        justify-content: space-between;
        height: 100%;
    }
    .menu-brand {
        margin-bottom: 0;
    }
    .menu-links {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menu-link-item a { 
        font-size: clamp(1.4rem, 8vw, 2.5rem); 
        padding: 0.8em 0;
    } 
}
