:root {
    --bg-color: #F6F1EB;
    --text-color: #1C1A17;
    --accent-color: #C6A56A;
    --secondary-color: #B8A99A;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.micro {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-small {
    margin-bottom: 1rem;
}

.mb-medium {
    margin-bottom: 1.5rem;
}

.mb-large {
    margin-bottom: 2.5rem;
}

/* Global Section Spacing (Tightened Rhythm) */
section {
    padding: 3rem 0;
}

/* Sub-sections or lighter blocks */
.section-sub {
    padding: 2rem 0;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Larger padding */
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth easing */
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
    transform: translateY(-2px);
    /* Subtle lift */
    box-shadow: 0 4px 15px rgba(28, 26, 23, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 26, 23, 0.1);
}

.btn-text {
    border-bottom: 1px solid var(--text-color);
    padding: 0 0 0.2rem 0;
}

.btn-text:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    /* Initially transparent on hero */
}

.site-header.scrolled {
    padding: 1rem 5%;
    background: rgba(246, 241, 235, 0.98);
    box-shadow: 0 4px 20px rgba(28, 26, 23, 0.05);
    backdrop-filter: blur(10px);
}

/* Subpage Header - Light Text for Dark Hero Backgrounds */
.site-header-light:not(.scrolled) .main-nav a,
.site-header-light:not(.scrolled) .brand-name {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* subtle shadow for extra legibility */
}
.site-header-light:not(.scrolled) .main-nav a::after {
    background-color: #ffffff;
}
.site-header-light:not(.scrolled) .btn-nav {
    border-color: #ffffff;
}
.site-header-light:not(.scrolled) .btn-nav:hover {
    background-color: #ffffff;
    color: var(--text-color) !important;
}
.site-header-light:not(.scrolled) .mobile-menu-toggle span {
    background-color: #ffffff;
}
.site-header-light:not(.scrolled) .header-logo {
    filter: drop-shadow(0px 2px 12px rgba(0,0,0,0.5));
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Consistent space between logo and name */
}

.header-logo {
    height: 70px;
    /* Increased for better visibility as it's circular */
    border-radius: 50%;
    /* Ensure it stays circular even if edge cases occur */
    width: auto;
    transition: all 0.3s ease;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    /* Noticeably bigger as requested */
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
}

.site-header.scrolled .header-logo {
    height: 55px;
    /* Scaled down slightly on scroll but still clearly visible */
}

.site-header.scrolled .brand-name {
    font-size: 1.8rem;
}

.main-nav ul {
    display: flex;
    gap: 3rem;
    /* Increased gap */
}

.main-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    /* Increased letter spacing */
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-color);
    /* Keep distinct color */
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--text-color);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--text-color);
    color: var(--bg-color) !important;
}

.btn-nav::after {
    display: none;
    /* No underline for button */
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

/* Page Hero (Internal Pages) */
.page-hero {
    height: 40vh;
    /* Reduced from 60vh */
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 1rem;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero .hero-bg::after {
    display: none;
    /* Simplify background for readability */
}

/* About Page Specific Hero Background & Watermark Crop */
.about-hero-bg {
    background-image: url('https://i.postimg.cc/1t2fh73r/Gemini-Generated-Image-iek70miek70miek7.png') !important;
    background-position: center 30% !important;
    transform: scale(1.05);
    /* Push watermark out of view */
}

/* Gallery Page Specific Hero Background */
.gallery-hero-bg {
    background-image: url('https://i.postimg.cc/FzTh6R9V/Chat-GPT-Image-Mar-16-2026-12-38-03-AM.png') !important;
    background-position: center 45% !important;
    background-size: cover !important;
    opacity: 0.95;
}

/* Gallery Page Specific Hero Content Layout */
.page-hero.gallery-header-hero {
    padding-top: 100px; /* Moves text lower, clearing header */
    min-height: 420px; 
}

/* About Page Specific Hero Content Layout */
.page-hero.about-hero-section {
    padding-top: 120px;
    /* Give room for fixed header */
    min-height: 480px;
    /* Slightly taller to accommodate padding */
}

.about-hero-section .about-hero-content {
    align-items: flex-start;
    /* Left align text */
    text-align: left;
    transform: translateY(2vh);
    /* Sit slightly lower than exact center */
    margin-top: 2rem;
    /* Additional breathing space from the top */
    width: 90%;
    /* Match global container */
    max-width: 1400px;
    /* Match global container */
    padding: 0 1.5rem;
    /* Match global container */
}

/* Enhance Text Visibility and Typography on About Hero Background */
.about-hero-section .section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.about-hero-section .hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--text-color);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6);
    max-width: 650px;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .page-hero.about-hero-section {
        padding-top: 100px;
    }

    .about-hero-section .about-hero-content {
        transform: translateY(1vh);
        padding: 0 1.5rem;
    }
}

/* Grain Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Abstract artistic background - subtle blur */
    background: url('hero-bg-custom.png') no-repeat center center/cover;
    filter: none;
    /* Soften and brighten */
    z-index: 0;
    opacity: 0.8;
    /* Extremely subtle */
    transform: scale(1.1);
    /* Prevent blur edges showing */
}

/* Abstract shapes for background (Keep but tone down) */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    /* Behind grain */
}

.hero-bg::before {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    top: 10%;
    left: 5%;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

.divider-line-accent {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 1.5rem 0 2rem 0;
    opacity: 0.6;
}

.divider-center {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 1.5rem auto 2rem auto;
    opacity: 0.6;
}

.hero-bg::after {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: 10%;
    right: 10%;
    opacity: 0.1;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Above grain */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-5vh);
    /* Optical center adjustment (slightly higher) */
    width: 100%;
    max-width: 1000px;
    /* Ensure content doesn't stretch too wide */
    padding: 0 5%;
}

/* Hero Typography & Hierarchy */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    max-width: 900px;
    font-weight: 400;
    letter-spacing: -0.02em;
    /* Tighter for elegance */
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(28, 26, 23, 0.9);
    /* Increased contrast */
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 400;
    /* Slightly heavier than 300 */
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    /* More breathing room */
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    /* More consistent visibility */
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    display: block;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--text-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.8s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }

    100% {
        top: 24px;
        opacity: 0;
        transform: translateX(-50%) scaleY(0.5);
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-text {
    position: relative;
    /* padding-right removed to reduce spacing */
}

.about-text .section-label {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-text p {
    text-align: justify;
    max-width: 100%;
}

.trust-triggers {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(28, 26, 23, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.trigger-item {
    display: flex;
    flex-direction: column;
}

.trigger-item .count {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trigger-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(28, 26, 23, 0.6);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column.top-align {
    align-items: flex-start;
    /* Align columns to top */
}

.about-image {
    position: relative;
    /* Fill the grid column */
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    /* Force Vertical Portrait */
    overflow: hidden;
    /* Minimal rounding */
    border-radius: 4px;
    /* Offset shadow style */
    box-shadow: 20px 20px 0 var(--secondary-color);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Services */
.services-section {
    background-color: #fcf9f6;
}

.services-grid.editorial-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 1.5rem;
    padding: 2rem 0;
}

.service-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Soft rounding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Minimal shadow */
    transition: all 0.5s ease;
}

/* Grid Areas for Hierarchy */
.service-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

/* Large Hero */
.service-tall {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Minis */
.service-standard:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Texture Art (New Card) */
.service-standard:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Center background for texture art specifically to ensure the artwork is shown optimally */
.service-standard:nth-child(4) .service-bg {
    background-position: center;
}

/* Hampers */
.service-standard:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Frames (Removed from this section or hidden since there are only 3 spots in the bottom row?) 
   Wait, if we have Art (large), Calligraphy (tall), Minis, Texture Art, Hampers, Frames... that's 6 cards. 
   If Calligraphy takes 1 row, Art takes 1 row... 
   Let's check: 
   Row 1: Art (span 2), Calligraphy (span 1).
   Row 2: Minis (span 1), Texture Art (span 1), Hampers (span 1).
   What about Frames? I need to look at the HTML.
*/

/* Responsive adjustments */
@media (max-width: 900px) {
    .services-grid.editorial-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .service-large,
    .service-wide {
        grid-column: 1 / -1;
    }

    .service-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 600px) {
    .services-grid.editorial-layout {
        grid-template-columns: 1fr;
    }

    .service-large,
    .service-wide,
    .service-tall {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 26, 23, 0.8), rgba(28, 26, 23, 0) 60%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.explore-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

/* Hover Effects */
.service-card:hover .service-bg {
    transform: scale(1.08);
    /* Slow zoom */
}

.service-card:hover .service-overlay {
    opacity: 0.9;
    /* Slightly darker */
}

.service-card:hover h3 {
    transform: translateY(-5px);
}

.service-card:hover .explore-link {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery */
/* Standardized Gallery padding inherited from global section {} */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    /* Slightly taller rows for impact */
    gap: 0.8rem;
    /* Tighter gutters */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    /* Cleaner gallery wall look */
}

.item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Large Hero Item */
.item-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Wide Landscape Item */
.item-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Square Item */
.item-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Square Item */

.placeholder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e6e2dd;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth interaction */
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.05);
    /* Gentle Zoom */
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(28, 26, 23, 0.9) 0%, rgba(28, 26, 23, 0) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .category {
    transition-delay: 0.1s;
}

.gallery-item:hover h4 {
    transition-delay: 0.2s;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item h4 {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-heading);
    margin-top: 0.5rem;
}

.gallery-item .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 26, 23, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    /* Flex to center */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.lightbox-caption {
    margin-top: 1rem;
    color: #fff;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.lightbox-caption p {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

/* Philosophy */
.philosophy-section {
    background-color: #f9f5f1;
    /* Warmer ivory */
    border-top: 1px solid rgba(198, 165, 106, 0.3);
    /* Muted gold divider */
    position: relative;
    padding-top: 40px;
    /* Reduced from default */
    padding-bottom: 50px;
    /* Reduced from default */
}

/* New Philosophy Header Styles */
.philosophy-header {
    margin-bottom: 28px;
    /* Reduced title-to-grid gap */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.philosophy-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(28, 26, 23, 0.5);
    /* muted grey based on text color */
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-weight: 600;
    /* semi-bold */
    font-size: clamp(34px, 5vw, 56px);
    /* Responsive: 34px min (tablet/mobile), 56px max (desktop) */
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: #2b2b2b;
    /* Deep charcoal */
    margin-bottom: 1rem;
    margin-top: 0;
}

.philosophy-divider {
    width: 60px;
    height: 1px;
    background-color: #c6b8a6;
    /* Warm stone / muted beige / muted sand */
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.philosophy-micro {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(28, 26, 23, 0.4);
}

.philosophy-grid {
    display: grid;
    /* Desktop: 4 cards row, 32px gap */
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
    /* Shift from center to left for editorial look */
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

.philosophy-item {
    transition: transform 0.22s ease-out;
    /* Premium lift timing */
}

.philosophy-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    /* 18-22px */
    aspect-ratio: 4 / 5;
    /* Vertical editorial */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* layer shadow */
    cursor: pointer;
    /* Optional: Slight warm tone overlay to the card itself via background or we do it on gradient */
}

.philosophy-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.philosophy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease-out;
    /* Hover Zoom */
    filter: contrast(1.02);
    /* Slight contrast lift */
}

/* Texture overlay & warm tone grading */
.card-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Increase opacity at the bottom to ensure white text is always readable */
    background: linear-gradient(to top, rgba(28, 26, 23, 0.95) 0%, rgba(28, 26, 23, 0.4) 40%, transparent 100%);
    opacity: 1;
    /* Always visible to provide base contrast */
    transition: background 0.22s ease-out;
    z-index: 1;
    /* Ensure it stays above image but below text */
}

/* Card Content Area */
.philosophy-card .card-content {
    position: relative;
    z-index: 2;
    /* Put text above gradient */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
    text-align: left;
    /* Explicitly align text left */
}

.card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    /* small label */
    margin-bottom: 8px;
    transition: color 0.22s ease-out;
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #ffffff !important;
    /* Force white text */
    text-align: left !important;
    /* Force alignment */
    transition: transform 0.22s ease-out, color 0.22s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* extra readability */
}

.philosophy-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4;
    transition: opacity 0.22s ease-out, transform 0.22s ease-out;
    margin: 0;
    text-align: left !important;
    min-height: 2.8em;
    /* Force height to match 2 lines so grid titles align horizontally */
}

/* Hover Experience */
.philosophy-item:hover {
    transform: translateY(-8px);
    /* Card lifts upward */
}

.philosophy-item:hover .philosophy-card {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    /* Shadow deepens */
}

.philosophy-item:hover img {
    transform: scale(1.05);
    /* Image zooms 1.05 */
}

.philosophy-item:hover .card-overlay-gradient {
    opacity: 1;
    /* Gradient brightens/fades in */
    background: linear-gradient(to top, rgba(43, 43, 43, 0.95) 0%, rgba(198, 184, 166, 0.05) 50%, rgba(198, 184, 166, 0.03) 100%);
}

.philosophy-item:hover h3 {
    color: #fff;
    /* Becomes brighter */
}

.philosophy-item:hover .card-category {
    color: rgba(255, 255, 255, 0.9);
}

/* Custom CTA - Cinematic Redesign */
.custom-cta-section.cinematic-cta {
    padding: 0;
    /* Remove top/bottom whitespace */
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 80vh;
    /* Taller, edge-to-edge section */
    background: url('cta-bg-v2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cinematic Dark Gradient Overlay */
.cta-overlay-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deeper at edges, slightly transparent center */
    background: radial-gradient(circle at center, rgba(28, 26, 23, 0.4) 0%, rgba(28, 26, 23, 0.85) 100%);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Constrain text width for better line length */
    padding: 0 2rem;
}

/* Typography Hierarchy */
.cta-cinematic-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.cta-cinematic-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Premium Animated CTA Button */
.btn-premium {
    position: relative;
    display: inline-block;
    padding: 1.1rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    /* softer, sophisticated edge */
    background: rgba(255, 255, 255, 0.05);
    /* Slight glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Subtle continuous pulse attractor */
    animation: pulse-attractor 3s infinite;
}

.btn-premium .btn-text {
    position: relative;
    z-index: 2;
}

/* Hover Effects */
.btn-premium:hover {
    transform: translateY(-4px);
    /* Lift */
    background: rgba(255, 255, 255, 0.15);
    /* Slightly brighter fill */
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
    animation: none;
    /* stop pulse on hover */
}

/* Click Compression */
.btn-premium:active {
    transform: translateY(2px) scale(0.97);
}

/* Shimmer Sweep Animation Element */
.btn-premium .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    z-index: 1;
    transition: all 0.5s;
}

.btn-premium:hover .btn-shimmer {
    left: 150%;
    transition: left 0.6s ease-out;
}

/* Keyframes for button pulse */
@keyframes pulse-attractor {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Testimonials - Editorial Storytelling Redesign */
.testimonials-section.editorial-story {
    text-align: center;
    /* Soft, warm textured gradient background */
    background: linear-gradient(135deg, #faf9f7 0%, #f0ebe1 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    /* Restored generous padding for editorial breathing room */
}

/* Editorial Header Styling */
.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    /* Increased scale */
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    /* Warm charcoal */
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: none;
}

.testimonial-divider.expand-divider {
    width: 0px;
    height: 1px;
    background-color: #c6b8a6;
    /* Accent color */
    margin-top: 14px;
    opacity: 0.8;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animate divider on section reveal */
.editorial-reveal .expand-divider {
    width: 60px;
}

/* Custom Animation duration and ease */
.editorial-reveal {
    transition-duration: 0.8s !important;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

@media (max-width: 1024px) {
    .testimonial-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding-top: 3rem;
        /* Tighter spacing for mobile too */
        padding-bottom: 3rem;
    }

    .testimonial-title {
        font-size: 22px;
    }
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    /* Slightly wider for editorial flow */
    margin: 2rem auto 0;
    min-height: 300px;
    /* Prevent jumping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-slide.active {
    display: flex;
    /* Removed default fadeIn to use staggered child animations instead */
}

/* Staggered Cinematic Entrances */
.testimonial-slide.active .stagger-1 {
    animation: cinematic-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.testimonial-slide.active .stagger-2 {
    animation: cinematic-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.testimonial-slide.active .stagger-3 {
    animation: cinematic-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@keyframes cinematic-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Upgraded Author Area */
.author-editorial {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center horizontally */
    gap: 0.8rem;
    margin-top: 15px;
}

.client-portrait {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #e8e3dc;
    /* Fallback color for empty images */
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    /* Soft drop shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-editorial:hover .client-portrait {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.client-info {
    text-align: center;
    /* Center the text */
    display: flex;
    flex-direction: column;
}

.cite {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #2b2b2b;
    /* Match quote core color */
    font-weight: 500;
    font-style: normal;
}

.occasion {
    font-size: 0.75rem;
    color: rgba(43, 43, 43, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Layered Quote Mark */
.quote-mark-layered {
    font-family: var(--font-heading);
    font-size: 16rem;
    line-height: 1;
    color: #c6b8a6;
    position: absolute;
    top: -15px;
    /* Shifted down slightly to overlap text */
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Editorial Serif Italic Quote */
.quote-text-editorial {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: #2b2b2b;
    /* Warm charcoal */
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 90%;
}

.slider-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(43, 43, 43, 0.3);
    /* Darker border for contrast */
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: rgba(43, 43, 43, 0.6);
    /* Solid dark charcoal fill */
    border-color: rgba(43, 43, 43, 0.6);
    transform: scale(1.2);
}

.dot:hover {
    transform: scale(1.3);
    background-color: rgba(43, 43, 43, 0.2);
    border-color: rgba(43, 43, 43, 0.4);
}

/* Consolidated CTA section - implementation below */

/* Footer - Premium Artisan Redesign */
.site-footer {
    background-color: #0f0f0f;
    color: #e5e5e5;
    padding: 80px 20px 40px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* 1. FOOTER STRUCTURE (NEW GRID) */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
}

/* 2. COLUMN 1 - BRAND SECTION */
.footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 260px;
}

.footer-brand-info .logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.footer-brand-info .logo-group img.header-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand-info .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #e5e5e5;
    font-style: italic;
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Section Titles */
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/* 3. COLUMN 2 - EXPLORE */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 13px;
    opacity: 0.85;
}

.footer-links a:hover {
    color: #c7a97f;
}

/* 4. COLUMN 3 - CONTACT */
.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 18px;
    opacity: 0.8;
    color: var(--accent-color);
}

.contact-text {
    font-size: 14px;
    line-height: 1.5;
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.contact-text:hover {
    color: #c7a97f;
}

/* 5. COLUMN 4 - FOLLOW */
.footer-social-block {
    display: flex;
    flex-direction: column;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: #ffffff;
    text-decoration: none;
}

.social-icon-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Social Hover Brand Colors */
.social-icon-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-icon-link.facebook:hover {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-icon-link.pinterest:hover {
    background: #E60023;
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
}

.social-icon-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* 6. FOOTER DIVIDER */
.footer-divider {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* 7. COPYRIGHT ROW */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    opacity: 0.6;
    color: #ffffff;
}

.designed-love {
    color: inherit;
}

/* Staggered Scroll Animation Classes */
.footer-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-animate:nth-child(1) { transition-delay: 0.0s; }
.footer-animate:nth-child(2) { transition-delay: 0.08s; }
.footer-animate:nth-child(3) { transition-delay: 0.16s; }
.footer-animate:nth-child(4) { transition-delay: 0.24s; }

/* 8. RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand-info, 
    .footer-links, 
    .footer-contact-info, 
    .footer-social-block,
    .footer-brand-info .logo-group, 
    .footer-links ul, 
    .contact-details {
        align-items: center;
    }
    
    .footer-brand-info {
        max-width: 100%;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-image {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.reveal-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays for Rhythmic Animation */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.step-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(198, 165, 106, 0.25);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.process-grid p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Founder Section Specific adjustments if needed */
.founder-section {
    position: relative;
}

/* Services Page Catalog Styles */
.service-category {
    padding: 2.5rem 0;
    /* Reduced from 4rem */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* Lighter border */
}

.service-category:last-of-type {
    border-bottom: none;
}

/* Section Number Styling (Background Labels) */
.huge-label {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    letter-spacing: -2px;
    line-height: 0.8;
    color: rgba(198, 165, 106, 0.12);
    /* Slightly more subtle */
    margin-bottom: -2.5rem;
    /* Tighter overlap */
    position: relative;
    z-index: 0;
    font-weight: 600;
    user-select: none;
    pointer-events: none;
}

.huge-label.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.3rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Slightly wider cards */
    gap: 1.5rem;
    /* Reduced gap */
    margin-top: 1.5rem;
}

.catalog-card {
    background: #fff;
    border-radius: 8px;
    /* Slightly more rounded */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    /* Softer shadow */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth easing */
    cursor: pointer;
    border: none;
}

.catalog-card:hover {
    transform: translateY(-8px);
    /* Subtle lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Deeper shadow */
}

.catalog-img {
    width: 100%;
    aspect-ratio: 4/5;
    /* Taller image ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.catalog-card:hover .catalog-img {
    transform: scale(1.05);
    /* Slow zoom */
}

.catalog-info {
    padding: 1rem;
    /* Reduced padding */
    text-align: center;
    background: #fff;
}

.catalog-info h3 {
    font-size: 1.2rem;
    /* Slightly larger heading */
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

.explore-link-small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 0.7;
    transform: translateY(0);
}

.catalog-card:hover .explore-link-small {
    color: var(--text-color);
    opacity: 1;
    transform: translateY(-2px);
    /* Slight movement */
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-1 {
        grid-column: span 2;
    }

    /* Keep first item large */
    .big-statement {
        font-size: 2.5rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        padding: 2rem 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .site-header {
        background-color: var(--bg-color);
    }

    .site-header-light .mobile-menu-toggle span {
        background-color: var(--text-color);
    }

    .site-header-light:not(.scrolled) .mobile-menu-toggle span {
        background-color: #ffffff;
    }

    /* Simplified for now - ideally hamburger menu */
    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--text-color);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 9px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 18px;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: #fff;
}

.lightbox-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.lightbox-caption p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    line-height: 0.5;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

/* Instagram Feed Integration */
.instagram-section {
    padding: 3rem 0;
    text-align: center;
    background-color: #faf9f6;
    /* Ivory */
}

.insta-header {
    margin-bottom: 3rem;
}

.insta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.insta-subtitle {
    font-size: 1rem;
    color: #777;
    letter-spacing: 0.05em;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 columns for Home */
    gap: 0;
    /* Edge to edge for strip look, or gap for gallery */
}

/* Variant: Gallery Grid (padded with gaps) */
.insta-grid.gallery-mode {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
}

.insta-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-icon {
    font-size: 1rem;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.4s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insta-icon::after {
    content: 'View on Instagram \2192';
}

.insta-card:hover .insta-img {
    transform: scale(1.05);
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-card:hover .insta-icon {
    transform: translateY(0);
}

.insta-btn-container {
    margin-top: 3rem;
}

/* Contact Page Quick Connect */
.quick-connect-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.quick-connect-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.quick-connect-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-connect-link:hover {
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .insta-grid.gallery-mode {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .insta-grid.gallery-mode {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Philosophy Section Redesign */
.philosophy-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.philosophy-item {
    position: relative;
    transition: transform var(--transition-speed) ease;
}

/* Stagger Effect */
.philosophy-item:nth-child(even) {
    transform: translateY(40px);
}

.philosophy-card {
    background-color: transparent;
    overflow: hidden;
}

.card-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #e6e2dd;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Watermark Removal Logic: Scale up slightly to crop edges */
    transform: scale(1.08);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.philosophy-card:hover .card-image img {
    /* Hover scale effect */
    transform: scale(1.15);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.card-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .philosophy-item:nth-child(even) {
        transform: translateY(30px);
    }
}

@media (max-width: 576px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item:nth-child(even) {
        transform: none;
    }
}

/* Philosophy Item Stagger Logic Cleanup */
.philosophy-item:nth-child(even) {
    transform: none !important;
}

/* Process Editorial Section (Clean Luxury) */
.process-editorial {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, #181410, #0a0806);
    /* Highly moody dark background for fireflies */
    overflow: hidden;
}

/* Dark mode overrides for high contrast inside Process Editorial */
.process-editorial .section-title-large,
.process-editorial .section-subtitle,
.process-editorial .step-copy,
.process-editorial .process-ending-quote p {
    color: #F6F1EB;
    /* Light ivory text */
}

.process-editorial .node-content {
    background: rgba(26, 22, 18, 0.75);
    /* Dark translucent cards */
    border: 1px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-editorial .step-heading {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.process-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle botanical leaf repeating pattern instead of noise */
    background-size: 150px 150px;
    opacity: 0.04;
    /* Extremely low opacity 4% */
    pointer-events: none;
    z-index: 0;
}

/* Ambient Dust Particles (Styles applied via JS Web Animations API) */
.ambient-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

.section-title-large {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.divider-gold {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 1.5rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary-color);
}

/* -----------------------------------
   "Roots to Bloom" Timeline Section
   ----------------------------------- */
.rooted-timeline {
    position: relative;
    max-width: 1400px;
    margin: 2rem auto;
    /* Less vertical whitespace above/below the component */
    padding: 0;
    z-index: 1;
}

/* The Central Muted Gold Trunk - Organic Ink Style */
.timeline-trunk {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 1.5px;
    height: 100%;
    /* Create a subtle wavy hand-drawn effect using SVG background */
    background-image: url('data:image/svg+xml,%3Csvg preserveAspectRatio="none" viewBox="0 0 10 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M5,0 C2,25 8,50 5,75 C2,100 8,125 5,150" fill="none" stroke="%23A88B53" stroke-width="2" stroke-linecap="round" stroke-opacity="0.8" vector-effect="non-scaling-stroke" /%3E%3C/svg%3E');
    background-size: 100% 300px;
    background-repeat: repeat-y;
    filter: drop-shadow(2px 0 6px rgba(0, 0, 0, 0.5));
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-trunk.visible {
    transform: translateX(-50%) scaleY(1);
}

/* Shared Timeline Node Wrappers */
.timeline-node {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
    /* Extremely tight vertical rhythm */
}

.timeline-node:last-child {
    margin-bottom: 0;
}

/* Alternating Alignment & Tighter Horizontal Spacing */
.node-left {
    justify-content: flex-start;
}

.node-left .node-content {
    margin-right: calc(50% + 5px);
    /* Practically touching the stem horizontally */
}

.node-right {
    justify-content: flex-end;
}

.node-right .node-content {
    margin-left: calc(50% + 5px);
    /* Practically touching the stem horizontally */
}

/* Center Nodes (Dots on Trunk) */
.node-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    /* Hide initially for animation */
    width: 8px;
    height: 8px;
    background-color: #DAA520;
    /* Warm gold core */
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.6);
    z-index: 2;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-marker.visible {
    transform: translate(-50%, -50%) scale(1);
}

/* Leaf-Style UI Cards - Organic Luxury */
.node-content {
    position: relative;
    width: 48%;
    /* Widen cards significantly to eat up empty space */
    padding: 3rem;
    /* Slightly reduced padding */
    background: #FAF7F2 !important;
    /* Soft ivory interior override for leaf */
    border: 1px solid rgba(218, 165, 32, 0.5) !important;
    /* Thin gold outline */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

/* Asymmetric Leaf Shapes */
.node-left .node-content {
    border-radius: 60px 4px 60px 4px;
    /* Organic leaf pointing toward stem */
}

.node-right .node-content {
    border-radius: 4px 60px 4px 60px;
    /* Organic leaf pointing toward stem */
}

/* Override dark mode text colors back to dark on ivory */
.process-editorial .node-content .step-label,
.process-editorial .node-content .step-heading,
.process-editorial .node-content .step-copy {
    color: #2b2b2b;
    text-shadow: none;
}

.process-editorial .node-content .step-label {
    color: var(--accent-color);
}


.node-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.node-content.visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2) !important;
}

/* Final Bloom Soft Glow */
.final-bloom-node .node-content {
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, filter 0.3s ease;
}

.final-bloom-node.glow-active .node-content {
    animation: softBloomPulse 2s ease-out forwards;
}

@keyframes softBloomPulse {
    0% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 0 rgba(218, 165, 32, 0);
    }

    50% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 40px rgba(218, 165, 32, 0.4);
    }

    100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(218, 165, 32, 0.2);
    }
}

/* Minimal Hand-Drawn Diagonal Branch Connectors */
.node-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    /* Highly shortened */
    height: 1.5px;
    background: rgba(168, 139, 83, 0.6);
    /* Gold-brown tone */
    pointer-events: none;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    z-index: -1;
}

.node-left .node-content::before {
    right: -25px;
    transform-origin: left center;
    transform: rotate(15deg);
    /* Faint diagonal slope up to stem */
}

.node-right .node-content::before {
    left: -25px;
    transform-origin: right center;
    transform: rotate(-15deg);
    /* Faint diagonal slope up to stem */
}

/* Soft Radial Light Gradients behind each stage */
.node-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 350px;
    height: 350px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(218, 165, 32, 0.04) 0%, rgba(218, 165, 32, 0.01) 40%, transparent 70%);
    pointer-events: none;
    z-index: -2;
}

.node-left .node-content::after {
    right: -120px;
    /* Glow balances visual weight toward stem */
}

.node-right .node-content::after {
    left: -120px;
    /* Glow balances visual weight toward stem */
}

/* Typography Override for Luxury Clean */
.step-label {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: #2b2b2b;
    /* Warm charcoal */
    margin-bottom: 1rem;
}

.step-copy {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    /* Refined dark grey */
}

/* Typography Tonal Variations */
.text-sand {
    color: #A89B8C;
}

.text-bronze {
    color: #8C7A6B;
}

.text-clay {
    color: #7A6251;
}

.text-gold {
    color: #9C8352;
}

/* Soft Ending Quote */
.process-ending-quote {
    text-align: center;
    margin-top: 4rem;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.process-ending-quote p {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-style: italic;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.4;
}

/* Mobile Responsiveness for Timeline */
@media (max-width: 768px) {
    .rooted-timeline {
        padding-left: 20px;
        /* Space for trunk on left */
    }

    /* Shift Trunk to far left */
    .timeline-trunk {
        left: 20px;
        transform: translateX(0) scaleY(0);
    }

    .timeline-trunk.visible {
        transform: translateX(0) scaleY(1);
    }

    .timeline-node {
        justify-content: flex-start;
        margin-bottom: 4rem;
    }

    /* Shift Nodes to far left over trunk */
    .node-marker {
        left: 20px;
        transform: translate(-5px, -50%) scale(0);
    }

    .node-marker.visible {
        transform: translate(-5px, -50%) scale(1);
    }

    /* Standardize all content cards to sit on right of trunk */
    .node-content,
    .node-left .node-content,
    .node-right .node-content {
        width: 100%;
        margin-left: 40px;
        margin-right: 0;
        padding: 2rem 1.5rem;
    }

    /* Adjust Connectors */
    .node-content::before,
    .node-left .node-content::before,
    .node-right .node-content::before {
        left: -40px;
        width: 40px;
        right: auto;
    }
}

/* Premium CTA Implementation - Museum Grade */
.final-cta {
    position: relative;
    padding: 0;
    /* Removing padding to allow flex centering with fixed height */
    height: 88vh;
    /* Optical locked height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Image treatment container-level */
    filter: contrast(1.08) brightness(1.05);
}

/* Background Image Layer for Parallax */
.cta-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.postimg.cc/MTxpJG30/Chat-GPT-Image-Mar-12-2026-11-54-21-PM.png') no-repeat center center/cover;
    transition: transform 0.1s ease-out;
    /* Smooth transition for scroll logic */
    z-index: 0;
}

/* 1) Layered Readability System - Cinematic Radial Vignette */
.cta-overlay-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Radial Vignette */
.final-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.cta-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

/* Radial Focus Behind Text */
.cta-radial-focus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* Headline Styling - High-Contrast Warm Ivory */
.cta-premium-title {
    font-family: var(--font-heading);
    color: #F6F1EB;
    /* Branded Warm Ivory */
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    /* Stronger luminous shadow */
    margin-bottom: 18px;
    opacity: 0;
    text-align: center;
}

.cta-subtext-ink {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #F6F1EB;
    /* Matching Ivory for clarity */
    opacity: 0;
    margin-bottom: 15px;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Subtle Divider */
.cta-premium-divider {
    width: 120px;
    height: 1px;
    background-color: #F6F1EB;
    /* Ivory for visual link */
    opacity: 0;
    margin-bottom: 26px;
}

/* 2) Premium Conversion Button - Ink Glassmorphism */
.btn-premium-gold {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    /* Transparent glass base */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 4px;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* 3. Moving Light Sweep (Luxury Shimmer) */
.btn-premium-gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 70%);
    animation: luxurySweep 4s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes luxurySweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* 2. Magnetic Hover Animation */
.btn-premium-gold:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(47, 38, 34, 0.35);
    /* Subtle ink tint */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.btn-premium-gold:hover::after {
    animation-play-state: paused;
}

/* 5. Press Interaction */
.btn-premium-gold:active {
    transform: translateY(-2px) scale(0.96);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 6. Cursor Proximity Awareness */
.btn-premium-gold.btn-aware {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-premium-gold.btn-aware-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* 4. Micro-Pulse Attention Loop (Idle) */
@keyframes premiumPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.btn-premium-gold.idle-pulse {
    animation: premiumPulse 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 0.6;
    }
}

/* Entry Animations when .visible is added via ScrollReveal */
.final-cta.visible .cta-premium-title {
    animation: ctaFadeUp 600ms ease-out forwards;
}

.final-cta.visible .cta-subtext-ink {
    animation: ctaFadeUp 600ms ease-out forwards;
    animation-delay: 150ms;
}

.final-cta.visible .cta-premium-divider {
    animation: dividerGrow 400ms ease-out forwards;
    animation-delay: 350ms;
}

.final-cta.visible .btn-premium-gold {
    animation: ctaFadeUp 700ms ease-out forwards;
    animation-delay: 600ms;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .final-cta {
        padding: 5rem 0;
    }

    .cta-overlay-layers {
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .cta-premium-title {
        font-size: 2.2rem;
    }

    .btn-premium-gold {
        width: 90%;
        text-align: center;
    }

    .btn-premium-gold::before {
        opacity: 0.3;
        /* Reduce shimmer intensity on mobile */
    }
}

/* Button & Brand Touch */
.btn-outline-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent fill for contrast */
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-outline-gold:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(198, 165, 106, 0.3);
    transform: translateY(-2px);
}

.cta-brand-touch {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 2rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ----------------------------------------------------
   INSTAGRAM / LIVE CREATIONS SECTION (REDESIGN)
   ---------------------------------------------------- */

.instagram-section {
    padding: 3rem 0;
    background-color: #fafafa;
    /* Instagram Light Grey Background */
}

/* Header */
.insta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.insta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.insta-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #8e8e8e;
}

/* Floating Badge */
.insta-badge-float {
    position: absolute;
    top: 4rem;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Slightly stronger shadow */
    z-index: 10;
    pointer-events: none;
    border: 1px solid #dbdbdb;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #e53935;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(229, 57, 53, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(229, 57, 53, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #262626;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-text small {
    display: block;
    font-size: 0.65rem;
    color: #8e8e8e;
    font-weight: 400;
}

/* Feed Container */
.insta-feed-container {
    max-width: 1400px;
    /* Synchronized with new global container */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* New Grid Layout */
.insta-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Card Style */
.insta-card-new {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    /* Stretch in grid */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Card Header */
.insta-card-header {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #efefef;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic-container {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-pic-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.username {
    font-size: 0.85rem;
    font-weight: 700;
    color: #262626;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.location {
    font-size: 0.7rem;
    color: #262626;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.more-options {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Main Image */
.insta-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Standard square ratio for studio cards */
    background: #efefef;
    overflow: hidden;
    position: relative;
    /* Add this for absolute child positioning */
}

.insta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insta-card-new:hover .insta-card-image img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Post Overlays (Badge & Dots) */
.reel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-dots {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 5;
    pointer-events: none;
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
}

.carousel-dots .dot.active {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Footer & Actions */
.insta-card-footer {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.action-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    width: 100%;
}

.left-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #262626;
    height: 20px;
    /* Reduced to match new icon height */
    cursor: pointer;
}

.icon-count {
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-top: 1px;
    /* Visual baseline correction */
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn svg {
    height: 20px;
    width: 20px;
    transition: color 0.1s ease, fill 0.1s ease, stroke 0.1s ease;
}

.action-btn:hover {
    transform: scale(1.05);
    /* Very subtle premium scale */
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn svg {
    transition: color 0.1s ease, fill 0.1s ease, stroke 0.1s ease;
}

/* Specific Hover for Love Button */
.heart-solid {
    display: none;
}

.action-btn.love-btn:hover .heart-outline {
    display: none;
}

.action-btn.love-btn:hover .heart-solid {
    display: block;
    fill: #ed4956;
}

.action-btn.love-btn:hover svg {
    fill: #ed4956;
    color: #ed4956;
}

/* General hover highlight for other icons */
.action-btn:not(.love-btn):hover svg {
    color: #8e8e8e;
}

.likes-count {
    font-size: 0.85rem;
    color: #262626;
    margin-bottom: 4px;
}

.caption {
    font-size: 14px;
    color: #262626;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: left;
    width: 100%;
}

.caption b {
    font-weight: 700;
    margin-right: 4px;
}

.hashtag {
    color: #00376b;
    cursor: pointer;
    text-decoration: none;
}

.hashtag:hover {
    text-decoration: underline;
}

.more-link {
    color: #8e8e8e;
    cursor: pointer;
    margin-left: 4px;
}

.comments-link {
    font-size: 0.85rem;
    color: #8e8e8e;
    cursor: pointer;
    margin-top: 4px;
}

.timestamp {
    font-size: 10px;
    color: #8e8e8e;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* CTA */
.underline-center {
    position: relative;
    display: inline-block;
    padding-bottom: 0.3rem;
    /* Space for underline */
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: color 0.3s;
}

.underline-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.underline-center:hover::after {
    width: 100%;
}

.underline-center:hover {
    color: var(--accent-color);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .insta-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .insta-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .insta-grid-new {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .insta-badge-float {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ==========================================================================
   SERVICES LUXURY REDESIGN (EDITORIAL CATALOGUE)
   ========================================================================== */

.services-luxury-page {
    /* Color Palette */
    --lux-primary: #F3EFEA;
    --lux-secondary: #EDE7DF;
    --lux-accent: #C6A76E;
    --lux-text: #2A2A2A;
    --lux-text-light: #5C5C5C;
    --lux-shadow: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-heading-lux: 'Playfair Display', serif;
    --font-body-lux: 'Inter', sans-serif;
    
    background-color: var(--lux-primary);
    color: var(--lux-text);
}

/* Typography Overrides for Luxury Page */
.services-luxury-page h1,
.services-luxury-page h2,
.services-luxury-page h3,
.services-luxury-page h4,
.services-luxury-page .lux-heading {
    font-family: var(--font-heading-lux);
    color: var(--lux-text);
}

.services-luxury-page p,
.services-luxury-page .lux-body {
    font-family: var(--font-body-lux);
    color: var(--lux-text-light);
}

/* 1. Global Page Layout */
.lux-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.lux-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.lux-section-small {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* 12 Column Grid System */
.lux-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 32px;
    row-gap: 48px;
    align-items: center;
}

/* 2. Hero Section */
.lux-hero {
    height: 65vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: url('https://images.unsplash.com/photo-1544207240-8b1025eb7aeb?q=80&w=2574&auto=format&fit=crop') no-repeat center center/cover;
    margin-bottom: 70px;
}

.lux-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
    z-index: 1;
}

.lux-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 24px;
}

.lux-hero-title {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff !important;
}

.lux-hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    font-family: var(--font-body-lux);
    margin-bottom: 40px;
    color: #ffffff !important;
    font-weight: 400;
    text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.8);
}

.lux-btn-glass {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 15px;
    font-family: var(--font-body-lux);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.25s ease;
}

.lux-btn-glass:hover {
    background: var(--lux-accent);
    color: #ffffff;
    border-color: var(--lux-accent);
}

/* 3. Introduction & Core Values Section */
.lux-intro {
    position: relative;
    padding-top: 60px;
    padding-bottom: 50px;
    background-color: var(--lux-primary);
}

.lux-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Faded ink artwork background */
    background: url('https://images.unsplash.com/photo-1558227691-41ea78d1f0db?q=80&w=2574&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.06;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.lux-intro .lux-container {
    position: relative;
    z-index: 1;
}

.lux-intro-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.lux-intro-title {
    font-size: 52px;
    font-family: var(--font-heading-lux);
    margin-bottom: 0;
    color: var(--lux-text);
}

.lux-gold-divider {
    width: 80px;
    height: 1px;
    background: #C6A76E;
    margin: 32px auto;
}

.lux-intro-text {
    font-size: 18px;
    line-height: 1.7;
    font-family: var(--font-body-lux);
    color: var(--lux-text-light);
    max-width: 620px;
    margin: auto;
}

.lux-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.lux-value-item {
    text-align: center;
}

.lux-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    border: 1px solid var(--lux-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-accent);
    background-color: var(--lux-secondary);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.lux-value-item:hover .lux-value-icon {
    transform: translateY(-5px);
    background-color: var(--lux-accent);
    color: #ffffff;
}

.lux-value-title {
    font-size: 22px;
    font-family: var(--font-heading-lux);
    margin-bottom: 16px;
    color: var(--lux-text);
}

.lux-value-desc {
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-body-lux);
    color: var(--lux-text-light);
    max-width: 240px;
    margin: auto;
}

/* 4. Curated Collection Sections */
.lux-collection:first-of-type {
    padding-top: 10px;
}
.lux-collection {
    padding-top: 45px;
    padding-bottom: 45px;
}

.lux-collection .lux-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lux-collection-img-col, 
.lux-collection-txt-col {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Alternate Layout Support */
.lux-collection-reverse .lux-collection-img-col {
    grid-column: 2 / 3;
    grid-row: 1;
}

.lux-collection-reverse .lux-collection-txt-col {
    grid-column: 1 / 2;
    grid-row: 1;
}

.lux-image-wrap {
    width: 100%;
    max-width: 520px;
    height: 520px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px var(--lux-shadow);
}

.lux-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lux-image-wrap:hover .lux-image {
    transform: scale(1.03);
    transition: 0.4s ease;
}

.lux-collection-content {
    padding: 0 16px; 
}

.lux-collection-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--lux-text);
    margin-bottom: 24px;
}

.lux-collection-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.lux-item-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.lux-item-list li {
    font-family: var(--font-body-lux);
    font-size: 16px;
    color: var(--lux-text);
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
}

.lux-item-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lux-accent);
}

.lux-link-arrow {
    font-family: var(--font-body-lux);
    font-size: 15px;
    font-weight: 500;
    color: var(--lux-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 18px;
}

.lux-link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.lux-link-arrow:hover {
    color: var(--lux-accent);
    opacity: 0.7;
}

.lux-link-arrow:hover::after {
    transform: translateX(4px);
}

/* --------------------------------------
   ESHA AFTERHOURS SECTION
   -------------------------------------- */
.esha-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.esha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.esha-img-col, 
.esha-txt-col {
    grid-column: span 1;
}

.esha-img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    margin: 0 auto;
}

.esha-img-col:hover .esha-img {
    transform: scale(1.03);
}

.esha-quote {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--lux-accent);
    margin-bottom: 12px;
}

.esha-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin-bottom: 14px;
    color: var(--lux-text);
}

.esha-desc {
    font-family: var(--font-body-lux);
    font-size: 16px;
    color: var(--lux-text-light);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.esha-desc strong {
    font-weight: 500;
    color: var(--lux-text);
}

.esha-list {
    list-style: none;
    padding: 0;
    margin-top: 18px;
    margin-bottom: 18px;
}

.esha-list li {
    font-family: var(--font-body-lux);
    font-size: 15px;
    color: var(--lux-text);
    margin-bottom: 12px;
    line-height: 1.9;
    padding-left: 18px;
    position: relative;
}

.esha-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--lux-accent);
}

.esha-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.esha-btn {
    border: 1px solid #d8cfc6;
    padding: 10px 22px;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-body-lux);
    font-size: 15px;
    font-weight: 500;
    color: var(--lux-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.esha-btn:hover {
    background: #efe8df;
}

.esha-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--lux-text);
    transition: all 0.3s ease;
    border: 1px solid #d8cfc6;
}

.esha-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .esha-actions {
        justify-content: center;
    }
    
    .esha-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .esha-txt-col {
        order: 2;
        text-align: center;
    }
    
    .esha-img-col {
        order: 1;
    }
    
    .esha-list li {
        text-align: left;
        display: inline-block;
    }
    
    .esha-list {
        text-align: center;
    }
}

/* 5. Featured Works Section */
.lux-featured {
    margin-top: 20px;
    margin-bottom: 40px;
}

.lux-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 28px;
}

.lux-featured-card {
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.lux-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.lux-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lux-featured-card:hover .lux-featured-img {
    transform: scale(1.05);
}

.lux-featured-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0) 80%
    );
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.lux-featured-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 30%,
        rgba(0,0,0,0) 60%
    );
}

.lux-featured-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0) 80%
    );
    z-index: 1;
    pointer-events: none;
}

.lux-featured-title {
    position: absolute;
    bottom: 22px;
    left: 22px;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: "Playfair Display", serif;
    margin: 0;
    z-index: 3;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.8);
}

/* 6. Craft Process Section */
.lux-process .lux-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 80px;
}

.lux-process-img-col {
    grid-column: span 1;
}

.lux-process-txt-col {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.lux-process-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.lux-process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.lux-process-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--lux-secondary);
    color: var(--lux-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading-lux);
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--lux-accent);
}

.lux-process-name {
    font-family: var(--font-heading-lux);
    font-size: 24px;
    color: var(--lux-text);
}

/* 7. Commission Section */
.lux-commission {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 0;
    margin-bottom: 40px;
    background-color: var(--lux-secondary);
    border: 1px solid rgba(198, 167, 110, 0.35); /* subtle gold border */
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.lux-commission::before {
    display: none;
}

.lux-commission-title {
    position: relative;
    z-index: 2;
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--lux-text) !important;
}

.lux-commission-text {
    position: relative;
    z-index: 2;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px auto;
    color: var(--lux-text-light) !important;
}

.lux-btn-primary {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--lux-text);
    color: #ffffff !important;
    font-family: var(--font-body-lux);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.25s ease;
    border: 1px solid var(--lux-text);
}

.lux-btn-primary:hover {
    background-color: var(--lux-accent);
    color: #ffffff !important;
    border-color: var(--lux-accent);
}

/* 8. Final Hero Section */
.lux-final-hero {
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://i.postimg.cc/C56MRN1c/Chat-GPT-Image-Mar-14-2026-01-03-52-AM.png') no-repeat center center/cover;
}

.lux-final-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.55);
    z-index: 1;
}

.lux-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.lux-final-title {
    font-size: 56px;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.7);
}

.lux-final-subtext {
    font-size: 20px;
    color: #ffffff !important;
    opacity: 0.95;
    font-family: var(--font-body-lux);
    margin-bottom: 40px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

/* 10. Responsive Rules */

/* Tablet Rules */
@media (max-width: 1024px) {
    .lux-hero-title { font-size: 48px; }
    .lux-final-title { font-size: 42px; }
    .lux-collection-title { font-size: 32px; }
    .lux-featured-title { font-size: 20px; }
    
    .lux-hero { height: 50vh; }
    
    .lux-grid {
        column-gap: 24px;
    }
}

@media (max-width: 900px) {
    /* Stack Collection Layout */
    .lux-collection-img-col, 
    .lux-collection-txt-col,
    .lux-collection-reverse .lux-collection-img-col,
    .lux-collection-reverse .lux-collection-txt-col {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .lux-collection-img-col {
        order: 1;
    }
    
    .lux-collection-txt-col {
        order: 2;
        margin-top: 32px;
        text-align: center;
        align-items: center;
    }
    
    .lux-item-list li::before {
        display: none;
    }
    
    .lux-item-list li {
        padding-left: 0;
        text-align: center;
    }
    
    /* Stack Process Layout */
    .lux-process-img-col,
    .lux-process-txt-col {
        grid-column: 1 / -1;
    }
    
    .lux-process-txt-col {
        padding-left: 0;
        margin-top: 40px;
    }
    
    /* Modify Featured Grid */
    .lux-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stack Values Grid */
    .lux-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Instagram Title & Icon Hover Styles --- */
.insta-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.insta-title {
    font-size: 2.5rem;
    color: var(--text-color);
}

.insta-title-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.insta-title-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.insta-title-link:hover {
    color: var(--accent-color) !important;
}

.insta-title-link:hover .insta-title-icon {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

/* Mobile Rules */
@media (max-width: 600px) {
    .lux-container {
        padding: 0 24px;
    }
    
    .lux-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .lux-hero {
        height: 42vh;
    }
    
    .lux-hero-title, .lux-final-title {
        font-size: 36px;
    }
    
    .lux-hero-subtext, .lux-final-subtext {
        font-size: 16px;
    }
    
    .lux-intro-title {
        font-size: 36px;
    }
    
    .lux-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lux-image-wrap {
        height: 400px;
    }
    
    .lux-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .lux-featured-card {
        height: 320px;
    }
    
    .lux-featured-title {
        font-size: 18px;
    }
    
    .lux-commission {
        padding: 40px 20px;
    }
    
    .lux-commission-title {
        font-size: 32px;
    }
}

/* --- WhatsApp Floating Widget --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1FAF53;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: #FFF;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Tooltip */
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--text-color, #1C1A17);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-float::before {
        display: none;
    }
}