/* Main Stylesheet - DesignX Studio Luxury Interior Architecture */
@import url('./variables.css');

/* CSS Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-sans);
    font-size: 16px;
    background-color: var(--bg-hero);
    color: var(--color-charcoal-muted);
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-hero);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Native smooth scroll — Lenis removed for perfect scroll sync */

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--color-charcoal-muted);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, transform 0.15s ease-out;
    mix-blend-mode: exclusion;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-cursor-text {
    opacity: 0;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.custom-cursor.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(34, 33, 31, 0.85);
    mix-blend-mode: normal;
}

.custom-cursor.hovering .custom-cursor-text {
    opacity: 1;
}

.custom-cursor.dark-bg {
    background-color: var(--color-ivory);
}

@media (pointer: coarse),
(max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }
}

/* ================================
   HEADER — Premium Dark Bar
   ================================ */

/* Top announcement strip */
.header-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: calc(var(--z-header) + 1);
    background-color: var(--color-bronze-dark);
    color: var(--color-offwhite);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 2rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Left: contact info */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Center: location */
.topbar-center {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.85;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Right: social icons */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.topbar-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
    opacity: 0.75;
}

.topbar-icon-pin {
    opacity: 0.6;
}

.topbar-divider {
    opacity: 0.3;
    font-size: 0.75rem;
}

/* Clickable contact links */
.topbar-contact-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.topbar-contact-link:hover {
    opacity: 1;
    color: #e8c88a;
}

.topbar-contact-link:hover .topbar-icon {
    opacity: 1;
}

/* Social icon links */
.topbar-social-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: inherit;
    text-decoration: none;
    padding: 0.3rem 0.45rem;
    border-radius: 2px;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.topbar-social-link:hover {
    opacity: 1;
    color: #e8c88a;
    background-color: rgba(255, 255, 255, 0.07);
}

.topbar-social-icon {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.topbar-social-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}



/* Main header bar — warm dark brown */
.site-header {
    position: fixed;
    top: 2.4rem;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: var(--z-header);
    background-color: var(--color-brown-soft);
    border-bottom: 1px solid rgba(179, 139, 90, 0.25);
    transition: padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    padding: 1rem 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Thin bronze accent line at bottom of header */
.header-accent-line {
    position: absolute;
    bottom: -2px;
    left: 4rem;
    right: 4rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-bronze), transparent);
    opacity: 0.6;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 56px;
    width: auto;
    max-width: min(260px, 45vw);
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.site-header.scrolled .brand-logo img {
    height: 48px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-taupe-light);
    position: relative;
    padding: 0.35rem 0;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-offwhite);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-bronze);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-bronze);
    color: var(--color-dark);
    border-radius: 40px;
    border: none;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--color-offwhite);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 139, 90, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: calc(var(--z-drawer) + 1);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-taupe-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Drawer Navigation */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    color: var(--color-ivory);
    z-index: var(--z-drawer);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-ivory);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-bronze);
    transform: translateX(10px);
}

/* Typography Editorial Utilities */
.font-serif {
    font-family: var(--font-serif);
}

.split-word {
    display: inline-block;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-origin: center center;
}

.heading-display {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.eyebrow-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-bronze-dark);
    display: block;
    margin-bottom: 1.25rem;
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.brand-partner-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%);
}

.brand-partner-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: brand-partner-scroll 26s linear infinite;
}

.brand-partner-track:hover {
    animation-play-state: paused;
}

@keyframes brand-partner-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ==============================================
   HERO SLIDER — Cinematic Full-Screen Slideshow
   ============================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-dark);
}

/* Individual slides are flex containers so content centers stably */
.hero-slide {
    display: flex;
    align-items: center;
    /* Reserve space for topbar (~1.75rem) + header (~8.75rem) = ~10.5rem */
    padding-top: 10.5rem;
    padding-bottom: 6rem;
}

/* SLIDES CONTAINER */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* INDIVIDUAL SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 0s linear 1.2s;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 0s linear 0s;
}

/* BG IMAGE with Ken Burns zoom */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 7s ease-out;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1.0);
}

/* DARK GRADIENT OVERLAY */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(28, 26, 23, 0.75) 0%,
            rgba(28, 26, 23, 0.4) 55%,
            rgba(28, 26, 23, 0.1) 100%);
    z-index: 1;
}

/* SLIDE CONTENT — stable flex-child, no magic-number offsets */
.hero-slide-content {
    position: relative;
    z-index: 2;
    /* Horizontal positioning */
    margin-left: 6%;
    max-width: 680px;
    width: calc(100% - 12%);
    /* Entrance animation: slide up 30px + fade in */
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
        opacity 0.9s ease 0.4s;
    /* Prevent flex from stretching */
    flex-shrink: 0;
    align-self: center;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-bronze);
    margin-bottom: 1.25rem;
}

.hero-slide-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-offwhite);
    margin-bottom: 1.25rem;
}

.hero-slide-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-taupe-light);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-slide-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    background-color: var(--color-bronze);
    color: var(--color-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.hero-btn-primary:hover {
    background-color: var(--color-offwhite);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(179, 139, 90, 0.4);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(241, 237, 231, 0.35);
    color: var(--color-offwhite);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.hero-btn-secondary:hover {
    border-color: var(--color-bronze);
    color: var(--color-bronze);
}

/* SLIDE COUNTER — bottom right */
.hero-counter {
    position: absolute;
    bottom: 3rem;
    right: 6%;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: var(--color-taupe-light);
    font-family: var(--font-serif);
}

.hero-counter-current {
    font-size: 2.5rem;
    color: var(--color-offwhite);
    line-height: 1;
}

.hero-counter-sep {
    font-size: 1rem;
    opacity: 0.4;
    margin: 0 0.25rem;
}

.hero-counter-total {
    font-size: 1rem;
    opacity: 0.5;
}

/* PROGRESS BAR — thin line at very bottom */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-bronze-dark), var(--color-bronze));
    transition: width 0.1s linear;
}

/* DOT NAVIGATION */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(241, 237, 231, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}

.hero-dot.active {
    background-color: var(--color-bronze);
    transform: scale(1.4);
}

/* ARROW CONTROLS */
.hero-arrows {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(241, 237, 231, 0.25);
    color: var(--color-offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-arrow:hover {
    background-color: var(--color-bronze);
    border-color: var(--color-bronze);
    color: var(--color-dark);
    transform: scale(1.1);
}

/* SCROLL HINT — centered at bottom */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(241, 237, 231, 0.5);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Dots — hidden (removed) */
.hero-dots {
    display: none;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, var(--color-bronze), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}


/* SECTION SPACING */
.section-space {
    padding: var(--space-xl) 4rem;
}

.section-space-large {
    padding: var(--space-2xl) 4rem;
}

/* Subtle architectural ornament shared across editorial sections. */
.section-space,
.section-space-large {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.section-space::before,
.section-space-large::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: -4.5rem;
    z-index: 0;
    width: 21rem;
    height: 21rem;
    border: 1px solid rgba(179, 139, 90, 0.48);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 0 46%, rgba(179, 139, 90, 0.12) 46.4% 46.9%, transparent 47.3%);
    box-shadow: 0 0 0 2.75rem rgba(179, 139, 90, 0.06);
    pointer-events: none;
}

.section-space::after,
.section-space-large::after {
    content: '';
    position: absolute;
    bottom: 4rem;
    left: -1.5rem;
    z-index: 0;
    width: 15rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 139, 90, 0.9), transparent);
    transform: rotate(-34deg);
    transform-origin: left center;
    pointer-events: none;
}

.section-space > *,
.section-space-large > * {
    position: relative;
    z-index: 1;
}

.section-space > .container-wide,
.section-space-large > .container-wide {
    isolation: isolate;
}

.section-space > .container-wide > *,
.section-space-large > .container-wide > * {
    position: relative;
    z-index: 1;
}

/* Alternate the graphic language and its placement as readers move through a page. */
section.section-space:nth-of-type(odd)::before,
section.section-space-large:nth-of-type(odd)::before {
    top: auto;
    right: auto;
    bottom: 2.5rem;
    left: -4.5rem;
    border-radius: 0;
    transform: rotate(45deg);
}

section.section-space:nth-of-type(odd)::after,
section.section-space-large:nth-of-type(odd)::after {
    top: 5rem;
    right: -2.5rem;
    bottom: auto;
    left: auto;
    transform: rotate(36deg);
}

section.section-space:nth-of-type(3n)::before,
section.section-space-large:nth-of-type(3n)::before {
    top: 50%;
    right: 4rem;
    bottom: auto;
    left: auto;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, transparent 0 1.6rem, rgba(179, 139, 90, 0.14) 1.65rem 1.7rem);
    box-shadow: none;
    transform: translateY(-50%);
}

section.section-space:nth-of-type(3n)::after,
section.section-space-large:nth-of-type(3n)::after {
    top: auto;
    right: auto;
    bottom: 3.5rem;
    left: 12%;
    width: 10rem;
    transform: rotate(0deg);
}

/* Alternating line-art motifs occupy separate zones from the larger ornaments. */
section.section-space:nth-of-type(even) > .container-wide::before,
section.section-space-large:nth-of-type(even) > .container-wide::before {
    content: '';
    position: absolute;
    right: 40%;
    bottom: 2%;
    z-index: 0;
    width: 18rem;
    height: 8rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 140'%3E%3Cpath d='M4 83C38 6 83 8 108 70s65 80 94 9 74-83 114-9' fill='none' stroke='%23b38b5a' stroke-opacity='.8' stroke-width='1.8'/%3E%3Cpath d='M20 99c34-52 64-45 84 4s56 61 83 7 64-59 105-1' fill='none' stroke='%23b38b5a' stroke-opacity='.35' stroke-width='1'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
    animation: snake-wave 13s ease-in-out infinite;
}

section.section-space:nth-of-type(odd) > .container-wide::before,
section.section-space-large:nth-of-type(odd) > .container-wide::before {
    content: '';
    position: absolute;
    top: 11%;
    left: 4%;
    z-index: 0;
    width: 12rem;
    height: 12rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 100c11-23 39-13 37 11-2 31-43 38-65 14-31-34-7-87 40-89 57-3 78 63 45 107-41 54-129 20-139-44C8 28 93-14 159 21' fill='none' stroke='%23b38b5a' stroke-opacity='.75' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
    animation: spiral-turn 16s ease-in-out infinite;
}

.section-space::before,
.section-space-large::before {
    animation: graphic-breathe 10s ease-in-out infinite;
}

.section-space::after,
.section-space-large::after {
    animation: graphic-fade 8s ease-in-out infinite;
}

@keyframes graphic-breathe {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

@keyframes graphic-fade {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.95; }
}

@keyframes snake-wave {
    0%, 100% { transform: translateX(0); opacity: 0.52; }
    50% { transform: translateX(-0.85rem); opacity: 0.95; }
}

@keyframes spiral-turn {
    0%, 100% { transform: rotate(-4deg) scale(0.96); opacity: 0.5; }
    50% { transform: rotate(5deg) scale(1); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
    .section-space::before,
    .section-space::after,
    .section-space-large::before,
    .section-space-large::after,
    section.section-space > .container-wide::before,
    section.section-space > .container-wide::after,
    section.section-space-large > .container-wide::before,
    section.section-space-large > .container-wide::after,
    .footer-artwork-ring,
    .footer-artwork-line {
        animation: none !important;
    }
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
}

/* Fine brass pinpoints add a quieter second layer of ornament. */
/* section.section-space > .container-wide::after,
section.section-space-large > .container-wide::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    z-index: 0;
    width: 4.5rem;
    height: 3.5rem;
    border-top: 1px solid rgba(179, 139, 90, 0.75);
    border-right: 1px solid rgba(179, 139, 90, 0.75);
    background:
        radial-gradient(circle at 0.35rem 0.35rem, var(--color-bronze) 0 2px, transparent 2.5px),
        radial-gradient(circle at 1.45rem 1.25rem, rgba(179, 139, 90, 0.9) 0 2px, transparent 2.5px),
        radial-gradient(circle at 2.65rem 0.55rem, rgba(179, 139, 90, 0.65) 0 1.5px, transparent 2px),
        radial-gradient(circle at 3.3rem 2.1rem, rgba(179, 139, 90, 0.8) 0 2px, transparent 2.5px);
    opacity: 1;
    pointer-events: none;
    animation: graphic-twinkle 7s ease-in-out infinite;
} */

section.section-space:nth-of-type(odd) > .container-wide::after,
section.section-space-large:nth-of-type(odd) > .container-wide::after {
    top: auto;
    right: auto;
    bottom: 2rem;
    left: 2rem;
}

section.section-space:nth-of-type(3n) > .container-wide::after,
section.section-space-large:nth-of-type(3n) > .container-wide::after {
    top: 1.5rem;
    right: auto;
    bottom: auto;
    left: 52%;
    width: 3.5rem;
    height: 3rem;
    border-right: 0;
    border-bottom: 1px solid rgba(179, 139, 90, 0.65);
    border-left: 1px solid rgba(179, 139, 90, 0.65);
    background:
        radial-gradient(circle at 0.45rem 0.45rem, var(--color-bronze) 0 2px, transparent 2.5px),
        radial-gradient(circle at 1.55rem 1.25rem, rgba(179, 139, 90, 0.8) 0 2px, transparent 2.5px),
        radial-gradient(circle at 2.55rem 0.65rem, rgba(179, 139, 90, 0.65) 0 1.5px, transparent 2px);
}

@keyframes graphic-twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* EDITORIAL ABOUT SECTION */
.about-editorial-section {
    background-color: var(--bg-about);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.about-content-box {
    padding-right: 2rem;
}

.about-headline {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    color: var(--color-charcoal-muted);
    margin-bottom: 2.5rem;
}

.about-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-stone);
    margin-bottom: 3rem;
    font-weight: 300;
}

.philosophy-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid var(--color-sand);
    padding-top: 2.5rem;
}

.philosophy-item h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-charcoal-muted);
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    font-size: 0.9rem;
    color: var(--color-stone);
    line-height: 1.6;
}

/* FEATURED PROJECTS SHOWCASE */
.projects-section {
    background-color: var(--bg-projects);
}

.section-header-editorial {
    margin-bottom: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-charcoal-muted);
}

/* Editorial Asymmetrical Project Showcase Layouts */
.project-presentation {
    margin-bottom: var(--space-2xl);
    position: relative;
}

.project-presentation:last-child {
    margin-bottom: 0;
}

/* Composition 01: Left Image + Right Text */
.project-comp-left {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 5rem;
    align-items: center;
}

/* Composition 02: Right Image + Left Text */
.project-comp-right {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
}

/* Composition 03: Full-width Cinematic Image */
.project-comp-full {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.project-image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border-radius: 4px;
    background-color: var(--color-sand);
    cursor: pointer;
}

.project-image-box img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.project-comp-full .project-image-box img {
    height: 780px;
}

.project-image-box:hover img {
    transform: scale(1.05);
}

.project-meta-top {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.project-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-bronze-dark);
}

.project-title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    color: var(--color-charcoal-muted);
    margin-bottom: 1.5rem;
}

.project-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-stone);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.project-link-editorial {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-charcoal-muted);
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--color-charcoal-muted);
}

.project-link-editorial:hover {
    color: var(--color-bronze-dark);
    border-color: var(--color-bronze-dark);
}

/* ============================================================
   SERVICES SECTION — 6-Card Architectural Showcase Grid
   ============================================================ */
.services-section {
    background-color: var(--bg-services);
    color: var(--color-offwhite);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 83, 0.3), transparent);
}

.services-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4.5rem;
    gap: 3rem;
}

.services-header-text {
    max-width: 780px;
}

.services-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    color: var(--color-ivory);
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.services-lead {
    font-size: 1.1rem;
    color: var(--color-taupe-light);
    line-height: 1.75;
    font-weight: 300;
    opacity: 0.9;
}

.btn-services-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand);
    border: 1px solid rgba(200, 155, 83, 0.35);
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: var(--transition-medium);
    white-space: nowrap;
}

.btn-services-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-services-all:hover {
    color: var(--color-ivory);
    border-color: var(--color-bronze);
    background-color: rgba(200, 155, 83, 0.12);
    transform: translateY(-2px);
}

.btn-services-all:hover svg {
    transform: translateX(4px);
}

/* 6-Item Architectural Services Grid (3 Columns on Desktop) */
.services-grid-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.service-card-premium {
    background-color: #161412;
    border: 1px solid rgba(200, 155, 83, 0.14);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.45s ease, 
                box-shadow 0.45s ease, 
                background-color 0.45s ease;
    position: relative;
}

.service-card-premium:hover {
    border-color: rgba(200, 155, 83, 0.45);
    background-color: #1a1815;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(200, 155, 83, 0.08);
}

/* Image container */
.service-card-media {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    background-color: #0d0c0a;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.92) contrast(1.05);
}

.service-card-premium:hover .service-card-img {
    transform: scale(1.06);
    filter: brightness(1.02) contrast(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 16, 14, 0.1) 0%, rgba(22, 20, 18, 0.85) 100%);
    pointer-events: none;
}

/* Floating Index Badge */
.service-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background-color: rgba(17, 16, 14, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 155, 83, 0.3);
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand);
    z-index: 2;
}

.service-badge-num {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-bronze);
    font-weight: 500;
}

.service-badge-divider {
    opacity: 0.4;
    color: var(--color-sand);
}

.service-badge-cat {
    letter-spacing: 0.12em;
}

/* Card Body */
.service-card-body {
    padding: 2rem 2rem 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bronze);
    margin-bottom: 0.65rem;
    font-weight: 500;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--color-ivory);
    line-height: 1.25;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-card-title {
    color: #f1dfbf;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--color-taupe-light);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.85;
}

/* Feature Pills */
.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
    margin-top: auto;
}

.service-feature-pill {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(252, 251, 247, 0.08);
    border-radius: 2px;
    color: var(--color-sand);
    letter-spacing: 0.03em;
}

/* Footer Link */
.service-card-footer {
    border-top: 1px solid rgba(200, 155, 83, 0.12);
    padding-top: 1.25rem;
    margin-top: auto;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-bronze);
    font-weight: 500;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-link-arrow {
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-card-link {
    color: var(--color-ivory);
}

.service-card-premium:hover .service-link-arrow {
    transform: translateX(5px);
}

/* 5-STEP DESIGN PROCESS TIMELINE */
.process-section {
    background-color: var(--bg-process);
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.process-timeline {
    position: relative;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.process-timeline-line {
    position: absolute;
    top: 0;
    left: 2rem;
    width: 2px;
    height: 100%;
    background-color: var(--color-sand);
}

.process-timeline-fill {
    position: absolute;
    top: 0;
    left: 2rem;
    width: 2px;
    height: 0%;
    background-color: var(--color-bronze-dark);
    transition: height 0.1s ease-out;
}

.process-step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-left: 0.5rem;
}

.step-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-offwhite);
    border: 2px solid var(--color-bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal-muted);
    z-index: 2;
}

.step-content {
    background-color: var(--color-offwhite);
    padding: 2.5rem 3rem;
    border-radius: 4px;
    border: 1px solid rgba(163, 155, 142, 0.15);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-charcoal-muted);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 1rem;
    color: var(--color-stone);
    line-height: 1.7;
}

/* HORIZONTAL MATERIAL & CRAFT GALLERY */
.craft-section {
    background-color: var(--bg-journal);
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.horizontal-gallery-wrapper {
    display: flex;
    gap: 4rem;
    width: max-content;
    padding: 2rem 0;
}

.material-card {
    width: 450px;
    flex-shrink: 0;
}

.material-img-box {
    width: 100%;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.material-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.material-card:hover .material-img-box img {
    transform: scale(1.05);
}

.material-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-charcoal-muted);
}

.material-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-bronze-dark);
    margin-bottom: 0.75rem;
}

.material-text {
    font-size: 0.95rem;
    color: var(--color-stone);
}

/* ============================================================
   EDITORIAL TESTIMONIALS SECTION — Modern Luxury Slider
   ============================================================ */
.testimonials-section {
    background-color: var(--bg-about);
    border-top: 1px solid var(--color-sand);
    border-bottom: 1px solid var(--color-sand);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem auto;
}

.testimonials-subtitle {
    font-size: 1.05rem;
    color: var(--color-taupe);
    margin-top: 0.75rem;
    font-weight: 300;
}

.testimonial-slider-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides-track {
    position: relative;
    min-height: 340px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-card-inner {
    background-color: var(--color-offwhite);
    border: 1px solid rgba(163, 155, 142, 0.2);
    border-radius: 6px;
    padding: 3.5rem 4rem 3.5rem 4rem;
    box-shadow: 0 12px 35px rgba(20, 18, 16, 0.04);
    text-align: center;
    position: relative;
}

.testimonial-rating {
    margin-bottom: 1.75rem;
}

.testimonial-stars {
    color: var(--color-bronze);
    font-size: 1.15rem;
    letter-spacing: 0.3em;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-charcoal-muted);
    margin-bottom: 2.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.testimonial-author-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 1.5rem;
}

.testimonial-author-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-bronze), transparent);
}

.testimonial-author-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-client {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal-muted);
    font-family: var(--font-serif);
    letter-spacing: 0.02em;
}

.testimonial-project {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-loc-dot {
    opacity: 0.5;
}

.testimonial-location {
    color: var(--color-bronze-dark);
    font-weight: 600;
}

/* Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-sand);
    background-color: var(--color-offwhite);
    color: var(--color-charcoal-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.testimonial-nav-btn:hover {
    background-color: var(--color-bronze-dark);
    border-color: var(--color-bronze-dark);
    color: var(--color-offwhite);
    transform: scale(1.06);
}

.testimonial-nav-btn.prev:hover svg {
    transform: translateX(-2px);
}

.testimonial-nav-btn.next:hover svg {
    transform: translateX(2px);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-sand);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 4px;
    background-color: var(--color-bronze);
}

/* EDITORIAL JOURNAL GRID */
.journal-section {
    background-color: var(--bg-journal);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.journal-card {
    display: flex;
    flex-direction: column;
}

.journal-img-box {
    height: 340px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.journal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.journal-card:hover .journal-img-box img {
    transform: scale(1.06);
}

.journal-meta {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-bronze-dark);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
}

.journal-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.25;
    color: var(--color-charcoal-muted);
    margin-bottom: 1rem;
}

.journal-excerpt {
    font-size: 0.95rem;
    color: var(--color-stone);
    line-height: 1.6;
}

/* DRAMATIC CONTACT SECTION */
.contact-dramatic-section {
    background-color: var(--bg-cta);
    color: var(--color-offwhite);
    padding: var(--space-2xl) 4rem var(--space-xl) 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 6rem;
}

.contact-headline {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    color: var(--color-ivory);
    margin-bottom: 2rem;
}

.contact-lead {
    font-size: 1.2rem;
    color: var(--color-taupe-light);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    border-top: 1px solid rgba(252, 251, 247, 0.15);
    padding-top: 2.5rem;
}

.contact-detail-item label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-taupe);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 1.1rem;
    color: var(--color-sand);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(252, 251, 247, 0.2);
    color: var(--color-ivory);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-bronze);
}

.form-select option {
    background-color: var(--color-dark);
    color: var(--color-ivory);
}

.contact-form button[type="submit"] {
    background-color: var(--color-bronze) !important;
    color: var(--color-dark) !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 1.25rem 2.5rem !important;
    border-radius: 40px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--transition-fast) !important;
    box-shadow: 0 8px 24px rgba(179, 139, 90, 0.3) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form button[type="submit"]:hover {
    background-color: var(--color-offwhite) !important;
    color: var(--color-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3) !important;
}

/* EDITORIAL FOOTER */
.site-footer {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-footer);
    color: var(--color-taupe);
    padding: 6.5rem 4rem 2rem;
    border-top: 1px solid rgba(179, 139, 90, 0.3);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -30rem;
    right: -14rem;
    width: 42rem;
    height: 42rem;
    border: 1px solid rgba(179, 139, 90, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(179, 139, 90, 0.025), 0 0 0 8rem rgba(179, 139, 90, 0.02);
    pointer-events: none;
}

.footer-artwork {
    position: absolute;
    left: clamp(2rem, 9vw, 12rem);
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    opacity: 0.75;
    pointer-events: none;
}

.footer-artwork-ring {
    position: absolute;
    border: 1px solid rgba(179, 139, 90, 0.35);
    border-radius: 50%;
    animation: footer-orbit 14s ease-in-out infinite;
}

.footer-artwork-ring.ring-one {
    inset: 2rem;
}

.footer-artwork-ring.ring-two {
    inset: 5.75rem;
    border-color: rgba(252, 251, 247, 0.16);
    animation-delay: -6s;
}

.footer-artwork-line {
    position: absolute;
    top: 50%;
    left: -1.5rem;
    width: calc(100% + 3rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 139, 90, 0.65), transparent);
    transform: rotate(-35deg);
    transform-origin: center;
    animation: footer-line-glow 7s ease-in-out infinite;
}

@keyframes footer-orbit {
    0%, 100% { opacity: 0.38; transform: scale(0.96); }
    50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes footer-line-glow {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) minmax(180px, 0.7fr) minmax(240px, 0.85fr);
    gap: clamp(3rem, 8vw, 9rem);
    padding-bottom: 4.5rem;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 1.75rem;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 66px;
    max-width: min(280px, 100%);
    object-fit: contain;
}

.footer-statement {
    max-width: 330px;
    margin: 0 0 2rem;
    color: var(--color-taupe-light);
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1.35;
}

.footer-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--color-bronze);
    color: var(--color-bronze);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.25s ease, gap 0.25s ease;
}

.footer-project-link:hover {
    color: var(--color-offwhite);
    gap: 1rem;
}

.footer-label {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--color-bronze);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-link {
    color: var(--color-taupe-light);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
    color: var(--color-bronze);
    transform: translateX(0.35rem);
}

.footer-contact {
    padding-left: clamp(2rem, 4vw, 5rem);
    border-left: 1px solid rgba(179, 139, 90, 0.25);
}

.footer-email,
.footer-phone {
    display: block;
    width: fit-content;
    color: var(--color-offwhite);
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.3;
    transition: color 0.25s ease;
}

.footer-phone {
    margin-top: 0.45rem;
    color: var(--color-taupe-light);
}

.footer-email:hover,
.footer-phone:hover,
.footer-social-links a:hover,
.footer-legal a:hover {
    color: var(--color-bronze);
}

.footer-contact p {
    max-width: 260px;
    margin: 1.4rem 0 0;
    color: var(--color-taupe);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.footer-social-links a {
    color: var(--color-taupe-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(252, 251, 247, 0.12);
}

.footer-copy,
.footer-legal,
.footer-location {
    margin: 0;
    color: var(--color-stone);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.footer-location {
    margin-top: 0.3rem;
}

.footer-copy p:not(:first-child) {
    display: none;
}

.footer-legal a {
    color: var(--color-taupe-light);
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-charcoal-muted);
    color: var(--color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-bronze);
    transform: translateX(-50%) translateY(-5px);
}

/* =============================================
   CREATIVE GLOBAL TIE-UPS STYLING
   ============================================= */
.tieup-hero-card {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 4rem;
    background-color: var(--color-dark);
    color: var(--color-offwhite);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 5rem;
    align-items: center;
    border: 1px solid rgba(179, 139, 90, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.tieup-hero-img-box {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.tieup-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1s var(--ease-out-expo);
}

.tieup-hero-card:hover .tieup-hero-img-box img {
    transform: scale(1.05);
}

.tieup-hero-content {
    padding: 4rem;
}

.tieup-card {
    background-color: var(--color-offwhite);
    border-radius: 6px;
    border: 1px solid var(--color-sand);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.tieup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 26, 23, 0.12);
    border-color: var(--color-bronze);
}

.tieup-card:hover .tieup-img {
    transform: scale(1.06);
}

/* Keep alliance portraits fully visible instead of cropping them to a wide card. */
.tieup-profile-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Alliance Modal / Dossier Overlay */
.dossier-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(28, 26, 23, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.dossier-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.dossier-modal-content {
    background-color: var(--color-dark);
    color: var(--color-offwhite);
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(179, 139, 90, 0.3);
    padding: 3.5rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.dossier-modal.active .dossier-modal-content {
    transform: translateY(0);
}

.dossier-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-offwhite);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dossier-close-btn:hover {
    background-color: var(--color-bronze);
    color: var(--color-dark);
    border-color: var(--color-bronze);
}
