/* ==========================================================================
   SCENELY STUDIOS - FRESH ALABASTER & SAGE-GOLD PREMIUM LUXE PALETTE
   Strictly NO BLUE colors. Highly Responsive. Fully Optimized Editorial Layouts.
   ========================================================================== */

/* Root variables matching the new fresh architectural palette */
:root {
    --bg-primary: #faf9f6;
    --bg-secondary: #f3f1ec;
    --bg-layer: #ffffff;
    
    --glass-panel: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(43, 69, 50, 0.06);
    --backdrop-blur: 24px;

    /* Green Sage & Gold Palette (Absolutely zero blue) */
    --accent-gold: #c29d53;
    --accent-gold-light: rgba(194, 157, 83, 0.15);
    --accent-copper: #9e7545;
    --accent-sage: #2d4a36;
    --accent-sage-dark: #1e3324;
    --accent-sage-light: rgba(45, 74, 54, 0.05);
    --ivory-glow: #ffffff;

    /* Gradients */
    --gold-copper-gradient: linear-gradient(135deg, #c29d53 0%, #9e7545 100%);
    --sage-dark-gradient: linear-gradient(135deg, #2d4a36 0%, #17261c 100%);

    /* Lighting Effects */
    --gold-glow: rgba(194, 157, 83, 0.18);
    --warm-glow: rgba(158, 117, 69, 0.08);

    /* Typography */
    --font-primary: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Colors */
    --text-primary: #1a221d;
    --text-secondary: #4a554e;
    --text-muted: #808c83;

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Globals */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.8;
}

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

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

/* Typography styles */
h1, h2, h3, h4, .font-display {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 1.5px;
    word-wrap: break-word;
    word-break: break-word;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.15;
    color: var(--accent-sage);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--accent-sage);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2.1rem);
    margin-bottom: 1rem;
    color: var(--accent-sage);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Luxury Editorial Decorative Elements */
.editorial-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(2.5rem, 6vw, 5rem) auto;
    gap: 1.5rem;
    width: 100%;
}

.editorial-divider::before,
.editorial-divider::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    width: clamp(60px, 15vw, 200px);
}

.editorial-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    position: relative;
    flex-shrink: 0;
}

.editorial-diamond::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border: 1px solid var(--accent-gold);
}

/* Reusable Components & Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 5vw, 4rem);
}

.section-padding {
    padding: clamp(3.5rem, 8vw, 8.5rem) 0;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.justify-center {
    justify-content: center !important;
}

.secondary-bg {
    background-color: var(--bg-secondary);
}

.gold-text {
    color: var(--accent-gold);
}

.gold-gradient-text {
    background: var(--gold-copper-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1.1vw, 0.82rem);
    color: var(--accent-gold);
    letter-spacing: 5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.gold-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.text-left .gold-label::after {
    left: 0;
    transform: none;
}

.lead-text {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

.body-text {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--text-secondary);
}

.muted-text {
    color: var(--text-muted);
}

.glass-panel {
    background: var(--glass-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border-radius: 8px;
}

.relative {
    position: relative;
}

/* Highly Responsive Custom Grid System */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 6.5rem);
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 3vw, 3rem);
}

/* Button UI */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: clamp(0.9rem, 1.4vw, 1.25rem) clamp(1.5rem, 2.2vw, 2.8rem);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-sm {
    padding: 0.7rem 1.4rem;
    font-size: 0.72rem;
    letter-spacing: 2px;
}

.btn-lg {
    padding: 1.2rem 2.8rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.btn-primary {
    background: var(--accent-sage);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(45, 74, 54, 0.12);
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 157, 83, 0.25);
}

.btn-outline {
    border-color: var(--accent-sage);
    color: var(--accent-sage);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: #ffffff;
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 157, 83, 0.15);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ----------------- FLOATING LUXURY NAVBAR ----------------- */
.header-container {
    position: fixed;
    top: clamp(8px, 2vw, 24px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 clamp(1rem, 5vw, 4rem);
}

.luxury-navbar {
    max-width: 1320px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 74, 54, 0.08);
    border-radius: 4px;
    padding: 0.8rem clamp(1rem, 2.5vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 40px rgba(45, 74, 54, 0.04);
    transition: var(--transition);
}

.navbar-logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    letter-spacing: 2px;
    color: var(--accent-sage);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(0.8rem, 2vw, 2.4rem);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 1.1vw, 0.85rem);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.8px;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: var(--text-primary);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) { top: 0px; }
.mobile-menu-toggle span:nth-child(2) { top: 8px; }
.mobile-menu-toggle span:nth-child(3) { top: 16px; }

.mobile-menu-toggle.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -40px;
}
.mobile-menu-toggle.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Dropdown Menu */
.mobile-menu-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 249, 246, 0.99);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    padding: clamp(100px, 15vh, 140px) 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-menu-dropdown.open {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    margin-bottom: clamp(1.2rem, 3.5vh, 2.2rem);
}

.mobile-nav-links a {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--text-primary);
    display: block;
    letter-spacing: 2px;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    color: var(--accent-gold);
}

/* ----------------- HERO SECTION ----------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 140px clamp(1rem, 5vw, 4rem) 100px;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 74, 54, 0.35) 0%, rgba(26, 42, 31, 0.9) 100%);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    transform: scale(1.05);
    filter: brightness(0.75);
    z-index: 1;
    transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-image {
    transform: scale(1.01);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.luxury-badge {
    display: inline-block;
    padding: 0.5rem 1.6rem;
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    background: rgba(45, 74, 54, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 860px;
    margin: 1.5rem auto 3rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-cta-group .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.hero-cta-group .btn-outline:hover {
    background: #ffffff;
    color: var(--accent-sage);
    border-color: #ffffff;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    pointer-events: none;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.mouse-wheel {
    width: 3px;
    height: 5px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* ----------------- INTRODUCTION & STATS ----------------- */
.sticky-title {
    position: sticky;
    top: 130px;
    align-self: start;
    margin-bottom: 2rem;
}

.intro-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 2.5rem);
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--accent-sage);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-card .stat-label {
    font-size: clamp(0.7rem, 1.1vw, 0.82rem);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ----------------- COMPANIES SECTION ----------------- */
.section-header {
    margin-bottom: clamp(3rem, 6vw, 6.5rem);
}

.section-subtitle {
    max-width: 780px;
    margin: 1.2rem auto 0;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
}

.company-card-luxury {
    display: grid;
    grid-template-areas: "visual info";
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 6rem);
    margin-bottom: clamp(3.5rem, 7vw, 7.5rem);
    align-items: center;
    background: var(--bg-layer);
    padding: clamp(1.5rem, 4vw, 4.5rem);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 45px rgba(45, 74, 54, 0.02);
    transition: var(--transition);
}

.company-card-luxury:last-child {
    margin-bottom: 0;
}

.company-card-luxury.reverse {
    grid-template-areas: "info visual";
    grid-template-columns: 0.9fr 1.1fr;
}

.company-visual {
    grid-area: visual;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.company-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.company-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.company-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 74, 54, 0.05);
    border-color: var(--accent-gold-light);
}

.company-card-luxury:hover .company-visual img {
    transform: scale(1.03);
}

.company-badge-num {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-sage);
    color: var(--accent-gold);
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(45, 74, 54, 0.3);
    border-radius: 50%;
}

.company-card-luxury.reverse .company-badge-num {
    left: auto;
    right: 20px;
}

.company-meta {
    margin-bottom: 1.2rem;
    width: 100%;
    border-bottom: 1px solid var(--bg-secondary);
    padding-bottom: 1.2rem;
}

.company-meta .location {
    font-size: 0.75rem;
    color: var(--accent-copper);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-meta h3 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin: 0;
}

.brand-story {
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--text-secondary);
}

.signature-style-box {
    background: var(--bg-secondary);
    border-left: 2.5px solid var(--accent-gold);
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.8rem;
    font-size: 0.92rem;
    border-radius: 0 4px 4px 0;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-secondary);
}

.signature-style-box strong {
    font-family: var(--font-primary);
    color: var(--accent-sage);
    display: block;
    margin-bottom: 0.4rem;
    font-style: normal;
    letter-spacing: 1px;
}

.company-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.company-services-list span {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    border-radius: 0;
    font-weight: 500;
}

/* ----------------- MATERIALS SHOWCASE COLLAGE ----------------- */
.material-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-top: 3rem;
}

.material-card {
    text-align: left;
    background: var(--bg-layer);
    padding: 1.8rem;
    border-radius: 2px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.material-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(194, 157, 83, 0.08);
}

.material-card h5 {
    font-family: var(--font-primary);
    color: var(--accent-sage);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.material-card p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.image-collage-block {
    position: relative;
    height: clamp(320px, 45vw, 560px);
    width: 100%;
}

.main-collage-image {
    width: 88%;
    height: 85%;
    overflow: hidden;
}

.main-collage-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(45, 74, 54, 0.04);
    transition: transform 8s ease;
}

.image-collage-block:hover .main-collage-image img {
    transform: scale(1.04);
}

.inset-collage-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    z-index: 2;
    overflow: hidden;
    border: 6px solid var(--bg-primary);
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(45, 74, 54, 0.15);
}

.inset-collage-image img {
    width: 100%;
    height: clamp(170px, 22vw, 290px);
    object-fit: cover;
    transition: transform 6s ease;
}

.image-collage-block:hover .inset-collage-image img {
    transform: scale(1.05);
}

/* ----------------- INTERACTIVE CONCIERGE SERVICES ----------------- */
.services-interactive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 2.5rem);
}

.service-box {
    background: var(--bg-layer);
    border: 1px solid var(--glass-border);
    padding: clamp(1.8rem, 3.5vw, 3.2rem) 1.8rem;
    transition: var(--transition);
    border-radius: 2px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 45px rgba(194, 157, 83, 0.08);
}

.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-box h4 {
    margin-bottom: 0.8rem;
    color: var(--accent-sage);
}

.service-box p {
    font-size: 0.88rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ----------------- CTA BANNER ----------------- */
.cta-banner {
    position: relative;
    background: var(--sage-dark-gradient);
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(194, 157, 83, 0.22) 0%, transparent 75%);
    z-index: -1;
}

.cta-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    max-width: 720px;
    margin: 1.2rem auto 2.8rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
}

.cta-banner .btn-primary {
    background: var(--accent-gold);
    color: #ffffff;
    box-shadow: none;
}

.cta-banner .btn-primary:hover {
    background: var(--bg-primary);
    color: var(--accent-sage);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

/* ----------------- PAGE HEADER (SUBPAGES) ----------------- */
.page-header {
    padding: clamp(110px, 16vh, 200px) 0 clamp(50px, 8vh, 100px);
    background: radial-gradient(ellipse at bottom, #f2eee5 0%, #faf9f6 100%);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.max-width-600 {
    max-width: 720px;
    margin: 1.2rem auto 0;
}

/* ----------------- DESIGNERS PAGE ----------------- */
.designer-detailed-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg-layer);
    border: 1px solid var(--glass-border);
    margin-bottom: clamp(3.5rem, 7vw, 8.5rem);
    border-radius: 4px;
    overflow: hidden;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(45, 74, 54, 0.02);
}

.designer-detailed-card:last-child {
    margin-bottom: 0;
}

.designer-main-visual {
    width: 100%;
    overflow: hidden;
}

.designer-main-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    transition: transform 10s ease;
}

.designer-detailed-card:hover .designer-main-visual img {
    transform: scale(1.03);
}

.designer-detailed-content {
    padding: clamp(2rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.designer-header-block {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--bg-secondary);
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
    gap: 1.2rem;
}

.studio-meta .rank {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.studio-meta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 0.4rem 0;
}

.studio-tagline {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.studio-info-stats {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: clamp(1rem, 2vw, 2.2rem);
    border-radius: 2px;
    flex-wrap: wrap;
}

.info-stat {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.info-stat strong {
    color: var(--accent-sage);
}

.designer-philosophies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.2rem);
    margin: 1.8rem 0 2.5rem;
}

.philosophy-item {
    text-align: left;
}

.philosophy-item h5 {
    font-family: var(--font-primary);
    color: var(--accent-sage);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.designer-detailed-content .actions {
    text-align: left;
}

/* ----------------- PROJECTS PAGE & FILTERS ----------------- */
.portfolio-filters {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(45, 74, 54, 0.12);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    padding: 0.75rem 1.6rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-sage);
    color: #ffffff;
    background: var(--accent-sage);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.8rem, 4vw, 3.5rem);
}

.portfolio-item {
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-layer);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(45, 74, 54, 0.01);
    display: flex;
    flex-direction: column;
}

.portfolio-visual {
    position: relative;
    overflow: hidden;
    height: clamp(260px, 32vw, 420px);
}

.portfolio-visual img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 74, 54, 0.94);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    cursor: pointer;
}

.view-btn {
    font-family: var(--font-primary);
    color: #ffffff;
    border-bottom: 1.5px solid var(--accent-gold);
    padding-bottom: 8px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.portfolio-hover-overlay:hover .view-btn {
    color: var(--accent-gold);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(45, 74, 54, 0.05);
}

.portfolio-item:hover .portfolio-visual img {
    transform: scale(1.06);
}

.portfolio-item:hover .portfolio-hover-overlay {
    opacity: 1;
}

.portfolio-details {
    padding: clamp(1.8rem, 3.5vw, 2.8rem);
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-tag {
    font-size: 0.75rem;
    color: var(--accent-copper);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-details h4 {
    margin-bottom: 0.8rem;
    color: var(--accent-sage);
}

.project-desc {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.material-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.material-pills span {
    background: var(--bg-secondary);
    border: 1px solid rgba(45, 74, 54, 0.06);
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    border-radius: 0;
    font-weight: 500;
}

/* ----------------- ABOUT PAGE ----------------- */
.heritage-visual {
    overflow: hidden;
}

.heritage-visual img {
    width: 100%;
    height: clamp(320px, 45vw, 560px);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(45, 74, 54, 0.03);
    transition: transform 10s ease;
}

.heritage-section:hover .heritage-visual img {
    transform: scale(1.03);
}

.heritage-text {
    text-align: left !important;
}

.heritage-text h2 {
    margin-bottom: 1.5rem;
}

.luxe-quote {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--accent-sage);
    border-top: 1.5px solid var(--accent-gold);
    border-bottom: 1.5px solid var(--accent-gold);
    padding: 1.8rem 0;
    margin: 2.5rem 0 0;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.pillar-card {
    padding: clamp(2rem, 4vw, 4rem) clamp(1.2rem, 2.5vw, 2.5rem);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 2px;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(194, 157, 83, 0.06);
}

.pillar-number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.pillar-card h4 {
    color: var(--accent-sage);
    margin-bottom: 0.8rem;
}

.pillar-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ----------------- CONTACT PAGE ----------------- */
.contact-section-container .grid-2col {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
}

.contact-details-block {
    text-align: left !important;
}

.physical-details-card {
    padding: clamp(1.5rem, 3vw, 3rem);
    margin: 2rem 0;
    border-radius: 2px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-secondary);
    padding: 1rem 0;
    gap: 1.5rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.detail-val {
    font-size: 0.92rem;
    color: var(--text-primary);
    text-align: right;
    font-weight: 400;
}

.embed-map-placeholder {
    position: relative;
    height: clamp(220px, 30vw, 350px);
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(45, 74, 54, 0.02);
}

.embed-map-placeholder img {
    width: 100%;
    height: 100%;
    filter: grayscale(0.5) brightness(0.9);
    transition: var(--transition);
}

.embed-map-placeholder:hover img {
    transform: scale(1.05);
    filter: grayscale(0.2) brightness(0.95);
}

.map-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 1.25rem;
    border-radius: 2px;
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-overlay-text h5 {
    color: var(--accent-sage);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.map-overlay-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.contact-form-block {
    padding: clamp(1.8rem, 4vw, 4.5rem);
    border-radius: 4px;
}

.contact-form-block h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.form-instructions {
    margin-bottom: 1.8rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--accent-sage);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(45, 74, 54, 0.12);
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    transition: var(--transition);
    border-radius: 2px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-layer);
    box-shadow: 0 0 15px rgba(194, 157, 83, 0.1);
}

#form-feedback-message {
    padding: 1rem;
    background: rgba(45, 74, 54, 0.06);
    border: 1px solid var(--accent-sage);
    color: var(--accent-sage);
    font-size: 0.88rem;
    text-align: center;
    border-radius: 2px;
    line-height: 1.6;
}

/* ----------------- LEGAL/POLICY LAYOUT ----------------- */
.legal-page {
    text-align: left !important;
}

.legal-page h1 {
    margin-bottom: 0.8rem;
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 1.8rem 0 3rem;
}

.legal-page h3 {
    margin-top: 2.5rem;
    color: var(--accent-sage);
}

.legal-page ul {
    margin-left: 1.8rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
}

.legal-page li {
    margin-bottom: 0.5rem;
}

/* ----------------- INTERACTIVE DYNAMIC MODAL ----------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 38, 28, 0.97);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 4vw, 4rem);
    transition: opacity 0.4s ease;
}

.modal-content {
    position: relative;
    max-width: 1060px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.5rem, 4vw, 4rem);
    background: var(--bg-primary);
    border-radius: 4px;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--accent-sage);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--accent-gold);
}

/* Responsive Modal Grid */
.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 3vw, 4rem);
    align-items: center;
}

.modal-visual-panel {
    width: 100%;
    height: 100%;
    max-height: 480px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.modal-featured-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.modal-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.modal-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--accent-sage);
    line-height: 1.25;
}

.modal-materials-heading {
    font-family: var(--font-primary);
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.modal-action-wrapper {
    margin-top: 2rem;
}

.modal-action-wrapper .btn-request {
    display: inline-block;
    width: 100%;
    max-width: 350px;
}

.hidden {
    display: none !important;
}

/* ----------------- COOKIE CONSENT BAR ----------------- */
.cookie-consent-bar {
    position: fixed;
    bottom: clamp(12px, 2.5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    max-width: 900px;
    background: var(--bg-layer);
    border: 1px solid rgba(45, 74, 54, 0.15);
    border-radius: 4px;
    padding: clamp(1rem, 2vw, 1.8rem) clamp(1.2rem, 3vw, 2.5rem);
    z-index: 1500;
    box-shadow: 0 20px 50px rgba(45, 74, 54, 0.12);
    transition: var(--transition);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.85rem;
    margin: 0;
    flex: 2;
    color: var(--text-secondary);
}

.cookie-content p a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex: 1;
    justify-content: flex-end;
    min-width: 300px;
}

/* ----------------- FOOTER ----------------- */
.footer-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: clamp(3.5rem, 7vw, 8rem) 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: clamp(2rem, 4vw, 5rem);
    margin-bottom: 50px;
}

.footer-brand-column {
    text-align: left;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-sage);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    max-width: 540px;
}

.footer-contact-details p {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.footer-contact-details strong {
    color: var(--accent-sage);
}

.footer-nav-column {
    text-align: left;
}

.footer-nav-column h5 {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px clamp(1rem, 5vw, 4rem) 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ROBUST RESPONSIVENESS SYSTEM (GRID FLUIDITY & TOUCH PERFORMANCE)
   ========================================================================== */

@media (max-width: 1199px) {
    .services-interactive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .luxury-navbar {
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
    }
    .header-container {
        top: 12px;
    }
    
    .designer-detailed-card {
        grid-template-columns: 1fr;
    }
    .designer-main-visual {
        height: clamp(320px, 45vw, 460px);
    }
    .designer-main-visual img {
        min-height: auto;
        height: 100%;
    }
    .designer-detailed-content {
        padding: clamp(1.8rem, 4.5vw, 3.5rem);
    }
    .designer-philosophies {
        gap: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 4.5rem);
    }
    .sticky-title {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }
    
    .company-card-luxury,
    .company-card-luxury.reverse {
        grid-template-areas: "visual" "info";
        grid-template-columns: 1fr !important;
        padding: clamp(1.5rem, 4vw, 3.2rem);
        gap: 2rem;
    }
    .company-visual img {
        height: auto;
        aspect-ratio: 16 / 10;
    }
    
    .image-collage-block {
        max-width: 650px;
        margin: 0 auto;
    }
    .material-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .material-card {
        padding: 1.5rem;
    }
    
    .contact-section-container .grid-2col {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .modal-visual-panel {
        max-height: 320px;
    }
    .modal-featured-image {
        min-height: 240px;
    }
    .modal-info-panel {
        text-align: center;
        align-items: center;
    }
    .modal-action-wrapper .btn-request {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: clamp(3rem, 7vw, 6rem) 0;
    }
    .grid-3col {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.8rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100vw;
        margin-left: calc(-1 * clamp(1.2rem, 5vw, 4rem));
        padding-left: clamp(1.2rem, 5vw, 4rem);
    }
    .portfolio-filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex: 0 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .designer-philosophies {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 650px) {
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding-top: 1.8rem;
    }
}

@media (max-width: 576px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-interactive-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .cookie-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        min-width: auto;
    }
    .cookie-buttons .btn {
        width: 100%;
        padding: 0.8rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.8rem 0;
    }
    .detail-val {
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand-column {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
    .nav-actions .btn {
        display: none;
    }
    
    .map-overlay-text {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 0.8rem 1rem;
    }
    .map-overlay-text h5 {
        font-size: 0.9rem;
    }
    .map-overlay-text p {
        font-size: 0.75rem;
    }
    .close-modal-btn {
        top: 10px;
        right: 15px;
    }
}