html {
    scroll-behavior: smooth;
}

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

:root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-bg: #ffffff;
    --color-border: #e5e5e5;
    --color-cream: #faf9f7;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 99999999;
    top: 30px;
    left: 2.5%;
    width: 95%;
    justify-content: space-between;
    padding: 0;
    /* max-width: 100px; */
    background-color: transparent;
    box-shadow: none;
    margin: 0 auto;
}

.logo {

    border-radius: 14px;
    padding: 10px 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    text-decoration: none;
}

.logo img {
    height: 84px;
    width: auto;
    margin: 15px 0px 0px 0px;
    display: block;
}

.mobile-only {
    display: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    background: #ffffff;
    border-radius: 14px;
    padding: 0 24px;
    height: 55px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.132);
    margin-left: auto;
    margin-right: 12px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: rgb(230, 184, 0);
}

.nav-icon {
    display: none;
}

.mobile-menu-email-row {
    display: none;
}

.nav-cta {
    background-color: #ffe100;
    border-radius: 14px;
    padding: 0 20px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    color: #111;
}

.nav-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-cta:hover svg {
    transform: translateX(2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.hero {
    text-align: center;
    padding: 50px 60px 0px;
    max-width: 1900px;
    min-height: 100vh;
    margin: 0 auto;

    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(27, 27, 27, 0.109) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 32, 32, 0.067) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 85%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 75%);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.669);
    max-width: 650px;
    margin: 0 auto 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border: 1.5px solid rgb(255, 199, 209);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.563);
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-decoration: none;

    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 40px;
}

.hero-cta:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
}

.hero-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.hero-cta:hover svg {
    transform: translateX(2px);
}

.gradient-backdrop {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    rotate: -15deg;
    height: 280px;
    background: radial-gradient(ellipse at 50% 50%,
            rgba(255, 222, 106, 0.8) 0%,
            rgba(255, 147, 99, 0.7) 30%,
            rgba(255, 65, 160, 0.541) 60%,
            rgba(152, 104, 255, 0.383) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;

    opacity: 0;
    animation:
        revealGradientFade 2s ease-out 1.8s forwards,
        gradientRotate 40s infinite alternate ease-in-out 3.8s;
}

@keyframes revealGradientFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes gradientRotate {
    0% {
        rotate: -15deg;
    }

    100% {
        rotate: -5deg;
    }
}

.features-section {
    padding: 100px 60px 80px;
    max-width: 1900px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.features-title {
    font-family: var(--font-sans);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    max-width: 50vw;
}

.features-title .italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.features-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 320px;
    padding-top: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature-item {
    padding-right: 16px;
}

.feature-item h3 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-item p {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.journey-section {

    padding: 80px 24px 80px;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(27, 27, 27, 0.071) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 32, 32, 0.052) 1px, transparent 1px);
    background-size: 50px 50px;
    /* background-position:  top; */
    pointer-events: none;
    z-index: 1;
    /* mask-image: radial-gradient(circle at center, black 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 75%); */
}

.journey-header {
    text-align: center;
    max-width: 1800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.journey-eyebrow {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.journey-headline {
    font-family: var(--font-sans);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
    text-transform: uppercase;
}

.journey-headline .highlight {
    font-style: italic;
    font-weight: 400;
    font-family: Playfair Display, Georgia, serif;
    text-transform: none;
}

.journey-subline {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.timeline {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 50px;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-border) 5%,
            var(--color-border) 95%,
            transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    flex-direction: row;
}

.timeline-content {
    width: 45%;
    padding: 0 40px;
}

.timeline-item>.timeline-content:first-child {
    text-align: right;
}

.timeline-item>.timeline-content:last-child {
    text-align: left;
}

.service-bottom {
    margin-top: 80px;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    position: relative;
    z-index: 5;

}

.service-bottom div {
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.service-bottom div:last-child {
    border: none;
}

.service-bottom h3 {
    color: #ffe100;
    font-size: 42px;
    margin: 0;
    font-weight: 800;
    font-family: var(--font-sans);
}

.service-bottom span {
    color: #232323;
    font-family: var(--font-sans);
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.letter-span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    color: #ffdd00;

}

.reveal.revealed .letter-span,
.revealed.animate-heading .letter-span,
.animate-heading.revealed .letter-span {
    animation: revealLetter 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;

    animation-delay: var(--delay, 0ms);
}

@keyframes revealLetter {
    0% {
        opacity: 0;
        transform: translateY(20px);
        color: #ffdd00;

    }

    40% {
        opacity: 1;
        transform: translateY(0);
        color: #ffdd00;

    }

    100% {
        opacity: 1;
        transform: translateY(0);
        color: inherit;

    }
}

.partners-grid .partner-card:nth-child(2) {
    transition-delay: 0.1s;
}

.partners-grid .partner-card:nth-child(3) {
    transition-delay: 0.2s;
}

.partners-grid .partner-card:nth-child(4) {
    transition-delay: 0.3s;
}

.partners-grid .partner-see-more {
    transition-delay: 0.4s;
}

.timeline-item>.timeline-image-wrap:first-child.reveal {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item>.timeline-image-wrap:first-child.reveal.revealed {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.timeline-item>.timeline-image-wrap:last-child.reveal {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item>.timeline-image-wrap:last-child.reveal.revealed {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.hero-tagline,
.hero-title,
.hero-subtitle,
.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-tagline {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.3s;
}

.hero-subtitle {
    animation-delay: 0.5s;
}

.hero-cta {
    animation-delay: 0.7s;
}

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

.timeline-year {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: none;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.timeline-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.timeline-cta {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
}

.timeline-cta:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
    transform: scale(1.1);
}

.timeline-cta svg {
    width: 14px;
    height: 14px;
}

.timeline-image-wrap {
    width: 45%;
    padding: 0 40px;
    position: relative;
}

.timeline-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.timeline-item:hover .timeline-image {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-text);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 6px var(--color-cream);
}

.deco-circle {
    position: absolute;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.deco-1 {
    width: 120px;
    height: 120px;
    top: 180px;
    right: 5%;
}

.deco-2 {
    width: 80px;
    height: 80px;
    bottom: 200px;

    left: 3%;
}

.deco-3 {
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 8%;
}

.journey-footer {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.journey-footer-text {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.bottom-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .features-header {
        flex-direction: column;
        gap: 24px;
    }

    .features-title {
        font-size: 44px;
    }

    .journey-headline {
        font-size: 30px;
    }
}

.partner-profiles-section {
    padding: 0px 0px;
    max-width: 1900px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    background: var(--color-bg);
}

.partners-grid>div {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
}

.partner-text-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.partner-text-card h2 {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.partner-text-card p {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-text-muted);
    font-style: italic;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    position: relative;
    cursor: pointer;
    color: #fff;
    padding: 30px;
}

.partner-card.william {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 760px;
}

.partner-card.kevin {
    grid-column: 1;
    grid-row: 2;
}

.partner-card.jas {
    grid-column: 3;
    grid-row: 1;
}

.partner-see-more {
    grid-column: 3;
    grid-row: 2;
    background: linear-gradient(135deg, #fffef0 0%, #ffffff 50%, #ffade2 100%);
    padding: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-decoration: none;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.partner-see-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.15);
}

.partner-see-more span {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 600;
}

.partner-see-more svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.partner-see-more:hover svg {
    transform: translateX(8px);
}

.partner-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    overflow: hidden;
}

.partner-img-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #df9aff 0%, #f8d3ff 50%, #ff13ac 100%);
    z-index: 3;
    transform: scaleX(2);
    transform-origin: right center;
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-card.revealed .partner-img-bg::after {
    transform: scaleX(0);
}

.partner-card:hover .partner-img-bg {
    transform: scale(1.05);
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.partner-card.kevin::after {
    background: rgba(162, 110, 31, 0.45);
    mix-blend-mode: multiply;
}

.partner-card.william::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.partner-card.jas::after {
    background: rgba(40, 20, 25, 0.5);
    mix-blend-mode: multiply;
}

.partner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.partner-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: auto;
    position: absolute;
    top: -280px;
    left: 0;
}

.partner-card.william .partner-eyebrow {
    top: -660px;
}

.partner-name {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.partner-card.william .partner-name {
    font-size: 42px;
}

.partner-role {
    font-family: var(--font-serif);
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 24px;
    font-style: italic;
}

.partner-card.william .partner-role {
    font-size: 28px;
}

.partner-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partner-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.partner-action svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    opacity: 0.8;
    transform: translate(-10px, 10px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-action svg {
    opacity: 1;
    transform: translate(0, 0);
}

.furnilux-section {
    padding: 120px 48px;
    max-width: 1900px;
    margin: 0 auto;
}

.furnilux-main {
    margin-bottom: 60px;
    position: relative;
}

.furnilux-small-img {
    float: left;
    width: auto;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 32px;
    margin-bottom: 16px;
}

.furnilux-title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.furnilux-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-left: 172px;
}

.furnilux-col p {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.furnilux-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-left: 172px;
    margin-top: 60px;
}

.furnilux-card {
    background: var(--color-cream);
    padding: 30px 24px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.furnilux-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.furnilux-card h3 {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.furnilux-card p {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.furnilux-card.mission-card {
    grid-column: span 1;
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.furnilux-card.mission-card h4 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.furnilux-card.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.explore-hyer-section {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    min-height: 600px;
    width: 100%;
    background: #fff;
    margin-top: 60px;
}

.hyer-col {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 60px;
}

.hyer-col.navy {
    background-color: #db5715;
    color: #fff;
}

.hyer-col.image-col {
    padding: 0;
    position: relative;
}

.hyer-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hyer-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hyer-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hyer-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.hyer-col.terracotta {
    background-color: #c07a5d;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hyer-title {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hyer-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.flight-path-svg {
    width: 100%;
    height: 100%;
    max-height: 600px;
}

.faq-section {
    padding: 120px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-eyebrow {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 12px;
}

.faq-title {
    font-family: var(--font-sans);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

.faq-item summary {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-top: 16px;
    padding-right: 40px;
}

.footer-section {
    padding: 100px 40px 60px;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 24px;
}

.footer-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-social-links {
    display: flex;
    gap: 20px;
}

.footer-social-links a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-links a:hover {
    color: var(--color-text);
}

@media (max-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: span 2;
    }

    .footer-grid .footer-col:last-child {
        grid-column: span 2;
    }

    .faq-section {
        padding: 60px 24px;
    }

    .faq-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 92%;
        left: 4%;
        top: 10px;
        border: none;
        padding: 0px 0px;
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
        z-index: 99999999;
    }

    .logo {

        border-radius: 14px;
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        box-sizing: border-box;
    }

    .logo img {
        height: 44px;
        width: auto;
        margin: 0;
        display: block;
    }

    .menu-toggle {
        display: flex;
        background-color: #fce0ff;
        border-radius: 14px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .menu-toggle:hover {
        background-color: #e5e5e0;
    }

    .grid-icon {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
        width: 15px;
        height: 15px;
    }

    .grid-icon span {
        width: 6px;
        height: 6px;
        background-color: #111;
        border-radius: 1.5px;
        display: block;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .menu-toggle.active .grid-icon span:nth-child(1) {
        transform: translate(2px, 2px) rotate(45deg);
    }

    .menu-toggle.active .grid-icon span:nth-child(2) {
        transform: translate(-2px, 2px) rotate(-45deg);
    }

    .menu-toggle.active .grid-icon span:nth-child(3) {
        transform: translate(2px, -2px) rotate(-45deg);
    }

    .menu-toggle.active .grid-icon span:nth-child(4) {
        transform: translate(-2px, -2px) rotate(45deg);
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 2%;
        width: 96%;
        background-color: #fffef4;
        border-radius: 20px;
        padding: 24px;
        gap: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.183);
        box-sizing: border-box;
        z-index: 999999;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        height: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-links li a {
        background-color: #feecff;
        border-radius: 12px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #111;
        font-family: var(--font-sans);
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        text-decoration: none;
        transition: transform 0.2s ease;
        width: fit-content;
        box-sizing: border-box;
    }

    .nav-links li.highlight-link a {
        background-color: #ffe100;
    }

    .nav-icon {
        display: block;
        width: 16px;
        height: 16px;
        color: #111;
    }

    .mobile-menu-email-row {
        display: block !important;
        width: 100% !important;
        margin-top: 15px;
    }

    .email-copy-card {
        background-color: #f5f5f0;
        border-radius: 12px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #111;
        font-family: var(--font-sans);
        font-size: 13px;
        cursor: pointer;
        font-weight: 600;
        box-sizing: border-box;
        width: 100%;
    }

    .email-copy-card svg {
        width: 16px;
        height: 16px;
        color: #111;
    }

    .nav-cta {
        display: inline-flex !important;
        background-color: #ffe100;
        border-radius: 14px;
        padding: 0 18px;
        color: #111 !important;
        font-weight: 700;
        font-size: 11px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: none;
        margin-left: auto;
        margin-right: 8px;
        letter-spacing: 0.05em;
        box-sizing: border-box;
    }

    .hero {
        padding: 120px 20px 40px;
    }

    .gradient-backdrop {
        position: absolute;
        top: 43%;
        rotate: -20deg;
        height: 100px;
        width: 100%;
    }

    .hero-title {
        font-size: 35px;
        line-height: 1.2;
    }

    .hero-title .create {
        font-size: 62px !important;
        line-height: 1.1 !important;
    }

    .hero-title .first-line {
        display: block;
        margin-bottom: -5px;
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 0 10px;
        word-break: break-word;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .phone-mockup {
        width: 220px;
    }

    .features-section {
        padding: 60px 24px;
    }

    .features-title {
        font-size: 32px;
        max-width: 95%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 60px;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 20px;
    }

    .timeline-image-wrap,
    .timeline-item:nth-child(odd) .timeline-image-wrap,
    .timeline-item:nth-child(even) .timeline-image-wrap {
        width: 100%;
        padding: 0;
    }

    .timeline-dot {
        left: 20px;
        top: 20px;
        transform: translateX(-50%);
    }

    .timeline-image {
        height: 120px;
        margin-bottom: 10px;
    }

    .journey-headline {
        font-size: 24px;
    }

    .journey-footer-text {
        font-size: 42px;
    }

    .deco-circle {
        display: none;
    }

    .bottom-visual {
        height: 300px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .partner-card {
        padding: 20px;
    }

    .partner-card.william,
    .partner-card.kevin,
    .partner-card.jas {
        grid-column: 1;
        grid-row: auto;
        min-height: 450px;
    }

    .partner-see-more {
        grid-column: 1;
        grid-row: auto;
        min-height: fit-content;
    }

    .partner-text-card {
        grid-column: 1;
        grid-row: auto;
        padding: 20px;
        min-height: 350px;
    }

    .partner-eyebrow {
        top: -180px;
    }

    .partner-card.william .partner-eyebrow {
        top: -280px;
    }

    .furnilux-section {
        padding: 60px 24px;
    }

    .furnilux-small-img {
        float: none;
        margin: 0 0 24px 0;
        width: auto;
        height: 60px;
    }

    .furnilux-title {
        font-size: 24px;
    }

    .furnilux-details {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-left: 0;
        margin-top: 32px;
    }

    .furnilux-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-left: 0;
        margin-top: 40px;
    }

    .explore-hyer-section {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .hyer-col {
        padding: 60px 32px;
        min-height: 400px;
    }

    .hyer-col.image-col {
        min-height: 300px;
    }

    .hyer-col.terracotta {
        min-height: 350px;
    }

    .service-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        padding: 30px 20px;
        margin-top: 50px;
    }

    .service-bottom div {
        border-right: none;
        border-bottom: none;
        padding-bottom: 0;
    }

    .service-bottom h3 {
        font-size: 32px;
    }

    .service-bottom span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .hero-subtitle {
        font-family: var(--font-sans);
        font-size: 10px;
    }

    .journey-headline {
        font-size: 30px;
    }

    .timeline-title {
        font-size: 18px;
    }
}

.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 0px 0;

    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.marquee-section .services-header1 {
    margin-bottom: 10px;
}

.marquee-section .services-tag {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 99px;
    display: inline-block;
}

.marquee-section .logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-track-left {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogoLeft 60s linear infinite;
}

.logo-track-right {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogoRight 60s linear infinite;
}

.logo-track-left img,
.logo-track-right img {
    height: 60px;
    width: auto;
    margin: 0 25px;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-track-left img:hover,
.logo-track-right img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.marquee-shape {
    display: none;
    flex-shrink: 0;
    margin: 0 25px;
}

.marquee-shape.circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.marquee-shape.pill {
    width: 70px;
    height: 32px;
    border-radius: 99px;
}

.marquee-shape.purple {
    background-color: #a855f7;
}

.marquee-shape.orange {
    background-color: #f97316;
}

.marquee-shape.red {
    background-color: #ef4444;
}

.marquee-shape.green {
    background-color: #22c55e;
}

@keyframes scrollLogoLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLogoRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.features-section {
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, rgba(255, 19, 172, 0.06) 0%, rgba(255, 122, 0, 0.02) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-section {
    --accent-color: #ff13ac;
    --color-cream: #ffffff;
    --color-ink-900: #111111;
    --color-ink-700: #444444;
    --color-ink-500: #888888;
    --color-charcoal: rgba(0, 0, 0, 0.12);
    --color-terracotta: #ff7a00;

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 6% 12rem;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 19, 172, 0.181) 0%, rgba(255, 255, 255, 1) 60%);
    color: var(--color-ink-900);
    transition: background 0.5s ease, color 0.5s ease;
}

.contact-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .contact-section {
        display: flex;
        align-items: center;
    }

    .contact-grid-container {
        grid-template-columns: 1fr 1.1fr;
        gap: 8rem;
        align-items: center;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 580px;
}

.contact-promo-text {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: inherit;
    margin-bottom: 3rem;
}

.contact-email-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 2rem;
    border-radius: 24px;
    border: 1px solid currentColor;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-email-pill:hover {
    background-color: var(--color-ink-900);
    color: var(--color-cream);
    border-color: var(--color-ink-900);
    transform: translateY(-2px);
}

.contact-form-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 640px) {
    .contact-form-row:not(.full-width) {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.contact-input-wrapper label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-ink-700);
}

.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-input-wrapper textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--color-ink-900);
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
    border-bottom-color: var(--color-terracotta);
}

.contact-input-wrapper select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='gray' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.contact-input-wrapper textarea {
    resize: none;
}

.contact-form-footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: flex-start;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .contact-form-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.contact-consent-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
    max-width: 320px;
}

.contact-checkbox-native {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-checkbox-custom {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--color-ink-900);
    background-color: transparent;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    position: relative;
}

.contact-checkbox-native:checked~.contact-checkbox-custom {
    background-color: var(--color-ink-900);
}

.contact-checkbox-native:checked~.contact-checkbox-custom::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid var(--color-cream);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-consent-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--color-ink-700);
}

.contact-tc-link {
    text-decoration: underline;
    color: inherit;
    font-weight: 700;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--accent-color);
    transition: transform 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateX(4px);
}

.contact-submit-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .contact-submit-circle {
    transform: scale(1.15);
}

.contact-submit-text {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    line-height: 1;
}

.contact-marquee-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    padding-bottom: 1.5rem;
}

.contact-marquee-bottom span {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.432);
    line-height: 0.9;
    text-transform: lowercase;
    animation: contactMarquee 36s linear infinite;
}

@keyframes contactMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.contact-trail-image {
    position: absolute;
    width: 120px;
    height: 80px;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.5s ease-out,
        filter 0.5s ease-out;
}

.contact-trail-image.behind {
    opacity: 0;
    filter: blur(5px);
}

.contact-cursor-lines-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-cursor-line-x {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-ink-900);
    opacity: 0.1;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-cursor-line-y {
    position: absolute;
    top: 0;
    width: 1.5px;
    height: 100%;
    background-color: var(--color-ink-900);
    opacity: 0.1;
    transform: translateX(-50%);
    pointer-events: none;
}

.contact-cursor-plus {
    position: absolute;
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 200;
    color: var(--color-ink-900);
    opacity: 0.2;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
}

::selection {
    background: rgba(240, 130, 200, 0.3);
    color: var(--color-text);
}

.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #ffe100;
    color: #111;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    z-index: 99999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(255, 225, 0, 0.3);
}

.floating-cta svg {
    width: 16px;
    height: 16px;
}