/* Root variables matching the exact designated European Light Luxe Interior design scheme */
:root {
    --bg-main: #fcfbfa; /* Warm Pearl Alabaster */
    --bg-secondary: #f4f2ee; /* Soft Warm Linen */
    --bg-layer: #eae7e2; /* Light Warm Clay/Stone */
    
    /* Glass Panel settings */
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(179, 141, 70, 0.12);
    --glass-blur: blur(20px);
    
    /* Accents (Warm bronze, sophisticated espresso, obsidian and Roman gold) */
    --gold: #b38d46; /* Refined soft gold */
    --copper: #a17f52; /* Sophisticated Warm Bronze/Copper */
    --burgundy: #2e2420; /* Rich Espresso Dark Brown */
    --ivory: #1e1815; /* Sleek Obsidian/Espresso Black for text headers */
    
    /* Gradients */
    --grad-gold-copper: linear-gradient(135deg, #b38d46, #a17f52);
    --grad-burgundy-dark: linear-gradient(135deg, #2e2420, #1e1815);
    
    /* Font colors */
    --txt-primary: #262321; /* Crisp deep slate espresso */
    --txt-secondary: #56504c; /* Refined dark stone taupe */
    --txt-muted: #8b837e; /* Soft warm granite grey */
    
    /* Layout Constants */
    --max-width: 1400px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base resets & document configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--txt-primary);
    font-family: 'Inter', Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix bg-dark matching the Luxe Color Palette */
.bg-dark {
    background-color: var(--bg-main);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--ivory);
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Global Grid Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Smart Responsive Grids */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

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

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.section-padding {
    padding: 120px 0;
}

/* Elegant high-contrast alternating dark block configuration */
.bg-secondary-dark {
    background-color: var(--ivory); /* Majestic deep espresso */
    color: #e6e1da;
}

.bg-secondary-dark h1,
.bg-secondary-dark h2,
.bg-secondary-dark h3,
.bg-secondary-dark h4,
.bg-secondary-dark .section-title,
.bg-secondary-dark .section-title-sm {
    color: #ffffff;
}

.bg-secondary-dark .text-secondary {
    color: #eae7e2;
}

.bg-secondary-dark .text-muted {
    color: #bfaea5;
}

.align-center {
    align-items: center;
}

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

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

.text-secondary {
    color: var(--txt-secondary);
}

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

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 2px;
}

.margin-top-20 { margin-top: 20px; }
.margin-top-30 { margin-top: 30px; }
.margin-top-40 { margin-top: 40px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-30 { margin-bottom: 30px; }
.margin-auto-bottom { margin-bottom: 60px; }
.margin-auto-bottom-40 { margin-bottom: 40px; }

.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.rounded-10 {
    border-radius: 10px;
}

/* Luxury Floating Navigation */
.header-nav {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 40px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(30, 24, 21, 0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1rem, 3.5vw, 1.4rem);
    letter-spacing: 2px;
    color: var(--ivory);
    white-space: nowrap;
}

.main-menu ul {
    display: flex;
    gap: 35px;
}

.main-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt-secondary);
    position: relative;
    padding-bottom: 5px;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--gold);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

/* Global Buttons UI */
.btn-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--grad-gold-copper);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(179, 141, 70, 0.3);
}

.btn-gold-solid {
    background: var(--grad-gold-copper);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}

.btn-gold-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 141, 70, 0.4);
}

.btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--txt-primary);
    background: transparent;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.bg-secondary-dark .btn-outline,
.hero-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 110;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--txt-primary);
    transition: var(--transition-smooth);
}

/* Mobile Slide-over Menu style */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    z-index: 200;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-panel.open {
    right: 0;
}

.close-mobile-menu {
    align-self: flex-end;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--txt-primary);
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-links {
    margin-top: -40px;
}

.mobile-menu-links li {
    margin: 20px 0;
}

.mobile-menu-links a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--txt-secondary);
}

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

.mobile-menu-footer p {
    font-size: 0.8rem;
    color: var(--txt-muted);
    margin-top: 10px;
}

/* Cinematic Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12,12,12,0.4) 0%, rgba(12,12,12,0.85) 100%);
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    margin-top: 80px;
}

.hero-badge {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-badge {
    color: #ffffff;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: 45px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.indicator-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

/* Sections Structure Elements */
.section-tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 25px;
}

.section-title-sm {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 70px;
}

/* Feature Showcase elements */
.features-list-icon {
    margin-top: 45px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gold-icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.collage-wrapper {
    position: relative;
}

.img-large {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--glass-border);
    width: 100%;
    object-fit: cover;
}

.floating-stat-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    z-index: 5;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--txt-secondary);
    letter-spacing: 1px;
}

/* Studio cards and Grid structures */
.studio-card {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.studio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 141, 70, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.studio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.studio-location {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt-primary);
}

.studio-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.studio-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.signature-style {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-desc {
    color: var(--txt-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.text-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ivory);
    margin-top: auto;
}

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

.view-all-wrapper {
    margin-top: 60px;
}

/* Pure Materiality Texture Elements */
.material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.material-tile {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    border: 1px solid var(--glass-border);
}

.material-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.material-tile:hover img {
    transform: scale(1.08);
}

.tile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(30, 24, 21, 0.9) 0%, transparent 100%);
    padding: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.material-specs {
    margin: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.spec-label {
    color: var(--txt-muted);
}

.spec-val {
    color: var(--ivory);
    font-weight: 500;
}

/* Service blocks configuration */
.service-block {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-gold-copper);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-block:hover::before {
    opacity: 1;
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgba(30, 24, 21, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.service-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 1.4;
}

/* Glass Container Block */
.glass-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 15px;
}

.padding-50 {
    padding: 50px;
}

.col-stats-row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.mini-stat .stat-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.mini-stat .stat-sub {
    font-size: 0.75rem;
    color: var(--txt-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA blocks */
.final-cta {
    position: relative;
    overflow: hidden;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Premium Footer */
.main-footer {
    background-color: #1e1815; /* Deep rich obsidian/espresso background */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 30px;
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--bg-main);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.main-footer h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-main);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a,
.footer-legal a {
    color: #e6e1da;
    font-size: 0.85rem;
}

.main-footer h4,
.main-footer .footer-logo,
.main-footer p,
.main-footer a {
    color: #e6e1da;
}

.footer-nav a:hover,
.footer-legal a:hover,
.main-footer a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* Cookie Consent Banner - customized fresh styling with clean entry-exit transitions */
.cookie-banner {
    position: fixed;
    bottom: -250px; /* Hidden off-screen initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(179, 141, 70, 0.35);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 25px 35px;
    box-shadow: 0 15px 40px rgba(30, 24, 21, 0.12);
    z-index: 500;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.visible {
    bottom: 30px !important;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--txt-primary);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Sub-page Specific Layout Styles */
.inner-header-section {
    padding-top: 180px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--glass-border);
}

.inner-header-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

/* Detailed Designer Profile Rows */
.designer-profile-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.designer-media {
    position: relative;
    width: 100%;
}

.profile-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

.designer-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    position: absolute;
    bottom: -30px;
    left: 40px;
    right: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.m-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
}

.m-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--txt-muted);
    letter-spacing: 1px;
}

.profile-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgba(179, 141, 70, 0.15);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.studio-subtext {
    font-size: 1.1rem;
    color: var(--txt-secondary);
    font-style: italic;
    margin-bottom: 25px;
}

.info-subheader {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 35px;
    margin-bottom: 10px;
    font-weight: 600;
}

.curated-bullets {
    margin-top: 15px;
}

.curated-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--txt-secondary);
}

.curated-bullets li::before {
    content: '⚜';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* Portfolio Filters and Dynamic Setup */
.portfolio-filter-section {
    margin-top: -20px;
    margin-bottom: 40px;
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    color: var(--txt-secondary);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    color: var(--bg-main);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(179, 141, 70, 0.2);
}

.portfolio-card {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.portfolio-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 24, 21, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px;
    text-align: center;
}

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

.portfolio-studio-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.portfolio-hover-content h3,
.portfolio-hover-content p,
.portfolio-hover-content .portfolio-studio-label,
.portfolio-hover-content .portfolio-materials {
    color: #ffffff;
}

.portfolio-hover-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.portfolio-materials {
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.portfolio-card-info {
    padding: 25px;
}

.portfolio-card-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-card-info p {
    font-size: 0.9rem;
}

/* Contact page structures */
.contact-section {
    margin-top: -40px;
}

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

.padding-40 {
    padding: 40px;
}

.info-item-row {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.info-icon {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item-row h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ivory);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item-row p {
    font-size: 0.85rem;
    color: var(--txt-secondary);
}

.map-concept-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--glass-border);
}

.map-radial-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #524741 0%, #1e1815 100%);
    opacity: 0.4;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%;
}

.map-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-overlay p {
    font-size: 0.8rem;
}

/* Elegant Form Elements */
.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input-wrapper label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--txt-secondary);
}

.form-input-wrapper input,
.form-input-wrapper select,
.form-input-wrapper textarea {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 14px;
    color: var(--txt-primary);
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-input-wrapper input:focus,
.form-input-wrapper select:focus,
.form-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(179, 141, 70, 0.15);
}

.form-checkbox-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
}

.form-checkbox-wrapper input {
    margin-top: 4px;
    accent-color: var(--gold);
}

.form-checkbox-wrapper label {
    font-size: 0.75rem;
    color: var(--txt-muted);
    line-height: 1.5;
}

.form-success-alert {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success-alert h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success-alert p {
    font-size: 0.95rem;
    color: var(--txt-secondary);
    max-width: 500px;
}

.w-100 {
    width: 100%;
}

/* About page layout details */
.heritage-visual {
    position: relative;
    width: 100%;
}

.magazine-layout {
    position: relative;
}

.image-main {
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border: 1px solid var(--glass-border);
    width: 100%;
    object-fit: cover;
}

.vintage-quote-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--grad-burgundy-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vintage-quote-box .quote,
.vintage-quote-box .quote-author {
    color: #ffffff;
}

.vintage-quote-box .quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vintage-quote-box .quote-author {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
}

.stat-boxes-container {
    display: flex;
    gap: 20px;
}

.stat-box-small {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px 30px;
    flex: 1;
}

.stat-box-small h4 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-box-small p {
    font-size: 0.75rem;
}

.pillar-card {
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Legal Documents layout configuration */
.legal-page {
    padding-top: 180px !important; /* Spaced perfectly below floating header */
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.separator-line {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 30px 0;
}

.legal-body-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-body-content p {
    font-size: 0.95rem;
    color: var(--txt-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-body-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-body-content li {
    font-size: 0.95rem;
    color: var(--txt-secondary);
    margin-bottom: 10px;
    list-style-type: square;
}

.gold-link {
    color: var(--gold);
    text-decoration: underline;
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.luxe-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    min-width: 600px;
}

.luxe-table th,
.luxe-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.luxe-table th {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--ivory);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.luxe-table td code {
    background-color: rgba(0, 0, 0, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--gold);
}

/* Animation Reveal Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Media Queries & Responsive layouts */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .section-padding {
        padding: 100px 0;
    }

    .grid-2col {
        gap: 40px;
    }

    .grid-3col {
        gap: 30px;
    }

    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portfolio-grid {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .designer-profile-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Force Media Stacked On Top (eliminating confusing RTL hacks) */
    .designer-profile-row .designer-media {
        grid-row: 1;
    }
    .designer-profile-row .designer-info {
        grid-row: 2;
    }

    .designer-metrics-grid {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 30px;
    }

    .floating-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        display: inline-block;
    }

    .vintage-quote-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cookie-banner {
        width: 95%;
        padding: 20px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .grid-3col,
    .grid-4col,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .form-group-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .inner-header-section {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .nav-container {
        padding: 10px 20px;
    }
    
    .nav-cta .btn-gold {
        display: none;
    }

    .stat-boxes-container {
        flex-direction: column;
        gap: 15px;
    }

    .padding-50 {
        padding: 30px;
    }

    .col-stats-row {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }

    .glass-card.padding-40 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        letter-spacing: 1px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-actions button {
        width: 100%;
    }
}