/* ============================================
   ADHITHYA - Luxury Men's Wear Portfolio
   Enhanced CSS Styles with Luxury Animations
   ============================================ */

/* CSS Reset & Custom Properties */
:root {
    /* Colors */
    --deep-green: #0E3B2E;
    --deep-green-light: #145241;
    --gold: #C9A86A;
    --gold-light: #D4B87A;
    --gold-dark: #B89A5C;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --off-white: #F8F7F5;
    --light-gray: #E5E5E5;
    --cream: #FAF8F5;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    --container-padding: 5%;

    /* Transitions */
    --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s ease;
    --transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
}

@media (max-width: 992px) {
    .cursor {
        display: none;
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--deep-green);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.loader-logo {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--deep-green);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    color: var(--white);
    margin-bottom: 30px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gold);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav {
        position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--container-padding);
    max-width: 1600px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-smooth);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--deep-green);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--charcoal);
}

.nav-icons {
    display: flex;
    gap: 20px;
    display: flex;
    align-items: center;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    position: static;
    margin-left: 16px;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--deep-green);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger span:last-child {
    margin-bottom: 0;
}

.mobile-nav-overlay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 270px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(14, 59, 46, 0.97);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    padding-top: 80px;
    padding-left: 32px;
    opacity: 1;
}
.mobile-nav-overlay.active {
    transform: translateX(0);
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: flex-start;
}
.mobile-nav-links li a {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-align: left;
    transition: color 0.2s;
    padding: 8px 0;
    width: 100%;
}
.mobile-nav-links li a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .nav-links-left {
        display: none !important;
    }
    .nav-icons {
        order: 2;
    }
    .hamburger {
        display: flex;
        order: 3;
    }
    .logo {
        order: 1;
    }
    .nav {
        flex-wrap: nowrap;
    }
}

.icon-btn {
    color: var(--charcoal);
    padding: 5px;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.icon-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(14, 59, 46, 0.6) 0%,
            rgba(14, 59, 46, 0.4) 50%,
            rgba(14, 59, 46, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.hero-line-bottom {
    margin-top: 25px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.hero-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 18px 45px;
    margin: 10px 10px 0;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--deep-green);
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn-second {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--deep-green);
    border: 1px solid var(--gold);
    padding: 18px 45px;
    margin: 10px 10px 0;
    background: transparent;
    transition: color var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-btn-second::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;              
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.hero-btn-second:hover {
    color: var(--white);
}

.hero-btn-second:hover::before {
    left: 100%;
}






.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
}

.hero-scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 50px;
    }

    50% {
        opacity: 1;
        height: 60px;
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 400;
    color: var(--deep-green);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title-gold {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--deep-green);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.section-title-center {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--deep-green);
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    opacity: 0.8;
}

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

/* ============================================
   COLLECTIONS SECTION
   ============================================ */
.collections {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 450px;
}

.collection-item:nth-child(5) {
    grid-column: span 2;
}

.collection-large {
    height: 450px;
}

.collection-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.collection-item:hover .collection-image img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 59, 46, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: var(--white);
}

.collection-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 10px;
}

.collection-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.collection-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-image-main .gold-frame {
    height: 100%;
}

.about-image-main .gold-frame img {
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-image-secondary .gold-frame {
    height: 100%;
}

.about-image-secondary .gold-frame img {
    height: 100%;
    object-fit: cover;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 15px;
    margin-top: 10px;
    color: var(--deep-green);
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    text-transform: uppercase;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.story {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.story-column p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.story-image {
    position: relative;
}

/* Gold Frame */
.gold-frame {
    position: relative;
    border: 3px solid var(--gold);
    padding: 0;
    overflow: hidden;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gold-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    transition: opacity var(--transition-smooth), inset var(--transition-smooth);
}

.gold-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-luxury);
}

.gold-frame:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 106, 0.25);
}

.gold-frame:hover::before {
    inset: 15px;
    opacity: 0.8;
}

.gold-frame:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    background: rgba(14, 59, 46, 0.9);
    padding: 10px 18px;
    z-index: 3;
}

/* ============================================
   CRAFTSMANSHIP SECTION
   ============================================ */
.craftsmanship {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

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

.craft-item .gold-frame {
    margin-bottom: 20px;
    aspect-ratio: 4/5;
}

.craft-item .gold-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.craft-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
}

.craft-footer {
    margin-top: 60px;
    text-align: center;
}

.craft-divider {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.craft-footer-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    color: var(--charcoal);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--deep-green);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover;
    opacity: 0.08;
}

.mv-grid {
    display: flex;
    align-items: stretch;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mv-item {
    flex: 1;
    text-align: center;
    padding: 50px;
}

.mv-divider {
    width: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.mv-icon {
    margin-bottom: 30px;
    color: var(--gold);
}

.mv-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.mv-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--white);
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   JOURNAL SECTION
   ============================================ */
.journal {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.journal-item {
    background: var(--off-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.journal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.journal-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.journal-featured .journal-image {
    height: 280px;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.journal-item:hover .journal-image img {
    transform: scale(1.08);
}

.journal-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.journal-date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.journal-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.journal-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.journal-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--deep-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.journal-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* ============================================
   LIFESTYLE GALLERY SECTION
   ============================================ */
.lifestyle-gallery {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 320px;
}

.gallery-tall {
    height: 320px;
}

.gallery-wide {
    height: 320px;
}

.gallery-item .gold-frame {
    height: 100%;
}

.gallery-item .gold-frame img {
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    background: rgba(14, 59, 46, 0.85);
    padding: 8px 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials .section-title-gold {
    text-align: center;
    margin-bottom: 80px;
}

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

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--gold);
    padding: 50px 40px;
    border-radius: 4px;
    transition: all var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(201, 168, 106, 0.2);
}

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

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ============================================
   WHOLESALE & PARTNERSHIP CTA SECTION
   ============================================ */
.wholesale-cta {
    position: relative;
    padding: calc(var(--section-padding) * 1.2) 0;
    background: var(--deep-green);
    overflow: hidden;
    text-align: center;
}

.wholesale-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 59, 46, 0.95) 0%, rgba(20, 82, 65, 0.95) 100%);
    z-index: 1;
}

.wholesale-cta .container {
    position: relative;
    z-index: 2;
}

.wholesale-content {
    max-width: 900px;
    margin: 0 auto;
}

.wholesale-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.wholesale-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.contact-form-wrap {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--light-gray);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--deep-green);
    margin-bottom: 35px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    border: 1px solid var(--light-gray);
    background: var(--off-white);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A1A1A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-btn {
    width: 100%;
    padding: 18px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--deep-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition-smooth);
}

.form-btn:hover {
    background: var(--gold);
    color: var(--deep-green);
}

.form-btn svg {
    transition: transform var(--transition-fast);
}

.form-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--deep-green);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    background: var(--gold);
    color: var(--deep-green);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-quote {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.75;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin-top: 15px;
}

.footer-links-wrap {
    display: flex;
    gap: 60px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.8;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-newsletter {
    max-width: 280px;
}

.newsletter-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--deep-green);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 14px 30px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    text-transform: uppercase;
}

.newsletter-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--deep-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-green);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
}

.fab:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fab-whatsapp {
    background: #25D366;
}

/* ============================================
   ANIMATIONS - Initial States
   ============================================ */
.animate-hero {
    opacity: 0;
    transform: translateY(50px);
}

.animate-section {
    opacity: 0;
    transform: translateY(60px);
}

/* Luxury Golden Shimmer Image Reveal */
.reveal-image {
    position: relative;
    overflow: hidden;
}

.reveal-image img {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
    transition: opacity 1.2s ease, transform 1.4s ease, filter 1.2s ease;
}

.reveal-image.revealed img {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.reveal-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 168, 106, 0.4) 50%,
            transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.reveal-image.revealed::after {
    animation: goldenShimmer 1.5s ease forwards;
}

@keyframes goldenShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .collection-item {
        height: 380px;
    }

    .collection-item:nth-child(5) {
        grid-column: span 2;
    }

    .collection-large {
        grid-row: span 2;
    }

    .journal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journal-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .journal-featured .journal-image {
        height: 300px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links-wrap {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 90px;
    }

    .nav-links-left {
        display: none;
    }

    .nav-icons {
        gap: 15px;
    }

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

    .collection-large {
        grid-row: span 1;
    }

    .collection-item {
        height: 350px;
    }

    .collection-item:nth-child(5) {
        grid-column: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .story-text {
        grid-template-columns: 1fr;
    }

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

    .mv-grid {
        flex-direction: column;
        gap: 40px;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
    }

    .journal-featured {
        grid-column: span 1;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wholesale-title {
        font-size: 2rem;
    }

    .wholesale-description {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-wrap {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .nav {
        padding: 15px var(--container-padding);
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    .hero {
        min-height: 650px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-btn, .hero-btn-second {
        padding: 16px 30px;
        font-size: 0.75rem;
        margin: 8px 5px 0;
    }

    .hero-line-top {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title-gold {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .collection-item {
        height: 300px;
    }

    .about-stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .craft-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .craft-footer-text {
        font-size: 0.9rem;
    }

    .mv-title {
        font-size: 1.5rem;
    }

    .mv-text {
        font-size: 1rem;
    }

    .journal-image {
        height: 220px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 1rem;
        min-height: auto;
    }

    .wholesale-title {
        font-size: 1.8rem;
    }

    .wholesale-description {
        font-size: 1rem;
    }

    .contact-form-wrap {
        padding: 35px 25px;
    }

    .form-title {
        font-size: 1.1rem;
    }

    .footer-links-wrap {
        flex-direction: column;
        gap: 35px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input, .newsletter-btn {
        width: 100%;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 6%;
    }

    .logo-text {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-btn, .hero-btn-second {
        padding: 10px 10px;
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title-gold {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .drop-cap::first-letter {
        font-size: 3.5rem;
    }

    .collection-item {
        height: 280px;
    }

    .collection-overlay {
        padding: 20px;
    }

    .collection-name {
        font-size: 1rem;
    }

    .collection-desc {
        font-size: 0.85rem;
    }

    .about-stats {
        gap: 25px;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 0.75rem;
    }

    .craft-footer-divider {
        max-width: 250px;
    }

    .craft-footer-text {
        font-size: 0.85rem;
    }

    .mv-title {
        font-size: 1.3rem;
    }

    .mv-text {
        font-size: 0.9rem;
    }

    .journal-image {
        height: 200px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .wholesale-title {
        font-size: 1.6rem;
    }

    .wholesale-description {
        font-size: 0.95rem;
    }

    .wholesale-btn {
        padding: 14px 28px;
        font-size: 0.7rem;
    }

    .form-title {
        font-size: 1rem;
    }

    .footer-brand-text {
        font-size: 0.85rem;
    }

    .footer-quote {
        font-size: 0.85rem;
        padding: 15px;
    }

    .newsletter-input {
        font-size: 0.85rem;
        padding: 12px 18px;
    }

    .newsletter-btn {
        font-size: 0.65rem;
        padding: 12px 24px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .fab i {
        font-size: 1.1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Magnetic wrapper for hover effects */
.magnetic-wrap {
    position: relative;
}