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

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f0f0;
    color: #1A1816;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    padding: 36px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease;
    background: #f0f0f0;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 22px 56px;
    border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

nav.menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 3000;
}

nav.menu-open .nav-logo {
    color: #F5EFE8;
}

nav.menu-open .nav-quote {
    color: #F5EFE8;
}

nav.menu-open.dark {
    background: transparent;
    border-bottom: none;
}

.nav-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #1A1816;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1A1816;
    text-decoration: underline;
    text-underline-offset: 5px;
    letter-spacing: 0.02em;
    cursor: none;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.nav-burger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1A1816;
    border: none;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding: 0 13px;
    transition: background 0.3s ease;
}

.nav-burger:hover {
    background: #2e2620;
}

.nav-burger span:nth-child(1) {
    width: 22px;
    height: 1.5px;
    background: #F5EFE8;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: right center;
}

.nav-burger span:nth-child(2) {
    width: 16px;
    height: 1.5px;
    background: #F5EFE8;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: right center;
}

.nav-burger span:nth-child(3) {
    width: 10px;
    height: 1.5px;
    background: #F5EFE8;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: right center;
}

.nav-burger.open span:nth-child(1) {
    width: 22px;
    transform: translateY(7.5px) rotate(45deg);
    transform-origin: center;
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.nav-burger.open span:nth-child(3) {
    width: 22px;
    transform: translateY(-7.5px) rotate(-45deg);
    transform-origin: center;
}

/* ── NAV DARK STATE ── */
nav.dark {
    background: #282526;
    border-bottom: 0.5px solid rgba(245, 239, 232, 0.08);
}

nav.dark .nav-logo {
    color: #F5EFE8;
}

nav.dark .nav-quote {
    color: #F5EFE8;
}

nav.dark .nav-burger {
    background: #F5EFE8;
}

nav.dark .nav-burger span {
    background: #1A1816;
}

/* ── BURGER MENU OVERLAY ── */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 1500;
    display: flex;
    pointer-events: none;
}

.menu-left {
    width: 65%;
    height: 100dvh;
    background: #af1300;
    padding: 140px 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: -70%;
    transition: left 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}

.menu-overlay.open .menu-left {
    left: 0;
    pointer-events: all;
}

.menu-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #F5EFE8;
    letter-spacing: -0.03em;
    margin: 0;
}

.menu-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
}

.menu-info p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    color: rgba(245, 239, 232, 0.85);
    margin: 0;
}

.menu-info a {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    color: rgba(245, 239, 232, 0.85);
    text-decoration: none;
}

.menu-right {
    width: 35%;
    height: 100dvh;
    background: #1A1816;
    padding: 140px 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: -40%;
    transition: right 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}

.menu-overlay.open .menu-right {
    right: 0;
    pointer-events: all;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.menu-link {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3.5vw, 56px);
    font-weight: 800;
    color: #F5EFE8;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1.1;
    display: inline-block;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E8563A;
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.menu-link:hover {
    color: #F5EFE8;
}

.menu-link.tapped::after {
    width: 100%;
}

.menu-overlay.open .menu-link:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.menu-overlay.open .menu-link:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.menu-overlay.open .menu-link:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* ── MENU SOCIALS ── */
.menu-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.open .menu-socials {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.menu-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 239, 232, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5EFE8;
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.menu-social-link:hover {
    border-color: #E8563A;
    background: #E8563A;
    color: #F5EFE8;
}

@media (min-width: 992px) {
    .menu-socials {
        display: none;
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 56px 80px;
    background: #f0f0f0;
}

.hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 16px;
}

.hero-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #2d2a2b;
    margin-bottom: 24px;
}

.hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6560;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1A1816;
    background: none;
    border: none;
    padding: 9px 17px;
    text-decoration: none;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: none;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-100% + 33px);
    width: 100%;
    height: 33px;
    background: #E8563A;
    border-radius: 20px;
    transform: translateY(-50%);
    z-index: -1;
    transition: left 1.3s ease;
}

.hero-cta:hover::before {
    left: calc(100% - 33px);
}

.hero-lottie {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-lottie lottie-player {
    width: 100%;
    max-width: 560px;
}

/* ── SERVICES ── */
.services {
    background: #282526;
    padding: 100px 56px;
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.services-left {
    position: sticky;
    top: 120px;
}

.services-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 20px;
}

.services-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #F5EFE8;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.services-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(245, 239, 232, 0.5);
    margin-bottom: 32px;
    max-width: 360px;
}

.services-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #E8563A;
    margin-bottom: 32px;
}

.services-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F5EFE8;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-block;
    transition: color 0.3s ease;
}

.services-link:hover {
    color: #E8563A;
}

.services-link .arrow {
    display: inline-block;
    animation: arrow-loop 1.5s ease-in-out infinite;
}

@keyframes arrow-loop {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

.services-right {
    display: flex;
    flex-direction: column;
}

.service-item {
    padding: 32px 0;
    border-bottom: 0.5px solid rgba(245, 239, 232, 0.1);
    transition: all 0.3s ease;
}

.service-item:first-child {
    border-top: 0.5px solid rgba(245, 239, 232, 0.1);
}

.service-number {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #E8563A;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #F5EFE8;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-desc-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(245, 239, 232, 0.45);
    margin: 0;
}

/* ── CONTACT SECTION ── */
.contact-section {
    background: #f0f0f0;
    padding: 80px 56px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-left {
    padding-top: 8px;
}

.contact-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 12px;
}

.contact-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #1A1816;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 40px;
}

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

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

.contact-info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,24,22,0.4);
}

.contact-info-value {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1A1816;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value:hover {
    color: #E8563A;
}

/* ── FORM ── */
.contact-form-wrap {
    background: #fff;
    border: 2px solid #1A1816;
    padding: 40px;
    position: relative;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(26, 24, 22, 0.15);
    pointer-events: none;
}

.contact-form-wrap .form-section {
    opacity: 1;
    transform: none;
    animation: none;
}

.contact-form-wrap .form-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 10px;
}

.contact-form-wrap .form-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: #2d2a2b;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.contact-form-wrap .form-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b6560;
    margin-bottom: 28px;
}

.contact-form-wrap .form-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-wrap .field-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-form-wrap .field-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2d2a2b;
    margin-bottom: 6px;
}

.contact-form-wrap .field-label .required { color: #E8563A; margin-left: 2px; }
.contact-form-wrap .field-label .optional { color: #9ca3af; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; margin-left: 4px; }

.contact-form-wrap .field-input,
.contact-form-wrap .field-textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 0;
    background: #fafafa;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1A1816;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-wrap .field-input::placeholder,
.contact-form-wrap .field-textarea::placeholder { color: #c4c4c4; }

.contact-form-wrap .field-input:focus,
.contact-form-wrap .field-textarea:focus {
    border-color: #E8563A;
    box-shadow: 0 0 0 3px rgba(232, 86, 58, 0.08);
    background: #fff;
}

.contact-form-wrap .field-input.valid,
.contact-form-wrap .field-textarea.valid { border-color: #22c55e; }

.contact-form-wrap .field-input.error,
.contact-form-wrap .field-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.06);
}

.contact-form-wrap .field-textarea {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form-wrap .field-check {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.contact-form-wrap .field-wrap.has-check .field-check { opacity: 1; }

.contact-form-wrap .field-error {
    font-size: 11px;
    color: #ef4444;
    margin-top: 4px;
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.contact-form-wrap .field-error.show { height: 18px; opacity: 1; }

.contact-form-wrap .form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    background: #2d2a2b;
    color: #F5EFE8;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 4px;
}

.contact-form-wrap .form-submit:hover { background: #E8563A; }
.contact-form-wrap .form-submit:active { transform: scale(0.98); }
.contact-form-wrap .form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.contact-form-wrap .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(245,239,232,0.3);
    border-top-color: #F5EFE8;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.contact-form-wrap .form-submit.loading .spinner { display: block; }
.contact-form-wrap .form-submit.loading .btn-text { display: none; }

.contact-form-wrap .form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.contact-form-wrap .form-success.show { display: block; }
.contact-form-wrap .success-icon { font-size: 40px; margin-bottom: 16px; }

.contact-form-wrap .success-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1A1816;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.contact-form-wrap .success-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6b6560;
    line-height: 1.7;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
.footer {
    background: #282526;
    padding: 80px 56px 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 0.5px solid rgba(245,239,232,0.1);
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #F5EFE8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245,239,232,0.4);
    max-width: 260px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,239,232,0.3);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 16px;
    font-weight: 400;
    color: rgba(245,239,232,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link i {
    font-size: 13px;
    color: #E8563A;
    width: 16px;
}

.footer-link:hover {
    color: #E8563A;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 14px;
    color: rgba(245,239,232,0.25);
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(245,239,232,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,239,232,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
    border-color: #E8563A;
    background: #E8563A;
    color: #fff;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot {
        display: block;
        width: 6px;
        height: 6px;
        background: #1A1816;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .cursor-ring {
        display: block;
        width: 32px;
        height: 32px;
        border: 2px solid #1A1816;
        background: rgba(26, 24, 22, 0.08);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
        width: 48px;
        height: 48px;
        border-color: #E8563A;
        background: rgba(232, 86, 58, 0.08);
    }

    body:has(a:hover) .cursor-dot,
    body:has(button:hover) .cursor-dot {
        background: #E8563A;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* ── GLOBAL CONTAINER ── */
.hero .container-fluid,
.services-inner,
.contact-inner,
.footer-top,
.footer-bottom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    nav {
        padding: 16px 20px;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-quote {
        font-size: 13px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-burger {
        width: 38px;
        height: 38px;
        padding: 0 10px;
        gap: 5px;
    }

    .nav-burger span:nth-child(1) {
        width: 18px;
    }

    .nav-burger span:nth-child(2) {
        width: 13px;
    }

    .nav-burger span:nth-child(3) {
        width: 8px;
    }

    .nav-burger.open span:nth-child(1) {
        width: 18px;
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-burger.open span:nth-child(3) {
        width: 18px;
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .hero {
        padding: 80px 36px 60px;
        text-align: left;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-eyebrow {
        text-align: left;
        white-space: nowrap;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .hero-headline {
        font-size: clamp(28px, 7vw, 36px);
        text-align: left;
    }

    .hero-sub {
        text-align: left;
        margin: 0 0 32px;
    }

    .hero-cta {
        align-self: flex-start;
    }

    .hero-lottie {
        order: -1;
        margin-bottom: 16px;
        margin-top: -16px;
    }

    .hero-lottie lottie-player {
        max-width: 260px;
    }

    .menu-left {
        display: none;
    }

    .menu-right {
        width: 100%;
        height: 100dvh;
        right: -100%;
        padding: 120px 32px 100px;
        align-items: center;
        justify-content: center;
        position: fixed;
    }

    .menu-links {
        align-items: center;
        text-align: center;
        gap: 48px;
        flex: 0;
        justify-content: center;
    }

    .menu-socials {
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }

    .menu-overlay.open .menu-socials {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        transition-delay: 0.95s;
    }

    .services {
        padding: 60px 24px;
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-left {
        position: static;
    }

    .services-quote {
        text-align: left;
        margin: 0 auto 32px;
    }

    .service-item:hover .service-title {
        color: #F5EFE8;
    }

    .contact-section {
        padding: 48px 24px;
    }

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

    .contact-left {
        display: none;
    }

    .contact-form-wrap {
        padding: 24px;
    }

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

    .footer {
        padding: 56px 24px 28px;
    }

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

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

/* ── SERVICES HERO ── */
.services-hero {
    padding: 180px 56px 60px;
    background: #fff;
    text-align: center;
}

.services-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.services-hero-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #1A1816;
    margin-bottom: 24px;
}

.services-hero-sub-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1A1816;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.services-hero-link:hover {
    color: #E8563A;
}

@media (max-width: 991px) {
    .services-hero {
        padding: 140px 24px 48px;
        text-align: left;
    }

    .services-hero-inner {
        max-width: 100%;
    }

    .services-hero-headline {
        text-align: left;
        font-size: clamp(28px, 7vw, 36px);
    }

    .services-hero-sub-row {
        justify-content: flex-start;
    }
}

/* ── SERVICE BLOCK ── */
.service-block {
    padding: 80px 56px;
    background: #fff;
}

.service-block:nth-child(odd) {
    background: #fff;
}

.service-block-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-block.reversed .service-block-inner {
    direction: rtl;
}

.service-block.reversed .service-block-text,
.service-block.reversed .service-block-image {
    direction: ltr;
}

.service-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-block-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.service-block-number {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 16px;
}

.service-block-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1A1816;
    margin-bottom: 20px;
}

.service-block-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6560;
    margin-bottom: 28px;
}

.service-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-block-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1816;
    padding-left: 24px;
    position: relative;
}

.service-block-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E8563A;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    .service-block {
        padding: 56px 24px;
    }

    .service-block-inner,
    .service-block.reversed .service-block-inner {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
        text-align: left;
    }

    .service-block-image {
        order: -1;
    }

    .service-block-image img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* ── PROCESS SECTION ── */
.process-section {
    background: #f0f0f0;
    padding: 100px 56px;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    max-width: 560px;
    margin-bottom: 64px;
}

.process-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8563A;
    margin-bottom: 16px;
}

.process-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1A1816;
    margin-bottom: 16px;
}

.process-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6b6560;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(26,24,22,0.1);
}

.process-step:first-child {
    border-top: 1px solid rgba(26,24,22,0.1);
}

.process-number {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(26,24,22,0.15);
    letter-spacing: -0.02em;
}

.process-step-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: #1A1816;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.process-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b6560;
    max-width: 600px;
}

@media (max-width: 991px) {
    .process-section {
        padding: 60px 24px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .process-number {
        font-size: 24px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

html, body {
    overflow-x: hidden;
}

/* ── LOGO Q FIX ── */
.nav-logo,
.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.contact-illustration {
    margin-top: 48px;
    margin-left: 4px;
    max-width: 320px;
    width: 100%;
    display: block;
}

.contact-illustration img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
}

@media (max-width: 991px) {
    .contact-illustration {
        display: none;
    }
}

.services-page nav:not(.menu-open) {
    background: #fff;
}

.services-page nav.scrolled:not(.menu-open) {
    background: rgba(255, 255, 255, 0.95);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    margin: 0 auto;
    background: #1A1816;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(245, 239, 232, 0.7);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn.decline {
    background: transparent;
    border: 1.5px solid rgba(245, 239, 232, 0.2);
    color: rgba(245, 239, 232, 0.7);
}

.cookie-btn.accept {
    background: #E8563A;
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }
}

